diff --git a/app/containers/LoginServices.js b/app/containers/LoginServices.js index b56929033..11ffc6d97 100644 --- a/app/containers/LoginServices.js +++ b/app/containers/LoginServices.js @@ -5,29 +5,32 @@ import { import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import { Base64 } from 'js-base64'; +import * as AppleAuthentication from 'expo-apple-authentication'; import { withTheme } from '../theme'; import sharedStyles from '../views/Styles'; import { themes } from '../constants/colors'; -import { loginRequest as loginRequestAction } from '../actions/login'; import Button from './Button'; import OrSeparator from './OrSeparator'; import Touch from '../utils/touch'; import I18n from '../i18n'; import random from '../utils/random'; +import RocketChat from '../lib/rocketchat'; +const BUTTON_HEIGHT = 48; const SERVICE_HEIGHT = 58; +const BORDER_RADIUS = 2; const SERVICES_COLLAPSED_HEIGHT = 174; const styles = StyleSheet.create({ serviceButton: { - borderRadius: 2, + borderRadius: BORDER_RADIUS, marginBottom: 10 }, serviceButtonContainer: { - borderRadius: 2, + borderRadius: BORDER_RADIUS, width: '100%', - height: 48, + height: BUTTON_HEIGHT, flexDirection: 'row', alignItems: 'center', justifyContent: 'center', @@ -187,6 +190,21 @@ class LoginServices extends React.PureComponent { this.openOAuth({ url, ssoToken, authType: 'cas' }); } + onPressAppleLogin = async() => { + try { + const { fullName, email, identityToken } = await AppleAuthentication.signInAsync({ + requestedScopes: [ + AppleAuthentication.AppleAuthenticationScope.FULL_NAME, + AppleAuthentication.AppleAuthenticationScope.EMAIL + ] + }); + + await RocketChat.loginOAuthOrSso({ fullName, email, identityToken }); + } catch { + // Do nothing + } + } + getOAuthState = () => { const credentialToken = random(43); return Base64.encodeURI(JSON.stringify({ loginStyle: 'popup', credentialToken, isCordova: true })); @@ -262,6 +280,7 @@ class LoginServices extends React.PureComponent { } renderItem = (service) => { + const { CAS_enabled, theme } = this.props; let { name } = service; name = name === 'meteor-developer' ? 'meteor' : name; const icon = `icon_${ name }`; @@ -285,11 +304,27 @@ class LoginServices extends React.PureComponent { onPress = () => this.onPressCas(); break; } + case 'apple': { + onPress = () => this.onPressAppleLogin(); + break; + } default: break; } + + if (name === 'apple') { + return ( + + ); + } + name = name.charAt(0).toUpperCase() + name.slice(1); - const { CAS_enabled, theme } = this.props; let buttonText; if (isSaml || (service.service === 'cas' && CAS_enabled)) { buttonText = {name}; @@ -356,8 +391,4 @@ const mapStateToProps = state => ({ services: state.login.services }); -const mapDispatchToProps = dispatch => ({ - loginRequest: params => dispatch(loginRequestAction(params)) -}); - -export default connect(mapStateToProps, mapDispatchToProps)(withTheme(LoginServices)); +export default connect(mapStateToProps)(withTheme(LoginServices)); diff --git a/app/lib/rocketchat.js b/app/lib/rocketchat.js index acd623c65..cfa959919 100644 --- a/app/lib/rocketchat.js +++ b/app/lib/rocketchat.js @@ -1077,6 +1077,10 @@ const RocketChat = { return 'cas'; } + if (authName === 'apple' && isIOS) { + return 'apple'; + } + // TODO: remove this after other oauth providers are implemented. e.g. Drupal, github_enterprise const availableOAuth = ['facebook', 'github', 'gitlab', 'google', 'linkedin', 'meteor-developer', 'twitter', 'wordpress']; return availableOAuth.includes(authName) ? 'oauth' : 'not_supported'; diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 88b201e37..a48ab9fa9 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -10,6 +10,8 @@ PODS: - Crashlytics (3.14.0): - Fabric (~> 1.10.2) - DoubleConversion (1.1.6) + - EXAppleAuthentication (2.2.1): + - UMCore - EXAV (8.1.0): - UMCore - UMFileSystemInterface @@ -515,6 +517,7 @@ PODS: DEPENDENCIES: - 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`) - EXConstants (from `../node_modules/expo-constants/ios`) - EXFileSystem (from `../node_modules/expo-file-system/ios`) @@ -655,6 +658,8 @@ EXTERNAL SOURCES: :path: "../node_modules/bugsnag-react-native" DoubleConversion: :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" + EXAppleAuthentication: + :path: "../node_modules/expo-apple-authentication/ios" EXAV: :path: "../node_modules/expo-av/ios" EXConstants: @@ -826,6 +831,7 @@ SPEC CHECKSUMS: CocoaLibEvent: 2fab71b8bd46dd33ddb959f7928ec5909f838e3f Crashlytics: 540b7e5f5da5a042647227a5e3ac51d85eed06df DoubleConversion: 5805e889d232975c086db112ece9ed034df7a0b2 + EXAppleAuthentication: 5b3da71bada29e2423d8ea27e5538ef0d75aba62 EXAV: 2edd9cd30fe98d04b55325303c7ff01db02d1d0f EXConstants: 5304709b1bea70a4828f48ba4c7fc3ec3b2d9b17 EXFileSystem: cf4232ba7c62dc49b78c2d36005f97b6fddf0b01 diff --git a/ios/Pods/Headers/Private/EXAppleAuthentication/EXAppleAuthentication.h b/ios/Pods/Headers/Private/EXAppleAuthentication/EXAppleAuthentication.h new file mode 120000 index 000000000..8f5c43eae --- /dev/null +++ b/ios/Pods/Headers/Private/EXAppleAuthentication/EXAppleAuthentication.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-apple-authentication/ios/EXAppleAuthentication/EXAppleAuthentication.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXAppleAuthentication/EXAppleAuthenticationButton.h b/ios/Pods/Headers/Private/EXAppleAuthentication/EXAppleAuthenticationButton.h new file mode 120000 index 000000000..319e3bcd5 --- /dev/null +++ b/ios/Pods/Headers/Private/EXAppleAuthentication/EXAppleAuthenticationButton.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-apple-authentication/ios/EXAppleAuthentication/EXAppleAuthenticationButton.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXAppleAuthentication/EXAppleAuthenticationMappings.h b/ios/Pods/Headers/Private/EXAppleAuthentication/EXAppleAuthenticationMappings.h new file mode 120000 index 000000000..002ba4afe --- /dev/null +++ b/ios/Pods/Headers/Private/EXAppleAuthentication/EXAppleAuthenticationMappings.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-apple-authentication/ios/EXAppleAuthentication/EXAppleAuthenticationMappings.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXAppleAuthentication/EXAppleAuthenticationRequest.h b/ios/Pods/Headers/Private/EXAppleAuthentication/EXAppleAuthenticationRequest.h new file mode 120000 index 000000000..d63ded320 --- /dev/null +++ b/ios/Pods/Headers/Private/EXAppleAuthentication/EXAppleAuthenticationRequest.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-apple-authentication/ios/EXAppleAuthentication/EXAppleAuthenticationRequest.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXAppleAuthentication/EXAppleAuthentication.h b/ios/Pods/Headers/Public/EXAppleAuthentication/EXAppleAuthentication.h new file mode 120000 index 000000000..8f5c43eae --- /dev/null +++ b/ios/Pods/Headers/Public/EXAppleAuthentication/EXAppleAuthentication.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-apple-authentication/ios/EXAppleAuthentication/EXAppleAuthentication.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXAppleAuthentication/EXAppleAuthenticationButton.h b/ios/Pods/Headers/Public/EXAppleAuthentication/EXAppleAuthenticationButton.h new file mode 120000 index 000000000..319e3bcd5 --- /dev/null +++ b/ios/Pods/Headers/Public/EXAppleAuthentication/EXAppleAuthenticationButton.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-apple-authentication/ios/EXAppleAuthentication/EXAppleAuthenticationButton.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXAppleAuthentication/EXAppleAuthenticationMappings.h b/ios/Pods/Headers/Public/EXAppleAuthentication/EXAppleAuthenticationMappings.h new file mode 120000 index 000000000..002ba4afe --- /dev/null +++ b/ios/Pods/Headers/Public/EXAppleAuthentication/EXAppleAuthenticationMappings.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-apple-authentication/ios/EXAppleAuthentication/EXAppleAuthenticationMappings.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXAppleAuthentication/EXAppleAuthenticationRequest.h b/ios/Pods/Headers/Public/EXAppleAuthentication/EXAppleAuthenticationRequest.h new file mode 120000 index 000000000..d63ded320 --- /dev/null +++ b/ios/Pods/Headers/Public/EXAppleAuthentication/EXAppleAuthenticationRequest.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-apple-authentication/ios/EXAppleAuthentication/EXAppleAuthenticationRequest.h \ No newline at end of file diff --git a/ios/Pods/Local Podspecs/EXAppleAuthentication.podspec.json b/ios/Pods/Local Podspecs/EXAppleAuthentication.podspec.json new file mode 100644 index 000000000..f73f3b090 --- /dev/null +++ b/ios/Pods/Local Podspecs/EXAppleAuthentication.podspec.json @@ -0,0 +1,23 @@ +{ + "name": "EXAppleAuthentication", + "version": "2.2.1", + "summary": "A unimodule that provides SignIn With Apple", + "description": "A unimodule that provides SignIn With Apple", + "license": "MIT", + "authors": "650 Industries, Inc.", + "homepage": "https://github.com/expo/expo/tree/master/packages/expo-apple-authentication", + "platforms": { + "ios": "10.0" + }, + "source": { + "git": "https://github.com/expo/expo.git" + }, + "source_files": "EXAppleAuthentication/**/*.{h,m}", + "preserve_paths": "EXAppleAuthentication/**/*.{h,m}", + "requires_arc": true, + "dependencies": { + "UMCore": [ + + ] + } +} diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index 88b201e37..a48ab9fa9 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -10,6 +10,8 @@ PODS: - Crashlytics (3.14.0): - Fabric (~> 1.10.2) - DoubleConversion (1.1.6) + - EXAppleAuthentication (2.2.1): + - UMCore - EXAV (8.1.0): - UMCore - UMFileSystemInterface @@ -515,6 +517,7 @@ PODS: DEPENDENCIES: - 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`) - EXConstants (from `../node_modules/expo-constants/ios`) - EXFileSystem (from `../node_modules/expo-file-system/ios`) @@ -655,6 +658,8 @@ EXTERNAL SOURCES: :path: "../node_modules/bugsnag-react-native" DoubleConversion: :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" + EXAppleAuthentication: + :path: "../node_modules/expo-apple-authentication/ios" EXAV: :path: "../node_modules/expo-av/ios" EXConstants: @@ -826,6 +831,7 @@ SPEC CHECKSUMS: CocoaLibEvent: 2fab71b8bd46dd33ddb959f7928ec5909f838e3f Crashlytics: 540b7e5f5da5a042647227a5e3ac51d85eed06df DoubleConversion: 5805e889d232975c086db112ece9ed034df7a0b2 + EXAppleAuthentication: 5b3da71bada29e2423d8ea27e5538ef0d75aba62 EXAV: 2edd9cd30fe98d04b55325303c7ff01db02d1d0f EXConstants: 5304709b1bea70a4828f48ba4c7fc3ec3b2d9b17 EXFileSystem: cf4232ba7c62dc49b78c2d36005f97b6fddf0b01 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index efec35003..3146cb9ea 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -238,26 +238,26 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 000601D6585E358B4C5C687C9A463409 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = AACD8E5CBF6C8A9D707708D67FB0776A /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 000F50E0CF2A97F28B1403D1775EDC99 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D15E6C15A7316E075DE1480693E3EC3 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 000601D6585E358B4C5C687C9A463409 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 741C3A3B5625053E83FF3307CC09A3DC /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 000F50E0CF2A97F28B1403D1775EDC99 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B393A8351F43494FB8EE8EEAADD868EF /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 001AF458ED907C2245E6C1309CFADDB3 /* JemallocHugePageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = F628CC7BE0AEEA83942594EE661FCFFE /* JemallocHugePageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E756124372A4E7FA694676683FA1589 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00A894F22AA7BAC1B6AA77349D399622 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 249A7D40A6715A3AA99D6160299D46D1 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00AAC400E3418EF5114C52242349B8D9 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FA9557D126ABF05071EA793543C18C6 /* UMNativeModulesProxy.m */; }; + 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 452F41A12ABBAAB84397380B42284D60 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00A894F22AA7BAC1B6AA77349D399622 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D47EB0EB7BBF5533FCDA0908164CB63F /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00AAC400E3418EF5114C52242349B8D9 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = F162F61E596682F0B5B70E78B59DA9D3 /* UMNativeModulesProxy.m */; }; 00C91D63CC716D2460BD2A730560A58E /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = 70197CC7571ACA78C92A18304930BE97 /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00C950628997FB02D111B83EB951E6CB /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6B34942F065CF734DD9D48428E5B298A /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 00C950628997FB02D111B83EB951E6CB /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3121408745595749887D41BA8C1D4AB2 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 00D27218A8199A050BC7FA8E8564170F /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = EB93BE6AFAF1BC480D0C2B0600E21070 /* GULAppDelegateSwizzler.m */; }; 00D2A54A8823A11E61F579504E81E987 /* Flipper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C447054D2A8D18FFD482EBF39CCD4073 /* Flipper-dummy.m */; }; 00F922693F608FAEB7DF4C02CE61C369 /* OpenSSLHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DD859B7667F2DABB151D070B512AE66 /* OpenSSLHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 00FA3E1586775F0FB5DA9F5F99EC17CC /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E010882BE98A85E0CD8F121871D0AF5 /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 010699DF90AE445D00AB55ECC23DC460 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7DA2BEF8DCD132D261291E354D9E01F6 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 010699DF90AE445D00AB55ECC23DC460 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DAF9878961E52E9EEA3D247C43084864 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 0109658EA8CF256D8B289ADCDC7FA70A /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 31E08DAC1A619FCDA26A814273FD6980 /* SDImageIOCoder.m */; }; - 0109A3A759F7D4639629377AC27DB234 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BAD73BD5778173836BF37DB3E81D1893 /* RNImageCropPicker-dummy.m */; }; + 0109A3A759F7D4639629377AC27DB234 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A5089756CA01445DAA8F58801683705 /* RNImageCropPicker-dummy.m */; }; 011466BD1564B2DC5CE448FEA5B29B85 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 1AD3488E3ED1D9E978C1DBD1D5FF8006 /* README.md */; }; 011CCC7448DA0EED688075A9B65EC55C /* GDTCORUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 89BF11E56AFF3B7B285F3EB179397794 /* GDTCORUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01242B075C745D566D2F188D45FAEDAE /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = B8F314BF2984990FA063A03D6CFC9EDB /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01242B075C745D566D2F188D45FAEDAE /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BFB651D0748DF11336DEDB9ED0D4468 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01448BDA59FEB517720540384ACA3EB5 /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B819B405EE6D794E6E47B0FB1CA3C6F /* 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"; }; }; - 0198283A6245A364C263FECB875E1C76 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = 118935DB48F3E9A3C3F88BA28BFD212F /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0198283A6245A364C263FECB875E1C76 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = C019C5E38C06F44F4D7C9B8CA3265E20 /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01D4A5DDBBEE67AA18A16D4C689B53DA /* ErrorCode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 266B524D0AB8F9504500D7E7891293B0 /* 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"; }; }; 01F1D84FDAD0AF47FF1C2166C9A2D3EC /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 43B69FCD8D50501DDFA9BCDED9C89518 /* pb_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01FA56AC1F7EF75E75EBBCA0945A18E1 /* SSLContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9EAC10DE40C6EB5700CA74AAC9E03FA /* 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"; }; }; @@ -265,63 +265,63 @@ 02218BCD8452C372E4ACC4A4C8325932 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = B03AF04A4A9658C483148005DEDAE80C /* rescaler.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 023FF4811870371C17AB936C0370C28D /* WTCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = B9E53FE8489DBF30F8C05AFC8DC96FF7 /* WTCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; 024FFB764B39A899C61D25A259530FAF /* WriteChainAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 29B836691D2C3E25B3EC9AFE80E342BF /* WriteChainAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02A040AA87D6FF98C4A159A382F8CA35 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AC0E9D5F8489BD6C505350744F94A35A /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02A3BBD616C9D1C40690E52BD99F0CFA /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = B731DBCD2B080AF81E6B23701B99D9FB /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 02A040AA87D6FF98C4A159A382F8CA35 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C0BF5F99115EE471188E590055260764 /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02A3BBD616C9D1C40690E52BD99F0CFA /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 77371F5FF68EF2101F411997A7F2A3DA /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 02CF5ED1CEA40B42508C26E0FC2A66E1 /* ChecksumDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = F9BA8C020E8A45274DCBB957FFA3E1BC /* ChecksumDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02D11B6A86E80E1F2914C8200AE733D3 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = BB20DEF11E50A083AF8BBC9B8B265A16 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02D11B6A86E80E1F2914C8200AE733D3 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FDF17D3E268D3800790669D4706ECD0 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 032C7CDB032114BDCC7DC441021A7DA5 /* IOObjectCache.h in Headers */ = {isa = PBXBuildFile; fileRef = A732941A0590D1ACD917CC88996CD93E /* IOObjectCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0331A0AEE92CF1C7363B1D3D0E1A5214 /* Yoga-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 35B468CF8FF3E3BC1AD58CB8ED8ED5EA /* Yoga-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0331A0AEE92CF1C7363B1D3D0E1A5214 /* Yoga-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A9969B4DCAEDA5FDE7CC095E40E1F88 /* Yoga-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0357B1DBA4393494C24B5458C5294109 /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = EDF48209BEECDFA54A01C5955F0BFBB4 /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 037A597C46854C7EAE1349B3B682C044 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AC46F45DA1D34DC0406E3439D485A29 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 037A597C46854C7EAE1349B3B682C044 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AB6F7A05712378F1F168AF79F14103E /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0388C19C118898765F8121AC641BA4B4 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 104C42A61B3D6157224ED06DBE2DF1F4 /* SDDiskCache.m */; }; - 039F484EFA0AB598F0D9B9B68191B8FA /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8471AF838A55535824F22BA8A9FA0969 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03A091EF0A44A9313367BD851F9685DB /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = BE1F41BEBC8C3AF6F2D54276A85B7B0E /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 039F484EFA0AB598F0D9B9B68191B8FA /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D780F29E8B27EF815A15DF6A4D809F3 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03A091EF0A44A9313367BD851F9685DB /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 46FC4C5A659A3EED85B9083A283C545B /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03B0991E9C8213684BA88B4BB3746653 /* FlipperConnectionManagerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 06FE4534A33746E9A14498E2181A341F /* FlipperConnectionManagerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03C2E903CC5B4C7A1E6F9080A24B4926 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E4C989A33D90A61D1AFE1A7A4E7A113 /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03CE75A0F998C6AD1A8A56EC32048441 /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D2584473F8E196EEB11BE408FA7E274 /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03D5C4B4B20C0648BC0FF0DB5114D2CF /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B3A0AA50391C1B5390DC63C87751BF8 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03D5C4B4B20C0648BC0FF0DB5114D2CF /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E8ED8A83DA5B53CBED456E31C005406 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03DE9082132C5F30F717BA20344693C9 /* Hazptr.h in Headers */ = {isa = PBXBuildFile; fileRef = AA9187713B9511D1223F602D2181B213 /* Hazptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04157DF7E2E7E61AEEC46431877630DE /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = EB71CBD16759D50EA2846AC4CA88FC4D /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 041DBA280D01DEFCA66268DC7D4DE683 /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = 545CF27041459F6DC7BF2DB9D86CD210 /* REAAllTransitions.m */; }; - 0433575C08F601A7818CA6D84CC5ABA4 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AAC11F1613B55F051B873E278DC1C4F /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 043A6BD1EF7D359B9344AC711C850A93 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FD22FAE125FA335CEE173E903DB98EB /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 044EF246BAC4B410BBF6C73F743BDA29 /* RCTClipboard.mm in Sources */ = {isa = PBXBuildFile; fileRef = ABA57A7A58CE312EFAB1323D9291E144 /* 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"; }; }; - 04720781CE919EF591D835B54D25129A /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 6013707A7FC70BD89A3DC12B7821E9FD /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04157DF7E2E7E61AEEC46431877630DE /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8054C319CDF752742F2FD0C739ED8E1E /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 041DBA280D01DEFCA66268DC7D4DE683 /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = E4F0FF6714F5FE177E51FB3A81A96F1F /* REAAllTransitions.m */; }; + 0433575C08F601A7818CA6D84CC5ABA4 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = CC268622DF95F0EB5FF95B5D1027B2AD /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 043A6BD1EF7D359B9344AC711C850A93 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FA90F039328C541D138AE86D8DC0093 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 044EF246BAC4B410BBF6C73F743BDA29 /* RCTClipboard.mm in Sources */ = {isa = PBXBuildFile; fileRef = 47B935784748CD8C29C62EF1B15E2040 /* 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"; }; }; + 04720781CE919EF591D835B54D25129A /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 985D6DB3D9A4AE44DF523A65D604550F /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0496E1728E220AEBEDAD5CBF91E7B74C /* FlipperState.h in Headers */ = {isa = PBXBuildFile; fileRef = B7D9BBA475ECEB5469F8DB398EA2EBE2 /* FlipperState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04B300C1D37AF477D6E979A0585D6437 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 6954833138665D07AC2B39F0B5A47B08 /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 04B65BFF8935AF4B13C7566F91CABA0B /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FE213B1E1A18786AD8062BD7D12E915 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 04D6704283C3418A8C24ADB8AE9B5F11 /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = 623F626684B21E4B298778247C3A3CFF /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04B300C1D37AF477D6E979A0585D6437 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 6258E6EF9E8CD1193204427CC6AFFC6E /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 04B65BFF8935AF4B13C7566F91CABA0B /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8ABCD543DFDA4EF993833E21A010BD22 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 04D6704283C3418A8C24ADB8AE9B5F11 /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = C5363E2E18C3E2582BC14D74EF29FEAD /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 04DEBAD199A26C30F3E532330C05B716 /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 62DEF63856225090BFBE8B15840B9FAF /* GULSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 050764AE053E95388DBBFB293FDBF2BC /* PicoSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F4DA0875D68CB8A50573C368E61F8BC /* PicoSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05215D88A01F62B525ABC81F59880DEB /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C6F9D80F6FEC327B071FDB1586C77E1 /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 052731026452AD40E65E87DCF5BF37D2 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = E7C018B37CA0571A66AF691C602CF3E9 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05215D88A01F62B525ABC81F59880DEB /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 389456A7DF76B1A6643347A601988A77 /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 052731026452AD40E65E87DCF5BF37D2 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F10B8B6674550EA000A3ABB3BCA9273 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 052C6452C9F9919E496F077C5D882140 /* GDTCORAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B06AFF3EC775A827456A27ED736220 /* GDTCORAssert.m */; }; 053BA4F3C75D35BCBAA8F8891D611B84 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EC254473080E0BC5D720E02694BCD9B /* animi.h */; settings = {ATTRIBUTES = (Project, ); }; }; 055E3CCCC565B32662B62AEB2687DFD6 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = D3C9CA86A9E13737F97618EBACC89C2E /* dec_clip_tables.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 056F951F776235258C63B1F4A087C3FB /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = F642EA15A2275B13FEFED3820D09E3B7 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 056F951F776235258C63B1F4A087C3FB /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = FDC5BC8B851B9E5FF7B416AB1BDD8C10 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 057FDA20D3830D25C8F9230D8460A02D /* ThreadWheelTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = BBF677FBDA8C4140131823DF762F3B63 /* ThreadWheelTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 058A0E6FB778E47AC2ACEED1729900C5 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 22FFDAA8BCFC22C1488A725107778ACF /* enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 05A2C829317533C074C228C63D55CDC0 /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 2233A3D8AF08DC9CAB0FAE75F534B157 /* ARTRadialGradient.m */; }; + 05A2C829317533C074C228C63D55CDC0 /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 40DA589797B65249F51467C00467339A /* ARTRadialGradient.m */; }; 05A88A58C1245A9C537494AB00CBD729 /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = 4905746AA215AA4A3BA3F59A0905C6B2 /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05B0D839ADEDCA18BCB0342D8850023C /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = C0665594DBA861A8A5EA0DC000489878 /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05B58BF8BBB6FD9B0446C34C9FA2A10F /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 47B3E4F71019572CC50AE7FCEDFCA646 /* BSG_KSString.c */; }; + 05B58BF8BBB6FD9B0446C34C9FA2A10F /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 465454A21A09429BC53A1110206D6B71 /* BSG_KSString.c */; }; 05C1FD03B0C4673F79EC7E77569B14EC /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E4F5BAF1BDD07BC9213845EA158ED176 /* nanopb-dummy.m */; }; 05D0FAA0AE5364F5271A2ED3B96DAABA /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 375C415B4E60AB8C88FDA699432DE2AA /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05D67239AA89DCABE66BC206A4A20DDA /* HazptrUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 18C2278F9B58199F6BD826C6265E25FE /* HazptrUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05E51EA514016A3A30F517E11AFB5DE0 /* AsyncTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A39F9E5B195BC622F6CDFA3E9B5E15E /* 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"; }; }; - 05EE2DF1D5661FA03933D9C8CB868392 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B61E5C9B6EE01109D7A689CCB834B6C4 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 05EE2DF1D5661FA03933D9C8CB868392 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 199009BB4DC631CE1BED656007525A3B /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 05EED5AD8FFA478A9641A7703EFC6674 /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = C5E2630D0D65D057206B8901A4535D5C /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05EEE113DA8195D1A8446E6E0223F87B /* quant.h in Headers */ = {isa = PBXBuildFile; fileRef = F6F359208C18FDEF52F528F96F110D6F /* quant.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06290A0DBEBB396363D9CB31FC2FFA27 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 1287010DACE738C9B6D1C77358A23353 /* RNFetchBlobReqBuilder.m */; }; - 062F8BE5952FAF7F5CF3E6966A337F28 /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B9F7601EED2B0A99FFDA98CF2FA4BA2 /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06401683509D686A0B42E14FBDA9520E /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 47ABC6AB693D34D43108D5C78A31B43F /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06290A0DBEBB396363D9CB31FC2FFA27 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 8972D5894EA23710DC85AAD79723BCC6 /* RNFetchBlobReqBuilder.m */; }; + 062F8BE5952FAF7F5CF3E6966A337F28 /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BBA45778A6D490CC1EDD321DF57F656 /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06401683509D686A0B42E14FBDA9520E /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = E59AAFF2863D30569902D759C7E4886B /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06514FD84CC576BCCE44F89EE61A7F68 /* GCDAsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F0417945AB952A0C44A19AF56A8BCE9 /* GCDAsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 068627D6351492A400D81DA04B4AAEE1 /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 19FE8475B1C7C573050BCE46DB1A637C /* histogram_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06965620DA927215DD8A8F4C9F95EA1F /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = 969F431AB9363BAE3B22BAD82DB788BF /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06C78FC8169996E806BE536269C185CD /* yuv_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 3613A31266D2AD06647090A378878079 /* yuv_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 06DF5876917022BB1943DA78C98F5C18 /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = A321BC88D535F1BAF7B345609D9EDB70 /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06E27BA59BD0058F5FF158F405A1ACCE /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = C8521E86AD33BB0048AABF1AEF30C058 /* de.lproj */; }; - 06F350D91CA33913420F7CD0EB2011A2 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6641C46BF58C0584E90F4ED8952CAB43 /* 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"; }; }; + 06DF5876917022BB1943DA78C98F5C18 /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 02BC12FC7B6F443A4F115B707678242C /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06E27BA59BD0058F5FF158F405A1ACCE /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = AF46CB11B96AE2F376EA3DBCCE72CE3A /* de.lproj */; }; + 06F350D91CA33913420F7CD0EB2011A2 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BA71B3682336787CBEDC68D8B7DEFCD /* 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"; }; }; 0701F05311F4120F2BED97A9A7D492C8 /* FIRInstallationsVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = BEEB210428EF1A8A83AEEDCA25D4C1D1 /* FIRInstallationsVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 07141BDF264104502C0D2041648F7880 /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B31005ABA816DF2BAF8B73B5030CBC2 /* FIRComponentType.m */; }; 074CC255A80214F8215DBF480553FE83 /* RSocketParameters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 929F7FD86388B379182BAB11CDF3D7E7 /* 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"; }; }; @@ -329,234 +329,235 @@ 07912AE1EFEFB82A90F50403C9214FD5 /* Unit.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BD2EBF29EBE11649609A1D87D670C80 /* Unit.h */; settings = {ATTRIBUTES = (Project, ); }; }; 07982ED2F3B097036FF5459A678C428E /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = D90AB6AB994606159C7BA599E9488FFD /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; 07B051735A7659BBD10772A28B34D65D /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9530D384A7DC23895A1EDC9FCE7D0EEF /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 07B8DB35D480E7DBCF68D24F58752B9D /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = F40DAA725D323E04DFE810AE8FC32213 /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0808979C0DB73FB73B17A106FAC5F615 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 89176D7625D1F30283283C735D37A49C /* BugsnagSessionTracker.m */; }; - 0808D3750325945F112AFB99ACC0C87E /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EE38FF38DA559E6478EF3F5E2F17567 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07B8DB35D480E7DBCF68D24F58752B9D /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FDA191D4CCF1F4510BEEA4F4E9F2B67 /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0808979C0DB73FB73B17A106FAC5F615 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D0B357A176559069BF4F07A11BD76F2 /* BugsnagSessionTracker.m */; }; + 0808D3750325945F112AFB99ACC0C87E /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 251536CB04DA819939DE200CBD5BA105 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; 080D996C588B3246A97741FDB942CC79 /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FD3E4CFE5DBDA98213FB9D73FDC4C26 /* GULNSData+zlib.m */; }; 08140CF5CCD3BFD03E8A3EB7AF95ED56 /* FlipperCppBridgingResponder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0AE7D0770D2BE30C5BDABB080AA8E015 /* 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"; }; }; - 081560A0159D441DC9C8AF7CAA6B970E /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A915925BDD8213CB949A2B270F41493 /* ARTGroup.m */; }; + 081560A0159D441DC9C8AF7CAA6B970E /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 52C61D7A22F52E9650234D81BBB72159 /* ARTGroup.m */; }; 081E6B601B49FE4F98631AE9F6594C9F /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 4ADC6A713311A1017493308DF7F5603F /* dec_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 08219D32E74C8630B7462E545B5023E9 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = AD21C48C0E69A04B917E8EF1224C8383 /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08219D32E74C8630B7462E545B5023E9 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C0DFEE7AB0E2E06D08C7A0E58297A01 /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; 082EEA3652F0C7F65F3D9ADC676C1853 /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = F7336868B351AF1E8FF5EE75A11694A0 /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; 083CA8F0059844F316B348C516DC0312 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 335BEEEE056B1F03F417E347AC410F26 /* SDWebImageCacheSerializer.m */; }; 086AF342FFBEEBA94A504AA18CF754E7 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DF954218538FB691AFFF406E45034EA /* 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"; }; }; 086D7D199B167A5E3CC16B2157B3D167 /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7CD3DAF8C6706B52472DB896820BA9F4 /* 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"; }; }; 088071E10BC7E0F7D2AEC4C95E916D41 /* CoreCachedSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A581425163E8074315E70D041B14F97 /* CoreCachedSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; 08910E25B56F73BA1E7C9B35051828EF /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9657C6D381F17DE4F5A6F3996C8AFBEF /* 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"; }; }; - 08C3C9AE073CF278A1B7D04DD0F7EE2F /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BE374AE85600D98349DB55D1038CAF7 /* RCTTypeSafety-dummy.m */; }; + 08C3C9AE073CF278A1B7D04DD0F7EE2F /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 30E068B0B144FCD0EAD039ECE9DB57A8 /* RCTTypeSafety-dummy.m */; }; 0926794C451A43301E518150BBCFF89C /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = 2338BCF400AD9C25F4563792E4535745 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09393C7EFB15B6830B1E24008140B06E /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 6D20B9EE4008AB263B0E263B64819A22 /* es.lproj */; }; - 093CC255BF095A923BF1E04C3B01D945 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = B22B1FCA440606BDC621C87A505EA7DE /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09A61C039CE763C49141845FD89EDF19 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 966DC2802D4A295E40B4A1D7BDAD580E /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09393C7EFB15B6830B1E24008140B06E /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D5A70010BFF9BA939B57367CD2398C01 /* es.lproj */; }; + 093CC255BF095A923BF1E04C3B01D945 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = C64946AD6C95C8CC4F360037CB623723 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09A61C039CE763C49141845FD89EDF19 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = DDBB08E3D181710D8A5354CE16AA64E3 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09BC7875E6D801E8C3A5D78A944B7127 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = 99FA4E2FD25FDCD45F05F85489366E7E /* neon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09BE233E2230EC56C6EA5ECA34C40DC2 /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 742D61A515E6226E5978F5D3AAFAFE59 /* GULLogger.m */; }; 09D23E33AA77BDB3310ED71C6842CE9D /* InlineFunctionRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 63F076E7C50525BFB4FB6EEF79614807 /* InlineFunctionRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09EE5698E226034FE9300AE9751FB97B /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = FBD14A3280D3F0EAC56BEE624043B955 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09F2344CDF2289F7B806ED72CB1E16C9 /* FIRAppAssociationRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = BD6F1B58837C3E18538051C80DBA60F1 /* FIRAppAssociationRegistration.m */; }; - 09F8EE9A887212FC0B2154E979B8E097 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D6E5B64017CA191E21A10500294791C /* UMAppDelegateWrapper.m */; }; + 09F8EE9A887212FC0B2154E979B8E097 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 55E8A6E0210B59074AACE28BDB6B9E52 /* UMAppDelegateWrapper.m */; }; 0A1085D42174CDFD3E5A123DA9241DF7 /* Barrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 269495D53DEF8D3D3EA734E80CEE3BCA /* 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"; }; }; - 0A116EBE1D4A4E64BD686A7187757AAE /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 37CAF81E9E4AA35A161ABCCE6FE90679 /* ARTTextManager.m */; }; - 0A11B03A3AA448536D107B49841C9294 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8D99D9D8C74A860CFC6848B8D6194C9 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 0A116EBE1D4A4E64BD686A7187757AAE /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B54E1D7B3FDC8FE90C21E035DC2B477 /* ARTTextManager.m */; }; + 0A11B03A3AA448536D107B49841C9294 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F4B4CF25B4C47002CC185DC4D991BFD /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 0A12C7C7EEE78E6E740FBBC9B85CCD4A /* FBLPromise+Validate.m in Sources */ = {isa = PBXBuildFile; fileRef = DDA545E47C3E2E70652EB209994B7618 /* FBLPromise+Validate.m */; }; - 0A19BC8153C05DAE2E6905B4DFE5C09D /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 12CB442B630EA66817536E0157E1E4C3 /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0A19BC8153C05DAE2E6905B4DFE5C09D /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EEF847DAF7DFCB10B8D9F2F6AD2C9AB /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 0A2BB595766F80BB96DA17C3497BF549 /* FramedDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B0C45BCE792F8E95FD9ABE893893BC9 /* FramedDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A3C2EAD6FC5025E0BFC557A721CA0DB /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F1A107DBC13DA48B593EB2CB9CC6EAC5 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A57CF4AAC8B981863DD82B40CFAFDD5 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FBD98780BF1CA197F9E5A39E9957DDF /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A6AB2FC349B9616B23309C9BE9FAC2A /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = F77F7871E0D93F4938C41A3CACF11F74 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A7FF47E30F61AFB6AD9CA895EE1A4F9 /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4760EE72B1CEE4B1CC385435319105AD /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A3C2EAD6FC5025E0BFC557A721CA0DB /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E3289749F213D3A834E919489BE3C09C /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A57CF4AAC8B981863DD82B40CFAFDD5 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 131CD649B2B7FE421F563A3FE5F15B97 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A6AB2FC349B9616B23309C9BE9FAC2A /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E4E7A3A90D98C8D9583F48BA556A809 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A7FF47E30F61AFB6AD9CA895EE1A4F9 /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A94BEBCFD78E12A3722A2AA65B282DA0 /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0A92A4EB11AC3149D6C51E87E22A1A5B /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = CC6FEE0F9ACB98303C87C35D1F1395CA /* cost_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0A9A31AAC37516790E0B4F66099E695E /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = DA26ECBAB6E22E26913F1CB258A12791 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A9A31AAC37516790E0B4F66099E695E /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 643C99E95EE10C5CE0A53CA23B7D7076 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0AAB1B87F449356F2FFC7DA7EE5D381F /* da-DK.lproj in Resources */ = {isa = PBXBuildFile; fileRef = FC29260E3B6C1C5EBC8743347383E8F6 /* da-DK.lproj */; }; - 0ACF9654E330F3E4FF25D38913B61A9F /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = 71172134774813FF7BE46C29E82A360E /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0ACF9654E330F3E4FF25D38913B61A9F /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = CC9296090CAECF07215252DE287A9C3A /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0AE130EB96D4454903ADE0BA1969A6CF /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = C921A77EEC440C08EE0B98D5D8EC1CFF /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 0B2CFC4DD49E848F4351E1AD5EFAFABB /* DynamicParser.h in Headers */ = {isa = PBXBuildFile; fileRef = FB2595A08EDC1CF5D9498A7D0C39F163 /* DynamicParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B36C6434B1EBB8AC0D9F69FE4E57190 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 300ACEFA6E05B7FB33C7E3A880C1CCC1 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0B36C6434B1EBB8AC0D9F69FE4E57190 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5C756581AB88D6880122C38CC658BCB0 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 0B3B883A30022727522781E6FFE17758 /* fi.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 561942E67089539146C0C4ACD62F6AE7 /* fi.lproj */; }; - 0B3BEBF1C0EB87ACD74E56CC3FD53110 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A54E4C5A5326743B98E955E26C8CEA2 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B3BEBF1C0EB87ACD74E56CC3FD53110 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = A090CF9C0A7BD1841F9ABBB8AEBDA75F /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0B761B070D881FC68C5737332C9D8036 /* HazptrHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 1571EDF5F318A19407F937B26350F11C /* HazptrHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0B7C39C00D2B040C27544584D750D5AD /* FLEXNetworkTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C6B620F69BC5A02DD5A704A86A2A9DB /* 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"; }; }; 0B9E2306C3BE47E02155DE8E960D6B32 /* GlobalShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C05BD4154F1F65CD1FF9EF9570D1C3FA /* 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"; }; }; - 0BE19A72D028BD88F755C3B801BC567E /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BEB1E302CD049A23057EEA618813119 /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C0611B9E87AFA81DF543508CE12B5FD /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F29C01F0F038B5B6E246B15665C0C07 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C1E401FFDCA511E1D3524CC7B71C1A5 /* RNFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = 57B1EF4537388B47E351FE6E8BE007AE /* RNFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 63761C28DFE094BC78D2A70C600EE1BA /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C551985E8686CC886A539921C3EE668 /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DFE160F16EC7A844A34840BBFE7F713 /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C6E7E44FBB6DEF6DF89EFD85C87ACF1 /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = BE363E764077427D016691742517A4D4 /* 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"; }; }; - 0C8D29707DFA2F60DD8508F64D0E029B /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = 926107E274E6A73190B88493226E1CAF /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BE19A72D028BD88F755C3B801BC567E /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = FAFD364A32A0320AB9E8550CAC48CB22 /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C0611B9E87AFA81DF543508CE12B5FD /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AA5953CEC6B4F9133E614A9B1EDAF92 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C1E401FFDCA511E1D3524CC7B71C1A5 /* RNFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FE10C005ADB64B0306F9E69FE080DBB /* RNFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 198A5250D407D50D33F2AAC0B8048876 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C2C18E15224239E99EFA26C3E1489F5 /* EXAppleAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = 40DD3FADDC87FB94BC8C59709E9960A3 /* EXAppleAuthentication.m */; }; + 0C551985E8686CC886A539921C3EE668 /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = AF1F6FD35CBC3BA539E068BB68FA6300 /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C6E7E44FBB6DEF6DF89EFD85C87ACF1 /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A1C7E7294D784E84D6A63A4ADF99834 /* 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"; }; }; + 0C8D29707DFA2F60DD8508F64D0E029B /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = BEDD8EF93D0127ED2A373DF630F9E051 /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0CA7C850CA1800B14065B9E58A5ACC80 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8543FE630989B4DB0AFAF777BE0ABA77 /* 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"; }; }; 0CDE1736E199F42AF437784B3351CE31 /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C89CA7C949CC2297DDA1B574D639836 /* FBLPromise+Async.m */; }; 0CF17F9266055A1FD1CFF6F2C328C2AE /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D03B39B6700DD31B3083BB12D6064E63 /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CF24CC6BEAF9BD3438449F7DA23FD52 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E4C589314FD6A8D0ED5BC79549896F1E /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CF24CC6BEAF9BD3438449F7DA23FD52 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A400B04CC4314064FFD73A023EE9C4D /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D3C93CF0F9F2583678EB02BE49EB077 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = D20E73799E6FA24169DD964E9C5688F4 /* SDImageCoderHelper.m */; }; 0D4C1FE8B07E8FBD0752A7EED502914E /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = 751628458EF5455CEE796DAA2D6CA590 /* FBLPromise+Recover.m */; }; - 0D58E16C6814991908886D21A86477D3 /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B7748EB32FDE490DEEE86DEF49D1FCA /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D58E16C6814991908886D21A86477D3 /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DF7167F2BF896C12BBCF5BD8C375A50C /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D73DDAB5065DADE674ED5E85CC65AC1 /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 126CB7FE81224259DFF1F3CE6B1112D3 /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D7E2BB25F84CFE2561BE6FCCF597EF7 /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 845E6849A4D3BBECFCA6E87156A91290 /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0DC96FDEBC06F1C8DCE2EC4A1B158A2D /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B38F44E67E4A3E8B7610532B8694EC3 /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0DDEA131FBC532835F8E259FD7654AD2 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 09DED66FCFC8C3AAC38BEDE2A70464FD /* en.lproj */; }; 0DE3744A7455AAFA32B39C9ADDAD79D7 /* FIRInstallationsStoredItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 75D8EC75098C775B0B1ED266E0A8BD12 /* FIRInstallationsStoredItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0DFDE05F3E991B70E27D2F6A9C2D5017 /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 01AF6B3F7CCE670710F45E8B5157C55F /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0DFE7F3D28E42E2B88EDB705DC378B48 /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E11A137B30F437BBAD3C171706E893F /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0DFE7F3D28E42E2B88EDB705DC378B48 /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D83CB939607381669FBAA5BC805FFD91 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E0611504CD5D881E5FCB9B5E278D6E7 /* MicroLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF88A96F763DC2A25912748ED11D25A2 /* 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"; }; }; 0E103FDA6751439951C099EB863C4E9C /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 260248C5F1AF9B9BD1145497E4B7F701 /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E1047E03A54517A95C80F04356C0BAC /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = FC9BCDA28BEB23EC13E2DC0BD9A1CD6E /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E1B3276561F7EB341FA907EB1A86F04 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = 61D5E721D9C1729F310815E536BD7612 /* upsampling.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0E1E58EAA62AD31323C41A2EE1F285A6 /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CD7A9462008C27F5CF0A2FDA1F655E8 /* RNNotificationUtils.m */; }; + 0E1E58EAA62AD31323C41A2EE1F285A6 /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 069507335A033B9D3A7F90B470BDB266 /* RNNotificationUtils.m */; }; 0E2055CD03A9F6FE1EF61816FD390A1B /* AsyncUDPSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AC61BE0BDDF573058CD9FE666F12A72 /* AsyncUDPSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E218A685D54E67E63B15EE57AF9B96C /* TOCropViewControllerTransitioning.h in Headers */ = {isa = PBXBuildFile; fileRef = E6746AFA25280F0F2986D8BF94897CF5 /* TOCropViewControllerTransitioning.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E33C0EF981DEF5586AD04AD1C10697A /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FA0759551B0F3AA16FA22A8A183E46D /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E33C0EF981DEF5586AD04AD1C10697A /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 795879AD145A8FC49CE63D2F23335CD9 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E490E89EDF3A16691A550F3B3D8577C /* RSocketParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = C28867F59EBDB868E877DA0C1C5D37F5 /* RSocketParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E5B539F7CFE7C18605CA862F87C9FB2 /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC9F0A1EE59E920FB929308754C535E /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E6BEE45076F221AF9B746A5CB621F93 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 7D8A8FD62F6DD9E281B25AD6DCEFA865 /* es.lproj */; }; 0E6CDDD3662E67C0C8965B8F0CE41EA6 /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = D3B758A31DB1B688B14C39079DD67BE6 /* FBLPromise+Do.m */; }; 0EA0900779E7C8425C830DB6CAAD784A /* TOActivityCroppedImageProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = B92C2FEF3E68EBA0C79B2D9403F591DD /* TOActivityCroppedImageProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EFCA31C89CB2815C262F61063472180 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D5AB6C21D7AB113125EDF1CA73380A64 /* QBAlbumsViewController.m */; }; + 0EFCA31C89CB2815C262F61063472180 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7427F37FF19E195E55A9669219AD60B2 /* QBAlbumsViewController.m */; }; 0F04757773EB94AFA230379602288218 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 72EE23C58260255B1D192AE09CDFFD44 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F0C10FF1C8CA51216269475E4076D75 /* Framer.h in Headers */ = {isa = PBXBuildFile; fileRef = B58E61992108763157F0715297852B84 /* Framer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F112286F11B894F72C66676A5BAC325 /* SDWebImageWebPCoder-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FD15DBC020C66E3FA510D822817AE79 /* SDWebImageWebPCoder-dummy.m */; }; 0F2C29D27A4A81991C787404478AF099 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F49593BAECB2E8DA1B8BA33E680366E /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F3F32D5615E2F8623E48BB225FD09D8 /* StreamResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3ED7D50C2A4F1D8ED397EF40EB5ED71F /* 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"; }; }; - 0F5A161C459E57546E32BC3253B76F55 /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = BAFD0ECB19C5ABDD6DCF5CEC5348BA25 /* BSG_RFC3339DateTool.m */; }; - 0F7FEC05F0A20D8341402116F272EE20 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 80268938CD89348C2550E423A921845F /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F91563346AE26C4079DA42B08C23BCE /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 35C2E34985CFA9E525EAE37A33CF8B17 /* 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"; }; }; + 0F5A161C459E57546E32BC3253B76F55 /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = E0F9503131ACB8C4FD70E76CA14C2EF5 /* BSG_RFC3339DateTool.m */; }; + 0F7FEC05F0A20D8341402116F272EE20 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F3A9328D29018CCFA541797D682CE25 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F91563346AE26C4079DA42B08C23BCE /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A7AD95B78F3A4DF14DA2B010AF9E31F /* 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"; }; }; 0F96B9773F1A3A400AF5F4BE07F633F8 /* ms.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 052E73AD9356D481A265F7E0FAA85B84 /* ms.lproj */; }; 0F9C7819344334F86A89420E15C953C6 /* ThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 845577FEF371C2976581AA6142746A7E /* ThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FA9C97403FEF053C862AA37D7419213 /* GDTCORLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = B19A1640FAD31E75BB1B93700D7F0729 /* GDTCORLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FB00882D8BB26D52DB32A3B8F1C4761 /* AtomicRef.h in Headers */ = {isa = PBXBuildFile; fileRef = BEEC5B627C27430789D52F34CC40A3D1 /* AtomicRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FC44EF6F7841689F51373C18CF9A97E /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BB0CC49417FFC7DF376BAC17A7926B3A /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FC44EF6F7841689F51373C18CF9A97E /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4045917217D1231943C756B745F1F8E7 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FD0BF71F29CDFAC3DBE15624237654C /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CDCCF6765F48984B05B95D24E8940C4 /* 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"; }; }; - 0FDDB9156FB0D0097B471318449E417D /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FFE70B961CBDF7B7F2617C1ADD9EC53 /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FDDB9156FB0D0097B471318449E417D /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CB1410A921E227EA20B80E650DF64E8 /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FE0697F33D7E0B7DA1149A396065DD3 /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F5FCC2B0B2354A005BA4E4CDA38589C /* FBLPromise+Race.m */; }; 0FF737393D13C998B2E7B85E02167777 /* SSLContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 35DA5D83B94E2AAAB00EDCEBBBE69FA0 /* SSLContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; 10188187C279960B337C15DCD889FF13 /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 3947BDBB1A4AD14C3E700D8630CFBF7D /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; 10483AA4D71ADE88023480FB5094E267 /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = 46F3B9E5415F9B82E09D9820D439DEDE /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 106584F91C10E1378D0F44CA8BE92CA4 /* RCTDataRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 74CA5548EB7484D5BC5B01F58002F1ED /* 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"; }; }; - 1078F8A5ABD7343177E99B9FD3D71932 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DE2311C8B2580FDCA375908C56C7D36 /* React-jsinspector-dummy.m */; }; - 1092BB8011776EF67080DC8649C68F22 /* RNFirebaseAdMobRewardedVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = FC6AADDE6E0BF94617EDAB11BCFEB1E1 /* RNFirebaseAdMobRewardedVideo.m */; }; - 109C094CA57B73B0016EECB32E81E246 /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EC2A2B4FB3B75643522D72ADC35B110 /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 106584F91C10E1378D0F44CA8BE92CA4 /* RCTDataRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 63CA347E5BAE58E1D36EB34AFEE1CFB0 /* 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"; }; }; + 1078F8A5ABD7343177E99B9FD3D71932 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C447C2F56F60AB7FBB7B476E7BE16CF5 /* React-jsinspector-dummy.m */; }; + 1092BB8011776EF67080DC8649C68F22 /* RNFirebaseAdMobRewardedVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 218422C5163CBAD686311A3CF0701DF7 /* RNFirebaseAdMobRewardedVideo.m */; }; + 109C094CA57B73B0016EECB32E81E246 /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 19EB35F2F254B311138218F74DE97208 /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 10C1021B42BE6200A4E324C3539F9702 /* RSocketRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A694EE5ED5D9BAD6323EE82ACBC46FC /* 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"; }; }; - 10C864D268080AA0C52419676048CC8C /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = FD263E2AEE4F6B150F6D1440DE23059C /* 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"; }; }; - 10D68B02FDF05C99237E067F9918509D /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CD1B6365369EEA9B680CF4D1924340D /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10E796A0A017F392E5917E7B1A58C69E /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 474DB0F722611816328CC014AB9BCF63 /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 110686C3B9BFABED7EF510599B8F4BA4 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = A77771380B034725731C6ED12A47FB68 /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10C864D268080AA0C52419676048CC8C /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = D88A67B31EF4DDFDB2555341940D783D /* 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"; }; }; + 10D68B02FDF05C99237E067F9918509D /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = E2A2C3E229486D9A05F7BD609DCC9FF1 /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10E796A0A017F392E5917E7B1A58C69E /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4E79E7C4475819BE6183F64D6F78755E /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 110686C3B9BFABED7EF510599B8F4BA4 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AC743AAF093BEA69296F8D19A4A63DB /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; 110DB0771E91F52B6FD3EAD5AF30123D /* RSocketStateMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = 29036740DCDF6F5940B8B339551BDCC7 /* RSocketStateMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 111D765C73417F5F3D9DB4A549BF16B7 /* EXLocalAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 75CAF7581560F9B82217BAE19818DA5B /* EXLocalAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 111D765C73417F5F3D9DB4A549BF16B7 /* EXLocalAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 983C8D4D1F255DEB3F4CD2C3EA0D1AD8 /* EXLocalAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11712F28C8D94966B4717571C5B4101C /* FlatCombiningPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 495EEE7EC9CC941B2ED910F264DA5B2A /* FlatCombiningPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11822C9340B8CA71658C6217849DCF22 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D9526635D048D516E86BDC0C54F35F7 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 118ECA72611CB2FD2EEC1AC53D8E029C /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 7650710798CC06A03542A2EC3C4AA111 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11B2F08DBB908C134F7294568F22A901 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5D469DF24AAB3A60D4D2DC73D7157DC /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 11822C9340B8CA71658C6217849DCF22 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D93AE0391E8B04BF035C5947E9A419FE /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 118ECA72611CB2FD2EEC1AC53D8E029C /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 44A77B66CB563D3BB5FF97B8CBFEC42F /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11B2F08DBB908C134F7294568F22A901 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84B6CA5103C86DFBDF45453A429A0B28 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 11BC921BEE2F3EE5F764D72CC571FF96 /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 580CED7C9849AC631ED1934006A0AB0A /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11BCEFCA89FAE791FE7195C154A8D927 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = EDEE3C93966A5F017F71513355D2C5CA /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11BCEFCA89FAE791FE7195C154A8D927 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = EB7AC2F1B7531D26A22F4D278FE0599D /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11CEE85468C674A4EBCBA4551A6FFB4A /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C45340E1BD37FF39D4D1428478240EFF /* SDImageCache.m */; }; - 11D89A7B5D486F75609ABF6268F29E7A /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 73C2342444562F5C84331C25526B734F /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11D90221E44911334524BF86B2AD4A2F /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = B21B19C2FBF0A1E6E64AA4E87F29E2F7 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11FCAA1D9958EC286034E638CD07CDF1 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = D274D775B4DD4A1A139EF425C33D2B03 /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 11D89A7B5D486F75609ABF6268F29E7A /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C4E83823B124CE4BEA4F71B475706AD /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11D90221E44911334524BF86B2AD4A2F /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = D0D3A712CE905DA36F783872BBCC9C90 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11FCAA1D9958EC286034E638CD07CDF1 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = BE326A8BBAF4AE76275FB5B30C2D2869 /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 120EE91B70D7148A00CE2E064E96F61E /* SKApplicationDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = C5BBCD54998E8FB091B5DCBC5FD34392 /* 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"; }; }; - 12478C3DEA4C049CB9A2CA1CD20C89DA /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 945E2FE17CD93180418682D517F48A18 /* rn-extensions-share-dummy.m */; }; + 12478C3DEA4C049CB9A2CA1CD20C89DA /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DA85E657E1A04BF36A3D6719725246AA /* rn-extensions-share-dummy.m */; }; 125A7DA5E0AA6CD38E879293F84F4CA0 /* Flowables.h in Headers */ = {isa = PBXBuildFile; fileRef = A08107B4566B1C3F3F66FE49898E538F /* Flowables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1269AF0F682F600A26863DF81E886937 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E8D6A4BABB59CC73FA2DA3B0A230C3DE /* RNPushKitEventHandler.m */; }; - 126F40666E812A4A6E90817FF328B49D /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 332DA0451C9A2BC6F61E6CC609379D26 /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1269AF0F682F600A26863DF81E886937 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C69A4C9BEE6C6DB95D331757A1B845D /* RNPushKitEventHandler.m */; }; + 126F40666E812A4A6E90817FF328B49D /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EEDA8D0F3FF14A8194A586EB92E3B3D /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; 127BEB986815F397903637433E85997C /* FireAndForgetBasedFlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = ADC0B004CF882C26B697349490222BF1 /* FireAndForgetBasedFlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 12D59B7431F1E2D74FD4A69383EB1BC9 /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = A8F3ABC40B91A396D7EE15FF8E0B8786 /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; 12EF2DADF1312FD3553930431F86DA5D /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 14DE5E20048BA83B6CF49A1811EE2017 /* SDWebImageDownloaderDecryptor.m */; }; 13626B3E229D5D66AF7559F0708DD7B3 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = E179F2A5B71E45A8909EB9C9A0471081 /* SDImageAPNGCoder.m */; }; 137F2AB84ACCC13A5B70189CC62DA277 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A9C870E415384C1941E5FEE0F27CBD9 /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 137FF610872B1C182541C2262022B77B /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9420282DA92F21A459E07B57C79802C5 /* SDWeakProxy.m */; }; - 1391B4C0CB6B3D86D5D0A2E36A67036A /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DED9F8FF68789EA26962FF97F09D3BB /* React-RCTText-dummy.m */; }; + 1391B4C0CB6B3D86D5D0A2E36A67036A /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 94B1495E7AC6173D77EE9923CB0C47DD /* React-RCTText-dummy.m */; }; 13D7C34FEC43A4568FD21A4221A2C1EC /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = FF399EC9637444DDFFBABC8692C8FA70 /* FBLPromise+Wrap.m */; }; - 13DDFBBAA84ACC91CDC2A5E12778DCD9 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 864CF5DDB5CF30FBF99B6687CAFAE43D /* 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"; }; }; + 13DDFBBAA84ACC91CDC2A5E12778DCD9 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BAB32DAC1CCB947DB9B0F1CACD9FFADE /* 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"; }; }; 13DE1BD1D694029E6A9CA5A6422D1297 /* EDFThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4EF993D3A2FE6B149FDC304C80E5ABF4 /* 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"; }; }; - 141090299A28682B48401EF4D7F455FC /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2091BB47DBE48DD2A68BBDE3A3632E4F /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14324B21AF8BD25DF60EDC4A614E67DA /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = BF32DA60165813B0B946ADA23D419902 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 143BDF277DE6C458540A99AB32A6912A /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 55E40C474A1B8A188FA0EBC0D7B1454C /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14534CCC1C7F8E7B84FD7E8CE2AB31F1 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DD5D80D7ADF5C069B80C7F7074695F7 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 141090299A28682B48401EF4D7F455FC /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 90B5D4FA2839C90675EB5D0AAA62BFF8 /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14324B21AF8BD25DF60EDC4A614E67DA /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 25551C2EFCC1B8A180FFC6ED5CACC156 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 143BDF277DE6C458540A99AB32A6912A /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 750F7D35BE6E5845F73D68C57008522E /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14534CCC1C7F8E7B84FD7E8CE2AB31F1 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A37715BF54D25621CFB1E49A366C553C /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14595B9424B26FA78E6DD72747352F72 /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A4D65433A1D40E254CA23F0BC3B67C7 /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; 145B0569F3F8BCD67D8BBF5DD7E6EB72 /* EventBaseLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 85817BE98ECD2825C99892444497E8B6 /* EventBaseLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14728816ACF61C96545F414F980F4B33 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 91741A8C0473252C0B3C652A5EDF7A50 /* SDWebImageCompat.m */; }; 1473175D9D91F3FAA6EFE18B305D6E38 /* FKPortForwardingServer.m in Sources */ = {isa = PBXBuildFile; fileRef = D7FF45630AF1D4E6C1BBF01347A7435C /* 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"; }; }; - 1479BA84B9B30E6D9879CA6C0135D930 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BAADF67C2659DA3D7FBB0D06D51FE509 /* EXVideoPlayerViewController.m */; }; + 1479BA84B9B30E6D9879CA6C0135D930 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F40B52FC2DFDB13480B387C4F29CA0F /* EXVideoPlayerViewController.m */; }; 1487B1D1AEDC852BABA57CD71F64AA21 /* SpookyHashV1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F46F0D000E791175C14D642397F9E427 /* 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"; }; }; 14A3CA4B77271ED4415356A1FBA7362F /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = CD451FAF7D1425FB8F7DC7D6C1EB7DE6 /* dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14C3DC80022ED8ACA9D4F4532F065F24 /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B8FB29F6AC044354596468EB0E63CFD /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14C3DC80022ED8ACA9D4F4532F065F24 /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 17BC9E5C4DEB82B74B5BFC4E7C56357F /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14CAFF1ED4661468AB0080B8A886439A /* GDTCORPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3121F4E39E2FDCA07C70F743382E9D1D /* GDTCORPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14F4CBB8353E78750FBA45D556C32E23 /* AsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CA4586504E0FD172DD164A3A4F5FD53 /* AsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14F8EC0D2510CFA0366BA3D4E3223CE7 /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B4693B820DF65291800F0BB5201F2BC /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 150EB838BF663A71D17BB3DB6B3E97E3 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CE51992B18782F5420C05D7F43A1DC36 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14F8EC0D2510CFA0366BA3D4E3223CE7 /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 50AC756E0E949F216873FC9F7F3C7DF6 /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 150EB838BF663A71D17BB3DB6B3E97E3 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F626CA309CF77982C5504E2DAD7F257D /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 150F04B8F2DE014340CA3EABEF23B9AF /* SSLOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 995E20B019FCA48F1AA5D5A22B876F40 /* 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"; }; }; - 152271A7580B47DB9B37189F7ED4277E /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D052842F034339DF5D22E941A053F44 /* ARTLinearGradient.m */; }; + 152271A7580B47DB9B37189F7ED4277E /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = CE77A43CB054B9B1F4219449FA68BD3D /* ARTLinearGradient.m */; }; 1545F3BAB2FDEE69BA16660BB26F0F86 /* TOCropOverlayView.m in Sources */ = {isa = PBXBuildFile; fileRef = D6144B6738B0D9368281C946956BD2E3 /* TOCropOverlayView.m */; }; - 1550252FA1729815646281BF830A708A /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0841B0DCBAE83C09DAADCF0C30099F81 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1550252FA1729815646281BF830A708A /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E9324CC0326A8408FF7A078995E113D /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 15619A9FEFEB4C7FBEB38264BCF2F170 /* SysTime.h in Headers */ = {isa = PBXBuildFile; fileRef = 5777A47CB1785ED141BBA4A97C5ED417 /* SysTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 156647B23C14443AFBF903E33BCA6F6D /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = 98227A55A726EDD844059C5D468D934D /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 156647B23C14443AFBF903E33BCA6F6D /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = C5CA0AEF5EA89992EB0B35EE86E02AA7 /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1570CDD55121E52EEF123C763B2B0B4F /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = D262E98E9B660146EE69681B508C5A32 /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1578046795E51ADF624F9E6A5C60939A /* FIRInstallationsVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = E48B59569F94F2DB402094237B30567E /* FIRInstallationsVersion.m */; }; 157804CF2C9474129EA1324545E3ACA6 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = A969579433C9A90BAA8A78856842E154 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1583C4F32B16836112179DB8401EDBC4 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = B08E0FD4224D3E61C8C95FFF48F334F7 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1583C4F32B16836112179DB8401EDBC4 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = CDBD8119ABE1F1E9D8EC59A46B8188D7 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; 159E6CC104E3A31FD10E4BFF4D2B6910 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 53339968D7BE0B7483D50FAB1177B806 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15AC2FF021D7C7EEC38C290FAAAF3CD8 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = CF6F06D1D70A1A6CC315B45EFF51E30F /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 15D5FFEEA2DFB87AC3BAE1F6656DB482 /* MessageQueueThreadCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B672245AD793F1274302C0FE517E6B43 /* MessageQueueThreadCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 15AC2FF021D7C7EEC38C290FAAAF3CD8 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = E5D173BDA9C7CE1F83CBB562AED745EC /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 15D5FFEEA2DFB87AC3BAE1F6656DB482 /* MessageQueueThreadCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E2DDA6DC942834BBBE14643AF830A50A /* MessageQueueThreadCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 15D7CCF59D45A8AEB4224BD291FC9910 /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = BD7D6AE70B01DD0DDBC246F0184D8560 /* huffman_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 15FA0CEC28541CA4EF930A1163CEAB50 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = DC984D11F480F93BF6505E6A2FE9E073 /* lossless_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 162716417CF9DC78508EB8DC805963D1 /* BugsnagPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = FF45BAC34B8B59C677362E89BB9FAF29 /* BugsnagPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1658E2D03BFE5D27F4C7FB78370F5289 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 29AEF47D2DDBC9C79C53A60A730C0E32 /* RNPushKit.m */; }; + 162716417CF9DC78508EB8DC805963D1 /* BugsnagPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 5856E498F87DC64E56AF486736B65248 /* BugsnagPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1658E2D03BFE5D27F4C7FB78370F5289 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = E20B1B67C0A60279B2E2E8D87D79E25B /* RNPushKit.m */; }; 1677C6E959A147929A1E36ADE31AB595 /* SKEnvironmentVariables.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E8037656A7EA6390C835AFF7A2A5A14 /* SKEnvironmentVariables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 167A2CA62B562DC4614D643C1742A81A /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FF143363146A1A676B6090C46F850DE1 /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = BC8AFDC2D28A94A4DBA016A94752A911 /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 167A2CA62B562DC4614D643C1742A81A /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E7721F7CEB4EB662B6BCEA76FD28E5C /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = CFC9523B63CD897F2AB2DCE4C52B265E /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 168E0D6A2004B4AB71BDC7A0FD126EEC /* FrameFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 679C3B0E29078B260151C3AA2C69F65A /* FrameFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16B79B17961B6E6845CA4D610C59DDE5 /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AC035A824477CCE1D8F381072FC3974F /* ARTNodeManager.m */; }; + 16B79B17961B6E6845CA4D610C59DDE5 /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 653690A988FDAE65DF8631ABF83513FB /* ARTNodeManager.m */; }; 16C5D991F7D3833068C8F6892F59DAE2 /* MemoryMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = 920319A488C3EE7D3A4B0C7195B6A0C0 /* MemoryMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1727491FC9D04CA1C6CBAF916FE3693C /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 266DE4D7452FEA4F243F95332F75B2AD /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 172DA40FD34F98F60ADDE511B6C70309 /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4880F7901F9462D4EEEE3B8586CAF73E /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1727491FC9D04CA1C6CBAF916FE3693C /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 495A5EEC39F246A0D653BAFDC490350C /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 172DA40FD34F98F60ADDE511B6C70309 /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 91D367B3158E8031400E77558EF77B03 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 173644F783112230316D4E6FCC53ED4A /* ErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = C86410DA5B635FCD1418EACF241E3676 /* ErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17368940CAE03FB9904A5D69CFBC3DC8 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = 0017FB47E14E5B32E82A90381435D24E /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 173EFBD9209646E1A705B053082C9F6F /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 80958931E5FA592699C3A969DDFF51FC /* REAClockNodes.m */; }; + 17368940CAE03FB9904A5D69CFBC3DC8 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = D6C4E57C2A32AB291E71C5C57F0003C6 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 173EFBD9209646E1A705B053082C9F6F /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D5395056415CAF584F742E8375FDA75 /* REAClockNodes.m */; }; 17473E80FC0107BF0A8C72CFFEAF8603 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = B5D873AC862E6783398AD8670416FD94 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1764DAAB45EFB47EFCEBF09C636D8196 /* Codel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DFD951B4A6BEB2BEF8B43E5F401C7D90 /* 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"; }; }; 177039A182568496EEAD8B000C4CB5EF /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = F300B2D3E7E50E8150F6ACF8E3324950 /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; 179E47C6D3FDEF2F8548AAF3B8E7D75A /* IOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C63A6A47981F29DEF5709746C0FEB1A3 /* IOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 17C2BEF174A99D7A9963AFC14B2D9E10 /* ObservableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DE4C9AF78A0FDEAEAC5F4679666933F /* ObservableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17C9F63079A7777BDF392197B7DAF65F /* RNCSafeAreaViewEdges.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B33829DED995B050E99525F11AF293D /* RNCSafeAreaViewEdges.m */; }; - 17F2E42F3EF6AF5DBED785E7C1DC8143 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6388C11E37EC7C26229536931F89AB52 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17C9F63079A7777BDF392197B7DAF65F /* RNCSafeAreaViewEdges.m in Sources */ = {isa = PBXBuildFile; fileRef = B86E9D751996B3935492481335FA6C60 /* RNCSafeAreaViewEdges.m */; }; + 17F2E42F3EF6AF5DBED785E7C1DC8143 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B6A582F34B9B493FF15016EE89BE48F /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 17F5E0FB74E7BD32CDACDC8F988CA5B7 /* SKIOSNetworkAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 93F12EF4B42E7A70C9D5CEE10F03CBDC /* 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"; }; }; - 180E6619D4E6F12EFB3E025429C35BDF /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B70A44246ABB7757F1F1344C2E65CAD /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1832399A5D86191FBC62039FAA886F24 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = DA21EB215CBA12D421296269FD826F2D /* EXWebBrowser.m */; }; - 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F3A1AA4799D64BC0CD42833FEA073A0 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 180E6619D4E6F12EFB3E025429C35BDF /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = B9C741BBFDA15841A9940FD832CA71D0 /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1832399A5D86191FBC62039FAA886F24 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B5B25E03A4B03627DAF31A4398E5009 /* EXWebBrowser.m */; }; + 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AEC85FB0ECEB95C270BBC108B611442 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1875CFDC099AD0787A9C25318392EA17 /* TypedIOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = E4D66E1F0C0812B3142D37E9D4700232 /* TypedIOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1883A6926C1940FB4951E1616CC42E9F /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 559BBC19F2C72D1E5847FE12880CC350 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 189B638C3899F769A08E0DE1EFB64FB3 /* EXRemoteNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A98CFD13FCCF4E8B8421BD34D9821CB /* EXRemoteNotificationPermissionRequester.m */; }; + 1883A6926C1940FB4951E1616CC42E9F /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 8115FE918D09220F2DE70FDF0B87A2E1 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 189B638C3899F769A08E0DE1EFB64FB3 /* EXRemoteNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C17DAEB767685E151CBEEE677106E5A /* EXRemoteNotificationPermissionRequester.m */; }; 18A77E5A2082C7E3C408C56CA002C905 /* FlipperCppWrapperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = ADE57F6DEE2F506A738387E8BB3FCB5A /* FlipperCppWrapperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18B99705036ECD1F33913244C135B90A /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = A94F4E5A120213DFCCBC4CF89D839456 /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18B99705036ECD1F33913244C135B90A /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 5024867E4249A0B59A14EEC601A826C8 /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; 18C92F2E7DE02C4F5158C71F487EDC11 /* RSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = E5003F41F544CB231A516A7F623B3AE6 /* RSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18CCDA25764FFFE7805A2F391D54BD80 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 243500BCBB61324A1989B60D21E1E475 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18CCDA25764FFFE7805A2F391D54BD80 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 67F39C23F14E1B6B3DD1CDCE99A24B17 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1902EBB8C42BEB7A31086863B86BE089 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 50F122E5AEEB0232B93BD906033A1B59 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 191ED4B1AD846F05B02798563A781F70 /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = AEACA277E79E36A282E3096230EDE338 /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 192BA926848E9D9219AEBB2DEA42A399 /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A4BC56FF6FFDACFE4B24DE4555356F2B /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 192BA926848E9D9219AEBB2DEA42A399 /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 995AC1B7D0FFC307FBDE42396BEC7495 /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19592F25B82235131D6A91618F62FC7B /* Throughput.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E296A829E3A7823F8E2B5E6FDEA9C7C /* Throughput.h */; settings = {ATTRIBUTES = (Project, ); }; }; 196ECC69DF946B7C4054EBA6F7889BAC /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F0E4A6A2028ED2E241F2C7F4B7F2627 /* GoogleUtilities-dummy.m */; }; 197BAE778D92018BC73EC6A9A055401A /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 10814B74CDE15DC6EB1F5120B83AF3C0 /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19912572D88D09628C2942291E7C9ED0 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = EFA3675606B15D277BA608131C2B6151 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19A4C2DB3EBA77982E77271C69AB7543 /* FlipperConnectionManagerImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 735A6137D06816E5C6E0C1C09CDD1049 /* 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"; }; }; - 19A911A0B7F6FE7C06C59E9DBD538976 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FBAA376761268B02C2068DAAFA0E18E /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19A911A0B7F6FE7C06C59E9DBD538976 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = CFF32CC3D0FB184C73F3C51E065F5D86 /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19B3BC4E2828FB30D6FE19E66BBBC724 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C7F0E0ABB3CCAD83667042C8771E973 /* token_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 19BB37501E60552D724E980C463122B9 /* SocketFastOpen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0C278AB3E6FCF15F4728074C278D384B /* 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"; }; }; 19BB6A5959515A1DBDDC1B41C2E63739 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = FBCD2C9820EF885E9D7871FE7CCEF998 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19D4365486925B686D119895F21414F7 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F4E46F906C35AFCA50D74860A1A755E /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19D4365486925B686D119895F21414F7 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3181EBFF3AA9E8E21FE1CB080DDF96F4 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19EBAFFF4F7BB44B99B4E5EA6F2FC4A9 /* RequestResponseResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 745220E98E7B8E0EC647E582DC596550 /* RequestResponseResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A17875330ECFBD30A65210BDF5E8820 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 11B2CD6FEA433142CF2642FD63D646A7 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A1BCE8EEFEE011440836122D86B6653 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = E11917D25C233EF2C370315C25703C6E /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A17875330ECFBD30A65210BDF5E8820 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3636F14631625280E28D82BACF327AEB /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A1BCE8EEFEE011440836122D86B6653 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 411C77468EFAC449BC05F4BE98E07F71 /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1A1FAB80AB5646F6BA23973871D037EA /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = AFFBFACE5060F34C7DE183AB5C26E5F0 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1A34D3102ACF234F346A5475B6BF1CB3 /* Stdlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 179EE663681A5C6AC6022428A4F16E0D /* 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"; }; }; 1A3FDE33AD424E36E91196E972FCC4CF /* InlineExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F794A50F04C838621170BC15768D7CD7 /* 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"; }; }; 1A9191026A065A4591600142C46139A3 /* AtomicUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 40101A6123815377203D40D4392D585A /* AtomicUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A91DAC8DA3EBEAA0D5111513D568D69 /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9929E6284F7820395CD5D64BE7CF593D /* RNUserDefaults-dummy.m */; }; + 1A91DAC8DA3EBEAA0D5111513D568D69 /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D25D1E1BBC70B6001EA6BA3DC4F722CA /* RNUserDefaults-dummy.m */; }; 1ABA2B507962FB92E51A2CA70A819741 /* FIRErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = 60F75F85D0E7CDC5F7A2C4E6A07D617C /* FIRErrors.m */; }; - 1ABD61549684E693C9ABD854DE580471 /* EXLocalAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = 07AA4BD17AFAD621804CD03BAE1CF973 /* EXLocalAuthentication.m */; }; - 1AFB7660AED3CB914CF01D42131CECAD /* RNFirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 96617C36F05D41CC081BEFC02F9359C6 /* RNFirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B10D25B28351FF12A8C17090C5309B3 /* RNFirebaseMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C1880B513634EA016258921EE8E14A8 /* RNFirebaseMessaging.m */; }; - 1B51EB05FFD0750C4FE9B4A590CAFDD3 /* RCTRefreshableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 654BD82E2D1F44FC0B5EC15518EAADBC /* RCTRefreshableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1ABD61549684E693C9ABD854DE580471 /* EXLocalAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = 1210196EDCC2368A83CE532E53CAB073 /* EXLocalAuthentication.m */; }; + 1AFB7660AED3CB914CF01D42131CECAD /* RNFirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9D4A28059892E242284CB4F0ABA042 /* RNFirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B10D25B28351FF12A8C17090C5309B3 /* RNFirebaseMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = 1754C542BA03C7EB47091AA16D3D4B49 /* RNFirebaseMessaging.m */; }; + 1B51EB05FFD0750C4FE9B4A590CAFDD3 /* RCTRefreshableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = BDB692241C92CA225252AEABAEC15D9F /* RCTRefreshableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B55112F88E36F4CAD2006CB5FE14D26 /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 539C672DA8001551E03AE7077FE7900F /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B5CF4A390128D31E6B3DDD066E38DA3 /* FKUserDefaultsPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = CA1BDA86D0A8653DBA14BB9384509296 /* FKUserDefaultsPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B7460A41AE9C572291675EBBA73DBF3 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 667CD6E0621A6A22626D17C1FC4193F5 /* UMViewManager.m */; }; + 1B7460A41AE9C572291675EBBA73DBF3 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 12FC96FD85B0EE6C53FFF770B8B474F5 /* UMViewManager.m */; }; 1B7603450F5EBB7D2C05C7FBBEC26D72 /* RSocketServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 70F368B9704E829BF6802BDBB1AD5E26 /* RSocketServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B794ED054CB3A6B44BA360A30EEC849 /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = BCC8BFB1CF351BF5C6EF84BA049AE607 /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B7CFF9E58522F2A4D6D36C5020D8DAE /* HazptrThrLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F3B48A53788928257D4F770E7F7A634 /* HazptrThrLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -564,219 +565,218 @@ 1BA74AE91BF42207C276B02BBC24531C /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = C2AC929E8A0A14F84960B40BC04E3EDF /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1BB7DF35DA8BC3E5E76D9ADB62B3BAC6 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 041A3AB9D3FA721EE3FA6A1C010E3C97 /* lossless_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 1BBBA89E7263809B22A2986294845A23 /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = 266067ADABDCA6C5E9BB18B919AE8432 /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BF23C6D94BC9EBC387640BA8F2A5F0A /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 56F14E5E776D7B19B46DF94B1F6742C5 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C25BF8A89DFBB6B9B355600D39D1DCE /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = 72D4CE121E219DF0C4968BFB37CA5D8C /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BF23C6D94BC9EBC387640BA8F2A5F0A /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C2FBC0A054D33CDCCF8C06A100B019E /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C25BF8A89DFBB6B9B355600D39D1DCE /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FD63B7A2E08464D5A03789191955423 /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C3B114D579773C689CCC20E86A66473 /* SKSwizzle.h in Headers */ = {isa = PBXBuildFile; fileRef = 416190984EC0862F162E2E48E0B3BAC3 /* SKSwizzle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C647BDA4A4AB160D974BD55DB2E0A02 /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F8A10F0233DA3B3CBEE27074EBFC203 /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C71AAD98CA149A0B464F0C1BC1A760A /* FlipperClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3BF8E7BE4C441AA3E3539BE285C0A7F /* 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"; }; }; 1C75E58E5C7129F8CA3F013D567B692A /* SKButtonDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = FDDE42B7E3BA3D737A67D830BA7CB2F5 /* SKButtonDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C9458A12060B23DE3F9D57BAAC6AF5B /* SKSwizzle.mm in Sources */ = {isa = PBXBuildFile; fileRef = 17A61121C03A8D3B576632439432AB57 /* 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"; }; }; - 1CB393E83C2658C292D706C7857EC477 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E68EB32E11F89353AF2156EF1A22C38 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1CD50B17D10EDDDE034D1C2AB7034610 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EF5EB1DDA2F8F59AD377272F050B005 /* ARTShapeManager.m */; }; + 1CB393E83C2658C292D706C7857EC477 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = A2C604A5CBE7F32526D81258BAF2A7CE /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1CD50B17D10EDDDE034D1C2AB7034610 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CFDE95EB166389A17BCDB994E0C3BE14 /* ARTShapeManager.m */; }; 1CDFFE7C9DF69F03E29F9F02205DF675 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = C394BE36DFD48F07854E942BCB01261D /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 1CE0A3B74BCACF590A1E1A2BE0BF258A /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = AB8A67274FA5E93D1BF01ED22075126C /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CEB2270F182DDF1CF7139272CF46455 /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = AA2DBC921F3029395CE2F0C0D3BAAB8F /* BugsnagBreadcrumb.m */; }; + 1CE0A3B74BCACF590A1E1A2BE0BF258A /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 55DED3FBCD9CA821EF7A18DF058FC1EE /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CEB2270F182DDF1CF7139272CF46455 /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B73E343A993E6CEF42350881F8F0E84 /* BugsnagBreadcrumb.m */; }; 1D1E44F857FA339C19C859B350D0FFA7 /* Allowance.h in Headers */ = {isa = PBXBuildFile; fileRef = CF4795D41510A5087986EB85A78E93A9 /* Allowance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D2677A8095E40E0F5D4BCBC3C0428DE /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = B4BBABE66C8774602DBF6B4F7D49B876 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D4CBFD46B5E0040A330C7120FBFEC85 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F4D44217F164E43678965F751CC6119C /* 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"; }; }; + 1D2677A8095E40E0F5D4BCBC3C0428DE /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = BF7875275D133A28394FE406760DC9CE /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D4CBFD46B5E0040A330C7120FBFEC85 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 041293840B618AC2B9040C82E56A4EC6 /* 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"; }; }; 1D6326675CA2E7855A721EFF933961F1 /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4B868B975B17FD43D8795223F2C75789 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 1D838244DCF67A79448F0311491E8A53 /* RNCMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = A17988463059BCDD1EAFD0A400371DB8 /* RNCMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D99EBC8F71768B9B1A2CCCBED9AD982 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = F860760280FC4E58205ACB717DCAEF1F /* RCTRawTextShadowView.m */; }; - 1DE06FF175E64A1F373F1E0CA85D45A6 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 10F76B5D9E90B1C8AEB0E10A384DAFB3 /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D838244DCF67A79448F0311491E8A53 /* RNCMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = DB64B1122545BBAF21C429CE6B63462E /* RNCMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D99EBC8F71768B9B1A2CCCBED9AD982 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 85CC15D655072A7A9895561BE72AD16C /* RCTRawTextShadowView.m */; }; + 1DE06FF175E64A1F373F1E0CA85D45A6 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 931FE198A25C9BC87758418B8F903556 /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1DE91DD8D31AD923BC2F28C70E8E6F9C /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = CE60317C58AFC60DCD0B604500EE9586 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DF16A410CF349117F27A48911AB92B0 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 6968E72EA221A652A1E662D6D7EDC15C /* RCTConvert+REATransition.m */; }; - 1E0A1261A07124778FD4B3B42FA9020B /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = EC2EBA67F22FE8D87320EF8DE4937BA8 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E48D95C455B8ABDB2E212CAB79A6ED6 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = B792152A334862B990C9A456897A9E3B /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1DF16A410CF349117F27A48911AB92B0 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1E2EDE818FF878E59B569B3AEE6CEC /* RCTConvert+REATransition.m */; }; + 1E0A1261A07124778FD4B3B42FA9020B /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = ED5BC9D96294FFB993377139D192A7E2 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E48D95C455B8ABDB2E212CAB79A6ED6 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BE06198C27F8E9E487826A3D1389423 /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 1E5283D2800D1D93A49EC9AA71FBBBC5 /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = EF20A6B7673DC9EDF7334088F699E2C0 /* GULUserDefaults.m */; }; - 1E5E294D972047A3B8B0715544F8C276 /* Pods-ShareRocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 74FE0A6812B600DE9F54562F0F69D2DE /* Pods-ShareRocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E9E9841ECD43A7B59D4B9C4A24373CD /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 44A34EF8A3DF63476DA59F2D53176758 /* RNSScreenContainer.m */; }; - 1EB1982FEEA30F3349E79573D316E7F3 /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B6A3FAF59C0CFB7BD0712CAFEDF02C55 /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1E9E9841ECD43A7B59D4B9C4A24373CD /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 878DC5AA91F3DFEE8A5FCE23CDF9F154 /* RNSScreenContainer.m */; }; + 1EB1982FEEA30F3349E79573D316E7F3 /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0339FF0394421A78EC4E62FACD4BBDEB /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 1EC6E839250BB5EE3E900F898BA75362 /* IOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = B309AE09E6BEE094D1B4E8170C4894A9 /* IOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1ECC93652A3EFFCFB135FE893740D5E3 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F228F589A5E0C3E7A3AABA43442C5BF /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1ECC93652A3EFFCFB135FE893740D5E3 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B816DA2D6F8861904EA446D74DFF951 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1EDD4DC0E76159A2E868E2448ED7CE8C /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = C6187BEC3C0923BA104D84C23B91E01C /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1F7A6150C30D540366225C4428F4EEFA /* OpenSSLUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0A8700F9216F84EC4EEF704759982EBB /* 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"; }; }; 1F8D9EC1018173D1167AD8857D3E4CA0 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 912F3C0FEF4C832DC9C981D4E763C614 /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F93776C6F5649E124D88989BC9805EC /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BC541DD4BFA297EDE39AE9BA74B11E0 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F988CFCB48630887EBEC9D536138CE0 /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = CF3B9B48F158E7271EDCB245B43E64D3 /* RNNotificationEventHandler.m */; }; + 1F93776C6F5649E124D88989BC9805EC /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DFBE72CD90D262E7A6933E7E30E47E9 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F988CFCB48630887EBEC9D536138CE0 /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 429E81C70FB1627BEAB071C56E303483 /* RNNotificationEventHandler.m */; }; 1FBC66FB408DC29291980DFFAC95FD4E /* FlipperKitNetworkPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ABEC4132D8A614C5B3C617207B44C1D /* FlipperKitNetworkPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FF20C2CDD23D3EAC68ABAC6E0880DB9 /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 23423CF6EA7C6A496B8D9DF4C59955FE /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1FF20C2CDD23D3EAC68ABAC6E0880DB9 /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DB63DF1A95876A2FAC34C050BCC3855 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1FF2393253B66E225DBF6E7B48F3860C /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C1813374D737500AAC69A3BBDF7400E /* FIRBundleUtil.m */; }; 1FF2EFDA8ABAED16AFAB78AF0DABEA00 /* BaselinesAsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6FF0842F9EA78D9EDC9F435A8D686211 /* 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"; }; }; - 201C25CA113E1654260D99458E252A6C /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0768F9582B509DD1903F273F99CCBE3A /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2029321EAF1F73F656D94619140C1873 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D0F44893AD3E0A4239D6FDF012DF0A0 /* BugsnagUser.m */; }; + 201C25CA113E1654260D99458E252A6C /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 969B6F69D32F2EB84CFA0A410BDA47DF /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2029321EAF1F73F656D94619140C1873 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = FCF1E186581D4AB90F54D0F475088693 /* BugsnagUser.m */; }; 202E0AA3695D0381D384CE7180F47ABD /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = FE9B33B992732EE00524ABA85B7829D1 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2036187BDCF514B48DD38C011F3D8F42 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 62073CFA22997381940AF92E40CFDE72 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20416B5D4297ACF6C5123ECD32CDD1D9 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 289AB504D307CADBD61BC9ECB6FB301C /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2036187BDCF514B48DD38C011F3D8F42 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 57171E8592D216A0BCACF19A6FCE78FB /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20416B5D4297ACF6C5123ECD32CDD1D9 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 56E325018147BA656AC7A8A93CB4E276 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20787CEC79E25AA6516AD59C8BEEB419 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ED4561357600270D36518FF1E8B923E /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2080973A334C01D568F6C34EAA5FEC28 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 21B4F21E27E5CEAB7A1E4D18014A6C8F /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2080973A334C01D568F6C34EAA5FEC28 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CA0BE73E7B2154150E2F4CEAB088D002 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20AB37D0A997EB702F9625EFD74E7D72 /* SKIOSNetworkAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 18162DE6C50E2863BE3AA20B43A71F52 /* SKIOSNetworkAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20B0C57A6DE9D3137B0AD31EFF574741 /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 76B0BC6BAA4672419D0A1BF6F4FB7767 /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20B883649B7B86E3C65B40C1BE9C6C11 /* Varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 61F182CDA20E77EAFB69C3206A207326 /* Varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20BF5CE7BE71A52B947DC1A4AE28D316 /* FLEXNetworkObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = B6F0A398436CE937E7ABD0027C122DF2 /* FLEXNetworkObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20C23C118B6ECBC5D63DDD14B20346C5 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BD2EF7F1226651AB2E94E608674EEE3 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20E395C9875740A8A614B3B3F1739656 /* RNFirebaseAdMob.h in Headers */ = {isa = PBXBuildFile; fileRef = E44685111519665E846CACA1020BC749 /* RNFirebaseAdMob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20C23C118B6ECBC5D63DDD14B20346C5 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 009E1A7B40B535EB77ACA21024028C42 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20E395C9875740A8A614B3B3F1739656 /* RNFirebaseAdMob.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F629F100430310341B2F399E260D8E6 /* RNFirebaseAdMob.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20F3535B1F7ACCD40CC3F44712CD9CDC /* FutureExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = DE57CEC42019514FE641BAD853C5C7B3 /* FutureExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 211825B42C149FDE16AB9293734167D0 /* RNCMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = C11F3018A56727FCC1AB3BC7301B5506 /* RNCMaskedView.m */; }; - 21227AB74B4FBEF7FEE5EA1C0AEA6708 /* RNFirebaseAdMobInterstitial.m in Sources */ = {isa = PBXBuildFile; fileRef = 0215D8AB0FBA29427175CF3D02025890 /* RNFirebaseAdMobInterstitial.m */; }; - 21678FAB2A21925B38DBE4A5F09D9462 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = DAC4DE851CC31B2CEA097900F722DBE2 /* QBCheckmarkView.m */; }; - 216C471C3659DB6C7F43F4C451A1CCB2 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 70B52738C1534D681595A58D730353B8 /* BugsnagApiClient.m */; }; + 211825B42C149FDE16AB9293734167D0 /* RNCMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E417FCC99890ADA6613B3B742D3E0C9 /* RNCMaskedView.m */; }; + 21227AB74B4FBEF7FEE5EA1C0AEA6708 /* RNFirebaseAdMobInterstitial.m in Sources */ = {isa = PBXBuildFile; fileRef = A038D71AFF5935A62E96279F15FB1CA9 /* RNFirebaseAdMobInterstitial.m */; }; + 21678FAB2A21925B38DBE4A5F09D9462 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 877ECD691ABB300A0857DC2D3F38502D /* QBCheckmarkView.m */; }; + 216C471C3659DB6C7F43F4C451A1CCB2 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AC9C1DB7C04328B5BB8E33489022D4E /* BugsnagApiClient.m */; }; 218095E8385F5B81616076F5FEE57FF1 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = EEB541FDC2BF4361A988EAF2F2A186FA /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2188513E06C68D0DCFAE5B02D5EA86E8 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 60617C7334B7CF0995AEF61961396DE2 /* RCTBaseTextInputViewManager.m */; }; - 219BFBFAE225E7D441E18CFC7572CB4D /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 424E59C4F74F5D9FEC58EB8A0417BEB8 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21C0D0A679B9CCC696330278C799F8AD /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EC5F1C6EF04364C25D1ACDBFD97CB381 /* REANodesManager.m */; }; + 2188513E06C68D0DCFAE5B02D5EA86E8 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 501799D18FF728DE0379BD277745DE90 /* RCTBaseTextInputViewManager.m */; }; + 219BFBFAE225E7D441E18CFC7572CB4D /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F4541A76FB78D77FA3A964755798242 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21C0D0A679B9CCC696330278C799F8AD /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A0A5BC613C561149D537888AC2E00F65 /* REANodesManager.m */; }; 21CE7333450F08EF85250BC221A8378F /* FrameSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 74EF1999A7D5F0448AF21369F6367731 /* FrameSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21DC793624E2D6A11CD90371C27BEE98 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = E7A5732B36B340BB83F8BDFDC3556478 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21DC793624E2D6A11CD90371C27BEE98 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CAC25D7FC5DF89ED2F7953785D55282 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; 21E15100946BAC576970F1812C06DAF4 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = F88A3985D747C9830996E834577B7AB3 /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 21E16122AFBEA16EAC94D13B6DDB01FB /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34B7BDD48B65CB852F0BD71AA4D5F649 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 2212B6827D7BC81F77DBB7C361B61548 /* GDTCORReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = C67BE21BEF53E4B88BD7BD67C69D8CB6 /* GDTCORReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2232A04B30AA441CBA83D0A161F4879A /* Hazptr-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 1381B07386B17DB1B283F6B3EC16F8CA /* Hazptr-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2243037041F364BD2FAA1C38AE6A4CB6 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = EBC5D969F3C301F83593A4E880F7D9F0 /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2243037041F364BD2FAA1C38AE6A4CB6 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 12760B2ADEEB617BF703F0D43FEFCC77 /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 224D23FFF43076B9FD6F06C90E360D15 /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 20F0360096A49ED0E255A9341B07C0A3 /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 227134EEB40138501F42DCB74D501A8D /* RNFirebaseAdMobInterstitial.h in Headers */ = {isa = PBXBuildFile; fileRef = 025E2171C4B4BA5572C7E2EEB9C596B2 /* RNFirebaseAdMobInterstitial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2275CDE2F9E72781DD15023D75195980 /* RNFirebaseStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = DBE8D77A02F8401126842A093F4E317C /* RNFirebaseStorage.m */; }; - 228E33C6464F584B2EF22BF39DCB4A5D /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 39592E7518AEA079B23E5DF37B8CC628 /* RCTUITextView.m */; }; + 227134EEB40138501F42DCB74D501A8D /* RNFirebaseAdMobInterstitial.h in Headers */ = {isa = PBXBuildFile; fileRef = B9101611D1081DAA8646B34923008FE7 /* RNFirebaseAdMobInterstitial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2275CDE2F9E72781DD15023D75195980 /* RNFirebaseStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = F0F0CA4750B2846C91E0E6F8CC2F958B /* RNFirebaseStorage.m */; }; + 228E33C6464F584B2EF22BF39DCB4A5D /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B4D3FE3A0902B85586AB8E1709522DA /* RCTUITextView.m */; }; 22C8370E1153C875B7DC2D72E7141618 /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 74C8B993323AAE9A4C15E7FF18321A4C /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22C893769DB69620D10DB6343A1BF40C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AF46407306036FBC1128FC7B5171849 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22CEFC35D6BE5B9099CB736853ACAC54 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A517FB8CAF4B8334D6617577A534CEAC /* KeyCommands-dummy.m */; }; - 22F2DDCCF5DEDB634A650681FB7CB07A /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E9BD133792AD192FC5788F6929A30EEC /* ARTSurfaceViewManager.m */; }; + 22C893769DB69620D10DB6343A1BF40C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 284D9D2232E840D4407AF909CFEC6332 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22CEFC35D6BE5B9099CB736853ACAC54 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3082B4F67DF8A2C570FEF766BE0A18F3 /* KeyCommands-dummy.m */; }; + 22F2DDCCF5DEDB634A650681FB7CB07A /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6709F8F6033B97457E1E19BCF1304EB8 /* ARTSurfaceViewManager.m */; }; 232F9E9093BAD90D351096CECD29DA28 /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 39329E18987753D317DDA860F29C1772 /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2334BC257643AFF9F1A7C9F391BBDDC4 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B7577941CB65451A9F414FD6E86A21C /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2353A8FB4CFCDCAE359ACE46CFC9E24F /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BA7DBE6DCBED7C232ED5E202CAEEBA3 /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2334BC257643AFF9F1A7C9F391BBDDC4 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6AAC0C247FEA5320D92290C2AA6F16A1 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2353A8FB4CFCDCAE359ACE46CFC9E24F /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = A8CBE9BA702F9353DB44F29C05C20508 /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; 235AF40BD4F72FA49078428998D61FBD /* YogaKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 609182AADFCFFF5EC31D39948B09EF59 /* YogaKit-dummy.m */; }; - 2365907247E86F9BD727F7AE44494EF6 /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = B6776F5DFBCEC5F6CA6F705C4B7F6558 /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2365907247E86F9BD727F7AE44494EF6 /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = 4102C6ABE9B6D8A970C2C548F9BE4FCA /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; 238F9CA702A2EB39A52476B90FCF4CA8 /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = F0E56CB6ACE5471DE50B60FA21BF1E29 /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23D01320547D5F767B3E75BA7C6D06E7 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D7392A2B955C6B6E853ECBBE4E4E3B6 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 23D01320547D5F767B3E75BA7C6D06E7 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = B6758DD46ADA704C20414E9814387441 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 23D3495C13258064F17B2596703252A6 /* ReentrantAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = FCE8F09C178656DBDAFDA0B025C9066A /* ReentrantAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23D709C5BFFA4E2B8FE8E01DCF133B5E /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 0832D97F675F7913811359F39365D101 /* BSG_KSCrashSentry_Signal.c */; }; + 23D709C5BFFA4E2B8FE8E01DCF133B5E /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 42F77A23ED4C373C3DC6188163D412D8 /* BSG_KSCrashSentry_Signal.c */; }; 23DD6882410833B4985BF657DB0FF140 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 14E9E31486EBBBC68C0749E85DD654F7 /* SDImageCachesManager.m */; }; - 2409E7DAB2005636E62545D5599F069B /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 85FDFFB455E68FB0A3DCC7A7CBB47158 /* RCTInputAccessoryViewManager.m */; }; - 24245B52141EA46A7042F4BE99AEB86E /* RNFirebaseNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 586423E8C1E30C89F661FB5B859B6400 /* RNFirebaseNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2409E7DAB2005636E62545D5599F069B /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 77B9E249C98CA27B5638458542B2F44E /* RCTInputAccessoryViewManager.m */; }; + 24245B52141EA46A7042F4BE99AEB86E /* RNFirebaseNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = C4056A95B9082E2CB7A6161D92837DDB /* RNFirebaseNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2451B9C96658A869E74A857B030FCEC8 /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = 566D252641C4C2EB62C7455139BB71D6 /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 24570C884E7B05506960B1ADE2EBA32E /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = 22503E55D13A05D557E5314F522C5630 /* demux.h */; settings = {ATTRIBUTES = (Project, ); }; }; 246E297E51662846FB8BC6A044BCC3EC /* ObservableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C9B9530FE73925539BBC1D217AA9D62 /* ObservableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24B66DE15C81BBFEC51497A13F13AF72 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 292F4C7DB5ADBD377DBECB33A5F61BA3 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24B97F4F26D06C097C3E12F6B68F04CD /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CE4E74BB784F95503D0BC24576FA113 /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25163DCDEAC38C5567C3C83ADD0CB5AD /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC8CFA5BFEE5BAD9F3B2BD997723C0A /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24B66DE15C81BBFEC51497A13F13AF72 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A50FFDF1FBD07F4FD73E119C3704D2 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24B97F4F26D06C097C3E12F6B68F04CD /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C9BCECBF660D3275D3D5A4996817653 /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25163DCDEAC38C5567C3C83ADD0CB5AD /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2394FD30544F1A0E0D6827F674CAFF38 /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2527839399261E620202C3D565C96224 /* EventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29A3786758BA5BD9869DBCBF6C13D43C /* 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"; }; }; - 25308C703762C1B6541C05420395E4E1 /* RCTWebSocketExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 37216B6E12125370DB6D9BBE2207512E /* 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"; }; }; + 25308C703762C1B6541C05420395E4E1 /* RCTWebSocketExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7AFD68A83DDE516F3EC744376B026DC2 /* 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"; }; }; 25464C199156B6F34863455C64857399 /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 6165E3EDCE7024C4D5FE7EEBEBA2F169 /* bit_writer_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 254B9E5D97F740F5EA8A278A150F25CE /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9981989CAA6381239BB715D0BA46262A /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 2578A917ADC1827F3D0717324949A259 /* FlipperState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F32368D34EB64A99B694CE8986112617 /* 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"; }; }; 257916A7CD095FA0808F4A1ABBA1E93D /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 834CA45B23BDAEA96E6F41D0C48F49EE /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 2592F0075220E3322D3B6C8705B4C26F /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DBC5EBC6E2BFB4DFF65BD1AA4B5DADB /* RCTSinglelineTextInputView.m */; }; + 2592F0075220E3322D3B6C8705B4C26F /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = CDC6EBF6C7FAA54E8C3C87677CF4A20B /* RCTSinglelineTextInputView.m */; }; 25B0C379434647D92E7295C0CC6A1B1C /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A67725609E5F803B60526CF2258D59F /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 25B6D4193F34A5ABE3CA36A3E35CFE8A /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1B1AF16CD4A23CC6DEBDE47B6B3B949 /* 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"; }; }; 25CDA6B573F9FA265790119B75DE62BD /* FLEXNetworkTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F1CD909714A0407163E8BF5BDEC08C8 /* FLEXNetworkTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25D05716DD4D36831130AEA70822D200 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 76A64D0BAA62182C4D052DCD145ECE3E /* fr.lproj */; }; - 25D1EE7FFDCEE0EBC3F03EB316E69F59 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D27998CFA5C0E77A18D200E10757361 /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25D05716DD4D36831130AEA70822D200 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 516A725FD2FA0C22DB6B7DB0B99F417C /* fr.lproj */; }; + 25D1EE7FFDCEE0EBC3F03EB316E69F59 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 766D25EE8AC06E2F849B9A4EF23CD32F /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 25D70C544A35CB6F097D761400F7957A /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = DE467359CEF73C5F9015551BB2196F55 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25DD1F622FE7E6E77871EEB146276D51 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 17897E6E0BBF0D2797F2D1FFDDA55B5F /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 25DD1F622FE7E6E77871EEB146276D51 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1E83938C524F8F5A17A8F7FD3FDD03B6 /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 25FAE9EB053A32C666CBD08A58F59158 /* VirtualEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 778184D74EB27A6374B6CDB0C567EF3D /* 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"; }; }; 2605224350F37496F63ADC7DC13F4AB0 /* ChannelResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43FDFB8A81364F8B51C37B2560E239FD /* 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"; }; }; - 263E7272EB84F216E5010AAD64EE4393 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ECAD576FC93676742AF2BEB00B37145 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 263E7272EB84F216E5010AAD64EE4393 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 496E921652C2248A6FFB1951C61E9A2D /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 265A7C27AF6E0FB3AE07F79E4BA091CD /* Log.h in Headers */ = {isa = PBXBuildFile; fileRef = B6F1AFACB9F5062C3033A2162C7C66FF /* Log.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2667D6A247BD464A6C85B15684C69FCF /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2071F71A875AD0A9F66C109B903EE168 /* 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"; }; }; - 266F0607CAD1CEDE6B8FDA659AC9564D /* RCTVibration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8E3978DF7ED57361A352828DF9842EB9 /* 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"; }; }; + 266F0607CAD1CEDE6B8FDA659AC9564D /* RCTVibration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 47CEEEC269B05BDC532D4EA71D6E2901 /* 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"; }; }; 2688470222A93D85CD64C619D255D87F /* StringKeyedCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 56CC3C3AB2AC0E9C53DC1B8DC9122BB4 /* StringKeyedCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 26DDB3ED21F8F75BF8715141466A6BBE /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FFD01ED62EB70B241703996ED004808 /* SDWebImagePrefetcher.m */; }; - 26F0818B7A6B16A497714EB1358EBE27 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8223153CA67171EE8985EB32DB277F5B /* QBSlomoIconView.m */; }; + 26F0818B7A6B16A497714EB1358EBE27 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 09CF615CD864B0E7013EFE0697D54749 /* QBSlomoIconView.m */; }; 272654FD85002EBB933D59A3241446E8 /* JemallocNodumpAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 97B0FDEFE0A3A767AD67F8F29CDCCD91 /* JemallocNodumpAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 274ED815FE397FA51E0AA17121A439BB /* StreamRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F99642E3214AE166E5B20250966902D4 /* 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"; }; }; - 2778D8DE1D2C367945F0A959B924EDC8 /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 94446C8C4D927F1CFA1EF749AD691827 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 279BD641A3CF233F1A022F5C2189736B /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CC94E256873EF1A6C4BCB70936D273A /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2778D8DE1D2C367945F0A959B924EDC8 /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E7E8B77C5E49902748BAC6FD806AE7F /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 279BD641A3CF233F1A022F5C2189736B /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D520DB62B2AA74B6834DC2104F6A540 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27AFC607943FF0399A91891DD6B277F3 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 710044891D8284841001A9ECCB448E7D /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27D37D561140701C9C2DE99C2D13C0BB /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = DE137337B8AB426D526DB7D610D0B6BF /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27D37D561140701C9C2DE99C2D13C0BB /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = 3924139DCBF1E96013E3D806FA355B7C /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27D7BF69F512CC363019B94C7C8A14FD /* SKApplicationDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = E7B58BFF90AEA33D39DC2306C3D51C0B /* SKApplicationDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27E334C4DE66739FE2189761220D2152 /* GDTCORFlatFileStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = A0B920059A5D77DD1CEDBC45E2B1867A /* GDTCORFlatFileStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 280340EB2BB4FBED12529AA52158B665 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 41EFF701D7733E84C3E6CB4249D15E50 /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 280340EB2BB4FBED12529AA52158B665 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 83FBC58A4E8CE4DD3045967787AC7A8A /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28061C86241C297891AF6D19B17288A7 /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 8306941218A27B7FAB0F5F24FDA091E0 /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28861AF52B24FE2B3F51FD4A8A00A722 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = EF2624022163DF8547EBDEA01D8173FF /* SDWebImageDownloader.m */; }; - 2890524395C72E909E591EB184C2E434 /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = 758017C7185FB18C013423C4A04248AD /* RCTConvert+ART.m */; }; - 28ACE9898CEAC453068EC5C6E6661FD0 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8ACFEE7F35A7FDA56187C4913ED971B6 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2890524395C72E909E591EB184C2E434 /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = DE30E8B82C1AD9F0CD3F2D5D4CD5A950 /* RCTConvert+ART.m */; }; + 28ACE9898CEAC453068EC5C6E6661FD0 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60446DD3F09C36183FC3DA8D35698A06 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 28BD2154EFEF4A904B84DFF396BD6598 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 597D02897C3C579AA756348F14235739 /* SDAnimatedImageView+WebCache.m */; }; - 28C65AFE0EA39E92622AB93E71E10748 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = A293F70B190C15DA5D589C12F2F4DF71 /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28C65AFE0EA39E92622AB93E71E10748 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = C6276349EE478C396F4BC9158E31AE4F /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28F938C614393C2E27ED714D9579FC8E /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 42A0F52C9215438BA3904E573B0890EF /* rescaler_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28FFC4481C53A863062AE3B78DFDF30B /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C70B9C83634E05E74CEF35D222403FD /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; 290521ED71D65A6F7DBCB4673DF0084C /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AB19467D5F96E09E702AF0A3DB76FD2 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 294DF61467891D4A15B8BE8DA7B249C8 /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 7390BB632CEEE118C7CA4E8B403F656C /* FIRApp.m */; }; 295B0286CAB8B9811ACC7543683D1FD9 /* SwappableEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6CEEF959D7C8245C060ADFCFB07E6931 /* 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"; }; }; 296F07BAEFF63EE74DBFD1A4936E42BF /* RSocketServerState.h in Headers */ = {isa = PBXBuildFile; fileRef = F6C25CC3E1A0256F28D558834D01ED90 /* RSocketServerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2971D2756E69D3A1B1B0B05CB44883FA /* RNFirebaseDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DF2DACD43667A6FD9B3079D72946763 /* RNFirebaseDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2971D2756E69D3A1B1B0B05CB44883FA /* RNFirebaseDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B3D37D4AD8CFFB551561CAB8EFED1F7 /* RNFirebaseDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2977CE25D3D95A6820F6B47674C6CBA6 /* FrameSerializer_v1_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59444F5F124341D5AD914F255E9BFF8F /* 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"; }; }; 2987B38812445E03CDA22FA3542465CB /* RSocketTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 085AD3D2DD563788E6C7AD22A0ABAD84 /* RSocketTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2994820A161009C46BCA0F5CE653EA23 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 06DDD034E8BC8B718DEAD16CFEF6DD3F /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2996E3F4C4B3F78A48FD7414D9400D12 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6400F14B0985BAF839D98DDF669659C3 /* 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"; }; }; + 2994820A161009C46BCA0F5CE653EA23 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B87F8E16A65AB0AA58EBDC9AC6B343F /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2996E3F4C4B3F78A48FD7414D9400D12 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F6EAD38009DDEBD60F96F13B1500506 /* 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"; }; }; 29A57A56B88B85230E7202D1741D4057 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6D6F2220F93AF227C1AE3DD841925360 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 29A78422CB94171C606F76CBF757733B /* TcpDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = EA7A0F4054315D2EBCF6698136B606FD /* TcpDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29A826F8E3DC4C6F6B16EAAECC591333 /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F7DC0361EA8FE2A0F02B48ED863B5DA6 /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 29BB93429B225681D5E327FA55D79FCA /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EC320C7B511A6BB77B4F812D50F5BA02 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29A826F8E3DC4C6F6B16EAAECC591333 /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E37AF67FCF09E4158EF00B66B07F22C3 /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 29BB93429B225681D5E327FA55D79FCA /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 36F1336686CF053FAF0D1F783F28DEDC /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 29BC45BF5AE5015D46B969B85561BEA0 /* firebasecore.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = E0B5CB5EA94227AB5B770D2BBEDB2A15 /* firebasecore.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29BE103541578385234026751F8ACE67 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EE41C8F59E52D48F972F13E201B0CF7D /* RNRootView-dummy.m */; }; - 29CF0EFC90A41967677A31628C2F25A0 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FB643881A96AB7E3640E83A710DBF2D /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 29BE103541578385234026751F8ACE67 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D82889CC21A3DDC1621A270CDF87004 /* RNRootView-dummy.m */; }; + 29CF0EFC90A41967677A31628C2F25A0 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C654678F23645C68953FBF5656D65B5 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 29EF263F0219112B7A83EB6282AC6BC8 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = B6E362A010D932A7F79774073D5CBD71 /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29F9DF5B489E9D84B67ED4897106E0BB /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = E2CB38D8C97E32A3F4DCD3D043F9798C /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A0324572051D6112BEDB9F83E676728 /* RCTAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = C206DEDDBA96BCFD776E124C461B2239 /* RCTAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A0924AB7815CCF0A58FF53C9F9DD715 /* RNFirebaseNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 35DAACEE22375215A28F445680E28CF8 /* RNFirebaseNotifications.m */; }; - 2A0C966126A297B3D07024632C4367E7 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = FA2280BF1EBC3A71E7E0A58002543F49 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A0E1DCF4CEF3E199FEF0ED767146681 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 15A8E5FC9E7730834F67803F561808D6 /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - 2A13E0D6D5598EB9B57F78F3CD74774E /* EXVideoThumbnailsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A6E221352DAC18D65D9D0334F3806602 /* EXVideoThumbnailsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A271C1605508A90C3BA1EAB6BAADC3E /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 303A73CBD94A4706CCCD402D519ED20D /* react-native-document-picker-dummy.m */; }; - 2A3B68B376B56AA14142534390120DD4 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 28CE0A2263810AB8B174A3BC5EDDD46F /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 29F9DF5B489E9D84B67ED4897106E0BB /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 49C3C2D766AD5EBFBF77708CF363A786 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A0324572051D6112BEDB9F83E676728 /* RCTAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C5CE9C01B4C47DC2AF69CC5D89C02F9 /* RCTAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A0924AB7815CCF0A58FF53C9F9DD715 /* RNFirebaseNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 64E354D0B781F4A56820F61138A82ACF /* RNFirebaseNotifications.m */; }; + 2A0C966126A297B3D07024632C4367E7 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CBBE1E99E32DCF4AAAA2E6EE13B85B3 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A0E1DCF4CEF3E199FEF0ED767146681 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7F28FCD5E18CE510ADEDC2288AF4189C /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 2A13E0D6D5598EB9B57F78F3CD74774E /* EXVideoThumbnailsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = BF71B6B50AE0EA0C42E1995CB3D90984 /* EXVideoThumbnailsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A271C1605508A90C3BA1EAB6BAADC3E /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D49C85A499B83A5304FA3A56A2B4282 /* react-native-document-picker-dummy.m */; }; + 2A3B68B376B56AA14142534390120DD4 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FFCF1FC0664854C3FB32F39781917B1 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2A55289CBCBD22F409A68DB6A7D7DE51 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F2700851C4165B395335A1B0169844C /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A7A969DD863D6692F21198F477E7BBE /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EDDB0BF77E0162298A4164C90A4F5EB /* Pods-RocketChatRN-dummy.m */; }; 2A996496C046119E9D62610932CC69FD /* FlowableTimeoutOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 368A4AD8773CF8767E6EC2DA65901B5B /* FlowableTimeoutOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2ACFB7C65A61B40D30B5CAB420AB071D /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FE8ABBB32147E196B4A62E4E10BB5F37 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2ACFB7C65A61B40D30B5CAB420AB071D /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 14491B988359F95819D696C672587578 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B174A54A84B51ADFBD45E40110F0D25 /* AsyncTimeout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9BBC063CBF188E2AD7CFC22794FFCCA /* 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"; }; }; 2B1E991CC4B64389ECA30647B4B02A1A /* EventBaseBackendBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B6AF205362728DCEA85500386C83D19 /* 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"; }; }; - 2B25C91103E9A7DA0BF82DE4DF7BCEE6 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F4936DDB7CCA87862B4A6728C5B8932 /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B2A1CCDBA8AD8D264967730D01F3FA4 /* UMPermissionsMethodsDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F9C923B2DE2580BF065AC26AF57C071D /* UMPermissionsMethodsDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B25C91103E9A7DA0BF82DE4DF7BCEE6 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 365A6806983A06E40D88574D1A430189 /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B2A1CCDBA8AD8D264967730D01F3FA4 /* UMPermissionsMethodsDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 27E6AED9FBDEF38A7FA78B749F80EA24 /* UMPermissionsMethodsDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B2FAFDA8347BE2821FED5D48AB3A547 /* EventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 73F99FDDD043F3C123FD799F02E251D2 /* EventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B4FBEC74AEA5E28A513305A9E602882 /* RCTImageStoreManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = EC8637804CA80155163BB6D884E701C5 /* 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"; }; }; - 2B574EC6E9241E8B84C6A3846272F8F3 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D956B10A36543035362FC1A7F716E8E /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B4FBEC74AEA5E28A513305A9E602882 /* RCTImageStoreManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5CE3DF498DAECCDBB770650734DEA869 /* 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"; }; }; + 2B574EC6E9241E8B84C6A3846272F8F3 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C01B0B04ED5559FDBFB6896F2E1CD1B /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B79DAF1B46E07D72A44DCAFB639C819 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 7033DB819E816E3EB425094FB4A1EE45 /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B830C91775D329B828183C837A9EFF8 /* RCTAsyncLocalStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = 348AA5B5AC508B77A3D637486F0346FC /* 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"; }; }; + 2B830C91775D329B828183C837A9EFF8 /* RCTAsyncLocalStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = 16663CF894AFA1FC253A61AE2AC172FB /* 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"; }; }; 2BA0D059223373A39DCB8B59BD18557C /* StringKeyedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = FB9ACCB262979045248720B56036D60E /* StringKeyedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2BB382DB7792FE1E8269B4710E90EFFE /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = C9107F956D575ABB532F70D331DA2C31 /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2BD172C6FB7DF31CC3EFA3CE085B4126 /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 78EA4FAF835F44E1DF805704CAFA9D89 /* predictor_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 2C03900917DC61024FD067977229C3D1 /* GDTCORTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E6A5F25F40F4E0E18F49EEA5D28EF3C /* GDTCORTargets.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C3D875B1658DA6BC9946D437202C839 /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A98DB0A4AB17DB921C1ED635750D654 /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C4554B6732E389B6C115718BD45701D /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B198F49D093D4120C0EFEA102F189FE1 /* SDWebImageManager.m */; }; - 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D494C8BC75A68D579762CB0BB903EB1D /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DFF981C47CA2DEF0ABD18204C9C309B /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C6D65B3FBD38D8AD43897EBAE585914 /* VirtualEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 6995201D39391D5D46F8A69770F753F7 /* VirtualEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C76D04357B9263B3E31FF7C30424670 /* GDTCORTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = AA8B5FDB85C551C1FA351B3A70116816 /* GDTCORTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C813CFB5B807A3B361E5EC77152152D /* Dirent.h in Headers */ = {isa = PBXBuildFile; fileRef = 50ABB863B576FFD6C6CA53511D921D2D /* Dirent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C89CAC103055E4326DDE29E97713CE6 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E81CBB70226B89AF95EBC4D1189E164 /* UMReactNativeAdapter-dummy.m */; }; - 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A3B6CD03DB936F086CB3AFF7FE558AE /* RNRootViewGestureRecognizer.m */; }; - 2CE08EC7BA09068921151F10810607FF /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E761FABBF5226B09C636381833E9B22 /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CE339DE51DB76536A63008724250668 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 4938F4ACE687EF0BA1239C067F5C2F4A /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D0E5271D5737630B32CBDBE8AF16971 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = BF920D45EDD10AC6F145314BCCFA1F82 /* UMReactNativeEventEmitter.m */; }; + 2C89CAC103055E4326DDE29E97713CE6 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 071EAC1216B90DC198CDBCF0BD16D771 /* UMReactNativeAdapter-dummy.m */; }; + 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 754BADBA4BFF71A5E54EF704A1ECF345 /* RNRootViewGestureRecognizer.m */; }; + 2CE08EC7BA09068921151F10810607FF /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 91937954EC3D19154FBDF69F9966BDCD /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2CE339DE51DB76536A63008724250668 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 359E24958405B6EDF860F722188F7647 /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D0E5271D5737630B32CBDBE8AF16971 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 567A0387E0B73D92544B9B6AE5BD82B3 /* UMReactNativeEventEmitter.m */; }; 2D94B903B687465A1A40CEBEE7FEC6E9 /* Frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E13643F75BB289AFC9F56E8FF8185514 /* 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"; }; }; 2D9814A90579824EBBFDB633BB165AC3 /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 205617F2BA6572C4FB0072874D254967 /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DF43783BAC61EA95D674BD58E390775 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = D18AA3A97528190531050ED0CD0872DD /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E014AAF39426DBC26D47DBDC691ED5F /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 099175F27CBD66453311A8A60CF896F9 /* REATransitionValues.m */; }; + 2DF43783BAC61EA95D674BD58E390775 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 564DEFDF58ED06E037C757714E253443 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E014AAF39426DBC26D47DBDC691ED5F /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = D2546F5A27DAACFE9A10A9538869FCFD /* REATransitionValues.m */; }; 2E08E47CF3B7BCEAB85479248233BE52 /* SKObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5D930C8097F51F6E54956A6D4D9DAA8A /* 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"; }; }; 2E5DDB53500E43F9F5A51245136962A6 /* SDImageHEICCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = BFA07440A8E55C4863268CEC6E8C645C /* SDImageHEICCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E7763FC85109EAE2D59FE71C3B17D79 /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = C194615FA8C7CCD34E5BE0CBD3606870 /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E7763FC85109EAE2D59FE71C3B17D79 /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5716A6D1621B8CE34399740BD56D3A5A /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2E78136632F05B8D8F8CCA6F8B62AB6D /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = FDFEC8B96013B1DE8EFFE4967BC17D42 /* SDAnimatedImage.m */; }; 2EAF41297C07BA08EDDBED38825EFD51 /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B20C7AD4C0DAFD0A549410FB953D3C7 /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2EB201AFA7B7067271DF082293CF9112 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0C7F5B506A4CC32E2F13CD387EEFE0D /* 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"; }; }; - 2EB408F37923E5B678BADA8BB3AF48F2 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 66E2D02A94FA2E4D5E82E7C9E3817F85 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2EC239D84B20011AE1A05A0CFCE4E647 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 03A4A214ECFB8B66DB5206004751513C /* EXAudioSessionManager.m */; }; - 2EC5425BB144046F7F37DB3FA09A3376 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = D402C610EC05744076650804CE14382D /* RCTProfileTrampoline-i386.S */; }; - 2F2C4147704FC8631687DFD85CF1C60A /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C200DBA814F0F1BE533960ED7E88B31 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2EB408F37923E5B678BADA8BB3AF48F2 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 34E54A0143BAC6774E7ED46216E9562D /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EC239D84B20011AE1A05A0CFCE4E647 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BF107D5D9DB209E57E52C2D601BFC40 /* EXAudioSessionManager.m */; }; + 2EC5425BB144046F7F37DB3FA09A3376 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 2B5B4D65517EA9E604FDECF4A1846876 /* RCTProfileTrampoline-i386.S */; }; + 2F130EEE4A67FFFF1EA597F7391EC78D /* Pods-ShareRocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 74FE0A6812B600DE9F54562F0F69D2DE /* Pods-ShareRocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F2C4147704FC8631687DFD85CF1C60A /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2701234FB9632D24B2506BBBD4163530 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2F3762F547283D037D6BF8A882085851 /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = E7C7864BAEE54C69674AD01F6A74B8CB /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F3E6CFDE51DA53D85F9F0B1E585D2C2 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = D274132B9B76A2FCCA9E7BBE49E3F06F /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F590231D8B24A4726C9B4C08F8A95FD /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F6373F563279B12A436A58BEB650040 /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F3E6CFDE51DA53D85F9F0B1E585D2C2 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AFFEDDE7CFB2C5E2CA5311D2F76B264 /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F590231D8B24A4726C9B4C08F8A95FD /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F6F2CFA01EC3575434B192A4A609F3A /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2F998A4B72485CE3C7114765011202B1 /* GDTCORConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C93089C71CB9569A26437215513C814 /* GDTCORConsoleLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2FA7A5A12876AA7C4D5903A9C5B74B3A /* Spin.h in Headers */ = {isa = PBXBuildFile; fileRef = F43A60CFC55D10B7A676CF564B1E4408 /* Spin.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2FB4E6CEC54F509D46FCEBE53DEA65A1 /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 5427922F1C6F6A3813320CC20FB58D51 /* GULAppEnvironmentUtil.m */; }; - 2FD56DFD6405D75AC16D258A4AC0F49F /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 23030DDFBB09C8793CC263DCD249A4C0 /* RNCWebViewManager.m */; }; + 2FD56DFD6405D75AC16D258A4AC0F49F /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 57339AC3E4854CA0132274F301561DC6 /* RNCWebViewManager.m */; }; 2FE803AD2F6A7E8DC5898A9563ADF11E /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A8F55A8C8BB50C6855CDE1204DD1AFF /* SDWebImageDownloaderConfig.m */; }; 30048C1ED58BCA8F8305E97FE14CCED0 /* IPAddressV4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 134809788D95B1424C9966E8E30A136E /* 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"; }; }; 3008E5C197E529C941CA606774D1BEB9 /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = 391DCE7E1FC1980DD72A702B02280B80 /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3024D29596A05D6D26B00A2D584A7A55 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CD1B6E707FCE3DA0964C73557A3F74D /* RCTTextViewManager.m */; }; + 3024D29596A05D6D26B00A2D584A7A55 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 404125022A4DE6ACDF8B89CC27579A03 /* RCTTextViewManager.m */; }; 30363912631BB1C44CADF345BE0C724C /* UIView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 652C6468FA0798C97AF94D97EEA5B6DA /* UIView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 304DA0D33346E09E619AAD904E6CFD85 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = BEF1AF86C4CA22839409EAFA0F5A2362 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 304DA0D33346E09E619AAD904E6CFD85 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 916C8D170D3596242144EB807F11113B /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3060BF1405F7ABB478493A90B64FCFCB /* F14SetFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C3FD4AE0C7D7460F1D8CABAF16FF714 /* F14SetFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3065F04E0401C33C4AC2E4E36A416605 /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = F24F6CF589AAEA086940626C57E92799 /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 308C87640D35D1E3C633032AF321F283 /* ConsumerBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD101156B2BC06522BA75AE5CBC21471 /* 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"; }; }; @@ -786,22 +786,23 @@ 30EFA1CE7F1133015F0E3E10A28316CF /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = A25A52CD12189FE3A4F7F4CA22582AF6 /* quant_levels_dec_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31104DDF23E644091D0B208B51B3F550 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 7BA9A89DD0043C79CC3773D2A576B47E /* upsampling_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 314BEFBCD6A8C616A4589D1939461D15 /* GULKeychainStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 73EDE3EEF45AE2EABE6B40C4440BC958 /* GULKeychainStorage.m */; }; - 316E7D6240A4CBFE7A3174962EEA4914 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 7883C05ED00ABDCC8429FA9E3FD9A7CE /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31935F903EB3421E32FCD701A8DBD38F /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 88AE2466CE9D3EE389C1998564A9D1E0 /* RNCSlider.m */; }; + 316E7D6240A4CBFE7A3174962EEA4914 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = F315CF8B919693216DB3F453348507C8 /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 318291D218B6B634DED9426B8388A64B /* EXAppleAuthenticationButtonViewManagers.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F4AF770831C42771BFF441F32A06190 /* EXAppleAuthenticationButtonViewManagers.m */; }; + 31935F903EB3421E32FCD701A8DBD38F /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 3190F6F63102777D0B20446986C48AC0 /* RNCSlider.m */; }; 31962DADDDE276F6ABB6754ED6E7EE1E /* RSocketServiceHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AAC48D7F1751CB19AA0F6FF5619610CA /* 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"; }; }; 319A95BB763E66FA343B43AB20D262F3 /* FlipperCppBridgingConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 6004474FF0FF4E8ADF74104D607D5934 /* FlipperCppBridgingConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31A892DBD91E377E85107B4FC88FEED1 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DE9FA24E0448EDBCB927E3A2EA991B44 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31A892DBD91E377E85107B4FC88FEED1 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D30D8C74FFA15785DB15BC7AFBAA963 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31CA1F80D4661804D819BD261F21AFC5 /* DistributedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E51A17A62CC1ED1DD8973517632E8A4 /* DistributedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31FD8DFA47B6AEDCBB2D1C7B48A2B1CF /* OpenSSLLockTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = C20AF5E435127DBA67BC1E57B6561AD6 /* OpenSSLLockTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32139BEE9683EC3EE16573BEFF42C21C /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = B8F54589F8E464A861654B6BA8D4331D /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32139BEE9683EC3EE16573BEFF42C21C /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AD03E484778128BB377B052A004064B /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; 321E5783FD6AB1B2E124AE90C409D435 /* SingleWriterFixedHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 113CABA82A1AFDABBD9BD0633DB77BE6 /* SingleWriterFixedHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 014B16143B6BE9269F59C30B5C9D178B /* RNForceTouchHandler.m */; }; + 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 664B5DC0915CFC4E8AB867A5708297D9 /* RNForceTouchHandler.m */; }; 3259B3941D9E4CC09A9A27E51E89450E /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A27E7CCF0BE3E67CAAEB68881FE3132 /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32622CE75F78F8E2F8D5400CD2CB17DC /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = C56B74B0A8D4393BF56F060DF429EFB4 /* FFFastImageView.m */; }; - 3268AC6F8341AD59A356F49E24D7A68C /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 72D3E0A25B23EE863ED72FB6A6BC343B /* EXVideoView.m */; }; - 3281A3156AD63267FDA1D1D4DA80D5DE /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = 4389C794EF360A373970122BCE3E3B04 /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32622CE75F78F8E2F8D5400CD2CB17DC /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2625B767D0A3165A55BF95193B14F6A5 /* FFFastImageView.m */; }; + 3268AC6F8341AD59A356F49E24D7A68C /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = C0C8628D3ECA2DC14F6E5DAFEF019A26 /* EXVideoView.m */; }; + 3281A3156AD63267FDA1D1D4DA80D5DE /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = 167E5DDA48F3A4D87178E63BE121B4F0 /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3292BA9319F6A044C79AE28E0D918FC5 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = A624B6E2C6A10911DD280873B241BCA2 /* utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3299094AA6F9AAD51F2C6B7EFA6F7283 /* RCTVibrationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = FE3AC1673D41D15C7C6718BA6182BB6D /* 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"; }; }; + 3299094AA6F9AAD51F2C6B7EFA6F7283 /* RCTVibrationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4BF56BE3E96D4B9ADB90A98D1091192B /* 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"; }; }; 329D8DC4DF1F87F450F10F8695FAF36A /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = DF3769950C7FA25FE17811F6ABFE5CE3 /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 32A725DD12977D66DE1D185F429EAD35 /* AsyncSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F17B1D8B12505C59B68DEF70AA852D5 /* AsyncSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; 32AC28388DEBC44E892603D239EEDE0B /* AsyncSocketException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2CFC64A70AB0E91C95E6C266AD5D221B /* 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"; }; }; @@ -812,26 +813,26 @@ 336AF37B5F585C4DF000A22B615C60CB /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = DADC31C9BC5C1E83908E3894CD1ABB20 /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; 337AD4C3D05F965B85CAE6BCFC70C73F /* RSocketServer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12EC624D805F2A2DF72612BAE59EF11A /* 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"; }; }; 337E0C9857B179E5EC97369CE3EAFB0F /* Assume-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F96BBC2C349EFE0561E41FF1D59ADE2 /* Assume-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3381A15E738D9B9F0E2B4E5B6962EF59 /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 38D99895242A709511883F21E9571FDB /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33825AE552B86EA4DFF1456042AB3861 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = B218FEA1EEE285B60FFA63E09C29E7D5 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3387000CC1D65427B1EF0E7A6D10FB83 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DC699F0D9FE9CBAF4C154CDCB2CFF9B /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3381A15E738D9B9F0E2B4E5B6962EF59 /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 23FC3234B2DB57E1ED7030BCE13BB424 /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33825AE552B86EA4DFF1456042AB3861 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = F3A0A2FEF9B77CEC928875C842D41586 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3387000CC1D65427B1EF0E7A6D10FB83 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 65ED8E6D61F888582FD232F2EF962FE9 /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 338C33E4A2EB50C20A830E837384EED8 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = BFB653590FB299B61B9D0198545B5D53 /* SDImageCacheConfig.m */; }; - 33C906D21E0095E99444F2130D76E9F4 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 988B83D5C4E72194AE3C172467333A1C /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33C9DAD6F6980D6E44985EE759169311 /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 14EE582EA538BF33EE107885F8B42466 /* BugsnagErrorReportApiClient.m */; }; - 34544937627B86CB42BB16F02E12B037 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 98B8E95BC68A4DC2A4F499E3C087CAB1 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3463C175D4F311CD3A28FF95ACA98E00 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 210DCEF81B5A5C5B4EECC6BAC8BCAC40 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3473A25D4D716A7FCC6576D1D71CB291 /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = E0B16B296EEC12B40F25184707097A87 /* BSG_KSJSONCodecObjC.m */; }; - 347B182C399E95A640EE32BA18E0D4B0 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 614E957D62CC940EA3B4C5C652DBD96E /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33C906D21E0095E99444F2130D76E9F4 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3112F58816F680D616BEE524C8BA9360 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33C9DAD6F6980D6E44985EE759169311 /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = FEF078F0F06D226117C9B44CCF7A934A /* BugsnagErrorReportApiClient.m */; }; + 34544937627B86CB42BB16F02E12B037 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E8A93A2F6D99EEE18CCA27D6486437B7 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3463C175D4F311CD3A28FF95ACA98E00 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 16BEFE6A5F51633D8AE6553FDE7F2B38 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3473A25D4D716A7FCC6576D1D71CB291 /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = 078ACB560B9DF301B22DB27AC0251D1B /* BSG_KSJSONCodecObjC.m */; }; + 347B182C399E95A640EE32BA18E0D4B0 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CC873D1D6B745AC90DADC4CB32145AA /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; 34DC275EEE112BBD0C9C8E142883BF10 /* StreamThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4284C13E0107188DC785753754385D52 /* 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"; }; }; - 34E70A33FF98EC9CFCC391F122B36E87 /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1898543D12931668DB83E756B14A50CC /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34E70A33FF98EC9CFCC391F122B36E87 /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A825626709AF13F75D065EFCC2E9178 /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 34EA20ADEFC65F6118975776F29B5ABE /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 024F789B72FA8D92CC84DCD82857AD1C /* picture_csp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 35269B5057CDDCC7DEA2FE786C99AF9E /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D2EC814C1E6B56F2E15D7B2A3949020 /* RNFetchBlobConst.m */; }; - 3537CE1621452E04CE333F76DC5EA2FE /* RNFirebaseAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B0EA60829F0C9B8CA01FE04CD80A98F /* RNFirebaseAnalytics.m */; }; + 35269B5057CDDCC7DEA2FE786C99AF9E /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = DA5D0AA93E7BE6BC076BCC751014EF46 /* RNFetchBlobConst.m */; }; + 3537CE1621452E04CE333F76DC5EA2FE /* RNFirebaseAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C62E93D5388B7592EDAB0D07709AE40 /* RNFirebaseAnalytics.m */; }; 353B9345CE16AF6338035CFD93D16671 /* InitThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B68E9A3C2EB364D589D3580A9545F9B /* InitThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; 353E3AF04FFD70145B93E29D0B322A3B /* ChannelRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 65D3CD29CCCF80F74B831E34B4DB49BC /* ChannelRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 35509AB2DE9757199EE5A9A606C9E058 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = CC19DEFC6439BD6658EB9C08F118CBAD /* pl.lproj */; }; - 3567CB332EA82A9AC5E4B08594213F26 /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 51AA1D7606FC15F2B0A46B782BB51B3C /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 357556976C6B4B8D49DD1E04031A3BA9 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 25C2D49CB4D73F95CEA2CEC1A59E5672 /* Yoga-dummy.m */; }; + 3567CB332EA82A9AC5E4B08594213F26 /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C1BC8CA70E28EA5EF4D34F254C9D63C3 /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 357556976C6B4B8D49DD1E04031A3BA9 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE644E26D8F04368E378F7B19A941786 /* Yoga-dummy.m */; }; 3585440364A592462F3DAB4360A8A9C4 /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = B15F68A62E7CA9CF78F4A1D8A499A4CF /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; 35D47F3D1A1DBD7B85CBF95EEB5D1CA5 /* StringKeyedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F6D72CF3105B4E6E2B3311514B7C10B /* StringKeyedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; 35DDD6805DDD9E1BD962EFE1F8B3FDE1 /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = 624112E646914E16C271BDFBEBF5372D /* FBLPromise+Await.m */; }; @@ -839,63 +840,63 @@ 361A2F0A5202176F40E488F6D554E381 /* GDTCOREventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = C9E37D0A7EF15030428AF98EAE0601B9 /* GDTCOREventTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 36360FCF5DF26972E15B00638335C00A /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = ED85978DBD2A2A4FCC68CC490BE3CE4D /* UIImageView+WebCache.m */; }; 3645C6820057437CDBE24F59A3694F89 /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = DED6AD875BC4C446ED34B3ABFBEF4B0D /* FBLPromise+Catch.m */; }; - 366116BABF4984007964E29E1D5ABD22 /* RCTConvert+UIBackgroundFetchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = F065C44BE36C5DF55B20032E78356FBB /* RCTConvert+UIBackgroundFetchResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 366116BABF4984007964E29E1D5ABD22 /* RCTConvert+UIBackgroundFetchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 6060942BEAD2B3B29663F1F50D7605DD /* RCTConvert+UIBackgroundFetchResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; 36639B3E5EFD659484EA7418ADBC3F1B /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = AB65728D71BBEAE5B472C8895E06E6C6 /* SDImageGraphics.m */; }; 3668005604E469D2C61ABD5F410E3360 /* SocketOptionMap.h in Headers */ = {isa = PBXBuildFile; fileRef = EAA90E02DE3D4BEDAA81145ECB6D010E /* SocketOptionMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; 36838A450767D18415FBE60D36FC69FB /* TcpDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14AD00F6794B75E13769E36734C64BAB /* 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"; }; }; 36925435DBBCDF40101DF4DA0D176285 /* OpenSSLThreading.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DF42BF532FC18573523B1B1541B260D /* OpenSSLThreading.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 369D11ECECB94E5C764B2E9B73D58AE9 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = F65EA3DE2F2099329D2ADA67D0E7F9D1 /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 36B30A72BB2A2EB9D72BACEBA5A74C69 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = 96B561AF4F25EF93227A811EE49EB5C1 /* RNBootSplash.m */; }; + 369D11ECECB94E5C764B2E9B73D58AE9 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = E68CC1DF95728CD766E101D0963B0270 /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 36B30A72BB2A2EB9D72BACEBA5A74C69 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B167CBAC7DC720B989DFA450011E400 /* RNBootSplash.m */; }; 36C7EF28833E6681D834301FE13A86F9 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = B5641DA0FB52220D4E7D32DD81D26817 /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; 36D4E8D299A73059B713FFDAF61EC22F /* ThreadedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 676F49740B7638DB7B74741C75D2C906 /* ThreadedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36D95171D464546996955F5E08AE12BC /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 11B26118160321B6863E597D7ECD6ADA /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36D95171D464546996955F5E08AE12BC /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 53126359D02D735A3E1AC5815EF5ACB5 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37043ABBD4DA0792B89D11FEF04F995F /* TOCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FEE60C719A471DBD4B5E6093935C8FD /* TOCropViewController.m */; }; 37102F4139638538537682CFDBDD3521 /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B33486157295DFF710C44DBFAB9E184 /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 372882F92C66AD589C117E6B98043712 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BFB63298D093460F7276CE628FD93AC /* SDWebImageIndicator.m */; }; 37454D1D4E48456581921A7287508CE1 /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = 32A060A76FC1635AD55AAE0FB1400BD3 /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Project, ); }; }; 374560D732665B18E6AADC57D1D9B12D /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 072C64D0E7E5B999D84E772A74C31778 /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37532852A078B0FD5BC654E9D95B5B1A /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = FA05A81B6B93648F197FBC4600021D44 /* BSG_KSCrashState.m */; }; + 37532852A078B0FD5BC654E9D95B5B1A /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = B79690820F853D09C764DCD73376DDA2 /* BSG_KSCrashState.m */; }; 37561D58917BF3DD193FA026B4DC7819 /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 8A9577B62669DE44C9220B05B75BA13E /* buffer_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 37836713E1CF2FD3FF5AC8E73DB956C1 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 79C9D72B3BF7D52B8E6B78801BBBCE55 /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 37836713E1CF2FD3FF5AC8E73DB956C1 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 08841ACBAD03EBFF0D2F52BD702B6CDA /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 37A8A74509CB140CA1CBD2862791F6C1 /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = CB74B18282B8339F5CAA7D7FE7101893 /* thread_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 37B34066BE54D6792D10B8C2F9B7752F /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = E895CCA4FDC4BDCD1ACEA84305D9A7E6 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37B34066BE54D6792D10B8C2F9B7752F /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FC3B717C83FAC114AB040CD800E0E06 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37C9A7BFC98577A5A2F702F0D9249832 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = EB14F126E96758354800E2285FA57A06 /* UIButton+WebCache.m */; }; 37E3F0F29964F4FA9C40E1CCEA52F682 /* SwappableEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 12685E77FBCB9CBCC8C7CBA44526FD02 /* SwappableEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37EDEC2BDB04F892C3CB29C4F9A8C34E /* YogaKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BD21A41F3FC35E0DFC33DF605CE33EEE /* YogaKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37FCEB31D086A0F531245307B9F7C801 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D9C142FA045994E18AF7EB623943D58 /* EXFileSystem.m */; }; + 37FCEB31D086A0F531245307B9F7C801 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 1711B188EC11F4C1FEAD7932A4A1A3DE /* EXFileSystem.m */; }; 38073539C1CF74A17AC81285509C60EA /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = AF1A52C998D8171D541BEDA5F06D24AA /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; 381F3D7E2878B051D339526BFD2EE849 /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 29D9B2C34C5B4908444142055250AE80 /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 382D1B33DF592436E96A9505F8E9E725 /* PublisherBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B01459926C4078CD55D67E0BD4E6367 /* 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"; }; }; 3842C7262C69AD90463B43931CE9B8D4 /* backward_references_cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 521CD7F02EEA41315FD805AB120C0A74 /* backward_references_cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 3861A71C26628C93C77FCD87EC4761FB /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C33CA0AD7B1BEE00F781E293352D69B /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 387DD6E0D2967BDDED87AEE55A05DB16 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B0694334ED556A548C81BDE6C48F957 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 387DD6E0D2967BDDED87AEE55A05DB16 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DE47BFDAFC0E663561F7E81427C0C6FD /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 38A3CF8E02900F0510ACAFF100A723E0 /* TimerFD.h in Headers */ = {isa = PBXBuildFile; fileRef = D3C35135DABCBA394FBD2D197842A07A /* TimerFD.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38F35E24D856E9519A212722C0D13E59 /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = C76F717D6AB5581F9DF8FEC3A698DF88 /* RNCAsyncStorage.m */; }; + 38F35E24D856E9519A212722C0D13E59 /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 99B30853C542D2115F98448315C2D52D /* RNCAsyncStorage.m */; }; 3902C93559EE5739F37997B5E9892D4F /* Request.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CB1D02E2B3AB38BE201FCABAAEF17446 /* 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"; }; }; 3903BECE2CB09D1D3A70A5824DE36B4F /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = F2A3C274279BE96B58A5DE58D474AE16 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; 390AC40A3C333FB6A81C2D20EAC1A0CF /* TestUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 9833422D7143F6C729DB2838AD7933BF /* TestUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 392A3ECADD8AA6EE73D72561F4FDB23D /* ShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD915A7D91A75FD6552B9FEB4C051B45 /* 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"; }; }; - 394B7E1DD8A560A5803CFE96108B0666 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DFD37227366B3C1618056411F6E0B4B /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 394B7E1DD8A560A5803CFE96108B0666 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 42CEC327588106C76B062F4A34140ACC /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3953D3F50A05E1AA87124E85621F6D92 /* Fingerprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9D14EDE01F8E280A8F8150227B7F7A6 /* 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"; }; }; - 397BCE98217DEEB9A0A1DD81E3DE5389 /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = F590FE03FF7424B45E768C3BB84B8D3E /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 397BCE98217DEEB9A0A1DD81E3DE5389 /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2B9791A84E3FD01985C6E61A8FE2E3BA /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; 3999E05ED92EC4228CA26EB230DB43AC /* GDTCORTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D4387B5DEFD6C500A6EB7878ACEEDFF /* GDTCORTransport.m */; }; - 399BF22C6BB6F9A04043BAE54B59CD8A /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F6018200CB5E3676FFC482BA965B684 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 39A8B0F0C8877BB15AD04CD38C7C9161 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = C081E766A0AE388CBA3494056F0B22BB /* RNFetchBlob.m */; }; + 399BF22C6BB6F9A04043BAE54B59CD8A /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 03D7B85BCC7288374F354DCD44FC86E9 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 39A8B0F0C8877BB15AD04CD38C7C9161 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = 54F82C1E638911B9626F6A00BAF5B246 /* RNFetchBlob.m */; }; 39C64C7D0A3CC2D7D7A0143EE11F6446 /* Frame.h in Headers */ = {isa = PBXBuildFile; fileRef = FEB3E3A918DA80435DD0BC14CF927F1F /* Frame.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39C7B8CBC7FF6C71A08118BE63C072A0 /* Peertalk.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DBF55AB682A256705CF187E386752F9 /* Peertalk.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39C85EC983B5B8A9B6EFDC621F1D6F50 /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = EFE361B26106E6F84706D937E4E2CC66 /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39D5EBF062B74C8DDCB6DE46E8A9219B /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = F64A2236E01682D2970A235FBA9C2DAF /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39F711B3EA8188B6D67BFB8C89EA750D /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 884963FFF7286D1F95FF395295AE946E /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39F711B3EA8188B6D67BFB8C89EA750D /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = C4D42313D4DAF406D2817B141A119FA9 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39F8B48ACB4F25C361745D13D7538C99 /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C3D20E580F0CADC319B189ECC794295 /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A25A0B031EDD3B74BB39D3AD8967E3D /* GCDAsyncUdpSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 93A97AF91CB068344041DEDFC987F6B7 /* GCDAsyncUdpSocket.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; 3A366E0112A812204DAD3AA497EAD09D /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 89D545D00ADB0D177CAAD36AE25FD7A8 /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A42B7CBB1077B1681D8BAA47FD729F5 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2F408CA55F852A4D3F12B11AF6E1B74 /* 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"; }; }; - 3A548E3DC62B7BBF58AF7D7B2F157707 /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BF8476CA10BDD78496BF6B5FE11FA585 /* QBAlbumCell.m */; }; - 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F74C75537AB9A84C780287DC28D5023 /* EXConstantsService.m */; }; - 3A5DB1E5EC7C9DB692B411AC12981758 /* UMAppLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C684CFA3C36CAF10DC81C506460AEDA /* UMAppLoader-dummy.m */; }; + 3A548E3DC62B7BBF58AF7D7B2F157707 /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 4491B07A5A45C84FDC154B2DFC264C3D /* QBAlbumCell.m */; }; + 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = C44725A1EC6B0D7042E990E8FFAD2EBC /* EXConstantsService.m */; }; + 3A5DB1E5EC7C9DB692B411AC12981758 /* UMAppLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ACBC6B28CBAE195DCE491C2C0BF291BA /* UMAppLoader-dummy.m */; }; 3A5F5528F10F93127EBBFE10043B3EDD /* ClockGettimeWrappers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2D18FD92E5C02179335114DA146D002 /* 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"; }; }; 3A6B7B5EA8B4C74A3B3628907AF2C361 /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A9111B998F6951B90BEEF4356A22BC7 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3ADA517D682534F4669406B324870C1C /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = E44F841DC9DF78E1B86554A60A81A457 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3ADA517D682534F4669406B324870C1C /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D4954EAB8F90824EDE56AB510D5EE73 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 3AF8B694617A74F8749ADBA3E1C57FB2 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 307AC7E91B54A8B513EEE19246B784DA /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3AFEBD8603F5475633372854B818713A /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD334D5E8416D4A54BBB26548C42B522 /* 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"; }; }; 3AFED154CE58A7877754321B3D5B17DB /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = CAAF2F5D82AACC7F5CFD8A399BF072DF /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -904,165 +905,165 @@ 3B2FE6120D6A53821D07E463CADA2433 /* Malloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52BB66794D5CF468F90579F021C92C04 /* 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"; }; }; 3B333F775A3E42130B41AE2EF4E0B53D /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 480ACD8EB66689B1DB2A7EFC233EB866 /* near_lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 3B40FCB8E0BF9B46F95712AEF680A135 /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BA90470BACE453BC61F5A465707585F4 /* glog-dummy.m */; }; - 3B426494F084B4127219E522755411FA /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = CB88B79C919878F1B5CD996CF6B8E240 /* RCTKeyCommandConstants.m */; }; + 3B426494F084B4127219E522755411FA /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = D6A54E68A069603C40EB24A3073DD1FA /* RCTKeyCommandConstants.m */; }; 3B4A8B19ECB268E4FC6EAD4276B63B6A /* ThreadWheelTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEB33EDDF13C4B81FF081BC41152CE31 /* 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"; }; }; - 3B520593596D5C39DD58B1C8B5F2849A /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E2734511CCA2D3A8075B4395BEC90893 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B520593596D5C39DD58B1C8B5F2849A /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4294ADC52CAD14B81DE5D364BF4332DB /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3B5A6465606762C6EB7BF68923C55487 /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = C892F6E29BEFAA900F4D34736A3A395D /* FIRAnalyticsConfiguration.m */; }; 3B66445B8389FD8B6FEC18D5C63CF08F /* ManualTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CCDADBF1E0BCF5E4B4986AC4DA0A3F9 /* ManualTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B86A109CEA0B850B0A64BF002AEA50C /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 90B37B107B18843F906626722F0D460C /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B86A109CEA0B850B0A64BF002AEA50C /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EFBCED0F028458C60D260A2443070DE /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3BDA042F4452C7A9D7762E7E5DC1E06C /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = AEABDE2E04ED6688F5850A93F9B58F01 /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3BE233D9068B6A6CB6B8FB96806FFB04 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = E994B959E37C0F18C04F59661A626018 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BE233D9068B6A6CB6B8FB96806FFB04 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 708760842867F929E52FEE8EF9CB114F /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3BE35415468374E7FD5095CC14E1132C /* StreamsWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = D9AF91F511D1527EA8D0048D84814E9F /* StreamsWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3BEE1FBAD4B96E245CD9AED9D181133D /* pt.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2FD89FE7149F49ECE939C0D668485C2A /* pt.lproj */; }; 3C008D6C8F8BE78D67CA9CB7416A0FAA /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A51B5944DAB19F25618C50A23CAAF4D /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C0FFA7C0FBB6DBE9C5E543870C2DB32 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = 6319D387E7FC985E43290533F2D2C188 /* BSG_KSCrashSentry.c */; }; + 3C0FFA7C0FBB6DBE9C5E543870C2DB32 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = 11124971ECBA9E121883A6EF7A92CE49 /* BSG_KSCrashSentry.c */; }; 3C15FBD85FABEBFA4D591E85969CEC1F /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = 81147D7932B8A1B042539ACFC2A3BE4D /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C2BB5FD7D39742D46B07E6EC1404395 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = D129EE55B0AB5F819C224A05A8ACF06A /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C2CC35AD5DCB89F74870ED731466DB4 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC589DA00C01A163E318C72EB67B785 /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C31CD3F689030110809D1AFD7C1EFDA /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = FC9F526B388676BF9A6E4B720D850578 /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C3ED2C9C2422B18BA8F904508318AE4 /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = F44A0CD19357F15C7C00725A8D33E20D /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C2BB5FD7D39742D46B07E6EC1404395 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = B4709D727E040593EF466742C728E8C8 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C2CC35AD5DCB89F74870ED731466DB4 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 57DC9EA4D5833A0806D27ADB335ED964 /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C31CD3F689030110809D1AFD7C1EFDA /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = C227F4B7992430DBAC04276C2B6014C1 /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C3ED2C9C2422B18BA8F904508318AE4 /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B7FF6573344CDA68FFC6BB1457E8553 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C4E24A310EEFBA07294381C4AE6E302 /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A80277C8113E75C2E96371380BE4F8DA /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C52279D222791B4251C03AF8205D902 /* RNCSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 02A9C40501F0D483BFBFA6D239378924 /* RNCSafeAreaViewLocalData.m */; }; - 3C52A7E842397DEB2CAE85EA2724EB6C /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 41B263499C915410519F6D1081B02DC3 /* RNNotificationParser.m */; }; - 3C52E81AEF158725346D9F914382DA9A /* RCTDevMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = D3AF7EE60D514CE7E7F47CEB81130DF6 /* 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"; }; }; - 3C57B9928E0E9E9146182C7BB5615F19 /* UMAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A3B86524E138D9F36C6ABB751E7231E /* UMAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C636CBDF2CABF345905D733C76134B7 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = BDC04558F9FF3CDAB1C4CE6F8493591E /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3C68614C14BDA7E46DCF9BB1270D5937 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A7FECA96FEB380EA071B4BFFFCB15A9 /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C52279D222791B4251C03AF8205D902 /* RNCSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 379625BE5B27420085234B6B8BF607D0 /* RNCSafeAreaViewLocalData.m */; }; + 3C52A7E842397DEB2CAE85EA2724EB6C /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = E57A68CDEEEECB747100BA81E12450CE /* RNNotificationParser.m */; }; + 3C52E81AEF158725346D9F914382DA9A /* RCTDevMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = E183097BAB8F512043C9880F96EC7BE3 /* 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"; }; }; + 3C57B9928E0E9E9146182C7BB5615F19 /* UMAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A4F57D2ACE402704AF6C758AA83E669 /* UMAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C636CBDF2CABF345905D733C76134B7 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C64BF2A1D2437CA52AEE039EF8792AA /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3C68614C14BDA7E46DCF9BB1270D5937 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 1578EE1C0EA94CFE091DEC4F00AE2E2C /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C73244EE8A77E5BD59DD8C113FE7664 /* EventFDWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 282B3B8630B35B791B564F393334998C /* EventFDWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 100FC90DF3F10194AB37E353AAFC64EB /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E4E3D7778CEABC0932F3CD31EEC5032 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C7E7789B620CD423919122D943ECBE0 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = E4278F47054CB9E002306CA4A1032C6C /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C98A74B81322A6703D4A7A5C03E5F34 /* SKResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E5A77E2B1D23553F1FCFEAE09A389B8 /* SKResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3CACE745B0107D8C1EAD78E15B7A7764 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DA5AE4E810F3B738C224A1B58B470F6 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3CACE745B0107D8C1EAD78E15B7A7764 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EF403D5ED7B4AC1BD1B459C3D9B0A38 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CBE6FF9CF1D82A56BAF731390BEF2D2 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 21FE4D900ED58E6E62B988CFE1D0A798 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CD64518F73B6927C62245CDADE43076 /* ParallelMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D155128010AF261FE95DC95C89602D5C /* ParallelMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CE9795118C3E5792C3D682BCDC67671 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC8A23409DD44B5F9F4C09C9F1739D71 /* 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"; }; }; 3D28C702086FF74739928D70196FA81D /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = ABF655AFE18A01D4FDEDEFA6627CC4A9 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 3D2BDDA5696E0248B91335C53007C1D8 /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 92CEE13991A2CE7894691032BB099CF6 /* RCTKeyCommandsManager.m */; }; - 3D68D2557A63C01FD65F87F4565A0A53 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 18EA6B6BFB191F4006C3102D8E1E7B45 /* UMModuleRegistry.m */; }; - 3D6B17E830FAC8972A903412ABC93839 /* RNCSafeAreaViewMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9473CFDA5453C71E6ACCD1EFEFBA8291 /* RNCSafeAreaViewMode.m */; }; - 3D7DFBCA8CB38E2E8E522F41E114C453 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BCB3B01A2DB62F391DF3632FEEA5D34 /* React-RCTImage-dummy.m */; }; + 3D2BDDA5696E0248B91335C53007C1D8 /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 01E29E1E919123FA73529DB1E40266E0 /* RCTKeyCommandsManager.m */; }; + 3D68D2557A63C01FD65F87F4565A0A53 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DDEACF6D9F9C551705FE0806A63C8A8 /* UMModuleRegistry.m */; }; + 3D6B17E830FAC8972A903412ABC93839 /* RNCSafeAreaViewMode.m in Sources */ = {isa = PBXBuildFile; fileRef = BAEAFDD188CD0F7613AD9D7734ADFC80 /* RNCSafeAreaViewMode.m */; }; + 3D7DFBCA8CB38E2E8E522F41E114C453 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B8CA43372B9273DDF55F3E98AD3F76ED /* React-RCTImage-dummy.m */; }; 3D908533C5BDA9E1C662C9426D1A38A8 /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A9937D7A360E83F8CA7E0155AF042E5 /* SDAssociatedObject.m */; }; 3D93DB04DD641799254FA46FAE37CC5B /* Futex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9BE213EAF1BED4F9EA35340D536E52DE /* 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"; }; }; 3D9F8FE3C127F89AEAD65F09969FE642 /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = FD6708B675C2F8B1F60BD6569F43FE01 /* muxedit.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3DA5DB3392201B4BDCE5115EB4646156 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EAC3A1E336464E750674F250E41896A /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3DB2B8FFC504E9B2209D51E0471B3072 /* NativeExpressComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 498C735C0DD0DD70289652F0489A7F4C /* NativeExpressComponent.m */; }; + 3DA5DB3392201B4BDCE5115EB4646156 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = 4391A5FFBDF8ABD0DBF0BD40A41B7DA8 /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3DB2B8FFC504E9B2209D51E0471B3072 /* NativeExpressComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = D93AB3281682C4922FEE2F3E42D74976 /* NativeExpressComponent.m */; }; 3E3F53ADD7E28D7E1E396842FEA1EE02 /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CCE529ABE0E34CAD537F852450CA485 /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E5F4AA9BC4B59F72BBCB8B243D8AA76 /* GDTCORClock.h in Headers */ = {isa = PBXBuildFile; fileRef = 42FD1E55CC5460FBEE20AFB73228F4D9 /* GDTCORClock.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E72F4E30D9B7EEB3144323D44D03793 /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = DBB0FD75A20E2729FDCDCD93D991BD55 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E7847180091C117F370AB3A0260AC2D /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FFBCD0B7DE6F43541E299E6CFEBEDEB /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E7847180091C117F370AB3A0260AC2D /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 517ABDB6A1D22F90BC800E73D1E05B81 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E91F68D2665D1AA0069E5C27FABCA9F /* ShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CB5C667C1590F39BD2834E9BC051BD2 /* ShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EB21B0946E427438F5EB5F7A7F5AC31 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9474CC013D4697CDBD52788FB775552B /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EB21B0946E427438F5EB5F7A7F5AC31 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5203E8481C68C7F88B05A6095736E0F2 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3EC8C2462B60DB403104F22B294A4B24 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E82DDAD9A9BDD55B50D8A85D999856D /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3EE1BBD1D425E3C37DDB027A7AA79791 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 234B1411B48C8BE2215721F896C6B79A /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EFD3182765DA02AEDCD4FE78CEE37EB /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = DE5C940EFE41E1C1AF83582732C954FB /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EFD3182765DA02AEDCD4FE78CEE37EB /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = E48FF155CEACF2D353DD9A1988CA19C6 /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3F16574039A61B5C86268A6D9E5BD931 /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = CFB3FCA2C67521AB182CFE9EFF633396 /* picture_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3F1E35D158FF8C684C77D8C47820A675 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = BA5C8C27B1A70FF09C0A1399433E8219 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F4E6AB35F55AE7DF736BE8E399AF815 /* RNFirebasePerformance.h in Headers */ = {isa = PBXBuildFile; fileRef = BDFF81F9DE62DBA42323C8BFE40CEE08 /* RNFirebasePerformance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F1E35D158FF8C684C77D8C47820A675 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 90D34DFF04C9FC93FBC548E5C5BC1EC1 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F4E6AB35F55AE7DF736BE8E399AF815 /* RNFirebasePerformance.h in Headers */ = {isa = PBXBuildFile; fileRef = B88FACE80867F4D89F910D7379D7C891 /* RNFirebasePerformance.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3F92210457EDD0ACA1619BAFE752413F /* FramedReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E703D4D7A31D6F024E7661E778E709E3 /* 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"; }; }; 3F93027B044BA4ABF4D115764CB29244 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7BF3144925C79D25A7C2564D0DE6E7E9 /* 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"; }; }; 3F9348227893EA6B31E31FD5F58CEA7F /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = EF816D90F70DF67C69E47BF0B325AF38 /* NSData+ImageContentType.m */; }; 3F9D460D6684DBFD200DBE5839299505 /* ProxyLockable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F805A5F2A3FB56443D3089F8902B3ECF /* ProxyLockable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FBB88E0254E6E6972826A7C76C136B3 /* UMModuleRegistryHolderReactModule.m in Sources */ = {isa = PBXBuildFile; fileRef = AEF64B8DAEBD007EDF874E01EC76C39D /* UMModuleRegistryHolderReactModule.m */; }; + 3FBB88E0254E6E6972826A7C76C136B3 /* UMModuleRegistryHolderReactModule.m in Sources */ = {isa = PBXBuildFile; fileRef = D6F3946CB852E1E2D18BE5EB7F732CB5 /* UMModuleRegistryHolderReactModule.m */; }; 3FE0A32EC96E9E49C2E7A93852717142 /* AutoTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = E8999353FF8CAC00061ED4E7C00D1E52 /* AutoTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3FE6DC36C896C99E4F0E10B92E1FE061 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 342C1A6308329C1B905E347FC5BDAFC4 /* frame_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3FFC12F083C51549727315984B52D62F /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = D81E1612834A84D6B03A94D54645119C /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FFC12F083C51549727315984B52D62F /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 3438ADEC6BFD173853DBE02CDB14D4E6 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 40012AF9A094885E9B287E998C5F218C /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = 5647B093DEA4FD66B05EBBDA403050D7 /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4007B7F35C430A2ABAF9342676CCE0D5 /* TestSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = EE20E3C158D7A157487A592380C8AEB3 /* TestSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40297B0904C2075155C04CDEBEEA2952 /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3250010EA1DB72E62D84585E36016E5F /* BugsnagReactNative-dummy.m */; }; + 40297B0904C2075155C04CDEBEEA2952 /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A21B730283D7A49ECA943EC16683056 /* BugsnagReactNative-dummy.m */; }; 404D6BB861E63EEB9E73E08FF90F800C /* Flipper-Glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 12ED3A017DA113F5FB9A727B91D58167 /* Flipper-Glog-dummy.m */; }; 4053B1CC3CD5A04F550DB606726DA74B /* Flowable_FromObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = B11776B7517CC0AFDF6D99E1526ACDB1 /* Flowable_FromObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4055AAFEDDE879890C0A9470247141DF /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = EAE8249B059213ECC026BA4C8FDD79AC /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 40614B380FD380F02DE30BF3AC2B5BD2 /* SKBufferingPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 89E808B4A9703BA1DCFE85A9396470FB /* SKBufferingPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; 407D321F392BA208926EBD1B3F68D901 /* ScheduledSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1D806D7DD73FF9FA103135069EAF9863 /* 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"; }; }; - 407DE17E311F50FDA9BC4ED4C4759FF6 /* RNFirebaseAdMobNativeExpressManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46EBA374352563CAA6026EE0F163A87B /* RNFirebaseAdMobNativeExpressManager.m */; }; + 407DE17E311F50FDA9BC4ED4C4759FF6 /* RNFirebaseAdMobNativeExpressManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B36E7575D09CE06B36B64262E56AD7A1 /* RNFirebaseAdMobNativeExpressManager.m */; }; 407DF13B0A6D61F156D84B50D25A3E2D /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 2D7BF22D6E06F8C37F33C8CDB0AFDFBC /* upsampling_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 40828CDB34CB0D9DB95817B36B4DE561 /* Latch.h in Headers */ = {isa = PBXBuildFile; fileRef = 009CF839932EDA691FF3C5786F28642F /* Latch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 408674694B36B848A4B92FE078AAF425 /* RCTVibrationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = FCFCEDC08449593B9FB0E57605CA2344 /* RCTVibrationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 408674694B36B848A4B92FE078AAF425 /* RCTVibrationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FA37BB8D5CE3A4D72821970E36DAD96 /* RCTVibrationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; 40882DB2D16FD7AD4EB5CC4DDAFC57F0 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5ABBDFB0EB3AB7D3EA468CF07FA3BC /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 408B66DC035EFC857FA1702A13AC9C86 /* RSocketClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CC8DACAEB11E7FF7CC1604A33EE5D54C /* 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"; }; }; 40A23638886D0871919E8248E4E765E0 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = F8960E9B87F3A55518983A3C7A995408 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 40C19A28E1F99D7F8C3EAC8556CB967B /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = E55BE8314FE62C3F798D69B2788D3C70 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 40C19A28E1F99D7F8C3EAC8556CB967B /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 077B84BC0E5BCB688AF3980FA3447CFC /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 40C5F7BC48B53F2B5C4EF3B60F4C21B6 /* PriorityUnboundedQueueSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 83583FC1B109C80FBCC8A68E68DF2276 /* PriorityUnboundedQueueSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40CDD7F679A86CF4FF45DC85BD332979 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 011FF85ADE51F2C3229D8D1563E1B5D4 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40CF3A37D9BF440D6C6BB7935251E91C /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B15677836E5397891055B57F0F56CB1A /* 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"; }; }; - 40CF73FCDA240596DC19AA28D4083E53 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = C6A8B65A67CE8BF70D0C94161CDA35D4 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40D3D7F8A9A20E8AF9968CED7BA360DC /* RNCSafeAreaProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = DB53E4FF1C728AC66238D25582F67411 /* RNCSafeAreaProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40CDD7F679A86CF4FF45DC85BD332979 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = F71FB544BCBA56AEDEF822FD83066F59 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40CF3A37D9BF440D6C6BB7935251E91C /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E3FD77131EA5EDCE0E84A962E4F4B4A /* 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"; }; }; + 40CF73FCDA240596DC19AA28D4083E53 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BFD2EF897B8C56DCB198B1BAB5FC9E7 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40D3D7F8A9A20E8AF9968CED7BA360DC /* RNCSafeAreaProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DC98997424B18CC73CB93D3C00FFEDB /* RNCSafeAreaProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 411A3C1B75FB16BE3B6C5709BBB21AD0 /* upsampling_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = AC3558B8BE5C9B4D23936F49886E35E9 /* upsampling_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4130743FA94193D1413C4E4A1F925D6B /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = FD83D6F380CD41F473F3B59B403BC5D4 /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4151149DD2912D71C7B2B5BE90FF6BCA /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 77EBC371CE7BB4992C1E30829A5DFAFB /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41A875AF9B80762A227B0C9FCDADC17B /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D94744C5D6317657409A956D035A95A /* EXConstants-dummy.m */; }; - 41B4C42C2918C9905168B6B5E9407853 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B2BA726DFF2CA5AFAFCB606A31E1705 /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 41C0B692521AF1F9039A5CE16E841F76 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F399B9AD5BD896AD6C74ED682AA7C653 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4205ADAF94B00946E01FCE633872C359 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ACEC62AD3F9E866C6D987DB71219DAE /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4130743FA94193D1413C4E4A1F925D6B /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = 22AE0F027BA8E662707B93E6A49025BC /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4151149DD2912D71C7B2B5BE90FF6BCA /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F0AEA7B0AFBBC79FE0CA376439E2A09B /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41A875AF9B80762A227B0C9FCDADC17B /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B1D9EE485F3205646C5051B7F089AFA /* EXConstants-dummy.m */; }; + 41B4C42C2918C9905168B6B5E9407853 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = FF797AFF7642211A0E1F523358E1D58F /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 41C0B692521AF1F9039A5CE16E841F76 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D261CBE9D3D62109B6D4E8FA46F0BCD /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4205ADAF94B00946E01FCE633872C359 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 86A09AE5C83D80F26243E9C6A3BC235E /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4209E12A312F80DD614ADF85D9F60BE9 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = BC641C3536C6D80CEBDE234F1229F43E /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; 42153C09FC24FE15AD327A468CF1700B /* GDTCORPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = 02F896E427E81E60D05E4F642B7D77FB /* GDTCORPlatform.m */; }; - 4245B43F5AC653CF0AC74F5C7D13BD58 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = 61D6870C67E4DDFD5D2B3D0A4A48852D /* BugsnagCollections.m */; }; - 426742BF5EE2C85DF496E2DA3CE428D5 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D2EE2F1FC5DBB130C6DAAEDC66A45312 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4245B43F5AC653CF0AC74F5C7D13BD58 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = DF467F947B74376C96C9A29D47C69BD8 /* BugsnagCollections.m */; }; + 426742BF5EE2C85DF496E2DA3CE428D5 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CE82D196E79A1F0F729CFA3631A98AF1 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 427C8FA489A629A5C9890AFAA39EA86E /* PriorityThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = C52F8C39642878EE119EB3371F5D3E53 /* PriorityThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4280A2CE689E5C853DF3ED1DE2B480B6 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B50C536872CDEC69C71B3C8565C6119A /* REAJSCallNode.m */; }; - 429154760417DA4A8F0A41BC41D04047 /* RNNotificationCenterMulticast.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B55DFA95AF3D4E90C11136AD780D408 /* RNNotificationCenterMulticast.m */; }; - 42B2B3F9374AFE30E947D405588183B0 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EEAB525FF29656BF4A9BC0EF3846EB7 /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4280A2CE689E5C853DF3ED1DE2B480B6 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CFBC723AEB7D761951B2444283230789 /* REAJSCallNode.m */; }; + 429154760417DA4A8F0A41BC41D04047 /* RNNotificationCenterMulticast.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F143168A55B0B275D7ABE38E92D0A7C /* RNNotificationCenterMulticast.m */; }; + 42B2B3F9374AFE30E947D405588183B0 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 522A8FF859ABCC748887C4355C5DD8BB /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 42B8240821C5D0D7926B22BCD88098F1 /* TcpConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = EC4413815440FA626EF27F8EFC09DB3F /* TcpConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42B9C64402F7F76D826CBC8B924AC777 /* RCTView+SafeAreaCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 500EE510AB695EB73B13EE9C3BFA1420 /* RCTView+SafeAreaCompat.m */; }; + 42B9C64402F7F76D826CBC8B924AC777 /* RCTView+SafeAreaCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = A2E4A8E1BBA2C9D7FA64DD67F7403DD0 /* RCTView+SafeAreaCompat.m */; }; 42C3C38FC0F225C773DA5A837CFD8196 /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = BE535D39BB5BF6825CB208F2AAB9C249 /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42D5E5785A1807EE38AC0D0420B4618D /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A15FBDA096B2BD5A70750F661A84F01 /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 42D5E5785A1807EE38AC0D0420B4618D /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 025E645C19027FF11B2AD002927427AD /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 42D6D2B79FF8FC8F0FFEC2AC126ACC37 /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B4884B99063BB48B97948B437FE8022 /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4309F6A95C2F4533FEBADDAB9EC72DDC /* SKBufferingPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = FBA85ACF43FF0FAEF4C6707191AD5DE6 /* SKBufferingPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; 430BDCE7D0538E995FE37CAEBE40B4D0 /* RangeSse42.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE27226AD935AC533B0B64711C769CE5 /* 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"; }; }; 431778336B1ACE03A58ACD10E0BDAC1D /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = F96B80676FE63E0D028F1460709D6B88 /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 432416CCB63DC7456440129E2B240E24 /* EXUserNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D4C288124F351C8ACC90F7B1B6EDB6 /* EXUserNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 433845A51A7B94C7E3FC1BA166EF3AB8 /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 04B0CAFC92C46EEDCFB2A67C85B3D411 /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4338BE4A10F8AA3757F3564234E12DF8 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = D8C24E2E075EE060FE9733722C3C2512 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 432416CCB63DC7456440129E2B240E24 /* EXUserNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = CF6E7C96EC29BA645245BB12B05D8BBD /* EXUserNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 433845A51A7B94C7E3FC1BA166EF3AB8 /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2932CAE48B908051425DCA562EFACA17 /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4338BE4A10F8AA3757F3564234E12DF8 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E1749F8D2A7A46634E4C9E76C88DA67 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43392A4D79B8DC5E22D18499B86234CC /* ScheduledFrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = BE9300230844BA7A2D03F3BAE5DC8BDE /* ScheduledFrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 436A6BFE7B20D2A6B3F135835E3530F5 /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 2E342836BC369B6A02CA365B2EDFE945 /* cct.nanopb.c */; }; 4371D77F7D30EE2C28086AF3C6141AAF /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BA7636E5ED7A99CC81EDA96CECE6609 /* SDWebImageDownloaderResponseModifier.m */; }; 4395F7FF43E68CA106DE3C9C9EE8EB6A /* Semaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 352C7AC625618C55B3C1EB9ECA388A12 /* 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"; }; }; 43A22B01D4DC0FAF7BCB423E3AFB00FF /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = ADD867981938A544D7253B6A062EA2D9 /* SDWebImageTransition.m */; }; 43CA220075CB818C01526FF2A9432522 /* ExecutorWithPriority-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = CA9B9A0F952298A17AEB73A87F18C7DA /* ExecutorWithPriority-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43E66942230401F7747CCD2FA4B72718 /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65F9AE4F2347C36409967A9064055FBA /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 43FF764C9A571CDCDC54C22C16462EB9 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E46A3A8AA873E918E25622F55AB0003 /* RCTInputAccessoryViewContent.m */; }; - 44077BE7DC478E91BB1F7FBCBD475D79 /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 52D5A4999CBC938C3EB96C5EB0DC4C53 /* RNBootSplash-dummy.m */; }; + 43E66942230401F7747CCD2FA4B72718 /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4712A829EE1ADFA4F46D1872DA3A3A90 /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 43FF764C9A571CDCDC54C22C16462EB9 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 03055D7A42E5E850114489ED90D99F78 /* RCTInputAccessoryViewContent.m */; }; + 44077BE7DC478E91BB1F7FBCBD475D79 /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46A45D2EF0AD50250C14EC10A064ADF9 /* RNBootSplash-dummy.m */; }; 4409E6512D39E11B09F0A04BAEE9A0EC /* FIRInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A775134BE2BBC43B646F99B9D67150B /* FIRInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; 443D3DDF5D13F55E3BE2AB33A97AA222 /* ScheduledRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1649E224C4DDA3C3C93A193AFE08D20B /* 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"; }; }; 44497A704D0C992E58AFCC35D072B3A1 /* StreamRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = C52761B7DA3EA39F7288C036525CB927 /* StreamRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 444F98C1E4DD386225533E8C80FBA788 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = BAD1C571D64BB9D0FAC96D240044C4CB /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4456DC7E9228FF28308FEEAA206EE6E5 /* Request.h in Headers */ = {isa = PBXBuildFile; fileRef = EF4E4DE2415A64664FF173A23F04A49B /* Request.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F311E036A6CCE07931510059BC1289F /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44C9F9E631175EE5DCB9CE7BDD02A15E /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 06353F9686498FF537BA050E3967FC4A /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44CE88088F17C4DA76F31DB5A23EF1C0 /* RNFirebaseCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 8211C849B0BB27D35A0F6DE827D32200 /* RNFirebaseCrashlytics.m */; }; + 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = CFA2603FABAEAAB495CB1DA0BB90CBF2 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44C9F9E631175EE5DCB9CE7BDD02A15E /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 08286E5500972EC4C7AFF7710EB30701 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44CE88088F17C4DA76F31DB5A23EF1C0 /* RNFirebaseCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 259A7A98CD2D59BD5742C7E41787EBD7 /* RNFirebaseCrashlytics.m */; }; 44DEAD0A33C7D76B606E996CF39F0A81 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B7E6CF1DA3AC611617928B73C696AA2 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 452641E607EA42EAB0D4C7FC7F68438A /* RNFirebaseRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = A3E8E1BCDFF6FAE4E66CDC2970F384AD /* RNFirebaseRemoteConfig.m */; }; - 4557369F93FE463848E140D0D70D2063 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = BDF2FF995645E381FCB060220D610084 /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 452641E607EA42EAB0D4C7FC7F68438A /* RNFirebaseRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 0231B9765D9737322AAC9865EC423544 /* RNFirebaseRemoteConfig.m */; }; + 4557369F93FE463848E140D0D70D2063 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BA5BEBF5EA5AEAF9C55ADFDF12357EB /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 458213474465102B117267E9161B7363 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B2DBE064CD3B929A0F4DEB8762C8BAA /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4584237784EA05B37B6C57AEA19C0DA1 /* FramedDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47F2E167D022EC3B2BBB539B5FC5B7B4 /* 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"; }; }; - 45955CF3D29DDBFBD70BE7074C312431 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B7FBF33AC92AD6DA22A777AFC78B0BC /* ARTRenderableManager.m */; }; - 45C8C704DEE98A453BF3805330308D96 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 5842DB1199154EBA3E343304048164C1 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45955CF3D29DDBFBD70BE7074C312431 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 183E61566B54F596580EB43C7A97F866 /* ARTRenderableManager.m */; }; + 45C8C704DEE98A453BF3805330308D96 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = D5B352B7AC0F23E844B39268237DF74C /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; 45D699FECA801F44943FF1FA546A60FA /* IOThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8783AFFE02885B74233095A928454D3C /* IOThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45E453D6D86AF7E65607897FDA4EB49A /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D2700DF3CF92D5D0959C6DECB90A629 /* ImageCropPicker.m */; }; + 45E453D6D86AF7E65607897FDA4EB49A /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = E30318F688F0094C6830361CADB31299 /* ImageCropPicker.m */; }; 4620B2AEA9AF6351E661200E2DD3A3C9 /* Uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15DD8D53302593BBF07E4AAAE29BCED8 /* 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"; }; }; - 4647F15E0AAB72AAF4365266C1EB0F4E /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BBDC55592B966BC42FA09853201E349 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4647F15E0AAB72AAF4365266C1EB0F4E /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = 40E6DCD80E4FC6FFB164600E707463D7 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4660AD51A8D6ACBF5A2A87CD7512E905 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 557D102B219E85522190E096C43E8104 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 466306A54775FBB6D3367A06DA9D4D98 /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6870DCF7D43BE3A808D451F892C25075 /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 466306A54775FBB6D3367A06DA9D4D98 /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 02CA029FB79AF696A740D09145194B3B /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 467BF23FF6980B07FCDC81FAC9BC9C5A /* id.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 13CCEE65A81AC4AEFAF2C7B869CEC702 /* id.lproj */; }; - 468E2BA37E64CD16F291C2603E6C6D60 /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3686AB05F2FB2444048AC98F5E5E305E /* RNCSliderManager.m */; }; - 46A868E9CE27BA610763D1E1E7538ECC /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F29C01F0F038B5B6E246B15665C0C07 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46AEBF140BCD7FC59E5ABD95295133B5 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 13476D98851D62545BC85FC3F3B75065 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46B19C66E71E44CAC96E95D478DDC0CD /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EE3EB154C4B26EF48C50AFFA8D0F031 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46C30CCC695ECBE006BD20B5B0B5569E /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A4802CD6320F1866FAF9644C0B4F0DF /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46D63884E3DEF1CCD5362A994CC9F375 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = BC9CF095234EAD63B5212461C7F34C3C /* 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"; }; }; + 468E2BA37E64CD16F291C2603E6C6D60 /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 09A01FEB7B8297EBB01FB336C4B31A7F /* RNCSliderManager.m */; }; + 46A868E9CE27BA610763D1E1E7538ECC /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AA5953CEC6B4F9133E614A9B1EDAF92 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46AEBF140BCD7FC59E5ABD95295133B5 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = EDEFE166DD7CD1DDB8170EB2EDC5647C /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46B19C66E71E44CAC96E95D478DDC0CD /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 93D5D1140E791F42067DC156835CA7B0 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46C30CCC695ECBE006BD20B5B0B5569E /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B4423D352B299A86B76B33FB2B911D68 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46D63884E3DEF1CCD5362A994CC9F375 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 739CC36EF22AB6A559FB5581FD5EC465 /* 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"; }; }; 46F677887FF3768DDC04707CD0DDE1A1 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F0FB281C37D44B7516BBDC39FE85AF57 /* 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"; }; }; 46FF233827FD9F59855A0707AD6320FE /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F8E40CA30A2750FBC8296C9FE83154B /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 470DBD3E5CFEB15377A9DE736580E7BC /* RCTNetworkPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 73B76E5FD97B79666C2860E073DB45DF /* RCTNetworkPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 470DBD3E5CFEB15377A9DE736580E7BC /* RCTNetworkPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 87879C5F90E0BF186BD7EB7751024664 /* RCTNetworkPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47100C8C26038713F688529AFE01C5B2 /* Checksum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F19B841F7DA21EA94D9EF149EDAF3178 /* 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"; }; }; - 47137640EA9918E330D043246EA8EB14 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = DD7B73D7FEC435308A3D05DA19880F93 /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47137640EA9918E330D043246EA8EB14 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = F7CB6BF66BCA18F01B9CF33D6B04566E /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; 474C3BE8073A5D673B57C69C7996E60A /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 863FE9B5F77248181613FA2BDB5ED4FA /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4750F79CFFF949B8F30142D7072CE41B /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E9B4CC3ABAFE80A77B59E5D3D8031B4C /* 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"; }; }; + 4750F79CFFF949B8F30142D7072CE41B /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 23F91F7ECFFD18675908FE501CA1B836 /* 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"; }; }; 47590AEF8918372FE41C5480D9091E6D /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F6CEAA5D418CC1CED2D2ACE01D78B26 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4777554C153B236B131B65B82D265D9B /* GDTCORLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = F358BACB84136E28A17E34D7C15F5AB1 /* GDTCORLifecycle.m */; }; - 47A5093A7C03F0DB0BA913BC76B9A83A /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 45B6D745F1887A0E606CD8358C2E2862 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47A5093A7C03F0DB0BA913BC76B9A83A /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 88956C81AA4B077BC4788F5BD4D3B66D /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47A6E5DF69708A9B554DB9510EA2B78C /* FBLPromiseError.h in Headers */ = {isa = PBXBuildFile; fileRef = F57A9E352A753038A63CD62B43664F1F /* FBLPromiseError.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47B66FF514DE8F14DA8B915436661C1A /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = F3AADB7DA7995E8E50D583A2F2D41DFB /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47BEE0CF5DF52F0AFFD813803E3382B2 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = F36EFD190D824B1AA3C9D168D5A91F6D /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47BEE0CF5DF52F0AFFD813803E3382B2 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = D674B7043399AE923A8080EB3E0DD7B3 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47D644E0A812CEAF1C3397017B6D3269 /* CPUThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F105840ABB86138B7A45331444829B5E /* CPUThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47E2E2BC07749B3A2978080B181FD194 /* TLRefCount.h in Headers */ = {isa = PBXBuildFile; fileRef = E5B7EC14977E161F9A256842E077D32D /* TLRefCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47FD2A663D13ED9D779AB1B4A7D517BE /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 29606D0428A257B7EEA91DF2AEF5A104 /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; @@ -1071,51 +1072,51 @@ 48377AB732CAE5FB016FC6D671D2F028 /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = EF87BCE72094E70086C6A87E257D97D9 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4863677D1787975D4D4AD4631CBF3CB2 /* AtomicUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A2FA88289F51C3EDDE7D9319C5B10200 /* AtomicUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 486EC643435E18407070A694FF7ABA13 /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AB61E70D6808E0040F3B13CD7755458 /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48C00656B6B6504BF3E9443AFB067A4B /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C5C63223AB5EAA7F18B5732308E2937 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48DBFFF2ECB6D32043950EA454CB93C6 /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = AB0B91B89C348E1C5FDAA47CD5F30C9D /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48C00656B6B6504BF3E9443AFB067A4B /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD21030CD3C2076216E327F1F2AB1A2 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48DBFFF2ECB6D32043950EA454CB93C6 /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FC9F360C6E2DE922732719E9CF39F59 /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 48DDDD887768C3EB92C89C1F9C23B92D /* Future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9EFE463C43910C54A890ADAC0086996 /* 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"; }; }; 48E8DF65D2A2A6278FF46469CF948058 /* GDTCORPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D589AAC9C2027007645B7D5BDA05231 /* GDTCORPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48EB5A4F7788EB85A925C41694548662 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 11B2CD6FEA433142CF2642FD63D646A7 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4911A49352FA3F1FD70F0A16338D5A20 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EAA37A2A4911AD73687B72C8D0F5311 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4939A4F89154BC54B6D4CD37BC3AF6FB /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 56015852126C5BEE74215276534C3B92 /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49659FD56D7A26D9712075D2973278D9 /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FCF17466F0DCA386762F8FED8C852E0 /* REAStyleNode.m */; }; - 4973DE666E368BC3A61245D6C8969AA9 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B6FE6D4BBBC604D1805CF59A5685007 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48EB5A4F7788EB85A925C41694548662 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3636F14631625280E28D82BACF327AEB /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4911A49352FA3F1FD70F0A16338D5A20 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 63CC07745CC112A9D0FD8C382B2E4996 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4939A4F89154BC54B6D4CD37BC3AF6FB /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = A401BFC2002B1F9F6DAFF5F0A3777E03 /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49659FD56D7A26D9712075D2973278D9 /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 719CB1BCA06AACF1CB60A6CA66317BF6 /* REAStyleNode.m */; }; + 4973DE666E368BC3A61245D6C8969AA9 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 77551D21D017ED844EB6B8D74A5B0FEC /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4977E406F103BC7E9F600C3C57CBF755 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 348B199EEFC3DA083A2E10408D39B62E /* picture_rescale_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 497A593D49008335CA1284AF1B2D3CF5 /* FIRInstallationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 21C84F6D1366D920F804707536A54084 /* FIRInstallationsStore.m */; }; - 49820FDD699B4BE9595BD373833EF371 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1542983A99B8D9A17698A7EC78796E04 /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 49820FDD699B4BE9595BD373833EF371 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = D9279E8DCDD76912B395B18D4F8F102A /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4994983DAB79F82CB6C7B3FAE8EE090F /* FlipperClient+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BCDAE4A50DD905C59990F40625FB0A5 /* FlipperClient+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49999504FF0B43EA03D23A9742A506D9 /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B146B293C998566D39D24B2C5EE51B8 /* BSG_KSCrashCallCompletion.m */; }; - 499FEAAE461FD29D544C7CC5DE018BFA /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 950A2656476330B7598DF07A0F6A7E93 /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49BF6E7A84AE6204A4FB7F24F7B14760 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 522A67FF6DEF458E98CF38C1DDE3CE3E /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49999504FF0B43EA03D23A9742A506D9 /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = 119FA8BE700BB585F326E8DDDBE2097B /* BSG_KSCrashCallCompletion.m */; }; + 499FEAAE461FD29D544C7CC5DE018BFA /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 21DBB7108A9FA1EEFCA9735DD0E85D7D /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49BF6E7A84AE6204A4FB7F24F7B14760 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 30D01623D5B2069095D4078A25ADB625 /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49CAC6443A707C331BEA57C02856261F /* SKObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 44897F3CFA9058AC66EA46BDE9D4E921 /* SKObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49CB6E0BD077995D6FE671AE085BBB4C /* MacAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E6086A72DC6A3CCB544C74155D5EACBF /* 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"; }; }; - 49CB873D7004E4F5DF6458EB2A92AC9B /* RCTAccessibilityManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = FF20E0E867446DD64D310ADC5198B062 /* 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"; }; }; - 49DB95D5B5E96008133B3E3DDE4D1F98 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 58854BC93F03FC6A4441F422C42E5A69 /* ReactNativeART-dummy.m */; }; + 49CB873D7004E4F5DF6458EB2A92AC9B /* RCTAccessibilityManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9AF0129EA8B4E8F540AA07097DCCEED4 /* 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"; }; }; + 49DB95D5B5E96008133B3E3DDE4D1F98 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DC4753856349A20BF60E239F3DE0374 /* ReactNativeART-dummy.m */; }; 49ED22AD77FCA7D73439C955EC426CD9 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 66AD95F396C13CE8EC124AA18BAFA3A6 /* backward_references_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49EEE7711D57EED8E0AAE22C745C541E /* ConnectionSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EAB24F913164B156B7F211F6F33D9B23 /* 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"; }; }; - 49F2EC3563399A1BB0FCF122982D86D7 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 77B74BFAC97BB50C9BAAD83849B1F1D3 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49F2EC3563399A1BB0FCF122982D86D7 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E84BABFA46907C3092C5F2ABC995C29 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4A21F2608B9DA7432CB306111F436C8E /* EventBaseManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 244810D219B6E98BEDE760339F52EC1C /* 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"; }; }; 4A2CB3037F6044AC27BBEF315D60B6EE /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 45416CE24440AC226668176D00E285BA /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4A57D866B6D03E82B4FCA3BA226A8984 /* it.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 961CADB0E5CD518E42C75D299D86FE46 /* it.lproj */; }; 4A719D312510D21AFB33E68F642D3F3D /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = CCBE188E6D63D2509FD75176889897BD /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A74583FE28AC53E6F70FF752B5BB4F9 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 01AB4AEEAEFBEA748EA4844C2FFCFD7C /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A75E803AF46B56D11CCCE41CE8FBE0C /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = FA7CB6620E78F55861DAC14448B01FEA /* UMUtilities.m */; }; - 4A7CBC49E0E714E315BF2E22E39BC136 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 691B872DB95DC8ACABB816163EE7BF2B /* UMReactFontManager.m */; }; + 4A74583FE28AC53E6F70FF752B5BB4F9 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 24289386D837C7C24973A780A5CFC145 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A75E803AF46B56D11CCCE41CE8FBE0C /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 003EAF4329308F1EC6185DA44A1D66DC /* UMUtilities.m */; }; + 4A7CBC49E0E714E315BF2E22E39BC136 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C5F49D1EC24C9C8AD979AEF0E0EFFCA9 /* UMReactFontManager.m */; }; 4AC690953B74C886E5FF8BD390838079 /* FIRInstallationsAuthTokenResultInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = DC20B874C6A68011CB27B5F88D53F250 /* FIRInstallationsAuthTokenResultInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AD9C2A6410A8A5406F0F079246BD04E /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2246D8A7E67C1D1932D5CE9417BA86E4 /* 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"; }; }; + 4AD9C2A6410A8A5406F0F079246BD04E /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2D1FDE73C0584894CCEAA11A49E2129D /* 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"; }; }; 4AE716C8CE1833E6A3314B910C450EB8 /* FIRInstallationsIDController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B11D8F6B10DE245DD594083479F5770 /* FIRInstallationsIDController.m */; }; - 4B174EC3B79E737EC18607D92EFFA69B /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 36B4B555A7345845BD541D75B33A46D8 /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B174EC3B79E737EC18607D92EFFA69B /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = E190A81436A1E6A3B90BE76CDA87269B /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4B3964B71F74D3D48482B3D853DA94E5 /* GCDAsyncSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 33D0D0C5D3CF1763B7E47E413FDAD898 /* GCDAsyncSocket.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; 4B6624A1006ED93B3305A5C01B680EAD /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 3BD3D4E6B83467B5A10273B7C54AC3BB /* random_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 4B75E3FFB3D2849FDB5C18EF604FC7B0 /* FlipperCppBridgingConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = E65122D506BBE3FAFF52042089A13191 /* 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"; }; }; 4B78280A70D9BB666FAB125C4D89A8AA /* TOCropToolbar.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FF7FFBB3A1C00A5DFABFDDDE2BBEE7F /* TOCropToolbar.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B7E182091DC4DEE2D2A5E1706F0D6A9 /* BridgeJSCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99AC7C72CBC41B73D2CE21846CE83564 /* BridgeJSCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4B7E182091DC4DEE2D2A5E1706F0D6A9 /* BridgeJSCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 156000D09829F9412CE412849106C412 /* BridgeJSCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4B925B231DD0F1A4DEE0367814E32490 /* RSocketServiceHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B8E4CC3E9E146017C706F7F1BB8AE183 /* RSocketServiceHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4BBA805E7B1BA9E6C8AD89E9D9579637 /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = C9449BD91D95C25D43F9181CA3577DA4 /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4BE9AA0AC9220535A1CC94231A061BC8 /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = 012D2366D2C172885416EEAAB9F76A32 /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C27A9AD108236F4F6ADCE9F417A2B93 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 674088A105FF58213544F7538F565151 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C5605F65CD87114E1137603C0A6DAD1 /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = A4D5E68CF3BB3186A5C0B714487C9D4A /* BugsnagMetaData.m */; }; - 4C58FFDEC23FCE92A89D81681B14EB77 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5E822BEB2C4FCF710BBDC16671A1AF25 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4C27A9AD108236F4F6ADCE9F417A2B93 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 99D5C8C0B6B045FFA224BAC71C1C3860 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C5605F65CD87114E1137603C0A6DAD1 /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = 14B051DDE46778264E83099E407929F4 /* BugsnagMetaData.m */; }; + 4C58FFDEC23FCE92A89D81681B14EB77 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7A2F23E4B697DCF260B94A6A4A8E1A8A /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4C6BCEBBFC73C8EB1DC1C131213E7A3F /* FIRInstallationsIIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = AADF4AD8D1389D4DD8D6E871DC5EC1DD /* FIRInstallationsIIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4C76D9A8EEB343746F6A73E6573B2D03 /* WarmResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AD093D7CD3B222CC7E443BBA1C797ACC /* WarmResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4C7861B119472BD8477B7309689351FF /* Future-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = A364F0AF0437389BC6A853C1D2E5C929 /* Future-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1123,53 +1124,53 @@ 4CB17CB8D126B3C0756BD759ED594ED0 /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = 64E56B2614F5D42FF65FA87F764AD690 /* FBLPromise+Testing.m */; }; 4CB1C4E683C40915621BBD422C570224 /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 86DE475B8C6CB8C7E6355AEEC42F2E1C /* GULNetwork.m */; }; 4CF3D08C153169A8C9C45051D909163E /* FIRInstallationsAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 569F9E9198C1B4D2BBC78F62ECD1EA31 /* FIRInstallationsAuthTokenResult.m */; }; - 4CF4A1ACB731A31DF60286829840BB67 /* RCTLogBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B77EF67D215D0CC165090EF68145073 /* RCTLogBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D0094D0DB02BBAA1A05DE84CFFA938A /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = FF798471BCEAD019E573DC6EA756217A /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D01B773A72D6899D310073B55EE554D /* RCTLogBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = A2C6CB41654BA05C6A611A04DFD81CFF /* 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"; }; }; - 4D1758AD30A72983B7EF76D5EC538BE1 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = AD6688EC2CE33D6B45E08DE00102B8DA /* 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"; }; }; + 4CF4A1ACB731A31DF60286829840BB67 /* RCTLogBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 752EBEF4EC71B1AA44A5C0D90110F58E /* RCTLogBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D0094D0DB02BBAA1A05DE84CFFA938A /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = A7798071B7755EBB888C05B185A09583 /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D01B773A72D6899D310073B55EE554D /* RCTLogBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = B8FF9CD3EB5A10C3E96DCF23DE830F73 /* 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"; }; }; + 4D1758AD30A72983B7EF76D5EC538BE1 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EE0EABCCC36003AE9A066A1311388C6 /* 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"; }; }; 4D26D41DC25595A9DDC19434692363C2 /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B92BDD940F925497B067CEF1DAE04BC /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D52D79DFB71CAF47B95A999F1F99567 /* RCTActionSheetManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = A16FA912EF54257986B57147AF617E33 /* 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"; }; }; + 4D52D79DFB71CAF47B95A999F1F99567 /* RCTActionSheetManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 80CF828602B6DB507E88F991AE246BED /* 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"; }; }; 4D70DE57BE4ED28E7AC93C9C849F11C6 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47CF75D10934F39790AC9D0BD005293F /* 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"; }; }; - 4D8EE5879A925DD23B6D7B1C82F0BFE6 /* EXVideoThumbnails-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1018BD214C8F0629210A84AD70CB7294 /* EXVideoThumbnails-dummy.m */; }; - 4DA09B3F7B91287B9EEADD4F6CCD6D20 /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = FE5E796B79C0061E67CF9C648ED2371A /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DA8304474BEA599DF8E2F8D29F75DDA /* RNFirebaseAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = AFA11A4B03E0F898AC5E5B422EF99D41 /* RNFirebaseAuth.m */; }; + 4D8EE5879A925DD23B6D7B1C82F0BFE6 /* EXVideoThumbnails-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0633D4BC2B6C74F5592307ACB6CA753E /* EXVideoThumbnails-dummy.m */; }; + 4DA09B3F7B91287B9EEADD4F6CCD6D20 /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C879FAF890CC44C742103804933655E /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DA8304474BEA599DF8E2F8D29F75DDA /* RNFirebaseAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = C51E3248075DA87730F8569F1ABA1D10 /* RNFirebaseAuth.m */; }; 4DC3C93691EB8D66A121CA71EF8113BF /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 182EBC33A94F4200EED630D4051AEA48 /* enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 34E846E2A6909123C2B8E5EC4860DFAA /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E0267A7B63543C6304321C820D6C83E /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = ED55E50BE639C12549AAC281D82AA3FA /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B2801CE3D0AA03D69A9078311329EAF6 /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E0267A7B63543C6304321C820D6C83E /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 00A208973A5C820DB58EA49C7ADFEB32 /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E17E34A10921015C84C16FDADF1618D /* ConnectionContextStore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A0CD4826E47ADD06ECE185411BB6E03 /* 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"; }; }; 4E482BE9AD7430C9B3E1B787850C95DF /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = CB93992DBA1F6CEB65DEDA0CD40D6318 /* huffman_encode_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 4E5588F198AE4677917C8940ACE0A4F1 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 725E287E607D785B413443F8A05E955E /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E6013E485F9ED649C319A0D4F4FF62A /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D8551A70D7C7711E79188E2D0317FDA /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E6013E485F9ED649C319A0D4F4FF62A /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 026D365C03F0738EBB8705648566148D /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E7F408A6C7E76CCCB1D7C04FBC62B7C /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E9752BC689397DC85C1EB924545728A /* SDAnimatedImageRep.m */; }; - 4EB2D04587312A7B2BE1A6AA95DAE6D9 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 1657E2CFAD8519FA56E7AC6F8133E913 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4EBD35331B247A7AC5B814CCCB418A7C /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5A272D2C380C2A684AD218B6946C09A5 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4EB2D04587312A7B2BE1A6AA95DAE6D9 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 71531F4D01A58061478E016FA6E16A8B /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EBD35331B247A7AC5B814CCCB418A7C /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 86BCF8918FA45AE14CB04B6ADA4D6627 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4ECA0D81891EADA811094561AB083DF3 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = EDDB70FF4ADF28EA822826C03211B12D /* dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 4EFF0DEF429EF816734CCDE018C3C798 /* GDTCORUploadPackage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CF6865EB0BF3A192313356A078FEF06 /* GDTCORUploadPackage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F012C6282E1CEC511611133B36A3F4D /* FrameSerializer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 059D07B656F170281E4608441D5988EB /* 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"; }; }; - 4F03A4B5C2F4EBB29BB6FF2656366CB2 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A248C549D661E6A17DD0BEAF6ED72EE5 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F03A4B5C2F4EBB29BB6FF2656366CB2 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 86E7A2742CDDAC5A74CEFA4B2A333DE2 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F11A9CF13C6D879459774E82AC101F9 /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C254A8332C4E39AD6D3516D71FFD32A7 /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F165C53DEB201655E404D327B10E2F7 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31AE3C94309955E524BEF01546E39AFC /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 4F35BE496C429404C93CB58D411B41CE /* RCTWebSocketModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 631022D61685D08D77DD54C946C65685 /* 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"; }; }; + 4F165C53DEB201655E404D327B10E2F7 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31B9586A25A945DFDF336F9090B11E07 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 4F35BE496C429404C93CB58D411B41CE /* RCTWebSocketModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = BFF25A5890088FE3163334A7ED4D8814 /* 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"; }; }; 4F87F03E8E671A7FAE79D64F5879D866 /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2003381948AFF7CBC11D32CF2F11C33 /* 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"; }; }; - 4F9658CA8344A2C6EFBB843700EC590A /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CF98F4890E38089DA734E167808B5C4 /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4FA7A1FFCE343A5ABA9FD6FAF8235F08 /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EA14D97FB3AC533F53FDE8DA09D3E8C /* LNAnimator.m */; }; - 4FA93A9BF665067BAA8E1BA1615FB242 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = E0F93B07CA6A177B020501B813AF73FE /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FAC86DCEF03878B76396DDA8E94340A /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B1AFAFD053657E0139E2976E1B03C55 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FB88F0D253B715C034CB05ED1A2BDCC /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D0271D5E8E0630A5C01B1A874559A40 /* REAModule.m */; }; + 4F9658CA8344A2C6EFBB843700EC590A /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A450AD5397BFD2E0D6FDB4F0F6450FE /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4FA7A1FFCE343A5ABA9FD6FAF8235F08 /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 080EC6C50A948DD67F2B8A2304C6EB5F /* LNAnimator.m */; }; + 4FA93A9BF665067BAA8E1BA1615FB242 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 02EACCEF85C6401CE759EC23BFD20E25 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FAC86DCEF03878B76396DDA8E94340A /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = CFEFBEA04FA99AD9C4C0CCF8E7EC85FF /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FB88F0D253B715C034CB05ED1A2BDCC /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = FE7137F593DB4D74102C04004E6ECE76 /* REAModule.m */; }; 4FBC2BE9E6D22E669918E689C6196CB0 /* ReentrantAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1087704F8AB27E2FC8CEA11CCA45BA10 /* 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"; }; }; - 4FC056AA5B803E2F5E1BE4D5EB038A0B /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A69772246CC5C13967C50549B628B78 /* react-native-appearance-dummy.m */; }; + 4FC056AA5B803E2F5E1BE4D5EB038A0B /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C9F5249E7488AC68C5C1BF0BC0810D36 /* react-native-appearance-dummy.m */; }; 4FC8CA3267CA7D49DF58E08780AA5E19 /* FirebaseInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 286835DF3559AC299C2D9CD4496A883D /* FirebaseInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FD5858446B70602FED0813A5DA32380 /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 18FD9E2CBD18D0E5921C04F1483C3BB6 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FF75206B5BA87DFCE3B74F326BDC989 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = C62FED310E09A30A66C26D17632271F4 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5024C25DD7F09BF4D3A7BEB004B435AC /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13DD1B28DAEDF569254323914729E6C3 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5026E819E515397DE9820BDB18B436A5 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4887C61A076F4297E7EC218B52CB90CD /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 503F96DD76B26B7F3FF816FB7F6E6B18 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C65A9DA1E65CC708117D99AAB7D0C4F /* RNLocalize.m */; }; + 4FD5858446B70602FED0813A5DA32380 /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A0F82FC8E543DE98A2ACB23CE52A960 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FF75206B5BA87DFCE3B74F326BDC989 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 91D62D79BF728D7D47458B94EDD49343 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5024C25DD7F09BF4D3A7BEB004B435AC /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9640D0649B16529059D96E55D217B937 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5026E819E515397DE9820BDB18B436A5 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E5F66F8E856DEE00B552564AF706E9D /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 503F96DD76B26B7F3FF816FB7F6E6B18 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = 7849699F5D9238F474EA192DBE3B1BD3 /* RNLocalize.m */; }; 504624B6461EEC8B924857670A089B16 /* TOCropOverlayView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D9B2787E581ABE1196173416CD9CF93 /* TOCropOverlayView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 504DC67E19BF97F896369BC24282F55F /* ReactNativeKeyboardTrackingView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 192FB3DB5A581D02931D684CE8836984 /* ReactNativeKeyboardTrackingView-dummy.m */; }; + 504DC67E19BF97F896369BC24282F55F /* ReactNativeKeyboardTrackingView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CBDA1D4944626DCD719D472BAD21DAD /* ReactNativeKeyboardTrackingView-dummy.m */; }; 504E0EE4CD7110B5D286FFC1B25B07A7 /* OpenSSLCertUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D57A8C137F69CDB10C4A5FF42A17582D /* 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"; }; }; 5051BDE8EFA401DF6FD5ADE291764FC5 /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = A186F3FC4D7CD50D00298D3EFDD4165E /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50664A61C6B66321C8A72CDF41E11E9A /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = C204812C2A6F2B7CBAE9D33EB9F64750 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50738319CBBADE87610C7672075BA2B8 /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4763D50EC1B8BFE3DE35DEAFACEC16D3 /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50738319CBBADE87610C7672075BA2B8 /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 31172A1D79DC9491F3DE61DC9D8DE12B /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5075C64463D4078585F5BB7F6AFD1556 /* HHWheelTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD6197C2FBEE1F35E615BC1FB9BC436A /* 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"; }; }; 5092A162D4642D2B110D42FBEBCF9B0A /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 133D0B8106A5DF5A97A1EC55698B5430 /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 50A813DCE536784396073D6FFF9F3325 /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 67CD612C014867DB8E85484626A95ED3 /* mux_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1178,267 +1179,268 @@ 5100CA33F67C8D850C5539A42A0DF5CB /* DeferObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = B7D2FB2E7B87B3AF58AFC61B2ECC6CB4 /* DeferObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 51069D69172171A69FF1532FDE6DD756 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F1926343DE14EA02341958BDCED80F2 /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; 510794FD8810D34F0585981695F41366 /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = CC35A5EC43692ECB5D2C1791683358DA /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51159AFC53F388672C4C7D487C9D647B /* RCTScrollEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = BA70A66223D2DA58B700B4B982C1F2CD /* RCTScrollEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 51159AFC53F388672C4C7D487C9D647B /* RCTScrollEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 903382244D64A1D81775D162DD79F692 /* RCTScrollEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 511B9697DC4125DDCE1ED1466EFA5631 /* GDTCORRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 156F5E2F004918518437A6AE68B03312 /* GDTCORRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 512DBEA49D8024DEDA62DC51372951F8 /* STTimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 613E052C86A7302C7BFEC7FE9FE084AE /* STTimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 514D6E3A9CE6550543A475620E6A3685 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = F3A68A2F358F66B3CD2380B5540FF9FB /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 514D6E3A9CE6550543A475620E6A3685 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = C9C73D7D00469115D46057DBC13A85F7 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 51530798E52AC33DAA3D6F36C1502776 /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 893DF5C07750AECEFC175DB35A86CC77 /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; 519E971486075E2256EBE61AB02CF8CD /* TOCropViewConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = F88C0A630ABCAA36EAE04217BF12D102 /* TOCropViewConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51B0202DAF50A4A3AEA12893E08ACDF3 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 3402802DDA99A7E5C6EEC15699A7B8F0 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51B5135B1A662E06FFE3C7A113729809 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BA57AA8E50708A529CC3964645C06C /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51B736CCCD3CB38027389E249AD7662F /* UIImage+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = AE37BEE29245D1F694B7B7742DD10A94 /* UIImage+Extension.m */; }; + 51B0202DAF50A4A3AEA12893E08ACDF3 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B9FEEC4F1C841ACAA260B57643E7C1DC /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51B5135B1A662E06FFE3C7A113729809 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 06FB3CE26855FB694C1788270CD863E2 /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51B736CCCD3CB38027389E249AD7662F /* UIImage+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C3F9D9A17FA6EF6E6CDE166CF171727 /* UIImage+Extension.m */; }; 51CCFDC44D74CAD6022C9ACB512AEDE7 /* FIRInstallationsAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 393D1FF6D158CD71F0244E40E3D99A9D /* FIRInstallationsAuthTokenResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; 51D6D913550CBAC02E5FC6688CA8C0B4 /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = F477B5419FE383BCD36D78C7D2DEA362 /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51EC5911331DF22E4C5968CD8B7ED7C7 /* RCTFileRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13D2000ABC8C569854622AE56324160D /* 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"; }; }; - 5231B412D56370F141E350799CAF6C74 /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = C062C81E288BE7F7C964C37229959E1F /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5246C8B1D7CD3CDAB9202B280D8CA98D /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8076B39C0DF1D1B8546428FA63CB850A /* React-RCTSettings-dummy.m */; }; + 51EC5911331DF22E4C5968CD8B7ED7C7 /* RCTFileRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 40721705024406AE4E8607335A91AF04 /* 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"; }; }; + 5231B412D56370F141E350799CAF6C74 /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 76562F5F8706D4210AA85753CB3215FA /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5246C8B1D7CD3CDAB9202B280D8CA98D /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 18462B43FFBDF05E68BAB2E07C605FB9 /* React-RCTSettings-dummy.m */; }; 524DA1EBC0DBCB2CDAECE02FDD129CB5 /* TupleOps.h in Headers */ = {isa = PBXBuildFile; fileRef = EB1A0821F5F5EBBBD3BBE6D1A66BDCD6 /* TupleOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; 52B21C30C1FB0CAE5BA26B599DEB64D8 /* SKNodeDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7EA9C28C027D146D8046B627AEC38B10 /* 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"; }; }; - 52C0E391D9D5F587B296E2DA8D81AEF4 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 01AB4AEEAEFBEA748EA4844C2FFCFD7C /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52C0E391D9D5F587B296E2DA8D81AEF4 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 24289386D837C7C24973A780A5CFC145 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; 52E39979F439AD373ADF1108067FD6F4 /* Subprocess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 248B4CE1C7DDAE021DD958A76F7AFA3E /* 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"; }; }; 52F8EE02DD0245981843DFB67ECCC7CB /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = B080691EA6FC112ED447AAC85925371F /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 530798D8A1CF3289921987D9FDC7B884 /* FIRAppAssociationRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = CBEF13AC75AD67DF97B5EA50ED4DF5E5 /* FIRAppAssociationRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 530F9743E35929C87133BD8E083735A9 /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 4241AFA83AB806724D464D03F5808DBB /* UIImage+Metadata.m */; }; - 531131AA54E45A625EE48708E77A7910 /* RNFirebaseFirestoreDocumentReference.m in Sources */ = {isa = PBXBuildFile; fileRef = B07ACDDE256221F6C7F1568D6C163BF9 /* RNFirebaseFirestoreDocumentReference.m */; }; - 5326F8694B63DCC3779B10E5468F40A9 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BDF5626E398AC416DFEF4D293F9220F5 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5338293C5FD4FC2D13D8524F4AE75AF8 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 181C9AC6344CCE2653E6D3C053095857 /* 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"; }; }; + 531131AA54E45A625EE48708E77A7910 /* RNFirebaseFirestoreDocumentReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B0CD0417F916A41DD2426DD4B7A9391 /* RNFirebaseFirestoreDocumentReference.m */; }; + 5326F8694B63DCC3779B10E5468F40A9 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A3B08539A1E5B0286CB3F069942B8C7 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5338293C5FD4FC2D13D8524F4AE75AF8 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F9CFEA5DE5CD59C3161B14BC08A7D4C /* 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"; }; }; 533F5B5A43499AF92AB8DBF7CC1CF84B /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 87B68BAE628A2A8CA9917371672FCF56 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 534165CBEA822027583EF311EC782538 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E381D2F8590F15AB81188961FC855C36 /* 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"; }; }; + 534165CBEA822027583EF311EC782538 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B68E7E8F81A7A29F567BCAF59647574 /* 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"; }; }; 5354A7D0794A6F677891E95C6D801AEA /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = EB460ADDC1F5569961983DF5B4ACF701 /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5375DDE6A2D2428D0B62F7B9BDE7FF2C /* SKTouch.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B5EE82E183F598BAD2EEFA16B129B91 /* 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"; }; }; - 53AF2A54A8C7633333A29DC49AFA510B /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F7CA6490F20360A7064C08F46FCF5DC /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53AF2A54A8C7633333A29DC49AFA510B /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = B618191C488469517862C07BD8B81C74 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; 53B7113A74825BBE592A96A84DDA800C /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = 84019186F066F8D813942800C2E415BC /* UIImage+ExtendedCacheData.m */; }; - 53C93470EA83362D2AFC76C26071861D /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = D33A37653C30A71F7C6A2E26D52CDB07 /* RCTDevLoadingView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 53C93470EA83362D2AFC76C26071861D /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 443BB3D0D8491A15B4E8DF3A73DE016D /* RCTDevLoadingView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 54073EE40BD9B4238AEBF5770EFAB89A /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C5AC01B5CB0AFBDACB3D1426B969A4C /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5424FDC9A775A478793CFB44F0C12C00 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E102AAC7A0DF3B55DFCCE338224DD7E7 /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 542F7BE5B54B4B65BA1AF476278AC639 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = B22B1FCA440606BDC621C87A505EA7DE /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54A0942FF2E79992B2ACA0DB1C356437 /* RNNotificationCenterMulticast.h in Headers */ = {isa = PBXBuildFile; fileRef = 3253A25054A815CD6D78C4B3270C0AE8 /* RNNotificationCenterMulticast.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54BCA853DAAC904AE97C54D9E4800CC7 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F6B28E8C430670ACF08A4C1285BC00F /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5424FDC9A775A478793CFB44F0C12C00 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F28B4595538423795CA3120E3354615 /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 542F7BE5B54B4B65BA1AF476278AC639 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = C64946AD6C95C8CC4F360037CB623723 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54A0942FF2E79992B2ACA0DB1C356437 /* RNNotificationCenterMulticast.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FC9625141225307F54CA8F7D5C31D65 /* RNNotificationCenterMulticast.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54BCA853DAAC904AE97C54D9E4800CC7 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = F99A0A68F1381494A19F623FB3B97C43 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 54E5365217AC5AA2FA378CAB9BCE9A8F /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D608428DD410ED2575A7BE646697BE3 /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; 550D2352901F043B246B1D99D593F110 /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = C3142A503B8B70FC802BBF2FB75CCC8E /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; 551B5E3B560EC006D5FAD9C21C88087B /* Parallel.h in Headers */ = {isa = PBXBuildFile; fileRef = D1E401A3FE7BA4435A1FE2ADDAD115B6 /* Parallel.h */; settings = {ATTRIBUTES = (Project, ); }; }; 551F5E8C6B3ACC04559C5E14ECEBD7D3 /* ConcurrentHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = DBE87F1B7E9A22D42FD7738B6F546D44 /* ConcurrentHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; 554920A9489ADD1F8EAB6770F610866A /* AsyncServerSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE791718BEDB633EFE7FC81BEE765382 /* 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"; }; }; - 55500919C15445C3F593469D1022318E /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AFDF9C0B02DD6A422B9F94F209D82B2C /* React-RCTVibration-dummy.m */; }; + 55500919C15445C3F593469D1022318E /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 94AF4CF0A65C8AB152607484CCCA5A2C /* React-RCTVibration-dummy.m */; }; 55755FF66BD8ABC78DD090E94188A763 /* ThreadCachedLists.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EA7089CD95B48AEAED021DE29C3C09D /* ThreadCachedLists.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 557A6B876C549A6F26C4E93169856944 /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 510EE4B52831547FE4C81D061693AC7B /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5580880843D5999818D1EF6AB3E114C2 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EFF1B3CB4D2A850414200366C5565B4 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55854F869F29193E5DAA4E646D9D90E3 /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CE34BD48DDD564DA1A5F6F2EAF0DEFE /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 557A6B876C549A6F26C4E93169856944 /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = CBBC38F9624D3BDEC7BF597C25BABD18 /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5580880843D5999818D1EF6AB3E114C2 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DD31C9CD7C36C6C05AA5884262620D1 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55854F869F29193E5DAA4E646D9D90E3 /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 3861A556F991E0FB85827D1D364AA6EA /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; 558BF4D03AA6208D974D9C0157B9ED4E /* TOCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 992F4F987626FAFDBBA02A885495042D /* TOCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55A233675FB29A834EFAFEEE1BBDEC7E /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E90E3140D155B876D90FF7EA8AAC142C /* React-RCTLinking-dummy.m */; }; + 55A233675FB29A834EFAFEEE1BBDEC7E /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 902C59283CA9D5897D96DC5A6A036B75 /* React-RCTLinking-dummy.m */; }; 55A29D332C49B325506C5763B2D1607C /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = C26B189FAC656D17783122181C6D1987 /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; 55EA8380C02950332F6EB64F0788BB83 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2EA7F3E61180F9381D6E7007D93FDC30 /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 55F72D6B2A29619435CE8615E7803975 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D106A0437D13965C3CDA586B2DF097B /* dec_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 55F74DC02B113A84B748479274EA1E7A /* ko.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 69A63582A04ADFDDCE6B008A3EB6E211 /* ko.lproj */; }; 5612114F7BCB79AA3F479A734A45EA4B /* GULSecureCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C700F1330E291AE35A7D46C13C06364 /* GULSecureCoding.m */; }; - 561F81782BF9AD278CB27E2C7B1A4BF2 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47C7AD4A381985CD1A3659776721230E /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 561F81782BF9AD278CB27E2C7B1A4BF2 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 287C8A93C301A3B7B63F622356930F97 /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 562C0F7D5848679FC0309F931D51507A /* FlipperInitConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 203874E0A88009B0AA2F01295E927BF8 /* FlipperInitConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 56759F3D6F58028185DC0F592D888A07 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 23F74F87AF59856E46547C2881B0AFAE /* BSG_KSJSONCodec.c */; }; + 56759F3D6F58028185DC0F592D888A07 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 29747568ABBBA9E9A1EC0F48BD467C22 /* BSG_KSJSONCodec.c */; }; 56B0D7D9EADAA177FA3FE61F14F407D6 /* ThreadLocalDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 43FEBEC8046768D8E5EDB05572CDBB62 /* ThreadLocalDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; 56BC2A3E8DC876F371CF9E50660BBDF9 /* FunctionScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 883DAC6C7BEFCDBE955F00F5AB4B00AC /* FunctionScheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 56CA8A399D65FB392554775B2A4FC712 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C63A47DAF16CD2A0834B1A35401355C /* UIImage+GIF.m */; }; - 56ED8B94761F40DE60DFDA61995A4389 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F0607E5A6E3338DFCBCC07997E08D209 /* RCTMultilineTextInputViewManager.m */; }; - 57104DD0061299F2315390B1033B28BF /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F90F0F691CE420518ECEF0B1E4C56925 /* 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"; }; }; - 572B11BB8CFECDBAE9F04DA95FA0D576 /* RCTGIFImageDecoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 132D217F2F91CB8E2288EA57F6C8A2A0 /* 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"; }; }; + 56ED8B94761F40DE60DFDA61995A4389 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D66BC7D0B852BE873C1CC9FC4836A3F7 /* RCTMultilineTextInputViewManager.m */; }; + 57104DD0061299F2315390B1033B28BF /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BB1B2939F9907FFAD48E3DD565AEE10 /* 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"; }; }; + 572B11BB8CFECDBAE9F04DA95FA0D576 /* RCTGIFImageDecoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 346826B90C891C3D7725CA4C9354B292 /* 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"; }; }; 572EFBA1CE95B80BC7B2B0A8441AF172 /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ECFA9D5D7BB61AD5F9595852FD24E18 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5730650DB2DEAACDDD31A30086AC02D9 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 1D13110FBB2938986FEAE408B775B7B4 /* filters_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 5741AFE087A083C8D0D5C9D5F646A707 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = EC45961C9D25EB434DFCFC9F4A481FDA /* muxread.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5767DA9A124859997676C94B06B184DB /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = C1958EEDA679949596D34264F875312C /* NSError+BSG_SimpleConstructor.m */; }; + 5767DA9A124859997676C94B06B184DB /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A007ACDD8283948E99A5DD959DE9242 /* NSError+BSG_SimpleConstructor.m */; }; 576D1D3D0255B54FFBDDCB00855FE397 /* PTChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = 373709EFF0AAF162459EF5D0B0F390E6 /* PTChannel.m */; }; - 577585E67A1D5A13B769BEDA1BFC1DCB /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4EAE78FBD0E1720917B9B30E1494D853 /* 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"; }; }; + 577585E67A1D5A13B769BEDA1BFC1DCB /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 623682EDC77E46A028080B8E884FBEAA /* 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"; }; }; 57779A997F204BED973BB03DBF2B8190 /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = AC35D70B9B8153E83D58B8D70C3DA9EC /* vp8l_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 577AD50B514CE766BA609B545A67F31D /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C18C780B51845AEAD8B40A66BD671EA /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 578C457D50296F1011D54182DA027254 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3696C49C9234E00FACC99834BC009560 /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 57996DDC978A05C90B5482D9DFB5CA12 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 78F9004D8744F424F748C9A7EFB1D2AA /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 577AD50B514CE766BA609B545A67F31D /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = AD3342661710A1005E85BC5965CB60F6 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 578C457D50296F1011D54182DA027254 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C04903A37365E963E54413DF6FD9FD6A /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 57996DDC978A05C90B5482D9DFB5CA12 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 187879FBE986DDC8A947A11CEDC57826 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 57C228A63490E86D0339DE0E72FAA9CF /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E5E391D33A2890AD170E829C7D11427 /* SDAsyncBlockOperation.m */; }; - 57C316C8C1D30A80E5A09BE3C6B6DC7A /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E878B95DE1321991EF7EDCA77D6AC46 /* EXFileSystem-dummy.m */; }; - 57D322CCECC40542E68BD6495990AA1F /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C7EAA5CB9379993BD07BCA5D5A33B12 /* FBReactNativeSpec-dummy.m */; }; + 57C316C8C1D30A80E5A09BE3C6B6DC7A /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F82298BC5DBE46DE8B924039E3EB09D6 /* EXFileSystem-dummy.m */; }; + 57D322CCECC40542E68BD6495990AA1F /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 60858CE18B6F41A28DF33F05A605755F /* FBReactNativeSpec-dummy.m */; }; 57EA16615D9CD9D0C45DE091246065B3 /* FireAndForgetResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B33AAB90E79B725D52CF1853C2FFE5C9 /* 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"; }; }; - 5835A6EE119F67B3B5DDB92D53520B25 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = B21E1F639E1D07C5BE2DBAD0D6A7AA47 /* EXHapticsModule.m */; }; + 5835A6EE119F67B3B5DDB92D53520B25 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 310CCBD58CAC10932222DD449C29A85E /* EXHapticsModule.m */; }; 58528DCA2CD999D4137C83D043A9FC8F /* FKTextSearchable.h in Headers */ = {isa = PBXBuildFile; fileRef = 645A304930AEEC1F7191E3748AA175E3 /* FKTextSearchable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58A135D3A7C85E720C02F34E315BCBF0 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CA5351483F2E3988401565F07C342CE /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58A43ACC1FFBCC2F3EA6A25797071D79 /* GULHeartbeatDateStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 17C8CD40EE467EAD8F86B969DF4605D1 /* GULHeartbeatDateStorage.m */; }; 58AEF2D987F14D4D2AF6D28C7F7F4CF7 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B5D09E4561934D0AB01334E07B5EC77 /* rescaler_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5915489BBAB3A2877B98136691FA963E /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AB80FA6621336280CCFF2D26D927887 /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5915489BBAB3A2877B98136691FA963E /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = CDE35C2B2F1E4560292F5C3E61E299BD /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 592D531A0BCBADD41C6B8C1ED4C73EEF /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = C347EB43BDE636D5C412551BC1BF3133 /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5967703126249D72DC6C94C045CEDDDA /* GDTCORUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 288780D994881037854C7588B3978585 /* GDTCORUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5969152A1F121E75A747F661F97C1FA3 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = A068C60548B3929A9BBDE30C56222B1A /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5969152A1F121E75A747F661F97C1FA3 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B6D26A831CE82E291EBDB3E08181A0B /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5990C386CFF4495D345DE4BD9B720B97 /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 624A41185B51C7BF36CC977BA267FF6C /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; 59AB2E9847C52F6350C5CA42F64D9B4B /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FEB237EFA588675D5F1D8F4365EE764 /* SDWebImageDownloaderOperation.m */; }; - 59AFFBDA7A1CEAA4938A2897A836C114 /* UMPermissionsInterface-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 861D71A5C1704ACAA69E03C6E34AFC71 /* UMPermissionsInterface-dummy.m */; }; + 59AFFBDA7A1CEAA4938A2897A836C114 /* UMPermissionsInterface-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CFE7BFE58F1EC912851ACA188960FAA9 /* UMPermissionsInterface-dummy.m */; }; 59BCF23690D35E682AF7213B1AA8B121 /* GDTCORRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = 22AC901C615FFB0A63B6E8F228C6A7F7 /* GDTCORRegistrar.m */; }; 59D2FF7D199E0FAEEA5D0C5C60C85760 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 2266B9FB963B08C9EC349C28D1DD1637 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59E39951CBDBBF3BE34F50771F0D63DA /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 36938C4AE46A403632FBBB6781E84192 /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59FA089B729EBF37634A4D344228514B /* RNFirebaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FFEB8364E3DE91E8646D1B7BAB23EAD /* RNFirebaseUtil.m */; }; + 59E39951CBDBBF3BE34F50771F0D63DA /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = ACC10530C3FEADFF050AA7DD6DDEADDA /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59FA089B729EBF37634A4D344228514B /* RNFirebaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 33A0B92651A94B287FDE6B14359D92F7 /* RNFirebaseUtil.m */; }; 5A2DF787817F7D1F598A859496117313 /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3642927267BA5A07470303E775D65DFA /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A350E37511AB19E6CF063A477BF81E8 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = FB93889EE44F1D09E60F8608E9E52799 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A350E37511AB19E6CF063A477BF81E8 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 396BCC1103806DB62E13A01085BFDB9A /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5A4315CC7868A0AA71F72B6EB9DF3A8D /* HazptrThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ADF9A92B9FAAABEF226F528138829B02 /* 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"; }; }; - 5A5CD297BBC57D3E5C53437609953C82 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = A284F247262CABD5166CD914EFA5FDCE /* 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"; }; }; - 5A6DE10F8372DDC647FF3AA6AFEDD5FA /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AB4715C75F28CAED93F7D95C6CD20D35 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A5CD297BBC57D3E5C53437609953C82 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B6158AB2550CBA102DCA35CC0DC2013 /* 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"; }; }; + 5A6DE10F8372DDC647FF3AA6AFEDD5FA /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B1F98A9F2248FB8361C4DE18FFAF51F /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5A8459CCC3BF00828D32BB4D35ABA743 /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = A483E9CBDE0930880E6851AC0CBD8B79 /* SDWebImageDefine.m */; }; 5A89504301D62525F736D0050854E4CB /* SonarKitNetworkPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = F3311BA7E4CF1072F845E0CB477D51D5 /* SonarKitNetworkPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AA306AC79340E81306DB638EB0F6B5C /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = 564893FF9249E9ECE45B1F5E1A0DB0F3 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AA306AC79340E81306DB638EB0F6B5C /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = 43216B6B4C1AEA1BD2A30C66CA5DA2E9 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5AB7883D6F7123FEE9DE354AF2FE9387 /* Atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = B6925D6E11BCBC1BF08A08FFC08C2DEB /* Atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AE8193588F9251CFF0BC1259587DC6F /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = F2461FBB9497DB2296DC171E44A6C374 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5AE8193588F9251CFF0BC1259587DC6F /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 5153E4056ECE5A55050793F2F68FFE44 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5AF92807EA677D3DE6A1F41612CB12FB /* FlipperKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 34C72E24FF9AE020F595BAB7BE7B92FF /* FlipperKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B12AC89DB651FB7CF5A624F05E48A06 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3021B14A09D4716AEEB8CBACE9316DB3 /* 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"; }; }; - 5B1FCCFA4BB7135E41DD10F990180597 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = EEA4E814B1B194EB9B05590348340156 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B4A65D10DEF39743F01781DD5DF6050 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F2E52A1218F748E57349CFBEDDB565E /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B12AC89DB651FB7CF5A624F05E48A06 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 759214E0404777E80647BBF378BB40EA /* 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"; }; }; + 5B1FCCFA4BB7135E41DD10F990180597 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = E65CACEB67E1652527A2057E33BD3A9A /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B4A65D10DEF39743F01781DD5DF6050 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 85684341D05B09C596F5F3B29156D604 /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5B5E44100CB0A817A1A887A5D865E197 /* SanitizeThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B90D4EB47DA9DA57A8D265D53BB0FC7A /* 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"; }; }; 5B5E9DD45758905E15ADE6E6580E1694 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = E407E78CE1F9669988D1BBC2C9EFEF6B /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5B5EBC23448AA1E36B9E489003457385 /* ScopedEventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 874519DA12D7FAC072DD95515A159F03 /* ScopedEventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B74AD9EABDF35B29FC840BDC408B387 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = E1052AE1EBD954C5CFB4FDF8DE1EB425 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B84A2CFF7CB8244429AE34C525F7A3B /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = B2158890B81D6B1DB2B12B0A04E2159F /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5B74AD9EABDF35B29FC840BDC408B387 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 126199C73856BB1169A9044CA9A5649D /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B84A2CFF7CB8244429AE34C525F7A3B /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = B181DF32FCFDFC18F9571FF848A2232D /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5B8B332ECFF0056F7CEC66BD47604656 /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = B7791E8B79D3AF3B69AF7CECAD3CF3D3 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B9BEBCA57F0295256B52F2895B97331 /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2445FCA743A7135BAB54BA939458F8F6 /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BA023BC55024F646839261CB6544CED /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = FC1DD0400651CE82B03C80EA91136957 /* BugsnagSessionFileStore.m */; }; - 5BBD3BF8F1D8BCE5424520F1C5F597A0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 788248476225073802F6DDD8C52E6EB2 /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BBF60294A35EABDD416CD49326D9A68 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A9430F671659F2F9CC13A57617A5836 /* RNCWebView.m */; }; - 5BCC122BAE29ECBAEB136C7B886C7C8A /* RNFirebaseFirestoreCollectionReference.m in Sources */ = {isa = PBXBuildFile; fileRef = BD51C70EDC724958D2208066FF323929 /* RNFirebaseFirestoreCollectionReference.m */; }; + 5B9BEBCA57F0295256B52F2895B97331 /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 631EE7042AECD78F7ADF02C610C56469 /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BA023BC55024F646839261CB6544CED /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = E4715A68BDF3486D832920D916ECA375 /* BugsnagSessionFileStore.m */; }; + 5BBD3BF8F1D8BCE5424520F1C5F597A0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = BA82F24AE9818ECFBAAC74D9D13B0DC1 /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BBF60294A35EABDD416CD49326D9A68 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 564AA92D57D9228644E3BE9F170936B2 /* RNCWebView.m */; }; + 5BCC122BAE29ECBAEB136C7B886C7C8A /* RNFirebaseFirestoreCollectionReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 442EA89BCAF0FF088622BB0E7290853A /* RNFirebaseFirestoreCollectionReference.m */; }; 5BE1E55B90CC535E7C3CF5EA357B3612 /* Base.h in Headers */ = {isa = PBXBuildFile; fileRef = FFB6A79C2797E4E6E8D7E12A68887DBA /* Base.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C06E36CD574FBE8FCDF4DB23632E79F /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = FE59FFDE1C441A32AEBDBCBA0BCF6270 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C06E36CD574FBE8FCDF4DB23632E79F /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = D41D779CF58921FD4B98EDD73A15EF24 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5C1180DCDA66B2CC0EB7CA7EABA74DCD /* FIRInstallationsIIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = B482669D4D588E55B3057A7601BD6840 /* FIRInstallationsIIDStore.m */; }; - 5C32CD8A3B4E70301043B885EBBA1F69 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 3708A1323C1DF619C344E7F5A1D60345 /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C635BB81BFDFB1ADD52B81A18A4445E /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 463E02AF901F4B917BFC3AC76F7C9FB5 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C32CD8A3B4E70301043B885EBBA1F69 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 327656D2867C9A9125E6AD17423A15D1 /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C635BB81BFDFB1ADD52B81A18A4445E /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B74B3D0393A1DA20C2CFA6536BD32337 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5C6B3EF91CF6927788129874C2A85DC4 /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = 153DF6367AD0FF17144D2F56B391560A /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C73CA0113FF28D73B33DD995CB8DB9B /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 38AD9CA9D464D1F4AA14FD830C09AFAA /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5CA6316BB302B36D6AE2B4A483F3EAB6 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = DC72F08E9E9C745BBD906C0AD75D11AF /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C73CA0113FF28D73B33DD995CB8DB9B /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E72E9D52F37CD871C6EFA0C46E5899D /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5CA6316BB302B36D6AE2B4A483F3EAB6 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E738DA767C7CE949F8736ECD117A1FC /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5CCE3FB238F67F4A1AE513C4461B1463 /* RSocketClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 87FEC7BDD5CE85B69C06F132CB3BE556 /* RSocketClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5CEC8F544EB06DB67845490887ADB7EB /* SKHighlightOverlay.mm in Sources */ = {isa = PBXBuildFile; fileRef = 902BE925D4C1D506F5B5171C0B9A13AF /* 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"; }; }; - 5CF1B5B5750BCAEF93F745D0E4746629 /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = ED5663CCF67A8ADC4205F4006E899D54 /* 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"; }; }; - 5D1443CA14941EC385B1380A3F3FD2D8 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CB3E097FB8D4699ADBD9E68474B0E50 /* EXAVPlayerData.m */; }; + 5CF1B5B5750BCAEF93F745D0E4746629 /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B2843009ACC56D555D6CECDF3265A53 /* 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"; }; }; + 5D1443CA14941EC385B1380A3F3FD2D8 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = F49072E3106022C4325A6F7AC7A47024 /* EXAVPlayerData.m */; }; 5D1C8EE105AF6A41604212C9FBEC1B04 /* TestObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 78F46322A0AE7EB0D6FA7E55B04DDF78 /* TestObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D33C608DD5ADB443C60BBCE274EB8D2 /* RNCMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F30531A84345F1C2D7A1FDE6C5194E6 /* RNCMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D52EC77A0FD9DDCF15A0892BFF30724 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = D505434B9FFC228850ABD4D2DB8B3E8A /* RNNotificationCenter.m */; }; + 5D33C608DD5ADB443C60BBCE274EB8D2 /* RNCMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B6AD0FF33C5C0376F2D1F42D1945EF20 /* RNCMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D52EC77A0FD9DDCF15A0892BFF30724 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FA7B030CA0FC5FE7424D5B176BCC195 /* RNNotificationCenter.m */; }; 5D85E4597A0EA4601AC058FC8A336266 /* FKUserDefaultsSwizzleUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F93898804FCC4161FCECF761209EF52 /* 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"; }; }; 5D87A3F2F1AFF3C61BCCF12D3FFBB919 /* SocketOptionMap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 715D59D39D1D872A96E44177A511E929 /* 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"; }; }; 5D94B0773D7A674CAED8241CC030A3B3 /* OpenSSLUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 64C33B2B0FAA72A88AC1771F62837830 /* OpenSSLUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5D94C85521F651CAF78D0774F739EFFE /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E014C494E5AF4E2D3B95E59278A6E7A /* config_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 5DA0F137CAFD3FF8D4B8A1605BA3AC12 /* TOActivityCroppedImageProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = D05179FA4AE4D78D8729A6771C06FE31 /* TOActivityCroppedImageProvider.m */; }; - 5DA1958CF4DAD67AEB1A26CA2FBBB7EB /* RNFirebaseAdMob.m in Sources */ = {isa = PBXBuildFile; fileRef = 67E2295DE9C0FC490AC0417A05326292 /* RNFirebaseAdMob.m */; }; + 5DA1958CF4DAD67AEB1A26CA2FBBB7EB /* RNFirebaseAdMob.m in Sources */ = {isa = PBXBuildFile; fileRef = FE33B6D87F46148EA40455A33D94BA39 /* RNFirebaseAdMob.m */; }; 5DA4697BAFAFAA6BFEA13B36B76B57AE /* Libgen.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B52C4B2E727C1B5CD37B50A5AE89C5F /* Libgen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DBEF4CE82FF2ECB983B8FE169924C38 /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = E5A6172D2E254824D8A49D6DCA6F94A7 /* QBImagePicker.storyboard */; }; - 5DC27AEDBD9E3EE36BF2FE1912926BAF /* RNCSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 34579908D35ED78F87A95AD8D241DBEB /* RNCSafeAreaShadowView.m */; }; + 5DBEF4CE82FF2ECB983B8FE169924C38 /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 757B5E8A67E8D556A6A4A5C8AE81BD35 /* QBImagePicker.storyboard */; }; + 5DC27AEDBD9E3EE36BF2FE1912926BAF /* RNCSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 473D39B5852C9156257BE56DF22F3A38 /* RNCSafeAreaShadowView.m */; }; 5DCE172EC75208EC2A3189C915EBF678 /* EventBaseBackendBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B8430674EA6F4FC03E630EADC00FAA4 /* EventBaseBackendBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E833561B54208419B9E85618659A3AE /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7660A9FD29E726852043D35BA11C2A65 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5E8F6FB0B98806087C46839D3C543998 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D99477B7E43B77E721F647603C5D9561 /* EXVideoManager.m */; }; - 5EC0E201021C7D613D2D23C7D9072FC4 /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DB737943823C0C0979F96B831D7F1A6E /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E833561B54208419B9E85618659A3AE /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0270F97695905D849A9C64C389F5E31 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5E8F6FB0B98806087C46839D3C543998 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FA1617111E51F830287C52C9066B2E55 /* EXVideoManager.m */; }; + 5EC0E201021C7D613D2D23C7D9072FC4 /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6080F667BA4C8DBB344B350BA981E929 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5EC68AC4CF4EA48990F8D1086394208B /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = CFB58441CA996147D98F64EF8DD1482E /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5ED7D21591BE3434BAD27251B09FC2C4 /* ScheduledSingleObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = EE096B4998A0498C28CB86AE0C6BE58F /* ScheduledSingleObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EE007B3CAEB291063CB3BB2EFEF737E /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CDCEFEB0F8EB7AB3332416CE86E41AC /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5EE007B3CAEB291063CB3BB2EFEF737E /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A3E41456E3005A4422ADF8711F097AF /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5EEE9C81EFF578DA8F518B1C0AB9CB32 /* StampedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CF7D6056217651E8A1F42E80D1E9B80 /* StampedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5F099D8A9A2A8ED220D004516093119B /* GDTCORClock.m in Sources */ = {isa = PBXBuildFile; fileRef = D4647D7862AFDBDD9D0EC8025146828B /* GDTCORClock.m */; }; - 5F191C5FEB9571699CFED133F0E444D1 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CC1FE9306F0644A4806134F950CB3EC8 /* REACondNode.m */; }; + 5F191C5FEB9571699CFED133F0E444D1 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A8EB6CB82FF58D29DCA66F92F103701 /* REACondNode.m */; }; 5F2E203D0F81E6C57DAAE8CFAC56710B /* AsyncGeneratorShim.h in Headers */ = {isa = PBXBuildFile; fileRef = FDF3EB101141ED2880B209625EBD273C /* AsyncGeneratorShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CB584FC2A20F9CDF0558E2EC2ACEBD57 /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F72C1EF68444D617C1AD2D5EF541DF1 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = BAAB4C0E063D404B75B16D827C72E47F /* 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"; }; }; - 5F73A1810FE06CEABFF159E5B86FEF71 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = ACE4701B05DA5126866FE17304CBD0C4 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F988B2A4A7D8078E0577D101940810B /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E313C1F8813EB82A89C8A1822911085 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5FB569FBD237B615CF14F490775C837F /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 94517CD85F6C0CB5786A3FE34C5DDB31 /* 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"; }; }; - 5FBDE897F38FB994BBE94F564E24BDB2 /* RNFirebaseAdMobNativeExpressManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 18EB1EB7F0A4C661429327868B586E7F /* RNFirebaseAdMobNativeExpressManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DF6C3C2A27E578BC883D91EFB730AD7F /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F72C1EF68444D617C1AD2D5EF541DF1 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8BF0077A70654BAC3859123D7D2207EA /* 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"; }; }; + 5F73A1810FE06CEABFF159E5B86FEF71 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D2517773353E46D53822F93FCD03A52 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F988B2A4A7D8078E0577D101940810B /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = A3FC3367489FCDCEAAFAC08B10599EC1 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5FB569FBD237B615CF14F490775C837F /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F365C38338057419C36E893C210572D /* 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"; }; }; + 5FBDE897F38FB994BBE94F564E24BDB2 /* RNFirebaseAdMobNativeExpressManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AC151F4ACB07F1042E6F75F7183386D /* RNFirebaseAdMobNativeExpressManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5FDFDE7CCBFFAA68D99152D78C02ED39 /* AtomicUtil-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A216542337674A0A89AA2C9BEE379528 /* AtomicUtil-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5FF1ABE162C13243EEB4010193EC6C22 /* Combine-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F51D848138A0C792F5CF514F90242E8 /* Combine-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 605639230346E944534ADED2B00E96E5 /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = DFFF05D864AB8F9323BAE7B6AB515893 /* GDTCCTNanopbHelpers.m */; }; - 6077601C50D858E04CB2AB7E1570C8E3 /* Pods-RocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D70D9EBB5B766C22C2364940119C9F1B /* Pods-RocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; 60A86E0DA64B94C3016CED19C96C0E66 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = BEB772AE2895A7AE60AEE2B71F800759 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; 60ACF469233CA22469EEC756ECDB055D /* LifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B72F9A54777D6A6FFE5D29E292165D7 /* LifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60CE5C3D3A6584BB97C2DF7A9A3BDD9C /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = 75AFF57E477C64127F71A0DCE3C8F1B8 /* BSG_KSCrashC.c */; }; - 60E3AA9CFA4C79047B61B69E4B1F9648 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = FB68E0127B353641B19807A9875D913C /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 611EF16AF39B7C48DEEB1C051D09F099 /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 12C58830DD213F20169E98FB6CFDD961 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6145080A25BD222CC71B172FFAC2218C /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = D2E4DB7C7D91ACCBD9A78DFF12B194D2 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60CE5C3D3A6584BB97C2DF7A9A3BDD9C /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = 82B4266BB676B66E2D74AD3DDE2289B0 /* BSG_KSCrashC.c */; }; + 60E3AA9CFA4C79047B61B69E4B1F9648 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = B9EAE944D077E66FA8DEE13865B489B0 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 611EF16AF39B7C48DEEB1C051D09F099 /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BC8D48210994F43DAE85577F073A325 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6145080A25BD222CC71B172FFAC2218C /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B71A920C29887C22EF38F089AC74AC3 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 61475BE3E93F74078F49B9CCA07019B8 /* Stdio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 86779627046C38D9E5C553C1856D3971 /* 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"; }; }; - 61623E33745D2D46C2CA9D9EF256F2C9 /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AF413FA899EC75DA85DAD882CC3D76C /* 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"; }; }; + 61623E33745D2D46C2CA9D9EF256F2C9 /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BC6BF1D7ED08F18910811808E32D7B8E /* 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"; }; }; 616F99E58EC3860AD362B2DC0C67277C /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FC66D100BF1D2161354D1C02DA0C2B9 /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; 61728BB54421812F931FBCB7B4FF2BE4 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 161719886E740E1380CA97BC1D44C8D6 /* 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"; }; }; 617530231FB583E62F59AFF636820064 /* SanitizeLeak.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD36D25F8C6D8BBED0DF6C0F0607CB4E /* 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"; }; }; 6180AC7AB06E1D1D6E01944FA4CFE5C8 /* ExecutionObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 6955C48EABE0EBB9C60FBB6187DD382A /* ExecutionObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 618BC8EEE2DCD6EF77E27F834D5B84AB /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 912CBB2BABD0EDA3B9EBCA30EFEAB6D0 /* EXPermissions-dummy.m */; }; + 618BC8EEE2DCD6EF77E27F834D5B84AB /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 92BC26C6959C651149076B70977E6A2D /* EXPermissions-dummy.m */; }; 61945E2D534282269C85FC62CD40BF23 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EFE392A6969AF30D2B7B04742DEE6BA /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 619D6F16CC305CC853D675CD34B313E7 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 497E9AEBEF0D663C31A57A11ED059DEB /* QBAssetCell.m */; }; - 619E758999F00A244BBD89AE38C1C8DF /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 21096E683D104D1228A9BADA7F2A7F42 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61B267925A8A1ECCAA88A2B69131EAF7 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B3783E3B4DA426535AD140A0330F95AD /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 619D6F16CC305CC853D675CD34B313E7 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B592100B4B0203A70764DFDE23FCAD33 /* QBAssetCell.m */; }; + 619E758999F00A244BBD89AE38C1C8DF /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = EE149B93DC504931B021DFE29EBC4CF1 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61B267925A8A1ECCAA88A2B69131EAF7 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DAAFD3BEED2FCC9A7E213213A3D52304 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 621D406A7D59BDA14F904CD4B069B21B /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 029B3D446838960B31BCBD02394F100C /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6238678941BD031252A3C85E53C82C8E /* Sched.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBA0837C03BCC9FE4E8F7AB2C57E4B23 /* 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"; }; }; - 623FC295B29631DF73E03BC69E36032B /* RNFirebaseFirestore.m in Sources */ = {isa = PBXBuildFile; fileRef = BF92E0205AFBC3A8C190909EF2828F9E /* RNFirebaseFirestore.m */; }; + 623FC295B29631DF73E03BC69E36032B /* RNFirebaseFirestore.m in Sources */ = {isa = PBXBuildFile; fileRef = 9583CF8EFBACFAE010E25C678AF3E5BF /* RNFirebaseFirestore.m */; }; 6250372D9758B2074CD9CC7B09ECDFA2 /* SKNamed.mm in Sources */ = {isa = PBXBuildFile; fileRef = DB6D26EBDD86843CF9618C4518830999 /* 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"; }; }; 625FB1A1A50F531C209F5950D7FF8475 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 75632BE4B358E18FB1BAE8DFBFA50A19 /* alphai_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 626C258D118CB98693D4581066B18804 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = AF11CF67143B8E836CE6310BC6958121 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 626C258D118CB98693D4581066B18804 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 70AB7F4C521B0B8F336CC49326F2D305 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 628C6483159FDCF38407770F1ACE903B /* KeepaliveTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = F14B6E873AB6F10E262C6D46E36D2BA1 /* KeepaliveTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62AA89539DA1AA90B5F53B6A1CFCB024 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AF1BD557B5652D5FF683C4F402BFB07 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6331F86DEDD565FF96DBD38F0C427C20 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 01CEB4FCC8845C95F772C4401D4D0088 /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 634B6D66C8BC61A3D3EA8CA7EFF968EA /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = B61A241B25DA0F2A7746F4D578280EF9 /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6362DF49BD1FDC17099CCD40DE28B2CF /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = 754E1308A17DB39BF6A2E15E689FE2A9 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63854BF7B7FBBA60157A488179072BD2 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 41B3140B228FFA637D56327E92ADC4D3 /* BSG_KSSysCtl.c */; }; + 62AA89539DA1AA90B5F53B6A1CFCB024 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F5772719D832396BF64A57BE9B84093 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6331F86DEDD565FF96DBD38F0C427C20 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F5ADEEE062EADEFBE896922E862E906F /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 634B6D66C8BC61A3D3EA8CA7EFF968EA /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 59E809009F32F76F6EC89317B89936F2 /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6362DF49BD1FDC17099CCD40DE28B2CF /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D33DE116D0794F9ECB3257024ACF204 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63854BF7B7FBBA60157A488179072BD2 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 777059C692B7C55601D372692929E4C5 /* BSG_KSSysCtl.c */; }; 63CC635B37FED8C7DEF027CB5462EA7B /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 03FBD72B129570234DDB4A6856B7A3FD /* bit_reader_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 640A5B859D78BF300F772830B148CF74 /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 630E4D6E25D676B51822CBF1F082FDB8 /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 640D5D2F39A0A64989F2920F9FB0E055 /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 834FF4DE768628BEB59D5C710482E567 /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 640D5D2F39A0A64989F2920F9FB0E055 /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 81A037AD65496FFC1B100F0F22692DEC /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64352F81329BEC21DFF10C000BE8640A /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = C7022D39F0131D8DE5EE4852EFFE46A5 /* SDWebImageDownloaderRequestModifier.m */; }; 6447709A38CB47D0D4B539C0DFF9F728 /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0082E5271A0A42B9A35B2F9EBBE28914 /* GULSceneDelegateSwizzler.m */; }; 644DDB8CB93BF7067201BB26F2D53D10 /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FED0083D687480639A7A9208F697C4B /* 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"; }; }; 6450E79F5C6AFB7273CB9D4497C68DB1 /* ResumeIdentificationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B5B5E49B3D85486AD01FA8E1934BD85 /* 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"; }; }; - 648C1EE6D41D617836426E185AC5AAED /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = D78C4A6F8CB137212800F09AE3CA2E0B /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 649188D94444AFE72F5C875C73621929 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3EEB571DA081D93F06C33F0690D2EF /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 648C1EE6D41D617836426E185AC5AAED /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B7F0E33C1B2FD4761AFBF32AF3615FB /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 649188D94444AFE72F5C875C73621929 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F4D44A24E665E939DDBC6BAB72EAC6BC /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64C08A1A299F65ACC045C824A64A0DCD /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87AAB06C49E8BA84719378BA9A839301 /* 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"; }; }; - 64CE86C677FE58819125DF1CF00FD92D /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = F8FFFBE4222FE774F650412487F4845C /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64CF43A068C98B02A97EC497AD319A30 /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 55236396A55D0926763EE84C72EDDC25 /* BSG_KSMach_x86_64.c */; }; + 64CE86C677FE58819125DF1CF00FD92D /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = A7933DE23E2E94AB414A61ADF5BF0B52 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64CF43A068C98B02A97EC497AD319A30 /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = B982F2A245C062D03E9D0007425EFD88 /* BSG_KSMach_x86_64.c */; }; 64D7CA904E08C542214D6273B49A823C /* IStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C0C00C3EB81DAD74BFC49082FC652D8 /* IStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64E791612A7D27AE1C4409A981341CBE /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 7E40F2D58A72308F8A10C0603682646F /* lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 64E83E53B7F40F2CC0A0CF7BC3C8A43C /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 8095BB8053756018C2AEBCCA3464114B /* enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 64E9035391D61BFA55BD23B151AD07BB /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A470EF2D1D522D79860078096BFDAAFB /* RNDateTimePickerManager.m */; }; - 650233BB7B2F93FF3BC7F54341C6E361 /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = DFD4713F0522DE61DB7A3C9AE0A069A6 /* 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"; }; }; - 6502E38CB30B4C5057ED72B199AC364C /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 57CC54FED6E3BD09BB3C35419FE88DE3 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64E9035391D61BFA55BD23B151AD07BB /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DBB7788A06D05618E07B0B1B9644E3F0 /* RNDateTimePickerManager.m */; }; + 650233BB7B2F93FF3BC7F54341C6E361 /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FBBBFE618BCE4C5D50EB9810A6637CD /* 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"; }; }; + 6502E38CB30B4C5057ED72B199AC364C /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 41E9388F4F2F474F51343984C953523A /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6504940F5EB894DE69D5B2CF0FB49455 /* Rcu-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = EBC04109110EA540685138F05EF15D94 /* Rcu-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6532B3DADCD47A8B33D8A6B7DD0F81CE /* UIColor+SKSonarValueCoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 88971119938DB233CA8D9C3F4B661533 /* 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"; }; }; - 653882A69EAFD0F4396408BEF954FFE1 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F92A4A615D9303E8F7019A445D3B7EAB /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 653882A69EAFD0F4396408BEF954FFE1 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F31B10DD59C3075F35A0B2716A3B6DFB /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6555EE2AE374EE32F457F03D348ED0A3 /* GDTCORConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = AB40D15C63CB2250B9DF830DCA6A7A79 /* GDTCORConsoleLogger.m */; }; 656610BEFEC50D7F52DD373712B20471 /* SKInvalidation.m in Sources */ = {isa = PBXBuildFile; fileRef = D5C22CF5859E6E41DFE710CAB7666427 /* 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"; }; }; - 65678895444B4CA89B9031CB34EFE935 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CCEB2A76A1AD83AD183398B35E887461 /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 65678895444B4CA89B9031CB34EFE935 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D9E75B890724EA1F30A7C8E719D2E280 /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 657C87230A2934AED9C6AD06591F370A /* PublishProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = F9082505E190BD8F8AC684C2AF87E5F0 /* PublishProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6584F1A61DBB0A4BB4BD9EA418FB70E6 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = E27704A270699223EBC354F812A0956A /* quant_levels_dec_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 65CA61934FB03CF180290DE31AF56EF4 /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 23EEA0044B9B84D5163474C480831759 /* enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 65CB92D29B76DFDEC572A3AAE0564298 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BFE48D458DA92D142AE0F0EA6281A13 /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65E65D50285248E32BCA727175A9037B /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 8757D947022B1CD57422EF439A200556 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65EC48B796CD30DB09C4EAAFE113C2AC /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = F9B49BDB2903B8C029C685B367994EEE /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65F20C115C7320F488D580742E04DC93 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = BA03A3C1BE47AB14B488D08C97240739 /* RNCSafeAreaView.m */; }; + 65F20C115C7320F488D580742E04DC93 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = FC68D9162CBA36911F5898E1AEAA0A3B /* RNCSafeAreaView.m */; }; 65FED0532D4CBEAD6563E7214A54768B /* SKTouch.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F70F5609DAE1FD9A6DEDD382E67A1B5 /* SKTouch.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6627CD8BA3B27E0CB0BA0E912C78BE51 /* GDTCORTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 86CD7480166E478F25F1C37B316E3B56 /* GDTCORTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 663337925169CB5C493A0FE71172B792 /* EXAppleAuthenticationMappings.h in Headers */ = {isa = PBXBuildFile; fileRef = 8531146500933BC6E506E180A61DEEB1 /* EXAppleAuthenticationMappings.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6664EF6453923DE49024DB69641F8109 /* FrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = C5C1FACAB4E7399CF7E9DA5FA30E0758 /* FrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 666F347B84B23221BC4D76B0BB3D521F /* RNFirebaseFirestoreCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = E7B56BB01334BED5F74C070D50E63B17 /* RNFirebaseFirestoreCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 666F347B84B23221BC4D76B0BB3D521F /* RNFirebaseFirestoreCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = C8D4187F04A5CB8410455373AE01BFCC /* RNFirebaseFirestoreCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; 66811E431F72A69005364E0433281D70 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F944579685D689DAE1733447AB752E5 /* yuv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66821B19957B6374B817C91E73C9D601 /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = D23365A895C40B971B40B8F58C974B53 /* EXPermissions.m */; }; + 66821B19957B6374B817C91E73C9D601 /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = C3093E8DB076B814FC199B208E9B3C15 /* EXPermissions.m */; }; 66A03981890D9863F11B9D8D04A07AA2 /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B550147615851379CE21691A77B5B21D /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66C5C3110649460A466AD2F6AFAA171C /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 56D4EACA530A4C0E33C8B1F52968893B /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66D0421E4DDA33160130778834F66E37 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 166D0329EAD73A74AE0A5097E6566379 /* RNLocalize-dummy.m */; }; - 66D6E62D450BACF145A456166BB45C2B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = C845E76CEB1738E14C6F4ECFE2F38156 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66EDFE25C763A6E147A5B8AEC67A3449 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA39EA70FE3B97470E11828406F4768 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66C5C3110649460A466AD2F6AFAA171C /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E7CB605C99232859478956B9F5666B1 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66D0421E4DDA33160130778834F66E37 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FAE48DC6CFAB94B34462D824F058AFCB /* RNLocalize-dummy.m */; }; + 66D6E62D450BACF145A456166BB45C2B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 59149DB4D7BD69A028948BDB37206DF2 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66EDFE25C763A6E147A5B8AEC67A3449 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = C90E0C7B1D9E78D0B532D1E356CCD82E /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 671CCCC4FA52C454C17316202BD0F386 /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC03988040C1E00B3432A7FE1422C53 /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 67213F11F20DF2020A3F928D6B627E80 /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B16642936BFFA1575F0F8B1C60743341 /* SDImageAssetManager.m */; }; 67304F639591EAB43001263B341483A1 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F53E7DE802643EE9148400CFA8D2F2B /* rescaler_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 6730E006B7764F221BB7F81F7DB749F0 /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F7387949E542BBA6DC178190C86EC38 /* PromisesObjC-dummy.m */; }; 673967B0EE7ECC4BCDC0A751DC0A828F /* FiberIOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 21C5FBC65D86618E8BB010733F011BE0 /* FiberIOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 673BB15EBF0B152DD8D3B4CC04E13201 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = C7858E4C09D6D3679159D6A6549030A8 /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 673BB15EBF0B152DD8D3B4CC04E13201 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 29338AFC017E7E5A79D48DB5F1F97991 /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 674B78DEE8CC679498E5DE48188B81FA /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C74E586D5AE077F987D557B3AB770A4 /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6757FE0A1CC1ADCC38E0BBDF5BE3C2A8 /* TimedDrivableExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E7BAD83EB8173C6E85EE46585F74AB1 /* 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"; }; }; 675BA275D6D0834300AD7B9C224124CF /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = D50F4782B72EB86BC5530080AB5E192C /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67679FD66E5E1E1F6427743215A9BFDA /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = A8FDC50C0A49E9CFF9A6B5B6012AA2C4 /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67679FD66E5E1E1F6427743215A9BFDA /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = E416310D18DD3D674787588A75E53E4D /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; 677978C384BC8E68F54A53338361E3C2 /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 42E30BF5CE842E55AEEC568063B8D31B /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 677A083618AF312CC3CDA60EFA05BCB8 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = 77B5C81528971AB0B5CB133BEE0E38CD /* BugsnagSink.m */; }; + 677A083618AF312CC3CDA60EFA05BCB8 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B45B6C3975F42178855A0EA49CAAF12 /* BugsnagSink.m */; }; 679174798499AA4B6CF32E2F96B10D4A /* TOCroppedImageAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 101039A0E2F69BBC8476AB61583B7249 /* TOCroppedImageAttributes.m */; }; - 67A39A15971E99E5454C253E2080289C /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = 75B6E19A8A683EC329483F9DC5E3D866 /* BSG_KSDynamicLinker.c */; }; - 67BDDCE0EF521A4394DD403549BC2986 /* EXImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = B7895CFB93C7B5F81EBA1447DD0077D4 /* EXImageLoader.m */; }; + 67A39A15971E99E5454C253E2080289C /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B298DC760AAF3986A2D64997749D50B /* BSG_KSDynamicLinker.c */; }; + 67BDDCE0EF521A4394DD403549BC2986 /* EXImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = BD9BD89BC0C5C60E9EAD7A81AEF71D12 /* EXImageLoader.m */; }; 67F1415FB3DD965C1871B2A2CB74C8FC /* GlobalThreadPoolList.h in Headers */ = {isa = PBXBuildFile; fileRef = 11EA20EEA3BE11B46C97E00FE1D99E02 /* GlobalThreadPoolList.h */; settings = {ATTRIBUTES = (Project, ); }; }; 67F172904F7959C4715F3CFE9B1B4B10 /* FIRInstallations.m in Sources */ = {isa = PBXBuildFile; fileRef = C5702E4D9BEDFB43F6AA03BCC523ABAB /* FIRInstallations.m */; }; 68169597FBE0AB5B54FC67E15019A84C /* SKObjectHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CBC91A275622E387F639E5BDDA38294 /* SKObjectHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68305A7D8906C121D6E084CF228B4598 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 24D27E95E22AECBF6A8EBC4AF37A09DE /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68305A7D8906C121D6E084CF228B4598 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 42361CCA7EE61E9ECF248240D46300FA /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6871111D26354F50F583D2187D9397E6 /* Libgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D81C2D6AAB73DE4B91831859669C32E4 /* 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"; }; }; + 688FA3D713B354BBB54CD152A7B7BF54 /* EXAppleAuthenticationButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 43E4F1558AC479BE196BDD1CFC6902BA /* EXAppleAuthenticationButton.m */; }; 689CA5357FD9275EE7FC85FBC8F66370 /* GMock.h in Headers */ = {isa = PBXBuildFile; fileRef = 37F05CAA072B1B41891EB96F94580E6D /* GMock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68A75E9D1078739344B33B3737E61D48 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = DF07C711C21BB3F8D7DD7662ECAF5161 /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68B32248A4087D4D903A357B01BF8738 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = FC2E9188A71752C9529309F0C9D52F3F /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68C7196D1EE46E00BBE92E8A229915CE /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BBC5B564D4E222135FE8ED1976E3CFEE /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68A75E9D1078739344B33B3737E61D48 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = E0AD1427763970DC8ED1AC36E05D631A /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68B32248A4087D4D903A357B01BF8738 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 12EDE432BD3D8860F80EBFF04A6C53E4 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68C7196D1EE46E00BBE92E8A229915CE /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BB307728748153F595011FB99B180AD5 /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 68D2769B6ADE197D4C3196196FEB0412 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C48287496A17E92102556696A3E7006 /* 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"; }; }; 68E14DF5295CA73DF30819A5D35C0D12 /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = A00A1F7DBCE854801805786CF75FE432 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68FA08AFB0147FC1574CEF32F3C4695F /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = FE5E7102CC2EAE4463148A18B8E646EF /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68FC649D07E74F02849E2344498C1E39 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 2693995EDE501AD0CA7E26234FE363FA /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68FA08AFB0147FC1574CEF32F3C4695F /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 86063991790753F559A821BD48B65DF7 /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68FC649D07E74F02849E2344498C1E39 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E6A5B0627CF2430FBEEDDDF9D3C6E43 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6901050EF0902C7A013436C58A9B248F /* SysFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDE501DB07D92629B99BFC74828DDE8D /* 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"; }; }; 69263344AC2EEDC6526EEE47861A35BE /* FlipperCppBridgingResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 730E4E0BC41E24A628932A3852D22DD5 /* FlipperCppBridgingResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 69524FD0848A58F018B7677B110D7BCF /* GDTCORReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F111A9E7C9207F0FD2FF36F1DBE8EE09 /* GDTCORReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1446,11 +1448,11 @@ 6954C7E327E3C06A6AA626163C0C4B69 /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 67124FDA9468FB603B07247B6743BB45 /* FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 69C4123A15898007F90AC7D2B778DD73 /* GDTCORDataFuture.m in Sources */ = {isa = PBXBuildFile; fileRef = 1299B516202C6B6DD5D3B44DDCAB43AF /* GDTCORDataFuture.m */; }; 69E5F7365CB3D10FF7898098C3146A99 /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = F53A6E69750806523F38D485292B973C /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69F787055B26C7E2B61B5B9B80F3C272 /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = D8B25E315BDB9C305A6177EE534CEB89 /* BSG_KSMach_Arm64.c */; }; + 69F787055B26C7E2B61B5B9B80F3C272 /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = FE86AD7E797D9914BE9A74EC7BC13ADF /* BSG_KSMach_Arm64.c */; }; 69FEE4B83120F441AB20A039513A796E /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5062F65CF90760ACE346693A81DC753F /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A03046C71CF85B2E59E2FBEFA35C326 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 26CA9C5B027A193D6EE2D654B1850FF7 /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A47866FA2B12335E271AF455D52025E /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = 330F23D7B53A95233627DE41F79DF342 /* BSG_KSCrash.m */; }; - 6A4FE90A1CC535DAA809C5525490B85E /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = A28827BF9180CFBAEE15B996E90B6370 /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A03046C71CF85B2E59E2FBEFA35C326 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 60B2F43322E7CC4D115FE92140100910 /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A47866FA2B12335E271AF455D52025E /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = C7B7295CBF6EF405A44F84AAE4205705 /* BSG_KSCrash.m */; }; + 6A4FE90A1CC535DAA809C5525490B85E /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = B913B0DE28EC59A4F79F6DB78A261708 /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6A6811BCCAFE9B118E3913633F9D1A9D /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BCC25095D2CE9236C0C794B87DB2275 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6A789FEDD6D65DEB0888A4AB486DB224 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = CD9B56B3AE03BAFCDD4CC21C2991FF4D /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; 6A7BB4319F8D74B5D1D1C1D8FEA3C588 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = B65582303CA5F442057542B5A3E6C957 /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1461,8 +1463,8 @@ 6AF606892AF0C31C6F0EADDA8900C803 /* FKUserDefaultsSwizzleUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 422866F2343B4FA12000754B30B2F006 /* FKUserDefaultsSwizzleUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B20F0EEC49A5600388DD9F9EE9CA2D1 /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 010B5109BD821A3F8B3B29CFCDE19C3A /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B217CCE28CC0B8DA7822706B41E3E8C /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = AF5CE5148857621B9A277B87101F41BF /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B257CAC5E2C34DDAF304C790E898733 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = C60EAE0A54FF212B714AF0FF77374FC9 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B2A4C18AEA7A928A2E33A7B5C6BB708 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E8962F09A716B354B9D11C3AD2285DC /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B257CAC5E2C34DDAF304C790E898733 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 93E8E380CB23AE9CCFCB94F089475E53 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B2A4C18AEA7A928A2E33A7B5C6BB708 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6702D43F6FF76BC785818390BF2715CF /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B2C45537C87B11EF65E69E9F333F4F4 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 18D02EE20BF587B8F1FD8003EE186FD8 /* SDImageGIFCoder.m */; }; 6B67B6200914575EE45FB7C1F2A18716 /* Flowables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B486B15520686D88CF9A960BBE1BB153 /* 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"; }; }; 6B6C5353B590B5F7407E42D993C98BCD /* Observer.h in Headers */ = {isa = PBXBuildFile; fileRef = EC5E84BFDB9AAF8206A9A237A394252E /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1471,81 +1473,82 @@ 6BB0A0E40EDC7AB4948869DCFB90D4E2 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = F8E0F8EAFEF34E092F06B406FE9E3B18 /* muxi.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6BEC4D1F3B47EAED77B9E07F0EA70256 /* GDTCOREvent_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = FAA8F78A3513D80C50FF65E18B5F8F0A /* GDTCOREvent_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6BF37FE9E8ABB36E08295C0B612C29B0 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 31A6F042C824B8C234E02AF82D6074C4 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BFEA5716AA863598AB805E81B5BFE45 /* RNFirebaseEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CFCC00BE7585C289372FD36D3938414 /* RNFirebaseEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BFEA5716AA863598AB805E81B5BFE45 /* RNFirebaseEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = DA8A3EE127539AED404FDA1002228B72 /* RNFirebaseEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C1BF50C54FFCDABA052C0D60E4AA1CB /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B699E2A67EEA22C814FEAB92F07069D /* quant_levels_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C24EBB7821ECE451CC18A7AD9F1C368 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = B13F3CC7402172EA1283D8E1704C45E6 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C293AAE8A665126DB65576FB61F2C2E /* NativeExpressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = F47CECCB9C254BB8CCA26A017B111BBB /* NativeExpressComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C293AAE8A665126DB65576FB61F2C2E /* NativeExpressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CF59DE05A098DAA833C7A70753F25BC /* NativeExpressComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C2AEAC146ADE8FD2C8F6FC813463A9F /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 419AFAD3BACA493568A21704D1085C63 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C2C52BDBEAAC3411053D5BD41B4DC82 /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C74A1CB781F3A9CA9D729DAD82BE6CD /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C2C52BDBEAAC3411053D5BD41B4DC82 /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 049121CD6C0B1D64E58E3C9027BDCEFB /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C70DA166CC635856E26D25356B5A6FD /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 5859B658E09A55DFE853367E281C57CE /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C848B57000ECB333F2141484B5061F8 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 75B1D0F517B8A7EBEF839B508F1D0AB3 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C9CA546126A96EBB44E0EB01CA0C597 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D9526635D048D516E86BDC0C54F35F7 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CA4114F7B18865EB558884C622ECAA5 /* RCTView+SafeAreaCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = F4EE6D7DAD6DC79060122FC1C638C467 /* RCTView+SafeAreaCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CDBAF244B152AB69B35CD781B81F6E5 /* EXVideoThumbnailsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 0773A1266A8E3BCC9A3C57CC7DC04F95 /* EXVideoThumbnailsModule.m */; }; - 6CE4D23FE50DC0994EFB182F5FE54B87 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CB13247273DA1EDC15E72E4B74C2E1C /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CFCAB7E767E1BBE28175576FD06FC09 /* RCTLinkingPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 32D3AAEC3A19B32B24B56FD58AAF3CFB /* RCTLinkingPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D16844C8F96A2DD292833AA84CD155F /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 415F3E5470AF03E227F33C7685577453 /* REAPropsNode.m */; }; + 6C848B57000ECB333F2141484B5061F8 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = CC8F9EEB184C73EAF0EDBFFB9A9448F2 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C9CA546126A96EBB44E0EB01CA0C597 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D93AE0391E8B04BF035C5947E9A419FE /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CA4114F7B18865EB558884C622ECAA5 /* RCTView+SafeAreaCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A3900AA83F87E3377256675111C8DFD /* RCTView+SafeAreaCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CDBAF244B152AB69B35CD781B81F6E5 /* EXVideoThumbnailsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = F3A088F5E94959F5608F4899D57DA206 /* EXVideoThumbnailsModule.m */; }; + 6CE4D23FE50DC0994EFB182F5FE54B87 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FE19B7DAAB2672D88B1F5E74DE62B517 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CFCAB7E767E1BBE28175576FD06FC09 /* RCTLinkingPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C867FCCE49877A00F3EF1D8BFF334BF /* RCTLinkingPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D16844C8F96A2DD292833AA84CD155F /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D194CD066A6620297A9ABEF104160B18 /* REAPropsNode.m */; }; 6D3150889C73DAD4E43A477FE1892785 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = BED4D12B7CB1907D3DD20AD65D6968DF /* README.md */; }; - 6D35AB896CC748B13AC4B3C3972EE181 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 74C12544EC8AA7B7B2EC601C042BC447 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D35AB896CC748B13AC4B3C3972EE181 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = EDCA066DC697E9BEF2EEF64778751C22 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6D72A391A5E8B931A40E0EEE1122CE92 /* FIRInstallationsStoredItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A6B3A9C0BA27C92014529507E9122A9 /* FIRInstallationsStoredItem.m */; }; - 6D8104F1766905FA5D32740A209F2A31 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB3AF46C8D97467F7608524BDDC07B1 /* READebugNode.m */; }; + 6D8104F1766905FA5D32740A209F2A31 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 26D34E8EF25EA2FB1249DD3B286FD598 /* READebugNode.m */; }; 6D904A25444A6BB07820E09B40280DB4 /* Dirent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B5FF22642EC02DAD95385F97DE51F8C /* 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"; }; }; - 6DB135CE25243C7A87B72013CF246917 /* EXKeepAwake.h in Headers */ = {isa = PBXBuildFile; fileRef = ABE2162F3D7925EF60E7F3E538B3ED68 /* EXKeepAwake.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DB976F647E681AB06E97EDB58F98C41 /* RNCMaskedView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A35C702B991BD84D970E4366E95038AD /* RNCMaskedView-dummy.m */; }; + 6DB135CE25243C7A87B72013CF246917 /* EXKeepAwake.h in Headers */ = {isa = PBXBuildFile; fileRef = 74DE5ECD6B64E6F47DF433971EAD8225 /* EXKeepAwake.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DB976F647E681AB06E97EDB58F98C41 /* RNCMaskedView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B83F19BE55D1F77902A11954FA99A98B /* RNCMaskedView-dummy.m */; }; 6DCD55BA285E5153356D0FB6617AF4D0 /* FlowableObserveOnOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 5239E8274D8C6BBA02745A0F60FBA5C7 /* FlowableObserveOnOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6E0920954B6E212D8FED37C2A25D5CD1 /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = B6F485C63D0E6C4AD0BFBD1FF878458B /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6EB2103944BC372A4EE0748B94A2BCA4 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F70BDF844B02084D7E021F49AB36109A /* KeyboardTrackingViewManager.m */; }; - 6EC20FB3628ED3D4DA15AEE1BCCFA383 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 55340EED345363477EF6B0438936AE88 /* UMViewManagerAdapterClassesRegistry.m */; }; - 6ECC55AD73F0F5815E451EAD8D434D0D /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = CA86921710499BD076EACF2DB4E51E2A /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6EDB4E90EFB2396C768AA9ECB68B9E98 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = ABBF6EC0DF678369E9D6019CCFCAD659 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F07790D881EFAD49AA9EFE75FADA672 /* RCTFileReaderModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9F8259B1F92298E671F6B07308C7E1C3 /* 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"; }; }; - 6F1F0DE59B8D85D5C5BBE4827591AFE6 /* RNFirebaseUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 7817EF52C29B1D0252EE06D16D36F9AB /* RNFirebaseUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EB2103944BC372A4EE0748B94A2BCA4 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FA0DAC29FA8635BEA326384C7007408 /* KeyboardTrackingViewManager.m */; }; + 6EC20FB3628ED3D4DA15AEE1BCCFA383 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = C600E0C9557D33A1A03EDF81C56E1C6D /* UMViewManagerAdapterClassesRegistry.m */; }; + 6ECC55AD73F0F5815E451EAD8D434D0D /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = BE91CEE35AB92D55B46F5AE10BF32F0C /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EDB4E90EFB2396C768AA9ECB68B9E98 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 267F6C74F5F2AB98971FC8EA2F47B183 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F07790D881EFAD49AA9EFE75FADA672 /* RCTFileReaderModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = EA00899B601D90EE6586A95E2062D486 /* 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"; }; }; + 6F1F0DE59B8D85D5C5BBE4827591AFE6 /* RNFirebaseUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 041999B01F33F5728EADE2E9A551CF9B /* RNFirebaseUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6F55D5181CC9A51E052914C9FB3FE77F /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = DD3DACC72CC97E3AC947BE53B8DB5D12 /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6F88D197CC1AA3E0B50D93FD5F7CF071 /* Future.h in Headers */ = {isa = PBXBuildFile; fileRef = D14DC96327A1C1B943C69538D8D33BF1 /* Future.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FADD2923098EDB7083BACF1DF28880E /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F56F1329EFE157CF8424509C7B0469F1 /* EXWebBrowser-dummy.m */; }; + 6FADD2923098EDB7083BACF1DF28880E /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F0600C755BC4C06B2F73F1604FE74D4 /* EXWebBrowser-dummy.m */; }; 6FB0A78F16C8DC9FCA25121E22A34AD5 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C6A3C5875C4FA522C69652AFDFA30B60 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6FB624CE84ABA6F5B472A098FD3B96CB /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 867927D4402F4B8C40812057FCAF3150 /* iterator_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 6FBDDAF47F6FB7758B11DD8F5B8B3436 /* ThreadedExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABFF9C7A054206F034417F827D639CD3 /* 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"; }; }; 6FC607CC2D020D816400CAFCFFF7288B /* PriorityUnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 8573BA2D023860A9F6D970B57450563C /* PriorityUnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FFF1148634D9472933210CBFC2E6E65 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D2DE99061D0D67202BCD04691C59097 /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FFF1148634D9472933210CBFC2E6E65 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AB48E873BEAA1DD110680782677F158D /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7003449F5AD5ED5357D584E2C927D1C9 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = EB30AF4296B7DF688702EF6329B3212C /* filters_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 701656AAE9EA2EB14ACF8B21B996906B /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = F89B0811B63126971AC55FE11379F658 /* RCTCustomInputController.m */; }; - 7024078DAC57D90432E6111E82E7BC2B /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = 8BBF60887E51831BA17F9FCC006CE447 /* BSG_KSCrashSentry_User.c */; }; + 701656AAE9EA2EB14ACF8B21B996906B /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2874635C8ACF2F545342C9694BF49DC3 /* RCTCustomInputController.m */; }; + 7024078DAC57D90432E6111E82E7BC2B /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = 4B7280DC6FED85AD9589A66AC5647B62 /* BSG_KSCrashSentry_User.c */; }; 70499203E2E4E13465AA6BA667887CC1 /* GlobalShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 75DA4BB71C1326F66B176CCA5A426509 /* GlobalShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7051713F98CC30823562EB071DC39C96 /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E62C990994B163B1E63FABB01328E5E /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 707B2CC24985C389209CE40429E62D49 /* FIRInstallationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FF492AE67C415F581B90EE78BE0ED44 /* FIRInstallationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70917AA85229371846B2BA9C6982B2D5 /* RCTRedBoxSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = D970E34B228FAECA5A706C8B698E0031 /* RCTRedBoxSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 70917AA85229371846B2BA9C6982B2D5 /* RCTRedBoxSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = B6650A0AD796D6E7B79B515E7D756EF7 /* RCTRedBoxSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 70A55701F794D3275F5989C1F4028042 /* FlipperStep.h in Headers */ = {isa = PBXBuildFile; fileRef = FE081383A92435653EE42E2C8C4EAB5D /* FlipperStep.h */; settings = {ATTRIBUTES = (Project, ); }; }; 70B22AAE6D8044176F9BAFA0F2511167 /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E1CFFFAB8A4A2D75524936EE293EC91 /* SDFileAttributeHelper.m */; }; 70C947372918C45265E8AA6243FAE044 /* StreamFragmentAccumulator.h in Headers */ = {isa = PBXBuildFile; fileRef = BFDB400359D9801EC7F5B043C1BE7FB5 /* StreamFragmentAccumulator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70CA057375CA861D8A3729FED91030B3 /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D13841282F071474EE044B063C61089F /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 70CA057375CA861D8A3729FED91030B3 /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9BB449E0F6493A29C62B20ED4EB2BF00 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 70DC9B10E6304A69135CCBE2AB263499 /* hu.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D4F46B602F0430A1FBBB1734A3404C7F /* hu.lproj */; }; - 70FD47128E14984FA9DABB052B73161E /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C8721D1A0233F31995963A9A3DF84D9E /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71048C5E632D1CD5ADE2BFCAD39D0D0D /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 237CC3ABD81B96AE4676A00DDA048928 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70FD47128E14984FA9DABB052B73161E /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BE6C709B2CDA1C8F74B0EB1C19753A3 /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71048C5E632D1CD5ADE2BFCAD39D0D0D /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = A6D61A98BE3838A974047F5F353B5506 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 713B6CFB2FEB27D47C3E3C5F2D908A70 /* AsyncSignalHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62B8EF8AF12E78C2AF1A636E291CB5C5 /* 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"; }; }; 715A3D8A7C44869FEACE0514D575E18C /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = C2456B070C41806D7B609717DA4AE773 /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 718F3327BD8BC6C1649C8AF752369610 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F841028276DE9C8EB754EEB93EA15CED /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 718F3327BD8BC6C1649C8AF752369610 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 33D551B60F8530F4356EB55964B4FA03 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 71A171A31038A2903EE7E79423EB1506 /* FlipperKitLayoutPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = A55529A02D9F5950F616EA52CC95D4A8 /* 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"; }; }; 71A88BD28F32D462CD811AF18696F885 /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 66149099245ABA812984423B04B2B2E9 /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = BCC4FCA814ED1A0EB6FD44AC80CFB537 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71B0ADC6C2DC2E47E30351AE0747533A /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C1B49077B4BCE1602288DC8DF114A95F /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 71B1F6D3D1676C67B9689723295BBBF8 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = EA58EA4D547EE32CC093428D5178FBC8 /* RNNativeViewHandler.m */; }; - 71BFB0C1F7C39D377180BE4A26405164 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C04B222BADBF278384BF00FEFC6B141 /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 876083BCCE2D2CC8E94DE4899EB6ADAD /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71B0ADC6C2DC2E47E30351AE0747533A /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CCC75DE3E19DBDCDC976CB51121AA6A /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 71B1F6D3D1676C67B9689723295BBBF8 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 792E8146D665B9BE40716A7239F38CB7 /* RNNativeViewHandler.m */; }; + 71BFB0C1F7C39D377180BE4A26405164 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 3978E0817217815A03BD8559CBC212A0 /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 72089BD4C4AB1DEC21AC8B8C15BE2ED0 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C4A42E529DA8C82241503BA7483D779 /* SDDeviceHelper.m */; }; - 720F10A6F132AD7458D8B1BD85DE5BB2 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = FD2FC124BB9B7CBC155CA9E0A2447336 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 720F10A6F132AD7458D8B1BD85DE5BB2 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C4A7193D1505AB4E7B8EEB458479E5B /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 721713500B4D40C033B10C063E735067 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 8507EE48E0C9C50B5318C5CF50122148 /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 722BD6977E9660D59526BB0AD44148F8 /* FlipperKitReactPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D448B892838AD09C2D3EF63EA7EA406 /* FlipperKitReactPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 725BA7CAA30F06AEDC2A790CB990123E /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D6B806B0C24218829AD1891707AAB87 /* REAValueNode.m */; }; - 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C2F3B2B18419478923F098C4C3F7CA2 /* RNFlingHandler.m */; }; - 7284BF438F4A908AFDB3AEA753D92D54 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = BC5A69BE5A136CFCBA030C7348047FAF /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 725BA7CAA30F06AEDC2A790CB990123E /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 842878067937A44B227D66C01C43030D /* REAValueNode.m */; }; + 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C5079FCBD5EEF4C3D19A4559DF39DA35 /* RNFlingHandler.m */; }; + 7284BF438F4A908AFDB3AEA753D92D54 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3849EEFE0D7DD1DDED58F4F9AF3B84B4 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 729543A16C2009AED104FB4361519B63 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 433B2105FDE53C5CBB3D124CBA9AF726 /* SDDisplayLink.m */; }; - 72A1DCEA3136CEF0217A05E9CC9D768F /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7950D5F8D42922169511C70BC8A76A9E /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72A1DCEA3136CEF0217A05E9CC9D768F /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 08ABEBB9725655CC6ED26B3DEDB4CA00 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 72A89D0E917A84710512EBBC8A498DBE /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D65795EAEBDB3248E4FFEFD8AE28B5B /* bit_writer_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72F03A33B89D23334A2BF8C1544CB64B /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 61C19957AE3CEED64F8195E49B5CA6C6 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72C57949DABD3BDC557C1B6AAAA05918 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C44288E4F9D989101F85D6BC24EA9B5 /* Pods-ShareRocketChatRN-dummy.m */; }; + 72F03A33B89D23334A2BF8C1544CB64B /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 124072C8CF5B3C82CAF4ECD605BC4C4E /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 72F98D47E908D160397D2109949F8901 /* GDTCORTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 51F04E2D9A8DF407264771A7B6DB295D /* GDTCORTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 730CF59059356078E40500B6BB498E2C /* OpenSSLThreading.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05672D7B2C6130AF07E326DF8EF6CDE0 /* 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"; }; }; - 730DC14773375905F03EC77556A60EE7 /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 50DAF5A9BC41E497F4DAFAE985C768B3 /* RNCAppearanceProvider.m */; }; - 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = F20181471778C07CFADEE98BA8D45FDC /* RNSScreenStack.m */; }; + 730DC14773375905F03EC77556A60EE7 /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 2744D69B7CA848FB0307E86A45438935 /* RNCAppearanceProvider.m */; }; + 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B41E4FCC74576391ADB7ACBFD2CB539 /* RNSScreenStack.m */; }; 73326E676CD26D5A4B3B135758C839A2 /* nl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 6DCAAFCFD9C40302456BE418A600C478 /* nl.lproj */; }; 735677185EDE464C255FC2E8C20CB400 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = D175DEB9DCB303F9ECF104A3CCA72AE1 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 7375257DD805DCD78B8073530A459F64 /* Builtins.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49B2130667FC877ECE76F0F609B82F7F /* 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"; }; }; @@ -1554,245 +1557,247 @@ 73C1987309FC66BA1F1ED22729624B83 /* RSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = D02D05DFF66D5FB7319CA280942F9426 /* RSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 73C360D38190B223621C837277090BF2 /* SharedPromise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 501527DF2B51A182FCF38F92501CA6FD /* SharedPromise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 73CE42ADD9095E1C00FD06E526EEF697 /* EDFThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BE8A21AE787CA0316CAB8B12808184C /* EDFThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73F47C0D665D977282E99C099016D971 /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 671AD54C7E97609168CD5CC4DB6E2C3F /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73F47C0D665D977282E99C099016D971 /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 41CB39FD5D11539EAE2ECF837C19AC7F /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; 73FC0DD23312E359AAF2BA654EAF7B6F /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = F8A31A8DA974B49272E80FBD49044CBB /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 73FE47BDC5B749B3E3CFBF41F35F23B1 /* GDTCORUploadPackage.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D93EFFAB3C9CF568E8586640851F355 /* GDTCORUploadPackage.m */; }; - 74025B9922DF7341E15B5DAA6EDBC05A /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BF2A83643B8FA28BACB7D11BC209D29 /* React-jsiexecutor-dummy.m */; }; + 74025B9922DF7341E15B5DAA6EDBC05A /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BFDC408389CB2C71CCB52D6A88B529F1 /* React-jsiexecutor-dummy.m */; }; 741AF7E0277F291C9A0D1BD934784DE5 /* TimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 06800ED7F45E9EEE33317363307DAF0E /* TimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 74300D3787589F62BD7ED937C2C6B714 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = A6247BFFD6345418184A0A399334C902 /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 743DB1E02A7BB6C13E5E07719EB4764D /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F34CDAA5FAE8D10A8A77EBE52B29E3A /* DoubleConversion-dummy.m */; }; 743E12102CBDF56F168BB165085C8ED9 /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 1096C62987E060CDB91A9A0667807111 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 744569ED9F08B38A12D22F2F9FC0424C /* SocketAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 022760F1F3F03EEEF53CBA1B3AEB597A /* 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"; }; }; 74466012CDD86409DB862C1330B47343 /* SKSearchResultNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8924A173226D2B10DDD893B3319E05A5 /* 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"; }; }; - 74547C67043E4BCDE93F7D9474839E79 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D02A1B3E1F6EDF27F7E7EE61856E48A5 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 74560B9C92971D07E35C876489CAC5BD /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4CDCD6A136E371FEBED4722B32D60D80 /* 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"; }; }; - 748CBB515393B82D47F544886EDE3446 /* RCTUtilsUIOverride.m in Sources */ = {isa = PBXBuildFile; fileRef = 330591B23AC30025C60AAA759192D205 /* RCTUtilsUIOverride.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 74547C67043E4BCDE93F7D9474839E79 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9CF2193318F09D8D55E14A40590398F6 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 74560B9C92971D07E35C876489CAC5BD /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = AF9BBCCCA38CF3024A8E55E70FC480AC /* 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"; }; }; + 748CBB515393B82D47F544886EDE3446 /* RCTUtilsUIOverride.m in Sources */ = {isa = PBXBuildFile; fileRef = B8236816F9EF6C835ADEF7EBD8A51FEE /* RCTUtilsUIOverride.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 74BCEF87E24337003DB52A4C98FEEF2F /* Core-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 03B3B8A2D8AA371D0684A81EAD100DCF /* Core-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 74BFEE5FD90DDCCFB94D28F70F9F952F /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DF471E434E4FFF4F5E34CFB225CD970 /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74D294644A5BAD6AFCC3AB3E1D464F48 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 80D238AA7EC7C5899E5E561AA17369C4 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7506148F3914E0D6F1A1AB594E55B9E1 /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BBC55D0BAE3E0BB33A9C04D97CFAA33 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74D294644A5BAD6AFCC3AB3E1D464F48 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2955E1F0E269B00A6DF445737D241CC5 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7506148F3914E0D6F1A1AB594E55B9E1 /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C8937263FFB2C59A5E5A48194035D49 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 75333439D6AC33E0F7ADAE8F60E86FD8 /* FireForgetThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4509075B648B1A4ABBF5CC9C07CA000D /* 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"; }; }; - 7542B46F03BB40C5A9876C63AEA76479 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 85653A67F4DAFE72CB27698A0137506B /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BF533A7F650FB87F22D890DE1ECAF559 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75778E70621A1A6EE9A2FA787A37D730 /* RCTImageView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3CE06DDB5C28C8CDBD7DA9C8A8B59571 /* 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"; }; }; + 7542B46F03BB40C5A9876C63AEA76479 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = D1D70E1B0FB4018A3A748137894CFA0F /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B2D4DDB8592A5368609B572269B0F1D2 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75778E70621A1A6EE9A2FA787A37D730 /* RCTImageView.mm in Sources */ = {isa = PBXBuildFile; fileRef = D16CF1F5F589134A5AD03CAAF6FF4E3A /* 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"; }; }; 757C477AF763DFCA1BE5A5D78341AFE8 /* FirebaseCoreDiagnostics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 43EE0B73152C4977E13E9D53721F35B0 /* FirebaseCoreDiagnostics-dummy.m */; }; 757FD90124B6536FA19702EAB1BB9355 /* FIRInstallationsErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B55A15A4DD10CFE1C54130E09F18C61 /* FIRInstallationsErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75B8BADAC91B540F69B4C9B2B452FF29 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 804B80B024847B85E875989E81FC8A68 /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75C38367AD41BCC14148B858141FD9A2 /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 6253978A6B13DE9AF2B49EF14DD9FFBB /* RNUserDefaults.m */; }; - 76110E4538EEE7713CF6399084C6A08A /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = FB21DD46609D824435480EBBB6DC51FE /* REAEventNode.m */; }; + 75B8BADAC91B540F69B4C9B2B452FF29 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 713882D8685596882A1DA0DCAC5ACF8C /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75C38367AD41BCC14148B858141FD9A2 /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 28E7299B4D7DC027AEA6FF8027B16E29 /* RNUserDefaults.m */; }; + 76110E4538EEE7713CF6399084C6A08A /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A21DF5AF76A2B8062D40CB737C1DADA /* REAEventNode.m */; }; 763CD444AF9E7EA395CFD53721D810A8 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = AD220AA276D5E0A82C411E0A45B1435A /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; 764F640B2C505140321DA60CF2074D08 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 224B0F633CF99533D589753DA8AB82B0 /* tree_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 765E1045CE05FBCD4A3B66341064888F /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E58ABE3A117EE7B01E6E6D36BE5510F2 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 766B635C7BE0CCE6707FFB964463D053 /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 923E3BEC24E03E8214779AEE66755BA0 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 766B635C7BE0CCE6707FFB964463D053 /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 920FAF2B438559869A6D0190293E50AC /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 766BD1F98174D03F873BAA01F87ED011 /* Windows.h in Headers */ = {isa = PBXBuildFile; fileRef = C44304169C35B4A7A519B1A1DCBDA0AB /* Windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76764823DEFD4B7F2880A19721C6313A /* stop_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = E042208C2048F997332FF45C2670A035 /* stop_watch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7683D1EAD5E3D44A358E26F35D3654CB /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = C60DB03A1BEB387AD1E4E205D611D769 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76BCF1FCF8D56F43523423D46A8098A5 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AF68A599124576AE077A04547C6DB4D /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7683D1EAD5E3D44A358E26F35D3654CB /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 26F32BCDDA6E518EC2F330306560C1D7 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76BCF1FCF8D56F43523423D46A8098A5 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DEB1C53ABC82E6C91B3D561E55026863 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76CC28957C425E9D74DFA32D3F73953A /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = DCCFD8434CA50603862B2768CC4A129A /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76E11DFAA4DC6209C6D3CC2CBF3EFA8A /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B5210B14A763C0C46E3464166BFBBEB /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76EBE6CD51BEEE22F89845516E86EBAA /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = D7ACEA4E132D42CE98697B34DC036A3F /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76EEE05A743A33A2A0FAC336D130C2C9 /* GDTCORStorageProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 34B1FFB6141C73209C4E5A15B39EDEA7 /* GDTCORStorageProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76FD2A79BEF913421A313ED50295DF11 /* RequestResponseRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4B54DB3D9E006EB704E1D1E39532C22 /* 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"; }; }; - 7715D82AD9F3D0E93C1F5DFE32102B53 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 49C954801764BA30B8837999C61E0088 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 771A42B5F74050C824EF6A90710BDB46 /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 3412BB0B012BE91E0C5D2CAFC31E4A9C /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77622F1A0ABB1224B6239F7ADE18F4CB /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = CEEB012EA206F50BF1AC357FCA4B1075 /* ARTSolidColor.m */; }; + 7715D82AD9F3D0E93C1F5DFE32102B53 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = B1B61F997B01F01E1EB62509328A65C4 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 771A42B5F74050C824EF6A90710BDB46 /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = B72142B3DCD694D56D81DDC466849790 /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77622F1A0ABB1224B6239F7ADE18F4CB /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B070620454ABD843CBAC84F6D6C3662 /* ARTSolidColor.m */; }; 776799F6076113258BCCED1723ED4382 /* ThreadName.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C98A1F038692A38FFDA4138201117EC /* ThreadName.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77744A82C948F3D83862E0015E612602 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 3A09FC1F6FE2C60C12E163DDE81961C9 /* muxinternal.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 777B202C8582C5E0780E559C0ED4F862 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B16A11EFE75C65900856BB3DF8EB7C00 /* UMReactLogHandler.m */; }; + 777B202C8582C5E0780E559C0ED4F862 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3472323B1AEFB0C13EE49F7103F6F7E0 /* UMReactLogHandler.m */; }; 77ACCFEBB20441467E34B9600FF1FAB2 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1E8829A45C391249A921EAA2ECB324A1 /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 77B27E8A50F6A983B614BDBEE2B4C702 /* ro.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 27C71620694D8BFBA545CB1B9B57506C /* ro.lproj */; }; 77B293EF5067D13B9EB06AAB2F947B77 /* Flowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 77972F8869294C4A4D5DD271E126CABC /* Flowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77B3698D829519200039FAB0F98E726F /* CodingDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F5DD97F8E6E4C0708077F62E6A6E922 /* CodingDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77B46A28B3F86102E403AAB54A83DC0F /* RCTPerfMonitor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 677691D65DFCD8429843BFF9F273E3F1 /* 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"; }; }; - 77C8658812D7F0CE1234676F54F192E0 /* ARTShadow.h in Headers */ = {isa = PBXBuildFile; fileRef = 7291A11E4E697A55C450DCC63CB30A4E /* ARTShadow.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77B46A28B3F86102E403AAB54A83DC0F /* RCTPerfMonitor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 934A92F5F919E8F07588C83383514BDA /* 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"; }; }; + 77C8658812D7F0CE1234676F54F192E0 /* ARTShadow.h in Headers */ = {isa = PBXBuildFile; fileRef = 94B935719C753F605BEFC3442F21321C /* ARTShadow.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77EF2F92B9062A1EECCB6E0C9C275D88 /* UIImage+CropRotate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ABEC9560BE067BBE7FBDF9DBE45B2F9 /* UIImage+CropRotate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78319D0098C1839D14DD35C5F572DDCF /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 176E682D41DF7CC73EC689503E11CFC5 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78319D0098C1839D14DD35C5F572DDCF /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D466A4F271A3AC7DCC2FF8D781077753 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7841E1B4F2C70023205BC38857EE74D6 /* Combine.h in Headers */ = {isa = PBXBuildFile; fileRef = FD427A3E7446688D2E946889E162EF7C /* Combine.h */; settings = {ATTRIBUTES = (Project, ); }; }; 785BC4CF4809020AF5132A2626189D3B /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = 818C77783BD22EAC8309ADF4787BA66F /* mux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 785CAF95D72E52A3CB51D19B161EF757 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C4C96490A25F9C2F97BA3419589767EE /* RNDateTimePicker-dummy.m */; }; + 785CAF95D72E52A3CB51D19B161EF757 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 617926486224D0C074E090159BA81200 /* RNDateTimePicker-dummy.m */; }; 7882CEFF17C5B91821AD080799F6FB5D /* IPAddressV6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6A52D76A1966F86A98A1D54378299FD7 /* 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"; }; }; 7884F03CF9FA79DBEE75B5EF7658A49C /* UIView+Yoga.m in Sources */ = {isa = PBXBuildFile; fileRef = B82323AB272218CE115A7186AA94D3B7 /* UIView+Yoga.m */; }; - 788C6BB15A2BE63266654114F27DFC9F /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4903B4BB6E4988D7C0DFE53CA04CE545 /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 78915BE17253AFB06827312FC0CCBAF6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 25DD3BD753CD74DB2E3C40564A14E7D5 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 788C6BB15A2BE63266654114F27DFC9F /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6B26DEFDF2E6A80D97F00BBDFE7FF911 /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 78915BE17253AFB06827312FC0CCBAF6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 134E75B44815EFD151A2D9B70BD40986 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; 78BB6FDBF3F970AB072D30BEC80DB9B0 /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B091310AD634FF79967BBCB2BEB5DC0 /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78BF0D15DB0070EF5BFCF034FDBA9A7B /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 69B6D2BB819E460BA9FA4E519D5B54B8 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78BF0D15DB0070EF5BFCF034FDBA9A7B /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 43172E33D97ACB9262B3896A1C8EEA25 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 78CA63676DC67FB7253C5FFD5F3F7566 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CABFBEA32CA29594155D5329465B93FB /* 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"; }; }; - 78DAC16D9A5B8098D88681C436F3C6B2 /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = BD8E462DF6A71905487EE19E3BE23B02 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78F927721FF33D4B9A04BF10E78C536E /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = E407C008808A40F70B6473A6CBE3F57E /* UMModuleRegistryProvider.m */; }; - 790322F76C8B7D9855BAB016FF42BBD7 /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7945D6FE3AD2068CCD887818DCF8E3D4 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78DAC16D9A5B8098D88681C436F3C6B2 /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 106F6B8D6E0E1D4159EFC59CA49D35ED /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78F927721FF33D4B9A04BF10E78C536E /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 094B2079D554B45CE52B8DB78B37ADE8 /* UMModuleRegistryProvider.m */; }; + 790322F76C8B7D9855BAB016FF42BBD7 /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5027F0CC646A6516D16F1A731BCE3023 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7925BA5117C9FA8B8B85A031330AAA42 /* AsymmetricMemoryBarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5AE5ACA4257806B3925AD54D3C082CB /* 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"; }; }; - 7934D62F5DF4DC847EB6890EF8C9FB77 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C7E2B87C68912B4D0C360E7131D40C7D /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 794567009289677F590846BBC3EC0ADF /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 9816BD7EC824AFD30066D0241E412B38 /* EXFilePermissionModule.m */; }; + 7934D62F5DF4DC847EB6890EF8C9FB77 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 085AB487C8EB644BA63C60DAF68D9AC4 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 794567009289677F590846BBC3EC0ADF /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 22067950C5C6A4A4DC87C7D141E6E076 /* EXFilePermissionModule.m */; }; 7949FD6EB727E69406421858C3A31123 /* CMakeLists.txt in Sources */ = {isa = PBXBuildFile; fileRef = 56A76614CC57F364D865AE803573465F /* CMakeLists.txt */; }; 7951728F21A13BEC0D339F17249D5804 /* Observables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8182F724D11E8A5321A5333A8531239 /* 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"; }; }; 7968BD10264852AA8FD4BA57F5784960 /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = B3B7A14B0CD3520FAB6E3F14C46070CC /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7998B28E952A9C7FB43756166ABEBF61 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = BB45A219ED8EC0A299CA36811D99FF2B /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; 79A9269A8CDE8C5B66FBA6E2C4303509 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AE41E7F1254E66C3663DDF781E9762A /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 79B1AC4695CB8BE38445A32F9D7AB8C9 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 48585445AE235AEDCD0FB7DD230879A2 /* de.lproj */; }; - 79B7DEC0DCB3E71EE1D41FB02653FBD5 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 243D64C70C3BB8D6678B33719B5B6556 /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 79B7DEC0DCB3E71EE1D41FB02653FBD5 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 35D65F11FB88FBD45804F6317971486A /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 79BA26C737EFCA1A5749AAE7AC3FC842 /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 161D5036C6E1E9D09858BC871CC4520E /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79C687418816B577E9622D673D38A213 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F328C8DCCC1F139440AF2C1AFCEA66CA /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 79C687418816B577E9622D673D38A213 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = FDD46653AD02B0C0FB80E8DD6D577764 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 79D1B1B06EE6E1F8AADDCBA060A8D0CB /* IOBufQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 54105DAE291928E7EAE8CCB1DA55853B /* IOBufQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 79E0AD4F4180F0958392212CA49E755F /* FIRInstallationsHTTPError.m in Sources */ = {isa = PBXBuildFile; fileRef = A7D831E76894EA3AC47480A98214CEF4 /* FIRInstallationsHTTPError.m */; }; - 79E4E9207266A429AE14B16726F40034 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = AC14E1C64D4AA6BDFBCB354FEC0D3624 /* REAConcatNode.m */; }; + 79E4E9207266A429AE14B16726F40034 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F1748B403E6E5764097A0DFD44854C /* REAConcatNode.m */; }; 7A0EB74832117D4542A2518BDAFAD9E4 /* FBCxxFollyDynamicConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = BE84F26DA698B446FF77833AEF40D482 /* FBCxxFollyDynamicConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A161C90FAC2B1D71FB86C4B45CF885B /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 49F32FA804DE69B9BF136B2B00E982F3 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A161C90FAC2B1D71FB86C4B45CF885B /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = CB369CFCAECE6DD313C9B476C0BE97F6 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A245D980616242AD065C7FF0609C46A /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 87F1EBB941B35CC24467F4DC20EF659B /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A2C9312883FF8E666D535E21FE728A6 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A15E6153EC2B2E49A16449F0C735FEB /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7A2C9312883FF8E666D535E21FE728A6 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 63BDBC2D3708BDA03D43E9A7001DDB9D /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 7A383B2997E0FF8D0D194A0EDFD6CBC2 /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E7064B173A25FBB44D8EF835F3D27C6 /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A5135422A29083A9AA96DBDDCE35D93 /* ScheduledRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 43BE5D34C125EE2F7DE250FDD2B61547 /* ScheduledRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A78222EA8111E0D5019C2D5F945758A /* SKStateUpdateCPPWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EFA54296C3CB620F743547DD8A9297B /* SKStateUpdateCPPWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A7834A2F72C293E7AC78093E1B67C6E /* CacheLocality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2CB20BD04177E56CACE67BEA86275FAF /* 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"; }; }; - 7AB70076D594A0A054F93D465F06268A /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A1F4947E57242ED7DA527F0CC888F99 /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AD0DBA9E15F69157618464E1122115E /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 61CD7DFA4D6FA1B5DCD652D7B498AC51 /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AECC3D50F123A379D48712223BB9D53 /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = C4B13AABF5C01816B1F1888F8C02D596 /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B393E70142C67758A4E74068C761221 /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = A25B648764C88A992F7997E1061171A1 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B3EA463A77078AD28811472889B32F6 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 692B3C780583B0CD54F2309AB4155ABF /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AB70076D594A0A054F93D465F06268A /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FF7A46FBAAA619DA4120EFA07966DA0E /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AD0DBA9E15F69157618464E1122115E /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E3187C6C948132009DB5543F9704A1D /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AECC3D50F123A379D48712223BB9D53 /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = F8198A7A6C2B189CB145A78371FA8AA4 /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B393E70142C67758A4E74068C761221 /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 040AA9DAA7862B475B2E5120A5EEF914 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B3EA463A77078AD28811472889B32F6 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = AC9588F1D3452A95C29AADEAE2654DAC /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B5442DCEF1DE4B2012EAF97871F3036 /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 2263EA0BAD7D92061F727D33ABCC9D99 /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B6F6115673E71640B69E46F867EA6F7 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = A03C51391E5DCC85F63CF0BB0B9149F5 /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4872A4192F53CA0514FFD1C38F605F3B /* react-native-cameraroll-dummy.m */; }; + 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 39CDDF3FC6F08B54E8F1E21067DD7181 /* react-native-cameraroll-dummy.m */; }; 7B867BDB50330206036412351BCA3A62 /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D15813CBCD75E6248C5684A453D7F43 /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B8F82EB921486F892E840153E3EA908 /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 445E1C327EF4E1176AC0B5382418D5FF /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B9F31AF2CFDDAA733DC57561E908CB5 /* SharedPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = CDFF1BCD3977B0B17731B5CBD3F6C5E1 /* SharedPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7BCC08DBECE42EBE69A54DBA30F6B549 /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = D6B54BC0573F5256560D14D4C6B500A4 /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7BFF4D65ECEFB20ACBDD2BBC2D01CF8E /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A469D3C7285FE42D9BAFA2CB009D58A /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C0DB549FA227C02A2B1E6AED3A5B15F /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F8BFC2873678765632F624D52144BBA2 /* React-jsi-dummy.m */; }; + 7C0DB549FA227C02A2B1E6AED3A5B15F /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A1361018C52F1CE31D87BA70147752DA /* React-jsi-dummy.m */; }; 7C1666EB58E8990F4CE28BC7508AE115 /* FlowableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D2F29E9273B0EF4FE4CC44B6380CDE5 /* FlowableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C2AD3B775432BCF22E34431FC8F3EFE /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = 999D010364128751CC3731B3050F4617 /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C2D89A79A5CCE2428023B7CDC78BBBC /* YGLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 340CF216836AE1108FD997C37A4833D6 /* YGLayout.m */; }; 7C4DA271EB10F9E06486E8335DA8F4BD /* RSocketRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = FC645CA549A188CF71F5B24852F61F73 /* RSocketRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C4DBA9981D6328F8478F72A41244350 /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C2795AF2B789927A411944CEFE2E4A9 /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CA0E37B9E08810873F89B684905C1AA /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = 12D479D7F81530DCC5D5BF185A747439 /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7CA0E37B9E08810873F89B684905C1AA /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = F6D9633881EF5E6D8E4F89C510C6968F /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7CCFEA95B919EC2A0D5B7A413D55859F /* EXAppleAuthenticationMappings.m in Sources */ = {isa = PBXBuildFile; fileRef = 62381861DE4FD973F0A21B9ACADB2F15 /* EXAppleAuthenticationMappings.m */; }; 7CD1703B557168ABA37AE8C1A0238E5D /* SKTapListenerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EA4C48C4AD14F4DC80C97F8432ED85C /* SKTapListenerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7CF643F3FC2F33A94A2EDC7F942752D3 /* ProtocolVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 401B0063B340C5EA59BE881F792B4CFA /* ProtocolVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CFEA0A6052051C538AD0B0F49158099 /* RNFirebaseInstanceId.h in Headers */ = {isa = PBXBuildFile; fileRef = 84A6CCE3AE239A289124E91828AA0248 /* RNFirebaseInstanceId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CFF3687BC9FE4EC0FCE4DE43AC06B06 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A4FA7696475A97587BC6C360739DD59 /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D0FC1CD6DE38EB0602240ED6DA589E1 /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B2A08D8D954D554D533AD9629E96E30 /* BSGOutOfMemoryWatchdog.m */; }; + 7CFEA0A6052051C538AD0B0F49158099 /* RNFirebaseInstanceId.h in Headers */ = {isa = PBXBuildFile; fileRef = BD4ECE5FE09353799C30DF0C2A06044D /* RNFirebaseInstanceId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CFF3687BC9FE4EC0FCE4DE43AC06B06 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EAC43B84F9547719B73E62784E57016 /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D0FC1CD6DE38EB0602240ED6DA589E1 /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = 956FA2E8F3CB9BCD8C901DE0C9995E5F /* BSGOutOfMemoryWatchdog.m */; }; 7D2A357365A1488E3468A15CC26CA428 /* RecordIO-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = C349907DDF23F683261B00548458E2B7 /* RecordIO-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D32CB346A8A737EF45F15BB54F57AFD /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 77E53093581EE1B8FB2BC260A53B5387 /* rescaler_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 7D34A100ED6377A6117EC9F1CB8291AB /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C0BBC13610A1FC0E0DEFCC8F79316D3 /* 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"; }; }; 7D38F08E59ABB6BF7E221D088AB83D4D /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 674EC145D39681FBE369F624154EC4BD /* 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"; }; }; 7D6A5E9C9F6A6D7C4B6CAAB74BA8D214 /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = 8374BECF9023BBF87F380775FA231776 /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D74C0F449D31806561D458B8955CC9C /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 59D4C2A89439A00AE1064910F7D0E73C /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DD76BAFD20760145E437E105C5CC283 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ED74A6AC6550A6F60791194E337B0D9 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D74C0F449D31806561D458B8955CC9C /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F96DF6D6BA0CF581CC46C988CF8122B /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DD76BAFD20760145E437E105C5CC283 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = F8103D0961FA2AD9D3D3475D5F5BB421 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7DE0EFE6AB2647D5FACD08AF590EA581 /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = C8E57C46428DDC0632FE24C7BF610613 /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DE5523222AE9F4374CE11C62EC4CE68 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = F84A0A70D8C8A459E9B6E4E5CDC53C5C /* 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"; }; }; + 7DE5523222AE9F4374CE11C62EC4CE68 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = B9F916A9CD68EB11468EC27D469A2F29 /* 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"; }; }; 7E1CB466C068CBB65A95F740166FD9E8 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 983D32ADFA0F12582AC7AEF1116188AA /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E1CC457B4F2BD98BFA3743DD222329F /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 068FEB8942799C25ABFF13F26928F3DE /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E1CC457B4F2BD98BFA3743DD222329F /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 9916466C8411EAC9AAC96756257A4EBE /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7E5F55DE3AC17BA4FA9D94CFBB23A89E /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D8F07A79BD6CB0BEC7D9F73FF2AFA41 /* FBLPromise+Retry.m */; }; 7E6785216D5A27AA388421B8CB226AA1 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 12CD80C83BEB69E40871C0FC92B59C60 /* enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 7E78EAD1C901860BE15DA026345506C1 /* GDTCCTCompressionHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = A290C036AC4B6583D27A54150D182839 /* GDTCCTCompressionHelper.m */; }; - 7E796C7B6B601FA5CFA6D5154D7B17C1 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 038EC3FEF3E378705AFC70F8439DCCDE /* REATransition.m */; }; - 7E7E6C3DC5E177A0D7D6FEF93C8A428D /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F92A4A615D9303E8F7019A445D3B7EAB /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E796C7B6B601FA5CFA6D5154D7B17C1 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = D406E3712049C5BE639C6990990E7FEF /* REATransition.m */; }; + 7E7E6C3DC5E177A0D7D6FEF93C8A428D /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F31B10DD59C3075F35A0B2716A3B6DFB /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7E83979670FE945E28099C8EED37EB44 /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 9670ACB4681120F7A7AC533E13305D1C /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E945B7F9DF2DF5E9B4FADE31A4378FA /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D22AA44235C44FBD8317D1BAFC531C5 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E99CC8D8F66D2BADE6A8D3A09292927 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D01F4AD6506AD0945625F47438F57EE /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EAB54DB31F8AD2AA68AFE3659D27E89 /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FABC4583A03AFF3425D5AB3E2858898 /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E945B7F9DF2DF5E9B4FADE31A4378FA /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = C94E090C7AA8B2A12C7852C77FF192F2 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E99CC8D8F66D2BADE6A8D3A09292927 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = A3EB9FAAF052112714D0C5942EFF1010 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EAB54DB31F8AD2AA68AFE3659D27E89 /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = 43F70EEC92DC6532FEB97B8FB47495B5 /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7EB2258E75A0CFAEB893EFE5CAB78DAE /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E4EB2A16DD94B5CDABFF811E330D2FC8 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7EC87131595CE695AC853CF457AC1477 /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = DE643715043E724596EFD68C71AEC4C9 /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EC96E3BBC648DE9280DD2DFC1A85DC4 /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 52D997BDD7AFCA491005AA6906499E08 /* 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"; }; }; - 7EEB477B872B58A6D545BFD8B4981612 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D2E47E5DC5515FFA80025C1D28C5163 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EF07F5D301B2A8C165F1B15A8EFB2CF /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = B7360D2B463CE6CA010B5AF2028E78D4 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EC96E3BBC648DE9280DD2DFC1A85DC4 /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 688D0ABC174C6A9DB209984CF35D97C7 /* 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"; }; }; + 7EEB477B872B58A6D545BFD8B4981612 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EEBBF2B34ED0914BFAEA5DEDD08585C /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EF07F5D301B2A8C165F1B15A8EFB2CF /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 90B17DBDA0609D754ECFFCA38F7E5BDD /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7F26FFEED6990F7DE6542F85864BF163 /* AsymmetricMemoryBarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 558DC40DA7E7A651E3445C0FD7432C12 /* AsymmetricMemoryBarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7F2FF85FC360BEEB533BB12DEC940E61 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 16A19D3BA60E31A56CD6F95F12C0CD07 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F587E5E97E38B24059D626558F1FAF8 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 64C2567BEDF0288D61164E4312B28294 /* REATransitionAnimation.m */; }; + 7F587E5E97E38B24059D626558F1FAF8 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = B7931EC6A86AD2739772BCE8C2756096 /* REATransitionAnimation.m */; }; 7F7C5C9EDDB5F08624115724D21E0DA0 /* FIRInstallationsIIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = CAA4AADB1DAB0DCA0397F9D410A72638 /* FIRInstallationsIIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 804663488445831432C6D6B04C2DAD1E /* ScheduledFrameProcessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23FB5D71EDB1CE3FC9227ACB4D929D62 /* 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"; }; }; - 806A978726204E5605965748326D6627 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D5C72F658BE37FBCAB30618A68F9D23 /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 806A978726204E5605965748326D6627 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B85BFB057BF705D4CEA4E38A4925154 /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8070AA7AE73618DDBA207E20AA25953C /* HardwareConcurrency.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 74F33A435A3CB7082ECC0809627A0A01 /* 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"; }; }; - 80736038E8A66A4AF36DE75D3422AFE5 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 7258E8B44BC3D72B157DF7DEC7335C9D /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80924E3636CD65EEFFA53B4C7F187373 /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CF9248AAEE858B7E3EE90E4F7D2E29D7 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80736038E8A66A4AF36DE75D3422AFE5 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 24B4674663B10F5919335B67C8807E6E /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80924E3636CD65EEFFA53B4C7F187373 /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AC0BB14BEB73A57DC8B734160F84C2FF /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 80A07F3FC502FC926DED2369A414C9B3 /* Optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 5490A4EF5B776FDB6A7B0FE97DF2CD88 /* Optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; 80C026B0E39AC1F1703DF72A313A900B /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = C4D8C35912F68FCA0375BED2E0356D22 /* cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 80CDAEE930D06D1D2D6BCD00DEBE8108 /* StreamStateMachineBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E102A439D6647D41F701D80646B9C05 /* 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"; }; }; 80D2594A93ECDA477CA76FDC03F368B5 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = E47E6EAC5683C505E27D3E812F06FF0A /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80D7D1F640862031BC32186EEA10A65E /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 87B295827CD3B913A62B08E3CD47EFBA /* 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"; }; }; - 80DC2F0DCF0B1FFC9AF851FD42BD23A8 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = F784D210DABA667B77C7FDFDDBE86325 /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80D7D1F640862031BC32186EEA10A65E /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 418F58C2275BDE975AAB7658A777A532 /* 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"; }; }; + 80DC2F0DCF0B1FFC9AF851FD42BD23A8 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = A38031CF428F811D52F5E8700628EF3E /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81071E43B116BEE100693E96C1F9FE77 /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = C4A8F789C199D44C73E456AC70D39B21 /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81308D5B41DDC98C59C1102B81D5EE4E /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 769C0D49445A3B7FAF11861746C922B3 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81308D5B41DDC98C59C1102B81D5EE4E /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DBF61F838B1097FD62D7591FEB07A99 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; 813E4CB01E4386CA919F5664F7E9D09E /* FKPortForwardingCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 07BCE99FA93A40DB52862B5658D00310 /* FKPortForwardingCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8145C77FDDC575D33B405FF7F421A215 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 95863CF5020F6DBEE7687DD1B985A9DB /* lossless_enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 81561CA2BD7111B1F6C3D3EC67550617 /* StaticTracepoint-ELFx86.h in Headers */ = {isa = PBXBuildFile; fileRef = AD9B104B3FCAD3FE5DB05E65638A8A0D /* StaticTracepoint-ELFx86.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 815D8ABBA7979021C12E9297F0E5B795 /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = FA8813AF8196B7EA7BB351CFF7D6D740 /* 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"; }; }; + 815D8ABBA7979021C12E9297F0E5B795 /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 59A38D76ECF6D3A2CF7979FB90B2B2E4 /* 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"; }; }; 816247A876AC24CFC889B8629D8699B2 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = C6C22D1FEE3B00F2917C4C24433E46B6 /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 817F80FAD6CAC88EA2EA12B86A15C086 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A2A3D3A937FBC55FBC290581E655CF24 /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 817F80FAD6CAC88EA2EA12B86A15C086 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A70BC19B9CE70FBC2F3A251A3BCC2C56 /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 818FFA62B7ED6D4F27667F6428290F80 /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CAD289A64AE0C76D0C35AD49B6B4AF8 /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 819836474963B13AE93DBA37FF26CF91 /* RNCAsyncStorage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46E969FCD8BE80CC7A0BC72598694541 /* RNCAsyncStorage-dummy.m */; }; + 819836474963B13AE93DBA37FF26CF91 /* RNCAsyncStorage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 67919E9EA3B4D9F98265CA9D9D1E588E /* RNCAsyncStorage-dummy.m */; }; 819F83D63B167874E2EE18604EFDA365 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 70F31B995F9074BFE8C5A64966B80CF4 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 81CDD761CE987A83E4B9D0308E37CBBC /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = D0494757B3C1C765F02ABA217A56E0DF /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81CE0E950350389881B94CF765F8EA83 /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = B3ECD8473F4F6935F6753CC01AFD9B20 /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81DC789630EA64FE7CCB43BD80426A0C /* SoftRealTimeExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D525395ABBADE7600560BDA60B7A6FB /* SoftRealTimeExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81E1D7AABE1CC4754D5E22DBE883CA12 /* TOCroppedImageAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = F121CFABC992758DF1463276E3F11DD9 /* TOCroppedImageAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81F1D8104C6D7CE7780E40807E43438B /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 689C2EC302CAC200CAA0F3413D0DFC41 /* REABlockNode.m */; }; + 81F1D8104C6D7CE7780E40807E43438B /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CDD98338FF52785F209DFBB76641F9F9 /* REABlockNode.m */; }; 81FC60A335BDB739D75D24ED623A8264 /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 1ECBA4FA2EE40C8C14FC14A12567D8FE /* enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8210666640C5B1AF7DAB2FBA2292A1D1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 15988DF1C27AC4CD9250DC7E4CE2D05D /* ReactNativeShareExtension.m */; }; + 8210666640C5B1AF7DAB2FBA2292A1D1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 54D49797DB034BD9AFCF33501341C011 /* ReactNativeShareExtension.m */; }; 82231D09FD382B02393BB0898E36EE4C /* RelaxedConcurrentPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = AE369C5E433C27D42FD6CD3C3066D454 /* RelaxedConcurrentPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 823F08603B32859CE18D9E3D37357A54 /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = FF91004CA8D43870E149DF688938A87C /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 824AAEAA18CFB3DE727999EC5D6C961A /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = AC673122B986549D070C9F17702D6C35 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 824AAEAA18CFB3DE727999EC5D6C961A /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A86E589764F933047B0A925C146591B /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; 825A977B244746D1AB62EE93F5ABD142 /* GDTCOREvent+NetworkConnectionInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = DC8DDA75D168B91F80255E52FE9015C3 /* GDTCOREvent+NetworkConnectionInfo.m */; }; - 828546C2D849220CBE4FC2C7CDAA4240 /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 31A62F7D36A317FBB5A8A4E1AD72E2E0 /* NSTextStorage+FontScaling.m */; }; + 828546C2D849220CBE4FC2C7CDAA4240 /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 91A3294E0CAE80277F6BA9F07BE963ED /* NSTextStorage+FontScaling.m */; }; 829168B41AB0527695E68C1D5380C266 /* JSONSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DA0A76583DF71D03B06B268C8E1BD8E /* JSONSchema.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 829DD372488FC133D2BFEC4D238098D3 /* RNFirebaseStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = AF9E3DCB824D3FE11DD933520FD25A36 /* RNFirebaseStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82B3ACF24FBA461B54C393C8E8057A62 /* UMErrorCodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 54B3E0CEA29CC571D11A364AD4711081 /* UMErrorCodes.m */; }; + 829DD372488FC133D2BFEC4D238098D3 /* RNFirebaseStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = C229DD1D2670A9D83AB53E37B472BE4C /* RNFirebaseStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82B3ACF24FBA461B54C393C8E8057A62 /* UMErrorCodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 49F37D41ACDCF417C3F20711F4D42ECC /* UMErrorCodes.m */; }; 82BC85853B48599CF7034D4978C66459 /* SKNodeDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DA962609E253ADFE3AD2A762D7D940C /* SKNodeDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82BE17CA11C38578EE02F5D438CA1EFB /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E6E0F10C86207CB38336C65B85A89C5 /* EXFileSystemAssetLibraryHandler.m */; }; + 82BE17CA11C38578EE02F5D438CA1EFB /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AE3E53F317299930F0492639EF01984 /* EXFileSystemAssetLibraryHandler.m */; }; 82E00AB632629A007250F0155CA70AF1 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 292BCA39737346379D2062A64AAFD7FE /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 82FAD75153594152D13166FA9C918B07 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D2A072D667BE41643EDC97BAC2D32FF /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83136AA76652C7045CA261184E60A544 /* DynamicParser-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D4C87CD983A96E736323386CF3F2224 /* DynamicParser-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8323A813DA9029D2C9EB445A8FCD3E89 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B03E177185332CDB8914F429FC265C5 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8344C1B23A7DCE5793D982D670EDED41 /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = AE294F557701166FCB35B4D09E55C838 /* BSG_KSSignalInfo.c */; }; + 8323A813DA9029D2C9EB445A8FCD3E89 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = CE6120ADA01F94B73B9EC7AB04DE0BE4 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8344C1B23A7DCE5793D982D670EDED41 /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 1EC15084DB3363D73309F2FFC704EC04 /* BSG_KSSignalInfo.c */; }; 83473148D1A03C53409742D811D3583F /* QueuedImmediateExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = D6EEC3EE71DE1B866B0F12A7B9BA3943 /* QueuedImmediateExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8355F5AC1AF62C88E8E0CC029ED7862C /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 940927AF80BB56C30EFE4B1F381620E4 /* color_cache_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8361085C392B248183522DFE3B2CE5DD /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67B72A3E7B49AA3497182A6E61873E60 /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8361085C392B248183522DFE3B2CE5DD /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6E498CD5CA0351C79B920D298531B9D9 /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8363FDC00B483DC0C835683A720EF012 /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = B9EA65F8D084036C2753D98F4C662779 /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 837C128041DAC467276F9B865D3DCA1C /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = BD6094EAE9E1FD35871E0EEF9C2B5E55 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 837C128041DAC467276F9B865D3DCA1C /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = F86499206B3CCEFEDBF06F69F36D7B91 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8393DC193D20A5423A5F36D502C399CA /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EF5DD97AACA1860EB375EF5D474B603 /* FBLPromise+Then.m */; }; - 83D981D69D42BD8850D6FE8DD2D18CB8 /* RNCSafeAreaProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = F33B79E0E950C27327E8712493E25964 /* RNCSafeAreaProvider.m */; }; + 83D981D69D42BD8850D6FE8DD2D18CB8 /* RNCSafeAreaProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = B3648D2D15D59DC311C3D5148E86B72A /* RNCSafeAreaProvider.m */; }; 841BEEABB39AFCE2F1A9B9A2F800B860 /* FLEXUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = F6F1532B40383A3DB8C604FF6B96655F /* FLEXUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8439EA0A5BDF6C5C7BD5988ECC8ED470 /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = B309B4E79E23D7B86447953A5B6F5CC4 /* ARTPattern.m */; }; - 844702018C1EEA417EC5B7EC5010D8D8 /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 781E988E0CB8EFE95F712A6D15D687DA /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84569A9460D3479F61EACCA135F8995A /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D35157E450C8834E3BA9CCAA4AC641C /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8439EA0A5BDF6C5C7BD5988ECC8ED470 /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AE8FFCD5A5113CC66524CC9F466CEB7 /* ARTPattern.m */; }; + 844702018C1EEA417EC5B7EC5010D8D8 /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = A3A2A3F1F5208C1B538ADD5DFDB74382 /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84569A9460D3479F61EACCA135F8995A /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AC3F7E4DAF9A0BCDF52264CFFE374A8 /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8463BA54CDE10E89F565BD48AF5D85B4 /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AEE6076F5BF5AECC6C41B7DD7149A05 /* SDImageIOAnimatedCoder.m */; }; - 846B52FFC3BDD2D2568D127BDEE7FC9B /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = B10C27689490B563415BE53719EDF706 /* BugsnagCrashReport.m */; }; - 846D662EF516396FA7314B3E2E1BD174 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = A2E0E0FBE3BE420F40E9F34D63E43093 /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 846B52FFC3BDD2D2568D127BDEE7FC9B /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 047E3082BDAAFDB754C2F948E1FB9C07 /* BugsnagCrashReport.m */; }; + 846D662EF516396FA7314B3E2E1BD174 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = F52F69A8A78568067E27D7CA98BE4C69 /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 84901337E6298387C7597F48A4244F93 /* FIRInstallationsIIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 858E89073FD01DA1518836643725F960 /* FIRInstallationsIIDTokenStore.m */; }; 84A7473B9A205B904527095ED5D3DA74 /* RequestResponseThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 79402E701A69C8DF3E730013CE270EE8 /* 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"; }; }; 8502CB4758714A656E2ED14AEFBD8A98 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ABAB5A64E39FD3A82EEDA09B578377C8 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85114B4F37CDF58D3E92F188AE212B93 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EDDB0BF77E0162298A4164C90A4F5EB /* Pods-RocketChatRN-dummy.m */; }; 85139AAA0A570EBB566C5015CE3C2EA5 /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 19CA29DD3AFD6634378EC428704EAC63 /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8517F23398DC828BCCD67BA41DE24E38 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FB63269530E988E3B070B317F950B1FF /* RCTVirtualTextViewManager.m */; }; + 8517F23398DC828BCCD67BA41DE24E38 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DC83B2F3CD5791A8779CE94324B6B47 /* RCTVirtualTextViewManager.m */; }; 854011E8B4665CCA7D3CE510F229C6C0 /* AtomicStruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 53F8CC267E4F45BDC0AE8A7DF8F1875A /* AtomicStruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85455233A524A6D36F12FB9D3A3E6129 /* RNFirebaseDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 4779773EF55D080D7D37F93B44724406 /* RNFirebaseDatabase.m */; }; + 85455233A524A6D36F12FB9D3A3E6129 /* RNFirebaseDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = FE96DC8BB3D1E56398BB5DC38C611909 /* RNFirebaseDatabase.m */; }; 8547302CC4693C69F676D0FAF738DF38 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EE1D577BC7E2701CD1769E1578C3F2E /* cost_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8562DF2BC796D7D23CE5DD44BC407C01 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 84261ADE14135309915CABC032892D89 /* RNNotificationCenterListener.m */; }; - 858BDD4EA403C4818D6DCBC21F38DC41 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 319366C6B71F1F8B7C58EED5D381E0F9 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8562DF2BC796D7D23CE5DD44BC407C01 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C705C1315A99F2E22859FD59954D434 /* RNNotificationCenterListener.m */; }; + 858BDD4EA403C4818D6DCBC21F38DC41 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = B61566486D10B9EFC3DC1FD535454F71 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; 859CF4DDB4DF8D8BE39DB5AB5FE349B9 /* FutureDAG.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BC9EB36FA9896389542A9FC6195B19B /* FutureDAG.h */; settings = {ATTRIBUTES = (Project, ); }; }; 85C1168B650CAACD421980E5F1416548 /* FIRInstallationsLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C6742C7BEBBD69BBBB16472408F518B /* FIRInstallationsLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85D1E23F3C30060DC22262360CA05CD0 /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 864BE71E829E73221991F5BC988DC085 /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85D1E23F3C30060DC22262360CA05CD0 /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 912327CD24447113DCBE5E0204334FC2 /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; 85EF72DD40BCFC53D8722FBF1315AA1C /* Payload.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D032924FB29978E9F59D492EF7813E6 /* Payload.h */; settings = {ATTRIBUTES = (Project, ); }; }; 860728470F4EBC05ED4ED9EED2FACA48 /* FIRInstallationsErrorUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 400DBB6ED3B273ABFFDB48A492E31FCF /* FIRInstallationsErrorUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 86413B6185C68AF825C32E586B8BF4B0 /* Phase.h in Headers */ = {isa = PBXBuildFile; fileRef = DCA8E435EF07B58FECF3BF2DE95D69B6 /* Phase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 86558F39467D99DD75427289BF7D6D19 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 14678CD44F55B1A64B7CCF96F5E94126 /* UIView+WebCacheOperation.m */; }; - 866019462A8D0A9F1B3CE6E15B47294D /* RCTRedBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7B0A302C1C770E1D2AC505A1CC17CC88 /* 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"; }; }; - 86F9D23859BB7C3DD7A1364A0F155842 /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 00A26D8E2C88C84085C59339D32C8A40 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 866019462A8D0A9F1B3CE6E15B47294D /* RCTRedBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = A657A818C7D66B71AF1E3C4B05C4962C /* 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"; }; }; + 86F9D23859BB7C3DD7A1364A0F155842 /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0553A531F07D4AE16DD483083B42D7A9 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8712A013B77EFFFE014DA5E077E5AD8F /* PTProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A9797F59D2A40E6912254EAD970F4F7 /* PTProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8771DE0E347F59255E887573DD7F53F8 /* SKMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A5DEB2B58509094B3E9E367677E5F22 /* SKMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 87726AEFF151E25755DBEEB384C7E2A4 /* UnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = D80B707F80D383336E128EF112233BA6 /* UnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87768AD792BACA0E657CEA3829636F66 /* RNFirebaseFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EC707E40A56FB45B18630938D291BF8 /* RNFirebaseFunctions.m */; }; - 87873D084F83703DE3C009D5A2A0C043 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D50E8970AD79B27DF87DBF1760F03A /* UMSingletonModule.m */; }; + 87768AD792BACA0E657CEA3829636F66 /* RNFirebaseFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 852FE4D4C630CDD04A0F67358C135738 /* RNFirebaseFunctions.m */; }; + 87873D084F83703DE3C009D5A2A0C043 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = E970F038C92A074F5CDFDFED75311D5C /* UMSingletonModule.m */; }; 8799A7E7AF7D5000F6488DC84D14E692 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 822D4EB1CE679526E7E91CB7FB31A3CD /* rescaler_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 879A2F12063F7F3EC23F4BB0AC979758 /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 152014191CA2BD50E3C9D7E4E22D9CFD /* FBLPromise.m */; }; 87A323D292E1CDF36C181E54CB70C413 /* QuotientMultiSet-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 27487DDA42910A33F1B7210A7350CA6A /* QuotientMultiSet-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 87BE04CBC078520DB22E157E03434C37 /* SKHiddenWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B4516089BB11FCA44421395E3EC6C69 /* 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"; }; }; - 87C6E86E0A3326D7EF29AC082930360B /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = C4B0898909B2F346934BDAB0195A0865 /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87C72733BA76222A5C56FA47429534E5 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C8AC77AFFBFD52A772536E5AE2009BC7 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 87CB5DBA0826C9C8AB5991250EA3B6DE /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 810368266CDC54C4FD184409A0100C33 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 09B325A9595679D5E72539CD1ADB40FC /* RNSScreenStackHeaderConfig.m */; }; - 87D1C8D0E94309AE54E7909240E8B83A /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 416047E8ABB8DCF4B1C92A69B0BE21DA /* FFFastImageViewManager.m */; }; - 87D604BE8872A45E434BCCBA813103F4 /* UMUserNotificationCenterProxyInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 21D9C70A8F47F56275117FC3BD2FA20A /* UMUserNotificationCenterProxyInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87EBEDB6463EBB931CB123175B4DB568 /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = 817834EBD7CC1B69068254D93D17F76F /* ARTRenderable.m */; }; + 87C6E86E0A3326D7EF29AC082930360B /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = E1A6DDD38250927F90533C1838189EAE /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87C72733BA76222A5C56FA47429534E5 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 91C9001DC2995C2676B8F6DFFC44F09A /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 87CB5DBA0826C9C8AB5991250EA3B6DE /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 04368F41390E638813991BAD65E58B7B /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 2905F5558875923B7AF4A82D78A04C68 /* RNSScreenStackHeaderConfig.m */; }; + 87D1C8D0E94309AE54E7909240E8B83A /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C42295A853EA3272C33CC1007B5EA749 /* FFFastImageViewManager.m */; }; + 87D604BE8872A45E434BCCBA813103F4 /* UMUserNotificationCenterProxyInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = AE8ED7807A76E21DB0AB58FBD57A8F9F /* UMUserNotificationCenterProxyInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87EBEDB6463EBB931CB123175B4DB568 /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = BCC9E8E36491D208809DBABC0A43343D /* ARTRenderable.m */; }; 885EA3B1BA03C6F70CD3DD6FF81A6E97 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 1571AEAE2EF0732E6D6067B2390563D0 /* UIImage+MemoryCacheCost.m */; }; 88601CA34DF66C7A443806B033497F04 /* StringKeyedUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = FD21676449E7EEF83007E2106E0355B9 /* StringKeyedUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 887C97BFF8FE6AAB23F2B7A4F365901E /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5687C0F3CD1FE7DCF6A6AFFBABEF0297 /* react-native-safe-area-context-dummy.m */; }; + 887C97BFF8FE6AAB23F2B7A4F365901E /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FB0C95DF7E2E303FFFE3017E48AF553 /* react-native-safe-area-context-dummy.m */; }; 887DC1F1F3429DD83EDC126591F3B6A8 /* OpenSSLCertUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E7DE151FDBF6BE2826DC87D2617C7B5D /* OpenSSLCertUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88A7546CD0CC5EF28061417BEF92362D /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 2BBD251041467488C62CAACF77FC7EE2 /* filter_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 88E0E54C89590D83D5BFA15F1331204B /* HazptrObj.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A4E7BBCA6F5507E82249086A6ED9455 /* HazptrObj.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1803,291 +1808,295 @@ 892372828F1C3FB28FAE3D384E5C32F4 /* FrameHeader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B873736FEBF203C4811DE9024673CA18 /* 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"; }; }; 8936375FFA316F9576C0448D9414F21D /* CertificateUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 10E27EE0A11AA474165B731B0190E8C4 /* CertificateUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 894C64E73E77B4F3B56C3D49CA9C59F2 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2FE243CEBF31283F9B48FD56D86CE803 /* 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"; }; }; - 8958D59AAD95E09EE3548561B75CAA72 /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = 65F9702220B7B5AF9B597933137C935A /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8962AB8A9C9B86593534D61FD3B4915F /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 824826292AF68DC62ACAB4F9E1F8EDD9 /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8958D59AAD95E09EE3548561B75CAA72 /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = 3763AB04A89529750855C4C3533760D9 /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8962AB8A9C9B86593534D61FD3B4915F /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8006576A15E920884603E8789CAB9F3C /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 896B6ABB97CB90770CC46B3066F4C004 /* EXAppleAuthenticationRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 4831228447E518D4B8D8BFB7333FFE97 /* EXAppleAuthenticationRequest.m */; }; 89A1C44FF67BFE028336E28D48080B42 /* Parallel-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 18774485D964BA179328A4121E1BACED /* Parallel-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 89C3A612CD4ADB81C44209858A136F74 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D122ABD895F3D0DD67C634D2BC3AC88 /* cost_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8A1373FBD88F35501478391992C5376C /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D01AA4AAB14EE732D7B5D7F545D5AED /* huffman_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8A16248DE23D916CBBBFA8DF54392450 /* Observables.h in Headers */ = {isa = PBXBuildFile; fileRef = 930B64E9A37A12B0B46B8A195AE76A2C /* Observables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A5B3D6D40DFFDC77EFB3CC4B479600E /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = FF199BE0FB6C35F104C18D87B66C644C /* RCTTextSelection.m */; }; - 8A6AB74E5D979D543445E1AC15D30957 /* EXKeepAwake-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EA184D451F00520F850B9280736A0C0A /* EXKeepAwake-dummy.m */; }; - 8A7203DC25E6E40E7ED95BD4ECE3AD5C /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 63ADF89DFE17177EEA8B93FFA928D3C0 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A5B3D6D40DFFDC77EFB3CC4B479600E /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = 98E83548474CF2527CD74F317FE6A0D3 /* RCTTextSelection.m */; }; + 8A6AB74E5D979D543445E1AC15D30957 /* EXKeepAwake-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E9102DC33F063D111268F43954462C5F /* EXKeepAwake-dummy.m */; }; + 8A7203DC25E6E40E7ED95BD4ECE3AD5C /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 34D5C6524B5EECBE4308D60A0177C1B9 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A77D5E1942F02C90AEEF3957255C924 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 81113C05310AA610F499A9D3D80DCDF2 /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A77DDEE62494C3D749EBBAB907565D1 /* FIRInstallationsErrorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 2407279E734F1C65AA5D6D485EB3F4EE /* FIRInstallationsErrorUtil.m */; }; - 8A8390D6CD5D28CB550DA998FDAAF223 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = C6E373AA48E6E329BF7EE8C448DDEA2C /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8A8CC5BB726A951810D3CB4E255AFBB2 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 29A79EFAC50AA6F7BA8971A7DDE91CD9 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AAE349C589934222F73539BBD48FA2F /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 820F8842B24170991B1792B2091775EB /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8A8390D6CD5D28CB550DA998FDAAF223 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = ABF3E02DF86394EF28191B22D5FB3F12 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8A8CC5BB726A951810D3CB4E255AFBB2 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE9D044A0D0A72C4ABBDE19C8C41E14 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8AAE349C589934222F73539BBD48FA2F /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 093068FC0E267C91415EDE13698C369A /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8AB9E32DAF6BDF9585F5205FA0736F63 /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 3957078C9B055BE3CAE3EC2D92A5C3A2 /* tree_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8ACC17FDF17D071CB95330A1E1850858 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = 99594423459EEB42A29AF610F6983A9A /* BugsnagSessionTrackingPayload.m */; }; - 8ADC78D6C0CCBE0336F0FE0F53340F1A /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A1A7657676383C3DD07A56DBB78453D /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 8ACC17FDF17D071CB95330A1E1850858 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = 25BDBD014796225914C8BE9790EEAF48 /* BugsnagSessionTrackingPayload.m */; }; + 8ADC78D6C0CCBE0336F0FE0F53340F1A /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6A32CB6BF5B614879CA8331936310E6A /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 8AFCA90D1EB93097DE2A5298C729381C /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 83F11EE95BDA3D4C8755C4D66D0B74D6 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B06017BE3E8E65F2B4C459B94742090 /* REAUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 77669A1A60D5F27D47BE8A4011BAEC4A /* REAUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B0E5441C89B63D6E7B68E74DE638616 /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 04079F3F915E2504AFB4073E09E67CBB /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B06017BE3E8E65F2B4C459B94742090 /* REAUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 854D1744DD389D5D8C1ACE4FA1387DE9 /* REAUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B0E5441C89B63D6E7B68E74DE638616 /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 68F052FA093CABB36D1690961D6FAD17 /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B185D7F0B0EB26DF0FB3A62580B1068 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = F0CB75F2570E2B32699A77004E0331CA /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B1A6727A64798A9A7D8B7AF7C25CCA4 /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = 11EAE715397E8FE0FA3CB97ED5895596 /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B1CB4DE5C9EF20B3719DFE780F2ED88 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A81DE66523DA03FDE7B454B003A23AA /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B1CB4DE5C9EF20B3719DFE780F2ED88 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = 57F56536E891B238679FB9405792E45F /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B1FBC37AF98101724B7B6AA22A23490 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 18F92F00169D229BE1AD59EB4983621D /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B445DA6E9CADE8458DD316E4B83DE93 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 734D1B63F33711F47A4D575E64F45DE7 /* 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"; }; }; - 8B4A5EFA46C771631880F96C6D857763 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 62F5DA0068164F0A41F4AEB61BF8D8A3 /* EXDownloadDelegate.m */; }; + 8B4A5EFA46C771631880F96C6D857763 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2498A4DA779B27626860F0C820BF4D36 /* EXDownloadDelegate.m */; }; 8B544C209EA7679C75EE239C93C0B563 /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 874DD879EBBA0887150F2F86F07E12C7 /* SDWebImageOperation.m */; }; 8B808C168BCC293074E1671A5CAB5432 /* GDTCOREvent+NetworkConnectionInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = A3CB03B43186E240E4CADCA45981997C /* GDTCOREvent+NetworkConnectionInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B8C528BACC409B0720831CF1AE7E240 /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 765866D9CBF9A79B34EA674AD03022CD /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B8C528BACC409B0720831CF1AE7E240 /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D388AAA7C7F5EDA01A9A47721D674723 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B930FB85F7CB02FF575EB90CF55350F /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D3297C00E401A07F17B6B3F6A899B52 /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BA01965AE0F888BE823F704AB0EB6A7 /* RNCSafeAreaProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 19A309142A896FF9CE42C80282D3F79D /* RNCSafeAreaProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BA01965AE0F888BE823F704AB0EB6A7 /* RNCSafeAreaProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 75837F0DE68E61DE16C1B5C9520E90BF /* RNCSafeAreaProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8BA04E1FA3708A51146E5A1218DA87B3 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 0225409427FFE99591DCBD4FEDDA3EDB /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BB881B01F898C5F3A979090A41AF7FD /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = C38446787239FC2BA2FCCAC06FF5ED3E /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 620794FB04094752CA28515CB127A05B /* EXConstants.m */; }; - 8BDC780EFAEC1B9826D9B25A85BE47E2 /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 28AFDFAC42099B59DF0310E5A01B0695 /* RNCAppearanceProviderManager.m */; }; - 8C00041F49471316D4EC654B1C21A905 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DCB05304DF3D2687D859975C865AF6CE /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 8BB881B01F898C5F3A979090A41AF7FD /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4069652AA03B0E7510525C531D945EC2 /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 1642B5970EA2D1E7F8CA2E2121764DEB /* EXConstants.m */; }; + 8BDC780EFAEC1B9826D9B25A85BE47E2 /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B0F818123E207CD4DD66F14D8EE99606 /* RNCAppearanceProviderManager.m */; }; + 8C00041F49471316D4EC654B1C21A905 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8DB26D72064B358DEF28E118D4717F5 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 8C0663F8B96853E59403275B7CF470F0 /* ScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 62E41265E83423F7653CB43B816218D3 /* ScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C0A640F7F5FA4D7E162DE9284F16BAA /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 768582E960B57142E27773A93762C7E9 /* vp8i_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C69C078920DA50B9E88B45647B20738 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = D83973C3B4969CD818CB99DE305EB2FA /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C69C078920DA50B9E88B45647B20738 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 560D612F81C9E8306A80EFA23F21AFF3 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C908950962F392DD1C6D0F749224A8C /* ru.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 72AAC3CFCD9D5F65A049D400362D9B50 /* ru.lproj */; }; 8CA624564BD56CDA821A6C12FB87DF65 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E0B54BC3A206AD1A540ECB89440B2A5 /* filters_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8CBA61340D8457775EC61BAC42083002 /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AB231ED9A140087BF5AA534E8D4B5E5 /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8CC74E310D402BA29146B705FACCBDB5 /* OpenSSLHash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 882DEC08C6332CC1D2DB9FE03ACB481D /* 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"; }; }; - 8CC80E0DEBC0B93E7BC4D5BA8A06D287 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 5441B4C5ADD574239F61F0C1050B1BF1 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CD181EB78A6900601F244D3312CB8E4 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = E0355B86395EC51BEAE33CDA925E34F2 /* QBVideoIconView.m */; }; - 8CD195F8D4797EA381A36F563A0E5F0D /* RNFirebaseAdMobRewardedVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 95C9B134F47BA1EED962479CB30D2EE3 /* RNFirebaseAdMobRewardedVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CC80E0DEBC0B93E7BC4D5BA8A06D287 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E1C039B9169CD68726A5B2C2A4FE067 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CD181EB78A6900601F244D3312CB8E4 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = FABD8E76822F5C6BF39C74CB704D5A8B /* QBVideoIconView.m */; }; + 8CD195F8D4797EA381A36F563A0E5F0D /* RNFirebaseAdMobRewardedVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E3265C42333A48771EC37248BBC59B3 /* RNFirebaseAdMobRewardedVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8CE299B1BBEBA23B44CDDFD5C12C61CA /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 87FB6F51543C5D49366322E741CBF6E6 /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8CE9ED65324F42982FC8FDFDD56649EE /* SKTapListenerImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = BA6A2D8828FE7F15C161DF91C6F515C3 /* 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"; }; }; - 8D0EE2AEB43B05F35365B75908E3740A /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 226F882EA37ABF25B36964BD0F1C3440 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D0EE2AEB43B05F35365B75908E3740A /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 53BA2EEBDACA3F00B86D18D7ED315D3E /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8D105DB328C60025F6EE3BECF043717B /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C861EC7F1643CD0F174E5FCE7F99FF56 /* 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"; }; }; - 8D1767AB59653E8540E79B2D42F2E7CF /* EXImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 93B25E3146AE03F63BCDD5F8EF24E9E3 /* EXImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D1767AB59653E8540E79B2D42F2E7CF /* EXImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = E721562F74F04D176D6F843613186636 /* EXImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D1B7E50CCEA46357C7172266EDE1D76 /* EXAppleAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DE6F9E64C16924524823CD9584DAF35A /* EXAppleAuthentication-dummy.m */; }; 8D396CB6D3FF882946FDF08D7DFD7701 /* FLEXNetworkRecorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9222696D078C54E7767955037B7E493F /* FLEXNetworkRecorder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8D4F75714A2F85B5F2ECE9860162E0C9 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = A7F6197D13E90F383CF5855CEAE4E528 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 8D624EDC48442DF2E2C1044345D16790 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = E4516ED18B46059F908E125B5657004B /* RCTConvert+Text.m */; }; - 8D9795A39176DCECC68A4E251BDBEED3 /* RCTSettingsPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 47EC3D6763499448EA190DC4E9EFB455 /* RCTSettingsPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DA59E9D05B63A3D98033CCA9DA2B103 /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = D2B11E8BDA69D119BD7C66CAC7F3DDFD /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8DBC72BE4083047072D9F1ECAEED3CC1 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AE5BDEEEDCAAEE59EFC82C33EC71FC8 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D624EDC48442DF2E2C1044345D16790 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = E17B60C58DF1CD7EBC60C27183ECCBB2 /* RCTConvert+Text.m */; }; + 8D9795A39176DCECC68A4E251BDBEED3 /* RCTSettingsPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 78912319CEF3413E7D31B12DDCF6E9D0 /* RCTSettingsPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DA59E9D05B63A3D98033CCA9DA2B103 /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A81C8324F3038F8CCD8CC6BD84FBE51 /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8DBC72BE4083047072D9F1ECAEED3CC1 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DD6B706D7C83809F01C6C0B11777F78 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8DD2BAF772C271D2D4FAEA77CBFE0CE2 /* SysTime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B3F4CBE63D26B3507E66BF620BF409E /* 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"; }; }; 8DD4A41C90CD940843CB7A6B4F271A0A /* Sleeper.h in Headers */ = {isa = PBXBuildFile; fileRef = B590FADFAE58C8461150A0542F547B12 /* Sleeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8DE4C3A8FD9E0E1115308E2A4896FA8A /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 494B8F92D84B22C8489D80D4FDA8FC33 /* GULMutableDictionary.m */; }; 8DEF96274F9BA17DDE42AC2EAE1EC1AE /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 18775CCD233F50176F12695DA5A375C2 /* UIImage+WebP.m */; }; - 8DF60389EB9916428918923DC8086F1A /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E34EF295CCEA2DC2DEA03740A6B6895 /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8DF60389EB9916428918923DC8086F1A /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0A3317667F31F7168FA5A80542BA6B0B /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8E035517C8AC7D884CBA5819743A15A3 /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D2D404CA10C2CEAD6387E107DD9E948C /* endian_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8E24982870C8E41C148791A47D487770 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 2134642023B5EEA4EDF1B56B7AACAAE6 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8E3E30DA44DAC307FF0AFFC9F890E9AE /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = DE363B43B15D99CB6921593B3870A813 /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E5BB2DDE8FBB037C835BEBEB5A8814E /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = FEF6EB89B8CFDCBF5B6EEA7364E59782 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8E842C89450F1F42FD0A472547D2DB91 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = E21CEE6E01E04D3D223F526D028A9EC8 /* RNDateTimePicker.m */; }; + 8E5BB2DDE8FBB037C835BEBEB5A8814E /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = B3622350A596E3E5F6990B705F2C4E34 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8E842C89450F1F42FD0A472547D2DB91 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 401D6E755CD3B998E73591B856E4DA14 /* RNDateTimePicker.m */; }; 8ECAAD611878CFA4CA1E91A5ACC7FC41 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = FAE8D97D54BF3960347DC80964A857B4 /* dec_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8EEEE5C24101D8A3A86527DA4A7B8D05 /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = D925282B7F947BB672A38DA74BF07041 /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8EFE2147CC39B1A59725A0A336CBFCD6 /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 82C01AE34B43424EA0DE03555983062D /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F026D24EEBFE343FDBAC023E9D56938 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 3AB87183B9900CD53A4C415F658014FF /* quant_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8F0E822E61D22F4B1F22B72D68D3B3A7 /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 704C5E5BC0BAABAC4C0DC243FD8FFA9A /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F1C53837C62D18AB63C32DF23B69F05 /* TcpConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D225FDC6130767EEC967DD4409EA7219 /* 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"; }; }; - 8F47D298D362B0669D7EBA48AA0D21E4 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = BE95B25CC742C1479D59951E1A79870E /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F49598262406F32631A122B489AF25E /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8AF741FBFD4302AB4CC76070ADB906C9 /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8F47D298D362B0669D7EBA48AA0D21E4 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = D81CAB99456950B46A500274DF8DBFAF /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F49598262406F32631A122B489AF25E /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12CD988AB5526B4808905AE557BF0F4D /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8F7DA096463C9D570850B73D39BE284F /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = 35F18838412262166EBA0E797B231CC3 /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F89587395083D23F1F53F8F8CE7AABE /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D66D02A8E19CDDD673763161F8DED12A /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F89587395083D23F1F53F8F8CE7AABE /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BC0B68D6DE8ED8D2C98B906BF4672B2F /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8FA27A3BC06AD1CED8F5389442861A4B /* RecordIO.h in Headers */ = {isa = PBXBuildFile; fileRef = FC3C5BF456C03582D51729D8F77A34D9 /* RecordIO.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8FB10A988A6DE8AB4FF13B4642AFFF82 /* SKViewDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = CFA0A7F0958E5927766B69BC0F318661 /* 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"; }; }; - 8FBCED1491F348D833730523C6E63790 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE3DF045B2BFF4F9EE0CE7EFBACB13E /* RCTVirtualTextShadowView.m */; }; + 8FBCED1491F348D833730523C6E63790 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6988A2C472E936589B7F837072850348 /* RCTVirtualTextShadowView.m */; }; 8FDC510019D77E1C0D7BA688F8C55E7E /* ManualTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 85387473295C9E38C32880334B230F74 /* 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"; }; }; 8FDCF28C63DB7284C66DC2C0C26B8361 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = F1A9580C819BC6B80BEA8F9EB5C50B6F /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9006761B0D2F13AE8D9DFB4362DA3631 /* SysMembarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 80B52EAF8F2F8CB6936A987840B87648 /* 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"; }; }; - 903509784A2416BE966209CFDACA4076 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2621D939ABECF381C4333FD11B3DBE11 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 903509784A2416BE966209CFDACA4076 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E974C64B2F6DDAA335304461A064BA87 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9035970046360BBEAB0136DF92759704 /* File-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A06DA5A6AC0A8948FDFC4B13C43D8CF9 /* File-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 903F10B3A802BE1A7C55CE787D766035 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 12D7348ECB9E178985096E40F683606A /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; 904E61CACB3A8BE0AC1D58731CDEF5E7 /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = C53FBAFE6757A0CC37B98D6A097FBFD0 /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90544C74C36B85E098F17E2974C49C2E /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 78B460BFD2D95F243722708D53AF7C15 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = DB04F2A6B47D0BC68C8E9643FD41C33D /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9062E6AF8DE81E533095420BDE289902 /* RNCSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E1A31DC6AD24779052F7AD79137C357 /* RNCSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90544C74C36B85E098F17E2974C49C2E /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 571BAD26D9BC6F164E5EB00F633B8668 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 71A81006D808932FC42B12786BECA152 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9062E6AF8DE81E533095420BDE289902 /* RNCSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A7AEEC1C24F87D64A9A5FB6FD6B6539 /* RNCSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9065DD549003066B9A069F40D2485CEC /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = D7971971246FE9195A5102CBE10BCDA3 /* lossless_enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 906C4E8BBA2D21500EAE0AC78DE17092 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 459249E942D2FD50F651A22F80497889 /* 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"; }; }; + 906C4E8BBA2D21500EAE0AC78DE17092 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55A1D43E300473C503149B12A5DF80D5 /* 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"; }; }; 908397F13209B4A6E2DC2A3D5E34698F /* TimekeeperScheduledExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12E7DBE9A6D2E2B64628A51D714E14E5 /* 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"; }; }; - 90971B47C3418E340CF56D3D9E529587 /* RNFirebaseLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = E7229A6C8E02DA1D07A9ED6E82D84169 /* RNFirebaseLinks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90A33EC5C2A670669E33DBCE1BBFB53C /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 10FA882BE2A1CC62A084B0FDC31D5E2D /* RCTTextView.m */; }; - 90A4FA2B12B95941392C6AB91DC061D3 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 895AFF7485D12E025A20A45963852D6C /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90971B47C3418E340CF56D3D9E529587 /* RNFirebaseLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = 072440311BE630265E8A9BA9FE4B579C /* RNFirebaseLinks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90A33EC5C2A670669E33DBCE1BBFB53C /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A8D977AFC2C5F8CB3A5F09188EB520E /* RCTTextView.m */; }; + 90A4FA2B12B95941392C6AB91DC061D3 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F7005D6F70287937B451E5C38FB180B /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90C95F7220758ED79831C1CF363000DC /* SSLSessionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = EA4D0250CBC2EC2C46D159B60763884B /* SSLSessionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90D47A2F7D1BA712F1391D2371AE5C77 /* Common.h in Headers */ = {isa = PBXBuildFile; fileRef = E0EC7AA68FB61CD52889F9C776977CCA /* Common.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90DB84A6D6895BDE8742C4B4D3A683E1 /* TurnSequencer.h in Headers */ = {isa = PBXBuildFile; fileRef = 05D86D6DAA63D4275173FC63FD7F89BC /* TurnSequencer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90E82D5D145841FBCB0ACDE8334222B8 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = E7C5136987B75A558800AA09668F379D /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 910C6F324CE795FE033EA8C7ECC59865 /* PThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26100ED62D912528C0C01D6903A8A230 /* 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"; }; }; - 911A4A5CD56BAFF86A1671DDD8843603 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EBC062030E2474E2800217FE40BDB2D /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 911AA4796FD946BD3588E55F4CC55238 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = D99499A944AD88FF8F41E2098CF634DA /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 911A4A5CD56BAFF86A1671DDD8843603 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A8028BCC58743A6AB3702379DF66EB6 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 911AA4796FD946BD3588E55F4CC55238 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AEBB74E46017DCAE9ED28A67AE68D17 /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9120D7BE95FE6542993581EABF38B0DC /* FirebaseInstallations-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 042DF8DFEEB1D8E5580AAC6A366BDAB8 /* FirebaseInstallations-dummy.m */; }; - 913763F48A4D2A547A34E25D0905E3C9 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = B90B2170F097409F6BC3604706972EC6 /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 913763F48A4D2A547A34E25D0905E3C9 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = EB0503C4040CB6D5AB321E65307863ED /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9154E2A2238ACBBA0FAC221758119C43 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = A720EAE100FC5497152E570CB00FF846 /* GULReachabilityChecker.m */; }; - 916D0F1BB6A524F34140B43CBF9105F5 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 54CD452C01F10208A6B014EED82F7FDC /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 916D0F1BB6A524F34140B43CBF9105F5 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BED72909D9D39B0BB048E44A539BCCF /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 916FA53C203CDD1276B204C0641E914C /* ConnectionSet.h in Headers */ = {isa = PBXBuildFile; fileRef = B082F6023D863668CCEB187F071F3F4F /* ConnectionSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; 91A4E3F7372B8CFEFF1DE35BAE442288 /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = CCFE30DC291A9D63B08F1394853162E3 /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91AD65151392B739A1EAFE57B0742A42 /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = E38202EC2BE757781663714C2E94A7F1 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91AD65151392B739A1EAFE57B0742A42 /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B0BB472098B8C1333572351A2D915B6 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 91BBF552A2FF6BB3042AA2B96075C326 /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = D0788E90FE9CCC58D3C63AF5F144EE74 /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; 91BED5DEF72E7A2E92556E30A48337E3 /* StreamResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EECC37A5384ADA3A0EA2363ED1312A5 /* StreamResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91FE289F51F96156C8ED18CF9888F106 /* RCTAppearance.mm in Sources */ = {isa = PBXBuildFile; fileRef = AE42FD475B3F941CBA622D74A5C66418 /* 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"; }; }; - 9211D95B45A67D2D9D76D71121F3DA24 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = CD6D85F38091AD9D0F53507CF1F9B615 /* RCTBackedTextInputDelegateAdapter.m */; }; - 92131AB83F381B6DDCBB859816480676 /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F958A10A38BE359890553D59E9F2D4C5 /* BugsnagSessionTrackingApiClient.m */; }; - 923F86F7077D0C0DFABA10FB37D562E7 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1229A417537FC603DDC0EF7036EDF414 /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 91FE289F51F96156C8ED18CF9888F106 /* RCTAppearance.mm in Sources */ = {isa = PBXBuildFile; fileRef = 52F3D7704D7909815C5F8B22E38B57D8 /* 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"; }; }; + 9211D95B45A67D2D9D76D71121F3DA24 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D43CF61D8784FE6287055564C6F9EB4 /* RCTBackedTextInputDelegateAdapter.m */; }; + 92131AB83F381B6DDCBB859816480676 /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = ECF4AFAE13A35FFC1A16CE050FFC238B /* BugsnagSessionTrackingApiClient.m */; }; + 923F86F7077D0C0DFABA10FB37D562E7 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0EA2652DADB72FFC3372DC4610D94043 /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 928C9250DEB2ADD3214968107989CB5D /* ProgramOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = F7B741A0FE2C31556C7176BDAB4BD8FD /* ProgramOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9296946BE070ADED28DA5560FBA45DF9 /* Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 41B38A2014725CA6308DABFB8F503F4B /* Folly-dummy.m */; }; 92AA74D1F05BBE5402796AA8225D8834 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 85F8F0AB972F155D2DB653D0022B587F /* alpha_processing_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 92AFAE33AD485646B3E7EB8772215A18 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = C2556B078588E78F3AEEC4FFA1F34A01 /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; 92DF9D03171AB34F00DD37988294E67A /* YGLayout+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = CFBE33C6DE3AED52E50119C3A4223A23 /* YGLayout+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92E0F28150B20AB70F5302620AA6AB4D /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 317C6299B6027595FDD09D62475F57EE /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92F22C6A1C5543C01988F3D6A1B500BE /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = FA3AB3914573DD5348414461938C9AFC /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93020820AD3A13558AE142066790F4B3 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 169F6049694732668A84DF1F0D4614FD /* BSG_KSLogger.m */; }; - 934AED685CDCF090D5ED160925EF0D71 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 62073CFA22997381940AF92E40CFDE72 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 934EE39A7D777FEAB83179E8B78FBD49 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = ED68EE2DB2AD306AA5B428EAB629183D /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 92E0F28150B20AB70F5302620AA6AB4D /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 93B71F85D013AD75E8796FA20E4D523C /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92F22C6A1C5543C01988F3D6A1B500BE /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = E38F69EED7E21E41AD71AFA75F839F10 /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93020820AD3A13558AE142066790F4B3 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = F14592AC28964F7719B2E418774F7A9B /* BSG_KSLogger.m */; }; + 934AED685CDCF090D5ED160925EF0D71 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 57171E8592D216A0BCACF19A6FCE78FB /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 934EE39A7D777FEAB83179E8B78FBD49 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 835EC2AB03939CB3829F05F29BF62A32 /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 935C588017563AEFEB80DC42C91EC15F /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 9CA65634937D623281544E5A6F9CDD6D /* lossless_enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 938629F70F1435EDFA4638D7421C6AD4 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 956A735CFDA4202C8A959EBDB7B2FF59 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 938629F70F1435EDFA4638D7421C6AD4 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 80B980A2DC985D47E5B4F3CF526DFD78 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 939AF54C8251EC34E539FB93C1766A4F /* AsyncTimeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E7F01BCB84D8C9EBBA34737EF2962AC /* AsyncTimeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; 93A0E9A6CC99BE8D70FD6F259C9D5891 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 56F60D5152237E7C75B595341DC35946 /* quant_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 93B4CF41B4F92A4904AE83D9FD29AC5A /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = F9394D1C5B9A8CD72D175A2ACB8FD5C1 /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93B4CF41B4F92A4904AE83D9FD29AC5A /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 557D849BDD58B5EDD349B0A4B70B353F /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 93ED1C2CEDC4EF1236212F0C80858B6E /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = B63947E2B5A38C4724077A19011B71D3 /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; 93F0C82780EBEC79DB8700ED1CF96F8D /* GroupVarint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A22F5E839A95C087BA61B4F175D21FA0 /* 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"; }; }; - 93FCE248F90CE025EE8B96598B4E1722 /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = FB4823943E5AD110DFCFA865AF9A2D22 /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93FCE248F90CE025EE8B96598B4E1722 /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4130B32047215C733F9E8513CEBCCE71 /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94392DDD913E886B02C132A930C1FDC8 /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = E834EC534E31B1E93EE000507BF09A87 /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9439847058CC81B6D2C14449CAF757A2 /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A5E39873A6677F27B80EDDAA5E8AC81 /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94495C8601E753AB823E75829956C014 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = FF4D0177051F3C8574727C95777EB117 /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94495C8601E753AB823E75829956C014 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A97BA1C32F0EB20E5033FB242187B5D /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94717BAE4332BC8022BB19CDB3E538C0 /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = FC5A3E541C208102CA0FA2FE082E6974 /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 949933AD121308CF99120816674FF6D3 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = 178E8A48C4E60EFA94418FF914B82743 /* Bugsnag.m */; }; + 949933AD121308CF99120816674FF6D3 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = B15C487F4DC80F8BE99777A46A89376A /* Bugsnag.m */; }; 94A072B9A08448DC0F01CA2573467148 /* HHWheelTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = A11250059B012F3F12F7779B77BDD89E /* HHWheelTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94C039AE0D8233E82EBBF8CD60D104E1 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 246900FADB4F3C74288C75E1A8280DB8 /* react-native-webview-dummy.m */; }; + 94C039AE0D8233E82EBBF8CD60D104E1 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A00D7608C84CD3E9E40FFA4EAE992A4 /* react-native-webview-dummy.m */; }; 94D2057D96B17B5338176E0EAC6D6118 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = FE14511732DF9092162809773043F4D5 /* bit_reader_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94F848D36732CD838F5B99C4A1D7DDC5 /* FIRInstallationsHTTPError.h in Headers */ = {isa = PBXBuildFile; fileRef = A660E3609C26A84984902A21A8F5F053 /* FIRInstallationsHTTPError.h */; settings = {ATTRIBUTES = (Project, ); }; }; 951BCD0242FD1AD0318E94EF9F9749B8 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C8C8F2005685BA0606C2E4D9A04FA8D0 /* SDMemoryCache.m */; }; - 95220E2ABB7A7857B237C2D80C60F6A9 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 73FCE3CF78B994013BDB437BC073586B /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95220E2ABB7A7857B237C2D80C60F6A9 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 1676FC615941B3942BB2D9289298A715 /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 953B94BD133A7467F4F38C0B944D76E1 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = E6401BB5120D214F07F0A4AFD853413E /* filters_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95425C77DA0714BA59332C5423094907 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E5F3928F91C4971F0D20F7F89AEA223 /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 953FC9B45339E991D954682AE264CCD2 /* EXAppleAuthenticationButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 906EAEFB0C5A8EE1E65224A170387B98 /* EXAppleAuthenticationButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95425C77DA0714BA59332C5423094907 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = D18F95E7F3C8C615CDFB0C61CE2BA37D /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9563C62CBE3FBA3E6607079FBEEABC84 /* Fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 287BBF5036A97E7A194DC153ECBD3AAA /* 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"; }; }; 9569D11DD8C2CD434F2EC5127AE425A9 /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0519EC5A4AFFBE2BB26D2B7BA7702EDB /* GoogleDataTransport-dummy.m */; }; - 95B68C33D8A3CA6C685E64643173F8C2 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E58B16CFFD0CB4343BF11B6C61194AA /* RNFetchBlobProgress.m */; }; + 95B68C33D8A3CA6C685E64643173F8C2 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CA58CB6C1F0627723A8061FDB5F32DA /* RNFetchBlobProgress.m */; }; 95D26AA5A6FF5AB6CB7AAD85FBC462D4 /* zh-Hant.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 181B1B487AC9DD3DC3B97011195CDEF3 /* zh-Hant.lproj */; }; 95F1E18B1B527539D5BC182C5A5CD857 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D47A14870CDE9E0FCF0FCEA6367E86F /* 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"; }; }; - 960B81835CCACE99EAF6D7301646A57D /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D103B62C40D65B708853EC41BC334FB2 /* RNGestureHandler-dummy.m */; }; + 960B81835CCACE99EAF6D7301646A57D /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C4F1DF0D45EFB894C49030EFCEC3E5C1 /* RNGestureHandler-dummy.m */; }; 9648DE8BFD642A580258906D5C4A72AE /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = F16FB127DE5B1DF19AA57A28FC72C1F6 /* anim_decode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 964D4EB6DCD5294ECB1B2274765D9318 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 578E7FABF78F4B71F81A2530E4D2B393 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 964D4EB6DCD5294ECB1B2274765D9318 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E0E27B24E2B25BC67038E12CDDC0EBD /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9688F6896053FCA3235E23B12FBA2925 /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = E03322878A67943BE822E153E5246303 /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9690E06E3CF2942C7D7DE920D72633DE /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D6A10E15B062A93E4B205F47161AD9B /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9699F0953E11FA6A675DCD375DB58C3E /* Flipper-RSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CA73F5963360C0AA13E2C4B6B8163309 /* Flipper-RSocket-dummy.m */; }; 96A00C011A72200F5C719AA69C379BFB /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 07B717D9C7622FEE492A55061400A1CC /* color_cache_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96B16CBD2DD52DA614AC23267995DCE9 /* UMPermissionsMethodsDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 88BB66B7FBB43DB09249D407D844F08F /* UMPermissionsMethodsDelegate.m */; }; + 96B16CBD2DD52DA614AC23267995DCE9 /* UMPermissionsMethodsDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 423C28B97E7DA33075093A150B611AE6 /* UMPermissionsMethodsDelegate.m */; }; 96B1848EDA12E024991DC71441FB7728 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 05FD1CADBA934C110DFE16A11C133F0B /* lossless_enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 96B2D8B5FD04F1BFBFD24962C834C7FA /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 838B0E00132CBB87EE347175D86573F0 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96B2D8B5FD04F1BFBFD24962C834C7FA /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B16549F7FED2D0ACB373B44ACA8AC112 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9704F9F1F14DAD1518EDEB3FAB732873 /* FIRDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 6549206A02B2CB128166634A1466CF38 /* FIRDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 970FA39BE3980D80C3BF24070B42C3EB /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AE7D63FD52D8DF551781E15915CDBF0 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 970FA39BE3980D80C3BF24070B42C3EB /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D4D41211C446BE6090144A856378B10 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9734201F36FA9C8328F2A14634BB11E3 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B95F5390A986683EFD138AD4BE0C152 /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 9738E4C9D8B2C022206D0C3A64B10653 /* RCTScrollEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D442FBD4686B89CE6183D846DFA6792 /* RCTScrollEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9738E4C9D8B2C022206D0C3A64B10653 /* RCTScrollEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 64E7F1F10D01964468F070DE8D4DF3A6 /* RCTScrollEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 974D3D1D89E9AB50079AF4A57373410F /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = A7B6C083F3FBB943D1EE24157A1F8E5D /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9782D88D88768F2CDF72ED3ED1C70E00 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 33CDEBE8A77A2A5A2F42AA42C5DD210C /* 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"; }; }; - 978A1FA62E59BA87B857CF2C45096E1D /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D354AFF84D9B0477F197A34EFA56A3FC /* 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"; }; }; + 9782D88D88768F2CDF72ED3ED1C70E00 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 6741F01CF2C988A856EB20335F1192E4 /* 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"; }; }; + 978A1FA62E59BA87B857CF2C45096E1D /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C65DE3A05F1889FCBA86E8368027A1AD /* 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"; }; }; 979243DB7BF5C1BFB5966534EA7F7651 /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B0A3C699074BA5A89960FEB3303B723 /* FirebaseCore-dummy.m */; }; 9796980DC5E2693A40E90235CE55CA24 /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B15765A033F56AA45539C76C571546A /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97B5917244291105CFF124F9A9547419 /* AsyncUDPSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9D6678BAD6B949AC3107BB4F1F2F20E /* 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"; }; }; 97CF55B7E0719297FAEBA79CD5D37988 /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6895A751BF74448383933A3B163C1BC0 /* GULSwizzler.m */; }; 982335F379D5B4FBF9B32E73DD9B5154 /* WarmResumeManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 820116149E7F0B0D49DD0A6E6984027D /* 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"; }; }; - 983D6CA5B3B54C113AA7BD7A2CF3095C /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = 73FE11771844837CD61CD8216DE2E1C7 /* ARTText.m */; }; - 9840746F00CF232B1D6DFD8A1718E10C /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC753D8FD29951B39F59B1FF8F7221AE /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 985F05D68DA486B2AD6D1753D52444FB /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F8357D4267F0B7850BA442638A9095BE /* REAAlwaysNode.m */; }; - 988D75C014F94B7584204ACED46F3975 /* RNFirebaseAdMobBannerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 33ED18F3D1D1B71256ED883C0802EB6A /* RNFirebaseAdMobBannerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 983D6CA5B3B54C113AA7BD7A2CF3095C /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = 136C438561B6D5CB3D1286C9153B7C31 /* ARTText.m */; }; + 9840746F00CF232B1D6DFD8A1718E10C /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 226258FFBB4B604235CD4E538EFD58C3 /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 985F05D68DA486B2AD6D1753D52444FB /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 27022965E30076F988DA9D6535E05F09 /* REAAlwaysNode.m */; }; + 988D75C014F94B7584204ACED46F3975 /* RNFirebaseAdMobBannerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A4F53AB3445FE3C43E2B355A096F6D5 /* RNFirebaseAdMobBannerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 98A6067DF7B3EDF22221CC59D86D6060 /* GlobalExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AE130A027B7F43833C7C43F403F665A /* GlobalExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 98BC38F964FA856EBFF4A1910983AD93 /* FIRCoreDiagnosticsConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = 753BDE10DDED75830C20C2C67239AFB6 /* FIRCoreDiagnosticsConnector.m */; }; - 98F4394CA1EE78DF275BDC48DA4339EA /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C1528A95D502CDF7F46BB86FB8692CFB /* ARTNode.m */; }; - 98F5499FC548222E238209963B115D3B /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BF57A39218B9E02559205BD8108171F /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98F4394CA1EE78DF275BDC48DA4339EA /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 07C4828CD0AFEB81ABBE1417846D2AAB /* ARTNode.m */; }; + 98F5499FC548222E238209963B115D3B /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5787EFC5AEE0F00EE6CA2F88DF3F334D /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9910F5FE4D2C0D432E4ABF9C0054E469 /* Pods-RocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D70D9EBB5B766C22C2364940119C9F1B /* Pods-RocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; 991C9DFB4E1EBB20D56E31715E457B50 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 6F75B49F38575EBEFE4DAC7ED4CC9EF1 /* lossless.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 992CB0C6A03D842795BDF2045C33951E /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 936B379768BFE692579CEB953C6E4BFA /* RNDocumentPicker.m */; }; + 992CB0C6A03D842795BDF2045C33951E /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 21FA8F5FC5A5FA3D930E63232DACA794 /* RNDocumentPicker.m */; }; 993DEE091D2ECD262F17F281E60653C7 /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 160D5029DBA2C42C89315C3F98DE573A /* thread_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99422D209EA8F36C23CB01190A614AEB /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 88438842749627D7FE5120410D9D9F8C /* ja.lproj */; }; + 99422D209EA8F36C23CB01190A614AEB /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = C45617988D2E356E57BF3F7A0FE0E174 /* ja.lproj */; }; 9951C53F8DF76B21CDD26CE830B47FBE /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 78123FF997D6AA4CC2BFABF1F0A93100 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 995C13DB63AB4E9744F9C574B39F789A /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CA01656599DEAD68E4062D94403CCBD /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 995C13DB63AB4E9744F9C574B39F789A /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 79815458817C4C36E6AD52E9F494CCCD /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 99678E001CBB1408805660436395E723 /* DelayedDestruction.h in Headers */ = {isa = PBXBuildFile; fileRef = D91B29BF814BA82AA00D7CF512DC6069 /* DelayedDestruction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 996D4ABCD9CAB8072567D11BB4A77972 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 5949779F38EA697885C4FE2CA5BF84D9 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A1CAC0112D863F86569C7123C0E65ED /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C18C780B51845AEAD8B40A66BD671EA /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 996D4ABCD9CAB8072567D11BB4A77972 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 16086B523FED7F06189654E0468CA934 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A1CAC0112D863F86569C7123C0E65ED /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = AD3342661710A1005E85BC5965CB60F6 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A563C719409A7F1D2A79F1A491DCCB1 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = 93BBD2DCE145C7DACA7A580FA1AC0F60 /* types.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A6584332A48346E435E1681FAF817BF /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 3254163C10759D309B2575E574C6828A /* alpha_processing_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9AAB02F415E5FC4AA386B4B262881EEF /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A4465D9C66789A29A41BC4026FC7721 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AB480E0617FAB77DFDCDF1E49FDFABA /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A62CDA9C04EC5C2F3BCB26BA4924A70 /* 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"; }; }; + 9AAB02F415E5FC4AA386B4B262881EEF /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = AEF51B0C250F3801E5F3D379897E6638 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9AB480E0617FAB77DFDCDF1E49FDFABA /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4991175000D7060B41FF0388F84CD7B /* 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"; }; }; 9AD8AEA336F32F6C793213FA40B07ED5 /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = D633C6BF035437D71F6FB57994AC25E7 /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB1D93FBCA2C56BFFB1255F6A5B589E /* RNCCameraRollManager.m */; }; + 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F95EDB6F891DB33312838AF3CFEBCE5D /* RNCCameraRollManager.m */; }; 9AEE62323E7D508CCE862B14ADE42BDA /* FKPortForwardingServer.h in Headers */ = {isa = PBXBuildFile; fileRef = FB37D546EB0080A6541C5BD705C2E52F /* FKPortForwardingServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9AF3AC333D8D973E63790414985BCCB4 /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FACA78D90AB953F871C42892796C3B0 /* FBLPromise+All.m */; }; 9B4D7BA740D6D143C5135BEA996C504F /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ABF60825E26576EBCDB04028A7ACF8E /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9B5F3A51D09EF1FFC6732A3E9664F8EF /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = A976C24D3A149D5463B2AC6009B2DEA9 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9B68BF491BB75FAAA081B710C4A019B5 /* UIColor+SKSonarValueCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 222E9654CA1C5DC25162987035779AAB /* UIColor+SKSonarValueCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B6F64DDBE87EB44B326E289C0A1379F /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 226F882EA37ABF25B36964BD0F1C3440 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B7D1422B56339A28AD9D4F4113A4C54 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C1339D81158046A4381EEC75CB217634 /* 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"; }; }; - 9B7D2339739148FAF357EB985200C2AA /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = D437D2083801556E3685A8D9231B1072 /* RCTProfileTrampoline-x86_64.S */; }; + 9B6F64DDBE87EB44B326E289C0A1379F /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 53BA2EEBDACA3F00B86D18D7ED315D3E /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B7D1422B56339A28AD9D4F4113A4C54 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 71FC861FA342057264415C3E6A5BF805 /* 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"; }; }; + 9B7D2339739148FAF357EB985200C2AA /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 67DE68077134FE64C136C6E93320E3E3 /* RCTProfileTrampoline-x86_64.S */; }; 9B9F376651B01626682667F916263D33 /* GDTCOREvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 0686C0EC9AF0D66EFC1B412EB9124045 /* GDTCOREvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9BA3070F2D82AB8E6B229971E126D4B2 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = D2A120CA34815BB3A1C46C26AA00E5BC /* upsampling_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9BA8D8C40A0F28214F8BF4B31C15A8F8 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 281755D3FED0AC0C07667D6185F87413 /* EXAudioRecordingPermissionRequester.m */; }; + 9BA8D8C40A0F28214F8BF4B31C15A8F8 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 3486F0BAF3DFB19D0DC2AB86584B4982 /* EXAudioRecordingPermissionRequester.m */; }; 9BD1674F1714F428A9214FBECF3A70CB /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = 54206605F2A52BE5BA373E192791E240 /* FBLPromises.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9BD2D2FA032357A4E0957F26F2857EF7 /* EventBaseLocal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C617BD7A6A238D72724BEC1D456C125E /* 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"; }; }; - 9BEC51D393D8EA15CDD2F5111C372E3C /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DA7E1A86E4720B28EFA881ABD8B38DEA /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9BEC9CCAE8723F6FCEBAFF8AFDFE2089 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AA1DE0B2DD8D09365C0A96B826CEFF8C /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9BEC51D393D8EA15CDD2F5111C372E3C /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ABBF6A6D0FACB32AD2FDE3C593A3775 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9BEC9CCAE8723F6FCEBAFF8AFDFE2089 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AFB2F99EB1D0F838AAD992D65571C7EB /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9C3FA983775EB1772439679760DDCD26 /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A8A447263A0ADCDDC5832F1711C99F3 /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9C51952E3EB004507F8D0CE623D3C837 /* F14MapFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 7553ED96421EBDED21160EA3D14231C7 /* F14MapFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9C5F0C01FF4777F79659AD5434CD88E2 /* GoogleDataTransportCCTSupport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F4C456EFAF93A0A1D60547394235DAA4 /* GoogleDataTransportCCTSupport-dummy.m */; }; 9C6A5C8A1A300380603454BBB6B72200 /* PasswordInFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A95DD3EB3F6CB78E76B32197DA83AD4 /* 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"; }; }; 9C6C20D5C4BE8F71CA3D3F1E8F3587AE /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 8933F929FA40BDE07338D3050D54C5CD /* SDImageTransformer.m */; }; 9C7B992227884E45708C42CB4298926C /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 131281C3CA3CBEF8B374B1DA5946C719 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C86D160EAD50FDAE70F149EC8944D0B /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 4007700B7984997C895AECD0BA11FE55 /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CA86B6E4ED4E03CDBD1845A76675841 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4354FD53164162840040324844BDCA29 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CBD1E29C594B829B142A09CA0012957 /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = E75A726D38AFEF0BEBC7E43DC881A636 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CCBAE2F7B397CCE5B2F4A0389610216 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C9103B4E1E1189CB5618B559EACE888 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CE4BBBC558CE96AEB10D5D105E1026E /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = B3AAB5138A7F354A051FCBC5DE02A06A /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C86D160EAD50FDAE70F149EC8944D0B /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A0B8792CF6208F57C912BB7C29B4FCB /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CA86B6E4ED4E03CDBD1845A76675841 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C14E98BA965F968CFF8E6D76B8CD33C /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CBD1E29C594B829B142A09CA0012957 /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C514716EB275CDB666C4007580DC233 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CCBAE2F7B397CCE5B2F4A0389610216 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5613065B221600F128B6FF6153943DAD /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CE4BBBC558CE96AEB10D5D105E1026E /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = FC60657ABF083F4E205C72EFD4A89ED6 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9CEF58684C0371C5723617778FDCAE9C /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F85897453E0E73C94F5F641AF96E26FA /* 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"; }; }; 9D1919F4348D2AB5D0F25AFFADD7441D /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4B52B751D77ED694DEA2432467C4AB0E /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 9D37636BA7F0F4817392EBDD054CE8BD /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D28287FD55284D13DCF366850B6C6B3A /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D40193CB85DBCD47F289B51589CE632 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FB18BE26F612F2CD0FA155922D40231C /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D43DF78A03C487B9901718BC83F99B3 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = C2B557DD09C4EC88B415B5050CC85ABA /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9D69DBE4C6CD55904653B09557C7F472 /* RCTSettingsPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 450FD5EDCCC149768DA8ED279D843C96 /* 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"; }; }; - 9D6AEC2BADA6415B32183279535FC3FD /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B66039BD77444C6E1A930CEA35B4856 /* RNRotationHandler.m */; }; - 9D7DB8C63567BA4261B7F1C2D66253D3 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 672829A0AB58D4EA43AD1F6F698BB6EE /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D37636BA7F0F4817392EBDD054CE8BD /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E53AEEF65E5EA757BE3F9EE86AD64F87 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D40193CB85DBCD47F289B51589CE632 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D4994A75D45527F7F5930F67C8B5BEB /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D43DF78A03C487B9901718BC83F99B3 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = AC06E8BB8CABAFF99B9F61176E5F56DA /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9D69DBE4C6CD55904653B09557C7F472 /* RCTSettingsPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = A277DF5B66397F66164BD142D7155F5E /* 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"; }; }; + 9D6AEC2BADA6415B32183279535FC3FD /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4771CCC3D05E5289CEBBA3375D768D88 /* RNRotationHandler.m */; }; + 9D7DB8C63567BA4261B7F1C2D66253D3 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C4AD36AF9A99718600B5ECBED9C08F9 /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9D8A2D740406E1048CB8E1A98A994667 /* ConnectionContextStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F67E3B28CF2EB033B8DF3FB2E30B46B /* ConnectionContextStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9D8D4EA0BAF1DF8818D1DCC72529B339 /* AsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6676BE95A0304CF6A7BEB240331C4C8D /* 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"; }; }; 9DA028C9DC374A8253C86095F0ABA99A /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = B76EB25240F6DF11F9866520FD1C8839 /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9DA425D4E355C44431E6DCB6C10328DE /* SSLErrors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C438EEE3355895D23EA3E76753FF02C6 /* 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"; }; }; - 9DE9270C04172DD40D69B6D9546516B9 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9EAF5DA4E2A4D2B73A0202D615121E /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E04D8058BC6847CAC65773EED54D05C /* RNFirebaseFirestoreDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = F906A24A447302757CF4C1DDD5A2CEC8 /* RNFirebaseFirestoreDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DE9270C04172DD40D69B6D9546516B9 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = EB8FADF2D99C656B2A39992CC07D3C26 /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E04D8058BC6847CAC65773EED54D05C /* RNFirebaseFirestoreDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = B2A65FAA3A125CE2669673364E022301 /* RNFirebaseFirestoreDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E2A037E4D6EF9CD80A27514CB192F30 /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = D8E6A9062F6922C1F19C0FE487B5C685 /* FBLPromiseError.m */; }; - 9E44726B3E6CED0E7F3B229765C52343 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = E33C9F3BC242232E4254BB4A190875F4 /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E58367E443DD0FD20CD406075AC1BAF /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A6A0169C7C620F5D591A8B275CF72E3 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E622B9D79EE00F811C5B02B4FC12342 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 307C073B29F5AB6D829BC84F233DC00F /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E44726B3E6CED0E7F3B229765C52343 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = FA69A99024BDCBE4333176094838F08B /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E58367E443DD0FD20CD406075AC1BAF /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E07A1EA86C3DEBCE81DC09370DFC974 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E622B9D79EE00F811C5B02B4FC12342 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = CA16BF55FDA9DBC46F00C4AF3230C6D5 /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E7028FA0F2ABF7D93770A85B5558BAC /* ScheduledFrameTransport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE36919341A524F6869FDFFF1B326CC3 /* 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"; }; }; 9E8CCA67A59216B83A6C4121D4FB5DFF /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = AC147D64E4CB195E28D96464BB18ACD6 /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9EA5C0B783EB521B73FAFDBF1BF1642A /* Shell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84887842153D8E6D48F397114335F4A0 /* 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"; }; }; 9ED08F4B9FE456E72BABEF07510E0F65 /* FBCxxFollyDynamicConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0FDC6B990073E8B1A8B035C2933F316A /* 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"; }; }; 9ED9CD281FEFD9101F2D8BB98BCFD18C /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A30E79178D6FA0359C8D0889910DDD0 /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F126C1826371F586DAD449F9B02AC69 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = DB39F9CF2B97369F70DE7538C2026439 /* UIView+WebCache.m */; }; - 9F1D654311A7953EE6DE9BE7600544C3 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B1C46779D3ED8853D25DB9345D05CA1 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F1D654311A7953EE6DE9BE7600544C3 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C0A3B1DB40C9E348BFB3FE22BA06305C /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F306FCB67D6ADDA635F9D9A81D22BFA /* Cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CC685F7EE31C2D674B7F7C2FA09D3C1C /* 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"; }; }; 9F3B692ADD43E5DE7C06A18ED59A21F9 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 69E84637B197F201A5C192376A7F6D80 /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F5B9F9DE3D91E7196A1649FA52EEDAA /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C6C0395078634D7C1B9E8CF716DE049 /* SDAnimatedImagePlayer.m */; }; 9F69F8135343C51A14ECEC3DE3FEC05F /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = F093CCFA514D482A086778DEBBB51F33 /* format_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F7405607659697C93649510BB7FBC5B /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5151CE307B385AE5FFB0C4860E43E725 /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9F7405607659697C93649510BB7FBC5B /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5A8E5DA5F58F53A59DF787F4DBDA183C /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9F7B5FBC79EAF261C231ED68CCA2553F /* StreamThroughputMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D9974CBD930078B900874EECD585316 /* 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"; }; }; - 9F8FA661BDBEB4BB9B95E9CF05A4A88A /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F9FA3D4ED8D7DB9B45419661B73FBFAD /* 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"; }; }; - 9FC3C9159E55C02263FDC38027901A59 /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F7A8AAAB915D220A3760C7C015893EA0 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9FCA0C85E502C92ACFA86EABD32B2224 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C7625BD2DCE02BA140E2D2EF63E9E68C /* react-native-orientation-locker-dummy.m */; }; - A02478583635DC43AF9D1BA278F4ABDD /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 88321BB6A521C719898D84C70174371E /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A02936B34ECF830DE1E1034B359D50C0 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 044347D679B9EB2948B4421209C2C9EC /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E61D0DA89EFD795E2B6CBD71FE017407 /* react-native-background-timer-dummy.m */; }; + 9F8FA661BDBEB4BB9B95E9CF05A4A88A /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AC7952E4EB82FDF80EE45F4F7C9817C /* 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"; }; }; + 9FC3C9159E55C02263FDC38027901A59 /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E1555A71B1B88690357F182AE3E27EA /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9FCA0C85E502C92ACFA86EABD32B2224 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 60BC1B16DBA95BF0B4A0A58D8D19924C /* react-native-orientation-locker-dummy.m */; }; + A02478583635DC43AF9D1BA278F4ABDD /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = FD61AA0240C1699452A5688EF562C34A /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A02936B34ECF830DE1E1034B359D50C0 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 16EDF9F4F68DD8A45FAF7D7434479632 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D11220ABDB67C6C08B65828ED1B9A50 /* react-native-background-timer-dummy.m */; }; A059C81E5903478539477CD5EF45FA2B /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 41FE12E33CA973C1CA3D422181BB6C86 /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A06691A45194C29EF1D311E2C72EE52F /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 44DD7421AA84BA7B774B3EFE2250ECDB /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A06FEF799AA13ED077FFB3494AEDD1DB /* EXLocalAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 183D03E62E2B7FD69A5607DF2BD1BDA3 /* EXLocalAuthentication-dummy.m */; }; - A0BF45E5F3EAE179E31DC5E47DDD313D /* BitUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 017EFE10CDD6741C8D50EAA9F06C0AD9 /* BitUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0E05E18B7340C52E3407E9F710973B3 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = C40A0ADB1BAEB501AF0189643B9C6872 /* en.lproj */; }; - A0F47781BEEC2952B78510FD30C65D7D /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 38AC229967EB1A3B5161006686531264 /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A108D0C39E6723A4722696896373F561 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 74238653779A6C8999BE09AA6E793150 /* RNCAsyncStorageDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A06691A45194C29EF1D311E2C72EE52F /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 813969899FF7A97B2580ECA23BEF72A2 /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A06FEF799AA13ED077FFB3494AEDD1DB /* EXLocalAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ED55C10A7DA7EE91F2EF2FBF40E36ED5 /* EXLocalAuthentication-dummy.m */; }; + A0BF45E5F3EAE179E31DC5E47DDD313D /* BitUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = D6E511CDA073D7085B98A69C0BF9E92B /* BitUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0E05E18B7340C52E3407E9F710973B3 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 5CA21ACF7962D1714E14223EB2D8BCDF /* en.lproj */; }; + A0F47781BEEC2952B78510FD30C65D7D /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 55A754F94E16C39635E2AF9354FBFA4B /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A108D0C39E6723A4722696896373F561 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BE2A853BA7F9A576904BEA2F920D162A /* RNCAsyncStorageDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; A110C4BDF27CB8ADE103964E9B1D0CC3 /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = 01AEDCFC3ED04DFFE39D6F80D460287A /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Project, ); }; }; A112F0DEF56645CF1EA28BFCCAFF8332 /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E096B85EA81BD0F719205C885724C82B /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; A123B51082FE44EDECB490C88DE3DFA3 /* GDTCORTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 58A8142F2BD32A0A573F388E0EB7C982 /* GDTCORTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; A134CBE0553F5F3339A4A20A87F18E3C /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = DE99BB1443E28E0AB813383FDDAB4BB7 /* filters_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A1471032678B3AD024125ABA40B35D15 /* MallctlHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29E9C1CBBFB95DE4094DBF41CFB75549 /* 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"; }; }; - A1582553685734DA47129C215578CE99 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = A820B573155CF4A018C7D554BF31DE76 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1582553685734DA47129C215578CE99 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C5479F774B6CA1B2BC9515C2724511F /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; A15EBE154B437F49646D3509D0113685 /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = C4CA6DE0516D51CDB6B6CDE905DA3D78 /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A15EDE1DE8C6DCDFCE68CFF7C31BAF24 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = D21D2F9B533C89B39131B7034FF68BC8 /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A1AE828FC8863E3F751638E4F21734BD /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 37ECD20A2178106F568877ACDFB4944B /* RNCommandsHandler.m */; }; + A15EDE1DE8C6DCDFCE68CFF7C31BAF24 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = B71CC676F795E509843A7A323A901A01 /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A1AE828FC8863E3F751638E4F21734BD /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 8314C783AAAD40DF3EC8B2AB3571FDCD /* RNCommandsHandler.m */; }; A1BD3EF5F8E40C42F8C2E6311902DF10 /* PTProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 2724C31E54B001AE871AF4177D6E4099 /* PTProtocol.m */; }; A1CA7EBFC2566496011ABF1D36B56A03 /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = F9DA532F1B119E3069F870EED104B2FB /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; A1D4663851C21E6CE831427D256B8221 /* Instructions.h in Headers */ = {isa = PBXBuildFile; fileRef = D8B731924D7E9A3A0E303495DAB9B40A /* Instructions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A20814ED32ACFBE1A68407431BFA4038 /* RCTSettingsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = C7B1E9B6C607C38328E1997549330E11 /* 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"; }; }; - A20A1BF93F6FDF11478EE34FB8F18CDD /* RCTImagePlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 33F2E207C32422892ADBEA68CD80D69C /* RCTImagePlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A21AA461DFBE94B5DA7E5BEB211CE665 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = DB464BF08C80F086A79A4B094295F4AD /* RCTConvert+FFFastImage.m */; }; - A22002A0C7C80FCF08FED28DB6F224E1 /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = D68D93423326ADB4888DD7891E8170ED /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A20814ED32ACFBE1A68407431BFA4038 /* RCTSettingsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = A26A7EF563377345BE162F627EAD070F /* 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"; }; }; + A20A1BF93F6FDF11478EE34FB8F18CDD /* RCTImagePlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 513CCD42219FDB82C128464C0AD3C6CF /* RCTImagePlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A21AA461DFBE94B5DA7E5BEB211CE665 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 3149899EA1140A5AAE52CCD55745C11B /* RCTConvert+FFFastImage.m */; }; + A22002A0C7C80FCF08FED28DB6F224E1 /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 91031C2D142B91C4659188043CFBB59E /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; A27018554691D73B87FDF4C4F38FFA5E /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C85B32CE09C0680D191A596247D33DBE /* 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"; }; }; - A28AC47E8F23967C0141177DB4D7DED4 /* RCTKeyboardObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6DCA8B6C9FD99CA20C25A12FE1C334E2 /* 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"; }; }; + A28AC47E8F23967C0141177DB4D7DED4 /* RCTKeyboardObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = C33745890C9F91ADF6EB4AB0EB5ECE70 /* 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"; }; }; A28CD67E44E5F6FC59426040908B323C /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = 229E2B54AB29984EC08EBB7E55115D30 /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; A2AC30DF5EA70858EE380D76BB0D7697 /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C79CE516CD630657363DDBDCA522425 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; A2D4FC56C5FBD42F95A12900620C2A65 /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 76421776D82B4D7F763F40B43681EE6B /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2096,68 +2105,69 @@ A30E24B8DAB4E9B313DEC9A9B3F70A3C /* PropagateConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C65F5B0700270E45B94C5E35FFBD4D8 /* PropagateConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; A3235E29BA5E0D51FA6508C3DBD5AE17 /* ThreadName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 761200C677DC6FC1D4743B8A10AC55B3 /* 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"; }; }; A33402260339194D8E4F42EFF7FD03AA /* TOCropScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = A810AEA1B09EFAD2784CE0CB999EBC89 /* TOCropScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3377E75A6E4A4461B63CFAAC884C5F3 /* UMAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C9213CB9BA11B93640DB8311E10DCB0 /* UMAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A33A3974F5C9C762E24A8248D8300565 /* UIImage+Extension.h in Headers */ = {isa = PBXBuildFile; fileRef = 304C00D0EA7A1B47B55F546B89E7306D /* UIImage+Extension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3377E75A6E4A4461B63CFAAC884C5F3 /* UMAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E04D3A647F36E8B028E2D8851475024 /* UMAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A33A3974F5C9C762E24A8248D8300565 /* UIImage+Extension.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E31D2EDC5ECA24821ED9B416DBC9795 /* UIImage+Extension.h */; settings = {ATTRIBUTES = (Project, ); }; }; A33AEAE53F5DA1DBE42A13F0F7180FD1 /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = B8440B56243829CB710E5A438AC1A9CF /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; A348E879FA3330E1712179F5B4FAC236 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = F62789A845A410353364C9043AA03482 /* vp8l_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A372D39001A447E659CDFBC16C14DCBE /* CacheLocality.h in Headers */ = {isa = PBXBuildFile; fileRef = B6FA701B21708A73117560B03415D018 /* CacheLocality.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A389B2C547392252B058625077DD86C9 /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CB910BBAA7F056C8ACF556BE38DBF0F5 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A389B2C547392252B058625077DD86C9 /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0615D3DFC82C26757E1BD398535DAACC /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A38E1CD55FB4C876BFA4BFFFAE20F7D3 /* FrameSerializer_v1_0.h in Headers */ = {isa = PBXBuildFile; fileRef = 833332B1E0595783A9D2377B0749EAC3 /* FrameSerializer_v1_0.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A393F9F256FD061ADB964F68150EA99B /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 81B175DB517E21D3E7D3D04D53D407A5 /* React-CoreModules-dummy.m */; }; - A3B77A398A9F20922A25D059D4FCF451 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = C968B68E93DC69FC68020D26721951A4 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3C5B95F92F2124418433EE74AF6D2E1 /* UMModuleRegistryHolderReactModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 814D0A2257FDA7280D125A21A9FF57D7 /* UMModuleRegistryHolderReactModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3C99329F26A99A80CC933452619226F /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 39446EDAFFBB0FF7075E0DAA4CCB0CC1 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A393F9F256FD061ADB964F68150EA99B /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DE1A9DCFA71D2A144B640AFE2807BA7F /* React-CoreModules-dummy.m */; }; + A3B77A398A9F20922A25D059D4FCF451 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = AEF05B137E6222CA20F7C962A1AE1E34 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3C5B95F92F2124418433EE74AF6D2E1 /* UMModuleRegistryHolderReactModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BF31BBF6F96CABF7114F9C5DABEBDCD /* UMModuleRegistryHolderReactModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3C99329F26A99A80CC933452619226F /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E3E3D986F55303FD249D648C662FC6A5 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; A3FEE631937CCE97FD38F800E98895A7 /* UIView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = AEE163705C89AC21A131F39B79D0F63B /* 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"; }; }; A42284BAEF9A5D75B15BF4EFC4E4C468 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 08942B0A179F3F1363C8C8572C592955 /* frame_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A42C59477BEC3A7A4D2CEBD6BC4A4F1E /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 605E9B6EC7A5EF37450BA6FA70F98A66 /* yuv_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A43091390B40A7894AFABD8004B03FF6 /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = F28F650D8D9AD88285C4A89116F9DB5B /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; A444AC14D1AB1CEDE00F63E32EA7F7E0 /* ObservableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = A4EA72A930B146D8E06004CA5968769F /* ObservableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4576BBC57A17E26132B2DEFB9B1B5A6 /* SKViewControllerDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D82F2C393E23EC158471DF71457891E /* SKViewControllerDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4764E8EC572725B1EC20DE1F38F9ADB /* UMPermissionsInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BCC70F4FF4C368C566CA84DDD9D0F52 /* UMPermissionsInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4AC2B3B0958347F35A3AE14A82BE595 /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0292F0409BE3032F07AE00C5D25A0C70 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4764E8EC572725B1EC20DE1F38F9ADB /* UMPermissionsInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = BE4AC730FBA061A5322A81174F81411B /* UMPermissionsInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4AC2B3B0958347F35A3AE14A82BE595 /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = B2A5B2891ADB13F1C0DE555A9C630A6F /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4B2A83F3F46087317BDA98ECA699248 /* Select64.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A9C8AA219AAFDA477CA1004291AB179 /* Select64.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4DF3AB01471BD888F4FD4EC2E9A21BE /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 78F1AEF54D5F3A4102B848FA30901EA1 /* FIRComponent.m */; }; - A4ECFE935BBAB8F950062E28430507FC /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A083A0A26F9BDF36FE634C9868B7C02 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4ECFE935BBAB8F950062E28430507FC /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FD47A2CFA0C7E037D8822F94D6775F8 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4F849F5F0D9CD393F337409679534FC /* PTUSBHub.h in Headers */ = {isa = PBXBuildFile; fileRef = BF0C8319C7932A1BA4AE4B9C93D231B4 /* PTUSBHub.h */; settings = {ATTRIBUTES = (Project, ); }; }; A50388445DF10ADD6B22876F3F69E902 /* ssim.c in Sources */ = {isa = PBXBuildFile; fileRef = 98F3BE2618A790DD0537B38C7D8A4152 /* ssim.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A530BB82BAF0C755B99BFCE96AC93639 /* BaselinesTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2D12D9CB52D0A5C33E123C91F9F277C /* 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"; }; }; - A56297DE41EC440968388D0F4A94F43B /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F58D6BF0A6621914DEA7D362035767A6 /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A574026171CFEEC0EECDE544E2C1330B /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E90831989E76AA375C7D7AA610075B1 /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A56297DE41EC440968388D0F4A94F43B /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 203227B7E5F123C2C18C807954C432A9 /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A574026171CFEEC0EECDE544E2C1330B /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 648C3C9B39B77082CA8AE80E2173EBD5 /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; A578B94A41F41F9D07A358C7D2874C0C /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = C8A26A69F3EF4F2DE018599DA2868F89 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A58985DB55A027C61BECD8DC75FEF204 /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 079E15960D8A469FBF3CE8B19E12F350 /* RCTTextAttributes.m */; }; - A589A7984EA7376E70C72AF061F51B43 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = FD340A681087E5EDF44BFE8125F94E33 /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A58985DB55A027C61BECD8DC75FEF204 /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 95DEEB975C251DC0DD518B4F697B113D /* RCTTextAttributes.m */; }; + A589A7984EA7376E70C72AF061F51B43 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = EC4A6E943C7DAEEA950D96EE96271C15 /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; A58D964A05070A1687AEF98D527B41B3 /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = CBDC3ABDE410DD0CCD5E9C1C8EF6BD1C /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5A3684A5E0E259D2E9CFA5D438958C0 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = BA5C8C27B1A70FF09C0A1399433E8219 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A5A3684A5E0E259D2E9CFA5D438958C0 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 90D34DFF04C9FC93FBC548E5C5BC1EC1 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; A5CBB0D2840E7F615A3402D241CA4A5F /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 95E32B303715252400E8F8151E2127BE /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; A5E0249E14EF89BD7EE9DC4EB19DDC64 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = A39A26BA33C5E32A2591D22BC6F9B47F /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; A5F7A295CE8D9AB5DE3F0B75200DD1A2 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 2EF9D1B841C6204A2EC5D0DFE011FE80 /* io_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A602F94288003EADC14BAE8B862E7B77 /* ScopedEventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B735C9F34C8311507D047A8CFB61DC62 /* 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"; }; }; - A603B60A6B2B711F9E90CB714A876743 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 31C14AF5BE3B281BF4BC9886FC51D8B4 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A60866B211E10A251823755E039D280D /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 950CFD46F0F8E50BD36073718C8AF851 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A62AA3FA69C27BD3BA6787EF1D06B5BC /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 580D5C6E95E4C416ED95656E884CA836 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A603B60A6B2B711F9E90CB714A876743 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 24A7EE7C1875E720E6FD85B5EEE4C368 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A60866B211E10A251823755E039D280D /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 4036DA66AEAADDE67F7AF5FF9DD0B667 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A62AA3FA69C27BD3BA6787EF1D06B5BC /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 26E2B81D847EE92831E2B4214E2580F8 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6742224DEEE6116B21884597417C6A4 /* EXAppleAuthenticationRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CD8D621D244624D31D23B1C91014A93 /* EXAppleAuthenticationRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; A6776FF2CD328909E8600FDCF823B0D8 /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = 85C9BABF3B59E5A42C45C1499E076A58 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6819EA409E0033334420B790115A46E /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 878F95DD6D824A4B657EFC0C29CEBE6C /* UMReactNativeAdapter.m */; }; - A6AFA852779611E471E81FB7FB479423 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 045C2246BF47FF94296C1DF119A721FC /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6819EA409E0033334420B790115A46E /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = B97BDA6F53DC963FFDAB0486599E7CE5 /* UMReactNativeAdapter.m */; }; + A6AFA852779611E471E81FB7FB479423 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 6986DCB9B08399021A0D79977F8DD2AD /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; A6BABFFFD02CC5A923F1B76BE536EA3B /* BlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = D647297D553EC57B4A4D190486B9EE5E /* BlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6CAEE624647B633DA1FE379F3335BD9 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E6BB2A68339DF6C48E9AAF7FE47C4C9 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6E5A41B5330A56303AC69C291ED1DB6 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D7DB0C5FE6A3D654667F3AFB62743A2D /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6CAEE624647B633DA1FE379F3335BD9 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 025E0CDFD18867BDA9A8DB9B3184A6C1 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6E5A41B5330A56303AC69C291ED1DB6 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A1D9610A449D2388F01014781CD204A /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A70100EBBD9722DAA244ECEF1BDCCF92 /* File.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E5823A98AFDC2E88398046ECD303BAD /* 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"; }; }; A7255A0E5A0B85CF61AEC27F539A8AD1 /* AsyncTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = F43EF1693B9096B253592907C9C4B687 /* AsyncTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; A73A92EE393BA7EFB5EF12271CD5AE1C /* ResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D281DAF4DC50DA1C18025F627BAF319D /* ResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; A74265F5E9D3396D998C4D41384D939E /* QuotientMultiSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 68858AAD305821B0E28BAA93C995B30C /* QuotientMultiSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; A748C7204AF3ED67608DB14125036794 /* SafeAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 36E1B5B2CFFF00267506ED80195F616B /* SafeAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A75253B6013C5FAD19A4DEF9805308C9 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = BD6094EAE9E1FD35871E0EEF9C2B5E55 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7556B80E5501E08DA08A33C9535A31D /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 98651E01D9A1FDA8C80914C4796A3CD9 /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A75253B6013C5FAD19A4DEF9805308C9 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = F86499206B3CCEFEDBF06F69F36D7B91 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7556B80E5501E08DA08A33C9535A31D /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = AD296C57DB3D2B54D892B4F48C13E137 /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; A75F67BAE109D953729054CA3FCE37CB /* Flipper-PeerTalk-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A492A3D9D89118A05A744C52DF693A9 /* Flipper-PeerTalk-dummy.m */; }; A7721978FA34EA5CD4BB6F8FD361657D /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C745A79AF19F774C0B130D70815EC58 /* filters_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A7774B196AF28DD549E0CDF4807F7B08 /* ConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5737A805379DB8158A0D0548C1324DC8 /* ConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; A791685400809D96C26DFA3858AD4DA0 /* SetupResumeAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0688E1BF1908E81DBF8C7C1D4D8AD3BA /* SetupResumeAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7A7525768BA7795D9437CCCC3E9523A /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = F06CE60C9D286F1F3036A2362259489A /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7AC684A30CC732372746DC226BC7D7F /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 332A8AA4D66AB38E71450D0753AB0B60 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A7AC684A30CC732372746DC226BC7D7F /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E198EDF62D4D911560F20BC10B47319D /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A7BE4D326DF6F9381E4D49A1C6A2F6D6 /* AtomicNotification.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 201FBE1E6F0A8284A98B38DCA976AD1C /* 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"; }; }; - A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F5764DD8D3511BD9AF70A14B3CC7BAEC /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7CFFB6114517AB27EA824EDAF6F1055 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 996D63CD578638730C1A5D64EF6D4645 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7D57A898342D32D6D087A8B3B880AFF /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DA8FFD63A11DE004038642C959A1AFE /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B34A9F6EDA96558160E687E2DDA559D2 /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7CFFB6114517AB27EA824EDAF6F1055 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E787D7856136E44A7AEABFC6D199618 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7D57A898342D32D6D087A8B3B880AFF /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 12D61B0E0EB973297C194764B16CFAC9 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7FE4D8E743D00ECB115E087D53587C7 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = EAEF300CF4467F2E2E3B0C0D3A4D115F /* cost.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A814790EEE1DB78F2C8EDC04096D870D /* Fcntl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 823CDE1E20E25209A991C64E100926EF /* 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"; }; }; A82A71AA973E93441F2A2C34E1D2178B /* FIRInstallationsItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AE2F69002D726C18C6E21B84BAD19E0 /* FIRInstallationsItem.m */; }; @@ -2165,201 +2175,201 @@ A83DF000E730CC16B797CA08DB29B9CA /* FlowableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 29227B5772A6FCF4BEFAE1D7C92803A2 /* FlowableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; A85E3E09CE5A1C1FCBE000C05F72FC0D /* MemoryMapping.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4412B653F20312FC38D099057A287C9D /* 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"; }; }; A8702F584104386DBB13FB3B877CC8F9 /* TOCropView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E70FF84FAD05DBBCAD01E729DAE8311 /* TOCropView.m */; }; - A8850F1916921859A3847D004162D497 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = ABBF6EC0DF678369E9D6019CCFCAD659 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E43BFBCC1924828AFD25D36B713CBF0 /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = BD68EDAD47CB6EE1355CC2150B429E4F /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8BE07ED93A4F36C2658BC2D58944C35 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = D82CBFAAE17C94BAAA05E29955DF5CE1 /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8E01CE5F1EEE7260BF5757057CEF643 /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CA9C1A98FA470D75F01F28C41B4849C /* BSGSerialization.m */; }; + A8850F1916921859A3847D004162D497 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 267F6C74F5F2AB98971FC8EA2F47B183 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 65D682C26CA14926B14CC0283B7F7337 /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 61641261A2D33040F051EBEF497D174F /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8BE07ED93A4F36C2658BC2D58944C35 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 5050A1FCDE105C0CA29E4FD8D2768331 /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8E01CE5F1EEE7260BF5757057CEF643 /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 37895F3BEBC6FBAE7B69AC1E9B664C63 /* BSGSerialization.m */; }; A8F65854124450A07A7180E05C65D284 /* YGLayoutExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 380CC79E918E3BBE9C8BAFCE026DFC7E /* YGLayoutExtensions.swift */; }; - A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C2E94B6D13B60B6F5054461F826B4219 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 94C0242D134E88E6F06939B09DB92DE1 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; A91E2FEF560C2FB37C85DD84F1B01CFF /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 48BFF4507769ED087BF273D65AA632EC /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A925E1BBAE734866DD93941974FCB644 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = B34A213E2EE08069E9FE06B08DB9A960 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A96C68C0C268482DDD4103E565FF1C77 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C932A04CA8776155060B099D4D68C381 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A925E1BBAE734866DD93941974FCB644 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = B5B719F0E723B85512C67960D063CAFF /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A96C68C0C268482DDD4103E565FF1C77 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D63D68250D517F7A8A6FB42EDD1F2EB /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A976416CE94836C67A780BDA4CC35100 /* AsyncSSLSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B8B862A2BB8DD3C2F5379C018818357 /* AsyncSSLSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A99A29500A84A17672C54F80F175DCEC /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B963523997919758D0FAB0A9669A0B6 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A99A29500A84A17672C54F80F175DCEC /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 37B394D80684978604DE1A7BBE048EE9 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; A9C22AB6A1DFF4957F5564EE589A4A64 /* DelayedDestructionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 43289003F43ADD8130C473D9EE7B1E19 /* DelayedDestructionBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9E69DA1D793E8F8FDBBA1BF0892E119 /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 474BC2E5DEC74C05178F6E0476989FA0 /* BSG_KSCrashIdentifier.m */; }; + A9E69DA1D793E8F8FDBBA1BF0892E119 /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = A6B6585247FA2579ED5CCC001FF52D48 /* BSG_KSCrashIdentifier.m */; }; AA0833E0CD30D0CC1E832C8D53373D1E /* ChannelRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C995004C50B3E13137FD7EC58C6EB255 /* 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"; }; }; - AA395570884B9EDD2EFF69F413B2EE8B /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A45B438353CDD3D4B69A51D16A27037 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA395570884B9EDD2EFF69F413B2EE8B /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C9A64743CE64AB168ABC1325EEA9023 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; AA41B806DDD2464BA472118CA6EB6576 /* SaturatingSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = DBD5194ABAD450816C36C5AB50F85835 /* SaturatingSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA49DBEB959622BC320A0C55CBB53722 /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 570CF44B3BC9B3E2801722C618A8E01A /* RCTInputAccessoryView.m */; }; - AA5F944B8A228102EAB6BF9BF25031DA /* EXRemoteNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 236B99ED08B344D430D50229C19689A9 /* EXRemoteNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA49DBEB959622BC320A0C55CBB53722 /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DF42191E5D0F0270A08953BE5753EBA /* RCTInputAccessoryView.m */; }; + AA5F944B8A228102EAB6BF9BF25031DA /* EXRemoteNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C6406852A37DF0AEA527CEAEB1001E0 /* EXRemoteNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; AA71EAB157D4DA18A57F72BBE833E954 /* FIRInstallationsStoredAuthToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 3718C0542EF040AFC08106C65C8BAA2D /* FIRInstallationsStoredAuthToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; AA98E5E760C605F57551D3D6192E5225 /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A10B06A83720999590D42AF776AB280 /* mips_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAA397302AB9735FEE54E85069DF673B /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BF0B7B11DC9E6EE4E7DC50E16451765 /* RNFetchBlobNetwork.m */; }; - AAC20D7627D16FE0093FD265E896DEA1 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = E6D3A5A64B6A649599713F3ED1785CBE /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AAE3C47A93D1E6B9C643FEB27927CE4E /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 92CEF276BD4AE7CABDE715A120DD5392 /* EXReactNativeUserNotificationCenterProxy.m */; }; + AAA397302AB9735FEE54E85069DF673B /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 75C81C87FF4DB6BF91F3159D1B5ECF78 /* RNFetchBlobNetwork.m */; }; + AAC20D7627D16FE0093FD265E896DEA1 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 31544FA1A34C77D66C793534B5D01D8F /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AAE3C47A93D1E6B9C643FEB27927CE4E /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = FD2915E38674C2C900EFA33041163379 /* EXReactNativeUserNotificationCenterProxy.m */; }; AAEC54ADA9A9C0A6DD785E903782EFB3 /* ssim_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 6443C7E41F5A8260ADC4DBB27F17EBC9 /* ssim_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AAEDC523773D6B13C078505D8B0973C0 /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 26F885F9B385256D885415C97E0FEF7A /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAEDC523773D6B13C078505D8B0973C0 /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B4B04C675AD000807C98844D4BCB30A /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; AAF05BFDD102FD660418FD7AE198030D /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F165263816B6742FF0626215E359693 /* analysis_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AB04017D38E62DF07CEBA7D22022A0DD /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = D9F226710D2D92BC84B6A5765349E167 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB0C50C0B3F909061C6A5A0892C77B3B /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 66A0546317DA4C87DFE514042A8B1530 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; AB0D233175695AD5A5CFF80D84E56874 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 088370164BB99DF2DADD633FC502F026 /* anim_encode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AB21B48DF0CEA00D94C8AF2781E9A2A3 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A3BFC7E5E6C8E6EEA1460CA6496D339 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB59C6234A9993C6BE675204C9AB2EE6 /* EXImageLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 73844297063A4D124E465C14347C59A0 /* EXImageLoader-dummy.m */; }; + AB21B48DF0CEA00D94C8AF2781E9A2A3 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = FC6F87B7F612DF3143D29D6AE4896240 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB59C6234A9993C6BE675204C9AB2EE6 /* EXImageLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 14DB85DA281E7406A95457602CC430B7 /* EXImageLoader-dummy.m */; }; AB5FA629662137136E8341AD06FC1978 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 471F523A97739A5A43D77C7D24F81237 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB66FEE1AD76390C20E69570385B29AD /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 10D8024A3E862301166AF1F823758DFE /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - AB6B1C527596D3144A8E068B20847368 /* RNFirebaseDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 031EF52C51F3F057FE42F641F96CDF2F /* RNFirebaseDatabaseReference.m */; }; - AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F9C73D726BA76260B12ED6961C738B3 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB6B1C527596D3144A8E068B20847368 /* RNFirebaseDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = A1C749454E7A224BF2E84D8812788E93 /* RNFirebaseDatabaseReference.m */; }; + AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E9CB0FF20BC5770F5B661AE9BD63A55E /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABCD3CDD7AD0B48F038E8BDF3399A5FD /* IOThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6119ED8AAB4AB85F6BAA8F27EB5C2C2A /* 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"; }; }; ABE4C7F45E23A98AB7CDA0ABC75E19FA /* SKDispatchQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 63E30E444F516DDBA667711E50C18E59 /* SKDispatchQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABE92E6DD473C1C3130AFCA71ACCF240 /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = ECA1B40348C9BBE28F7C3E9A1A7C5931 /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABF126106FD8D877441956C3AF553EEF /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = D93DD89F6DEFF2301FFFDCD8B263150D /* pb_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABF8D2E2E1BB9810CDDE4BD97264E33F /* SKEnvironmentVariables.m in Sources */ = {isa = PBXBuildFile; fileRef = 5448E1EBD4A4EC32710F6DCB92875E3E /* 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"; }; }; ABF99A187E110B6F62BB3441ABCCC206 /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D0D62EBA38E1AF2F71F055E9DDC77A9 /* FBLPromise+Reduce.m */; }; - AC123C0D22624AB059F2EDB2C55A4115 /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4195373022D017C35FEF3127FC071669 /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC123C0D22624AB059F2EDB2C55A4115 /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 37A782E342242AD117AB051759601D63 /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC2903679DA7B6240539795ABD3F3FBA /* RSocketStateMachine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29A7D37421922AE17AD3190FEF825B11 /* 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"; }; }; AC2A4B9D1168607041C3A0DB2ECB4636 /* Semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 94DC221720C39FEF83E7E829A7AFB235 /* Semaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC2E600E71A57F53043FCCCA443D8E3C /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 280073A9944B03667F12E624AABE183B /* 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"; }; }; + AC2E600E71A57F53043FCCCA443D8E3C /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F453AB8650E5E04AF66A8676A2B8967 /* 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"; }; }; AC32932952C3DFEDD41B409756F6F777 /* AtomicReadMostlyMainPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = D83A0EF7A0565FE92CFDCBD14BB075BE /* AtomicReadMostlyMainPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC352F1ACD856937CFBF55A36C6E6D30 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 573E597027274BC29EBA777763EDC41F /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC352F1ACD856937CFBF55A36C6E6D30 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 36CBBA01812843981C3B21BD724C267F /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC3624864E7F8698E97EF22EF270A5F1 /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 55458DAFBE268090431885279A793745 /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC3905F52FE0809F628BCC0CF306E76F /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 382DF59437BD2A2071FCEA0EECB84C6E /* picture_tools_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - ACB6DBC72055A867888113D9CD5B715C /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A100DDD23DE5A0E30CA63531F243807 /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + ACB6DBC72055A867888113D9CD5B715C /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 55C8AA679A3AD6B024B4E86F3ADE1654 /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; ACE7F710533E4AC5D694E89A3877D51F /* SKNamed.h in Headers */ = {isa = PBXBuildFile; fileRef = 62B6DE4D2D46CFDBBE1E1CE8DD67B7E4 /* SKNamed.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD0DA245B890349D01A915A669A813DC /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 11D57F3E85CB70F4630EAE63364EAFC9 /* REASetNode.m */; }; - AD15E974D8793EA9FA3799E5793CC334 /* RNCSafeAreaViewEdges.h in Headers */ = {isa = PBXBuildFile; fileRef = DAC6C5075251C028E3B56DD1420E8DD9 /* RNCSafeAreaViewEdges.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD0DA245B890349D01A915A669A813DC /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C4D934407C0DE63D6FCEF3662980C0D /* REASetNode.m */; }; + AD15E974D8793EA9FA3799E5793CC334 /* RNCSafeAreaViewEdges.h in Headers */ = {isa = PBXBuildFile; fileRef = 690389F5E10DA39DE49214507DD19D78 /* RNCSafeAreaViewEdges.h */; settings = {ATTRIBUTES = (Project, ); }; }; AD2FCDFC407F22399AA03C8D219CB35A /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = F1300F6438D6713BC5B1068611D50052 /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD766F8E538630FCAA9DD71EAE9F86D2 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 7887C82F0C5FEB79528A607A9AF4FDEF /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD8B355E377543CD09CE6F54DF1FF9F4 /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 460E4DEF8032905E0F4A0F2C4E98DCA8 /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD766F8E538630FCAA9DD71EAE9F86D2 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 938A92659A2B571EE3FA5B905DDD2A1B /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD8B355E377543CD09CE6F54DF1FF9F4 /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D38B1CF0BD847B29727942342B11073 /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; AD96A58A131956BB8C9879F48A442247 /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 87214272F27375D3F241FF271FEDB77A /* SDGraphicsImageRenderer.m */; }; - ADDDC9248A6F312AD540F1D3E1D2F888 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1404FC0E23413F78C58200069A101F19 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADDDC9248A6F312AD540F1D3E1D2F888 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 554B22F03906055DC4B73FDEE5372239 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; AE026FA2E0FD35314CAB62FA85B127D3 /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F605404C83D4809573DBE2B341C7A3F0 /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; AE3574F9F3880AC0BB6A51947E420FEB /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = 43A7859468E03E02E0496C59CBF6861D /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE35F51C28C993A1ED2EFAD1C5B4A08C /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 87EC72DB8312E12EA5686A7E6ADB07F3 /* REAFunctionNode.m */; }; - AE5A86615D0136412F914D9EB421D86F /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A462BAC6D7E6BE09F4DEFE618FEF797 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AE696B4A35AF464F62260BA86B736EC9 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DB39230D42F7725C5D4198A6BC2C8FE /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE99249C668CAF3BC44DABC8BA941249 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F340F9C2AED63055FA30805181544952 /* React-cxxreact-dummy.m */; }; + AE35F51C28C993A1ED2EFAD1C5B4A08C /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F0512CBCDA1447DCD89511D30DA8FCF /* REAFunctionNode.m */; }; + AE5A86615D0136412F914D9EB421D86F /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 95549270A926FC4112B9DB87B1B81B07 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AE696B4A35AF464F62260BA86B736EC9 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 8794386314BC0C939B3CB5F62BEF3F43 /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE99249C668CAF3BC44DABC8BA941249 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 418793307BC38610A8688BBDC0102CF2 /* React-cxxreact-dummy.m */; }; AE9BAD5416D1788A60DA1E7F3ED08F51 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 55446750D23DEC41D551540FA5A25403 /* dec_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AEB27C1EC087D6AAD63447C482C26AB7 /* RSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = B5E8CFFCDC8FD47203CE9765D7EAC259 /* RSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AEC4034BDBC291C3369745C3115A90D8 /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E67473DCD12826E2CA3837583E9C9C2 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AEC4034BDBC291C3369745C3115A90D8 /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 828FBD145761D75B0E31ABC077DB5116 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; AED318D41C7F3BE4C37C7FB57249C483 /* HardwareConcurrency.h in Headers */ = {isa = PBXBuildFile; fileRef = A3655DA0C714FD3F0A52EAB3408EA589 /* HardwareConcurrency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AED86CD66E589042814E7FA334BE0790 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = C6133E09F8DBF18DA5F2D9D1F9A67EC5 /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AED86CD66E589042814E7FA334BE0790 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = 9587AC33DF69DBB7AC794A5FFF90F085 /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; AEF02D003A6C637C4E79B072ADE0A70D /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = DB3E6CDDFD013761E504645ACB4550AC /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AEF42982A3A95308AF9611FC36E58B26 /* RCTNativeAnimatedModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4CF0C8F232E34E452145999C6D84FE3B /* 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"; }; }; + AEF42982A3A95308AF9611FC36E58B26 /* RCTNativeAnimatedModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = F5E0495E51B25D3727E20E65FAC40054 /* 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"; }; }; AF05B4B144F28758071058C7E8FD1640 /* ScopedTraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = F4DB2D4FEA0D4D5F688A3E11A90F2F72 /* ScopedTraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF1D206C1E91A995683BA28C56E6E8EC /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = 80831920B0F94217F86C1F661C6EF6F5 /* LNInterpolable.m */; }; + AF1D206C1E91A995683BA28C56E6E8EC /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = F9E2008C989F4237835E3833036DF057 /* LNInterpolable.m */; }; AF3ABFF1553A775B32EB8EFC443D7305 /* SysResource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9743CAC8A3D833F16EAF621477B8F637 /* 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"; }; }; AF94C7B27B49E1FDDF351596F49886B9 /* SKBufferingPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9AA7F46614DE4962D1B776D0893B3684 /* 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"; }; }; - AFA1747D7903B71E12ED58F61E2A35F4 /* BannerComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 38DDD9EC232549F32E09F16BC5D05D82 /* BannerComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFA1747D7903B71E12ED58F61E2A35F4 /* BannerComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 56329E2231A05D55C0A5FF45601A5F03 /* BannerComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; B01E94A5DB2F0ACF14D31760C121B225 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = F6CE2FC04ED6483FE6A99948553E7C25 /* UIImage+MultiFormat.m */; }; B0293EF73AFB370CF8D66F32A68DFBFD /* UICollectionView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 11660FFD2D5E05362E022517E8D47E88 /* 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"; }; }; B02A53EAF212B4BF6CA79C1D9501549F /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AC69B228C927726F100BCC549ECD230 /* FIRInstallationsItem+RegisterInstallationAPI.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B042D39C0C78EEB53F92CD779043E7F6 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 8761C23869921628249F9F2A1491B422 /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B04C1E49A57CACC60F17F76082838191 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B10A4839E235754AFB78BA656B501336 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B042D39C0C78EEB53F92CD779043E7F6 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D1897FAFE5D5F8C700B53AD1E489BE0 /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B04C1E49A57CACC60F17F76082838191 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D23D21EB4044F0DCF536F1F68A0615F /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B05521F41DF6AD44A22725CBD8B1C16F /* Framer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD8946FED6F5245C8C8B92D24FE2EDCF /* 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"; }; }; B05C48490091D1554925127884D267CE /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B0B2A2470ADB5772F4AB8C99FFF4076 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0881CA09218A618A785683BE4C79CC8 /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7878193DAA3EC52A6C7D59A1FFCFF437 /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0881CA09218A618A785683BE4C79CC8 /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C2F1EF0A75899E0297AE7C0ED554440 /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B0ED107F3AAF83FDD3035D0B3D864953 /* GCDAsyncUdpSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FFFB836871837E3F0F105DF572CA9D8 /* GCDAsyncUdpSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B11CA48DA91BE9D78A09D892242DB4C8 /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 965334195410C45ED40C12C361B2EBB7 /* RNJitsiMeetViewManager.m */; }; - B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C527A242FCB70C4E79C1BB4DE5B8DF4 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B12AD0D904923BBD956FF1A6D89EF7E8 /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C10D118FCB5A1D44DAD24D400763822 /* Color+Interpolation.m */; }; - B13C0BF250F77AAB2226545533D79A54 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DE3BC96E6F1E474481D09553639C6CB4 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B15A90827FD84A3A1F79DE8E2630486E /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 76C453A0922214A7FEBB03A02B38B6B5 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B11CA48DA91BE9D78A09D892242DB4C8 /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A836149B7ADFE67BA66D94796213734B /* RNJitsiMeetViewManager.m */; }; + B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E84D0FB226B76CEC903DA2F88387ADFE /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B12AD0D904923BBD956FF1A6D89EF7E8 /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = CB96AF637F193EB9518FE01E94128B9C /* Color+Interpolation.m */; }; + B13C0BF250F77AAB2226545533D79A54 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E24952E40FC2451E5EF180170FA299D5 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B15A90827FD84A3A1F79DE8E2630486E /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CDD00DDFA68C0DF72E3957B9D462CF /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B199F4C45C3FC5E1C5EAB6EA690EDA67 /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 37E57BF0ADE4302F482B1DB7DA3957F2 /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; B19C8210EF9AE5488C1603055CF085D0 /* GDTCCTPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 72BF1AAEF5436D10A0081BBBEC48C39F /* GDTCCTPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; B19F61D3F34687101A8E5B7BE2B4EAF3 /* TcpConnectionAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62F8ACF7B212F46D44231884C7929C5F /* 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"; }; }; B1C08C504986DA3CFE5A380DB723081E /* ThreadedRepeatingFunctionRunner.h in Headers */ = {isa = PBXBuildFile; fileRef = 48927A4D44559D7320D6AACB0EC86314 /* ThreadedRepeatingFunctionRunner.h */; settings = {ATTRIBUTES = (Project, ); }; }; B1C753FE90549D728716F43E12DDADC0 /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = AC4EB289D6F2CCA5B3D2B476B9D57A49 /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1DC50C9C897484260DE304B56E3FBDC /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 75497E5890A05EC1C27367D4A88685F7 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1E5D2A6D98AFFA7757879EF1D62694F /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 1657E2CFAD8519FA56E7AC6F8133E913 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1DC50C9C897484260DE304B56E3FBDC /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A4DEC464191F28F0E9ADFCAF7A6F699 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1E5D2A6D98AFFA7757879EF1D62694F /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 71531F4D01A58061478E016FA6E16A8B /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; B20E2104DD60A194165542B0AA180628 /* MasterPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BDEFCD869A4F4674CE7CF0D6E3AA523 /* MasterPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B21ED47165915C21EF394F4CA8C6DE71 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 29E3E89084221292A1F6A511DED075FF /* RNFetchBlobRequest.m */; }; - B23E67E4C9BE3A1C7B6E94B36BBA23A4 /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 20A6380999E9B0D9DED6EDB034D0FE76 /* RCTConvert+RNNotifications.m */; }; - B2679FA44A18368E0569B37207A535C5 /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = FDD551671D8B9B950EC901DF038BD847 /* REAOperatorNode.m */; }; + B21ED47165915C21EF394F4CA8C6DE71 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F5684FFDE03F8CF2C40486769C419CF /* RNFetchBlobRequest.m */; }; + B23E67E4C9BE3A1C7B6E94B36BBA23A4 /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F2C3E67B7EB1144D81752B5938C9B7DC /* RCTConvert+RNNotifications.m */; }; + B2679FA44A18368E0569B37207A535C5 /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D3F91A5AC125245092B53FBCC0CFA84F /* REAOperatorNode.m */; }; B286814FE12B03656F533F95A27E6699 /* SKStateUpdateCPPWrapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3608FA6C0F3B192297FA0C37931AF755 /* 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"; }; }; - B29473DF36DAF4E8EBD4667D6DBC717D /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D78507D8D37EB274556A7A81F5448024 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B2A1662DAC4C5D56E5DBDE9F7A56C09B /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D82808C7DF9925E623D51A6883938EAB /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B29473DF36DAF4E8EBD4667D6DBC717D /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ACB4201D7961B401EC845571B7E1E960 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B2A1662DAC4C5D56E5DBDE9F7A56C09B /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AD6619459190D5772FFED9BDD939E82D /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; B2ADBA919A83F3489D1643A24A241C8B /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = B40E16E4E7EE49A482B38CA021F3E602 /* FIRConfiguration.m */; }; - B2D7E5D0798F269609AD21592B9F9843 /* RCTImageURLLoaderWithAttribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 56603BE6D3B6D9CA90D7AFA32B2E0D34 /* RCTImageURLLoaderWithAttribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2D7E5D0798F269609AD21592B9F9843 /* RCTImageURLLoaderWithAttribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 07AA1343D184912CDFB622E045546DFF /* RCTImageURLLoaderWithAttribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; B2EF5C82BC611CBDF4B346F0502EF1CF /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = C6BF76A651423C1B5D83A11E5FC23681 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3182D6C3C0A4B073C751F68DB727998 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 838B0E00132CBB87EE347175D86573F0 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B31FD9F623593C92C57AAD4C85353B96 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E0881BC6EFECE3262DA82753F8F5341 /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B3182D6C3C0A4B073C751F68DB727998 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B16549F7FED2D0ACB373B44ACA8AC112 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B31FD9F623593C92C57AAD4C85353B96 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = C04CAF1C9D2A557190D23C05A5E1215A /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B33E52DD3539A7CE133743B32AA0A785 /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6196966892C9BE70A8483E42D92929AF /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; B3DA463FE22DD22C783EA37F931CEFC9 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 791F9B8D660CCC66392DF7B3E7A1CC8E /* FIRLogger.m */; }; B3F14FDA0D22D6BBA1A8665801D74FDA /* ScheduledSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = A96C888C80D9DA21FF6DF2F4A7BFFD81 /* ScheduledSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3F297ECCAE6B3DCAE6CECB743F916B3 /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF74D6C245FDC2CF2884B2AD59B8252F /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B410AD52D34F133BEF01D2BEEDFABF8C /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A786B071574EAEE6EDDAC6A7FCDE73E /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B41D1BE775A5E1E71F079E1661B1553C /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = 929C256FD97B9112F7FEE2BA26618099 /* EXAV.m */; }; - B43D4373ACC84F4651349E2C0584EA84 /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 87F971C373C859EE022A86BD8E262928 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = F4AD6A08A55422659C377BD3708DE52F /* RNGestureHandlerRegistry.m */; }; - B46D8BAE4C9ACE396EE6E38D21C53C39 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = E06F518B230FA65E6F5216AF15600058 /* FFFastImageSource.m */; }; - B4739208CCD185642B0D5DCC2FC489E0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = AD76A6B6CBC241E7C5E8E24BF5EB1795 /* DeviceUID.m */; }; - B4BA80755C5810BA53BB0E7D0F5367B4 /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = A990BAE7D466511110AB4D9393EEA548 /* Compression.m */; }; + B3F297ECCAE6B3DCAE6CECB743F916B3 /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 276C646216FB007F4DA63A5EA1E23167 /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B410AD52D34F133BEF01D2BEEDFABF8C /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = 22DC540653AA6DEFE018F0E96892639A /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B41D1BE775A5E1E71F079E1661B1553C /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = B6704FC3280FC62B58879C7FD72A1BB7 /* EXAV.m */; }; + B43D4373ACC84F4651349E2C0584EA84 /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = AA531003DDE8FDDEBA57CA4EAB5089AD /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = A32DD059BD65EAF034E7A33D7CE1B88C /* RNGestureHandlerRegistry.m */; }; + B46D8BAE4C9ACE396EE6E38D21C53C39 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 998AF8A34DBB39420D04028C3FFCBF77 /* FFFastImageSource.m */; }; + B4739208CCD185642B0D5DCC2FC489E0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = CBAB0F47CDDDF4B890096A8A31547545 /* DeviceUID.m */; }; + B4BA80755C5810BA53BB0E7D0F5367B4 /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 8455501E57C734BAE091778D44D2E199 /* Compression.m */; }; B50672BBDED3036FC7ED6BF41CAA049D /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 06D222764BE5EFFDA1CB8E727535B257 /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B508D8495B9D9A5641D2D5ABD0D079AF /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8260B0F23481C9CD023F0941B574C39D /* QBAssetsViewController.m */; }; + B508D8495B9D9A5641D2D5ABD0D079AF /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8027FF476E99F0262910226C469925AA /* QBAssetsViewController.m */; }; B54B8FEC222B2A26021ED66D627DC63C /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 04AEECEA2393B4EDABC37244F1239588 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; B57AC832F696B961129F42E68DA0914F /* SKSearchResultNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 49FEA5D9BD36512D6DAF0305E454C21B /* SKSearchResultNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B61FD3AA8214DE7386C1FC11C8D29267 /* RCTConvert+UIBackgroundFetchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C5383D8B108AC10101C2B270CFD6834 /* RCTConvert+UIBackgroundFetchResult.m */; }; + B61FD3AA8214DE7386C1FC11C8D29267 /* RCTConvert+UIBackgroundFetchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E41A3B00394163C9CBAF010F4ECE1B6 /* RCTConvert+UIBackgroundFetchResult.m */; }; B625D5784F759BE494CD345370277911 /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 10AC0610BFD1233219F62C08EA9836D5 /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B63190A3185A392452E244869C86BA24 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 218C7D7C9A58A2F00A43E0A813EE7FDE /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B63190A3185A392452E244869C86BA24 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = A8161AF7903D5BD9636CBDBFD812B802 /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; B63DAFB06AC2D02D95A8CF66D6E1FECA /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 154F69A69C27A4D8693B7BB2D3BB1152 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; B6593DA8207ABB3E1214F7D025C2AEB0 /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BFDEAE55F13AF514F755C6AEBAED37A /* FBLPromise+Delay.m */; }; - B67E435AC80EC2BAB981F94F5D607C59 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 673328DBF6C82C9CDA0CA53D26A7C4A0 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6842E62885EBBE6CA0C133734CBD26A /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 699E43E07780DEE6C0C97E2C1F711943 /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B67E435AC80EC2BAB981F94F5D607C59 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = DBEF8150E3FFC9506A7843EDB9AFD1BD /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6842E62885EBBE6CA0C133734CBD26A /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 56053D89CCBFA0BA3CDE1D02E7595E6B /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; B68CCC3524E9472D12E6E84D5D64B33D /* FIRInstallationsStoredAuthToken.m in Sources */ = {isa = PBXBuildFile; fileRef = D0E746D98ECFB576C1CDE133CDE4A748 /* FIRInstallationsStoredAuthToken.m */; }; B6AFF1D2AC43774591A5DEED821AF788 /* ClientResumeStatusCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 015B8C320491CDF6FE6160D9DF5F206A /* ClientResumeStatusCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; B6C5B18E7D63F47D4127BEFAEB0E082E /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = DA41E96E699A7134DBAC6CB3C1D4635A /* FIRVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6E3A26C40D3CE8046F2A4E6F2E526D9 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CA81B64D64DCE78D97331CB4A14076A /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6EA4E205997B8C4DE9F5EE2C46D4FB6 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F24B3959EC928E4010A4555AA52C546F /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6E3A26C40D3CE8046F2A4E6F2E526D9 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 03415F6712E38CEF6B5BA9AC87327B01 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6EA4E205997B8C4DE9F5EE2C46D4FB6 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 86B6EA59C8167D6CAF1A59391D82DA84 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; B70227D69A6C4A9AAC333E9A6BC9B3BF /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A3FC0C9D81433252C2F08F2B3C9CB52 /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; B718BDD197AE1C7D0EDF9A1E4B642CA5 /* tr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 57077BC8832B77EB3280A03E94418B43 /* tr.lproj */; }; B759270B24D2CBE4F50041D28432CE75 /* HazptrObjLinked.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D7A00734ABDED0D84DE85316BAF7397 /* HazptrObjLinked.h */; settings = {ATTRIBUTES = (Project, ); }; }; B767F6175EFBE5741993405BBEBE97D6 /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = 6775920A939C775EF8140BAA7F286927 /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Project, ); }; }; B79379EE30EB5B9FAB3B9E5DDFAF509D /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A01115DDCB89F5DB53C547F949CDE10 /* lossless_enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B7960B2A4F1B3A056186D0BCD8F4EBAD /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 30CC3B2ADA60E450F29AA47F0F9C5626 /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7960B2A4F1B3A056186D0BCD8F4EBAD /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = C73F242C04336D7FF6A7E8E1A751127D /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; B79E683059398347D30F641EB0D6D947 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E28A07190E1AE72714AD7F02C6B71C2 /* FIROptions.m */; }; - B7ACE0423F22C8093B0347B15D5E6DF7 /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D79C1C3353D4D0924BA444AAE425C7A /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7ACE0423F22C8093B0347B15D5E6DF7 /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 750EE3CC561AB7E2DC7055E64BC1C283 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; B7B02CF69AD8090F7EC4BDF6B106340B /* AsyncPipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18174ECBCD33426D3D4DACD46232DB0B /* 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"; }; }; B7B1C326E18E2566E54AA59FFF788C28 /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 6CA68C76334A6FC469D61CAF8A391766 /* vp8_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B7BDE180DE1B36F39AF1EB08FFBC40F9 /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F637BCDB775FCB93C477528433F01104 /* react-native-notifications-dummy.m */; }; - B7DBE33CE276F58E6F233BA4D78F093D /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4B25090CF5A8EE2ECC9FB7F4AA565272 /* BSG_KSCrashSentry_CPPException.mm */; }; - B7DFA107ED277F43F7F2BAC8F7E62403 /* RNFirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = B547E723A978FEAEE283A2BC0B0E35F1 /* RNFirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7BDE180DE1B36F39AF1EB08FFBC40F9 /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0013155BD637465406EC7C9A5EBFD577 /* react-native-notifications-dummy.m */; }; + B7DBE33CE276F58E6F233BA4D78F093D /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = E38BCF23A3F366BF569AA51ED7A07FD0 /* BSG_KSCrashSentry_CPPException.mm */; }; + B7DFA107ED277F43F7F2BAC8F7E62403 /* RNFirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BB894F231018CC975693BDF8F83262E /* RNFirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; B7FD8E55781BD2B09D63E76DCDF4A3A2 /* FlipperDiagnosticsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = AB6FD7FA8A7CF99124B42EAE0348214D /* 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"; }; }; - B803FBAD88A96C3E5446FC5948528C39 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = B2EA33EA5ED3107C712A11D9A91F10B8 /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B80A5602ADDC9557632BB5C6BCB3DB03 /* UMErrorCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 61BCFC87F27E2D92FBE9152AD141F7D1 /* UMErrorCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B803FBAD88A96C3E5446FC5948528C39 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 568D062A0FF6D94B39E569F10DE6AD41 /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B80A5602ADDC9557632BB5C6BCB3DB03 /* UMErrorCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 512B8149A1DDC202F6AE37A0577E9EB2 /* UMErrorCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; B8143F787828257EC3C64CF3782049B8 /* Hazptr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77FE10D1824E65E82C3519974520DF77 /* 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"; }; }; B81828DD93DB85C0683EE36DD5EBE95F /* AsyncSignalHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 87EF947C2BC99F143419A619075D6445 /* AsyncSignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B82032A92F84669EA74AA0D58915F302 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 8945C5CE17048D9A807B3B863A826CAE /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B82032A92F84669EA74AA0D58915F302 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6648E271EB48C91A24CD30B895D7B530 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; B8317134B45F9440FFFEFF835F1613A9 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = FA584A9A692794837A7D5B9895F4B148 /* common_sse2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B833FB9D115B433EC0105072048CB9BF /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8990CA564DA7E586F347724564AF1F7F /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B83F8B847341E98718FA2955E7BD865A /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = BE7EB5E6069674E49DBA684A1ACF3FE2 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B8452766055CC04DBE28676D43F70E27 /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B717635B144BE7E1E113229D729CAC6 /* RCTBaseTextInputShadowView.m */; }; + B833FB9D115B433EC0105072048CB9BF /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 40CC5CEBEF1FD6B260ECFB4E7B4A77EC /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B83F8B847341E98718FA2955E7BD865A /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 081E5EECE46CD1A347C6EF95EB9C8529 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B8452766055CC04DBE28676D43F70E27 /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = DE381473802F29281EA11A762D3463A0 /* RCTBaseTextInputShadowView.m */; }; B8502C80D8E6C9931169155C3D26010A /* ResumeIdentificationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 07EF8F24AB991394A0B0F3F56E87D22E /* ResumeIdentificationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; B85C42718BEFCF4BA75650A4251641CF /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = A6A364F1EAA61FBF4BCF095078841037 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; B860E187C366E80D3D751472B347400F /* FlipperKitReactPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AA080C7BD9045A026E2CCFBF9120E84 /* 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"; }; }; B89AF5E7D20106708B8A403401C035E7 /* SysSyscall.h in Headers */ = {isa = PBXBuildFile; fileRef = 781386408A834FB314B5B80336788C98 /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B89E3A3447915DDB4DFD9C50DCE2D762 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 61BA10489CCC88CA14A331878E987F36 /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B89E3A3447915DDB4DFD9C50DCE2D762 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2151AAB814BA4694A87F13FCB2CE314C /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; B8CDBCB2063AD7729F98BB1F42114206 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 28449F76B89032B07C051A3E0089EC0B /* UIImage+Transform.m */; }; B8DFD92B4164576447420BA5B4E9657E /* GDTCORRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = D0015689AC1ACED5608C4686630747EC /* GDTCORRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; B91776339604D97A896D26A18DD95CCC /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = 50E24753E2BF7235A9180BA697DF606A /* SDWebImageError.m */; }; B91E70B671250005FA74AD2BC312CA08 /* libwebp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CF92919B59F5604713F163B30ACF5A7F /* libwebp-dummy.m */; }; B94722DA2E0A483D06286C0BDFE937B6 /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BEE7C2366CEEFD94681B02B93483CFF /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B948BB6AB8F03C5EA60D9BCA3F8ADC54 /* RCTImagePlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6CF7FFD0BAAAEFB8FC6EDB218630B39A /* 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"; }; }; - B9A14EB621D0FB90A99FFEDBF1C4C5A6 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4074E995EDF098FF2CA2927FCC7D4895 /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9A3BE02909B5E7C23AA24C087C11A9E /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = F3A68A2F358F66B3CD2380B5540FF9FB /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9B73F905DA515472B22E42E9EE1954B /* RCTLinkingPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = E82F2B869C7FD0698FFA7A1F9E5ACFAF /* 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"; }; }; - B9D1154CD997F0702268F81D59B6406C /* RNFirebase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A314309FA2DFA9D8A7995B90C1DD59F8 /* RNFirebase-dummy.m */; }; + B948BB6AB8F03C5EA60D9BCA3F8ADC54 /* RCTImagePlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = D4A7990730C79B33E94B1BD3679B751B /* 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"; }; }; + B9A14EB621D0FB90A99FFEDBF1C4C5A6 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 75D557C23935A8E80A7188A1DCF5E3BE /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9A3BE02909B5E7C23AA24C087C11A9E /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = C9C73D7D00469115D46057DBC13A85F7 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9B73F905DA515472B22E42E9EE1954B /* RCTLinkingPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = DBA6C305890D75EAECC073B075616CC6 /* 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"; }; }; + B9D1154CD997F0702268F81D59B6406C /* RNFirebase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C618878BFD5F90425C57D631F36882B /* RNFirebase-dummy.m */; }; B9D989270BF39444739B9D53F28332CB /* cost_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 4B1B31D2AC8605E7CA304254F6F815DE /* cost_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B9E9A4C8414CC010B04907511592478C /* RNFirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = FF2E3B6071E642C960A305BD24112969 /* RNFirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9EDCDF3FAC046611DB90A9950FC0F52 /* RNFirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = DD2C91842F8AA4B0DF95934449D72C7B /* RNFirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9E9A4C8414CC010B04907511592478C /* RNFirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 42B0FA4D0C81A84BABD6BF79E80D54FD /* RNFirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9EDCDF3FAC046611DB90A9950FC0F52 /* RNFirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 456B93874F92763985E86C307582D5DE /* RNFirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; B9F471E76219FEF567A697FCAC6988A6 /* RecordIO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1EF928F0135955C6628E8137331522C3 /* 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"; }; }; - B9FB25A6662D91DE4E9F30FD760ECA2B /* RCTUtilsUIOverride.h in Headers */ = {isa = PBXBuildFile; fileRef = AAF4F7E292D175AF8DA769D4055866E0 /* RCTUtilsUIOverride.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA2CD348EC967C9A230CEBAC06ADEB71 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B2ED3D0AF41433010628FE726856577 /* UIResponder+FirstResponder.m */; }; + B9FB25A6662D91DE4E9F30FD760ECA2B /* RCTUtilsUIOverride.h in Headers */ = {isa = PBXBuildFile; fileRef = 811549BA5884DCB69CBD81DD7841462B /* RCTUtilsUIOverride.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA2CD348EC967C9A230CEBAC06ADEB71 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = 74B387B68F9239F26E4E1D3379EC1140 /* UIResponder+FirstResponder.m */; }; BA320783C2C9624896E06C34E9BF688F /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 2537A03F74E26F248FC9304254BCA826 /* vp8i_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA5E0CA71A36D82490FA1A0B3127E89D /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BF9A72ED1750E91CA64088BD18ED276 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA884E615C31E28E4084698CB73A0AA8 /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = 31CA4A4746C7B9C11F6F7B92681A9B88 /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA8AF0CCF12B99D7536C662611ADB1FD /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = D887C9588B3363B0692499FB3E771513 /* GDTCCTUploader.m */; }; BA942A5A358D6A3A01F66E7C949FD930 /* vi.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 17B16E05C4A91EA5C4A45ED944F1411A /* vi.lproj */; }; BA997D0A220566AB86D6FF4BDE3FA2C0 /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 942C04CD3160AE3DFED89E1A2E902892 /* SDImageCachesManagerOperation.m */; }; - BAAF1FE5B7910872AF80471430B0D4FD /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7475D055991525FC0CAB8F685BEA149D /* RNReanimated-dummy.m */; }; + BAAF1FE5B7910872AF80471430B0D4FD /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 34F0B89001764776FAF3677B7137DC39 /* RNReanimated-dummy.m */; }; BAB34DC9AE18D51771AD2EFF9AE9E82E /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 812075657E590B5CDDA368DC0ABDE940 /* 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"; }; }; - BAB4242AB0145F5AF6043535E7E14C07 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = EA6EEB4FF4F44556520BEB0B65A85A20 /* RCTProfileTrampoline-arm64.S */; }; - BB0753E38ECF0A3D20B3D17FDA002525 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = EBC7C02BEC41F548E27C8153F50B6614 /* RCTBaseTextShadowView.m */; }; + BAB4242AB0145F5AF6043535E7E14C07 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = 9F805C09F19ACC63F9DA6181B3059F82 /* RCTProfileTrampoline-arm64.S */; }; + BB0753E38ECF0A3D20B3D17FDA002525 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = B01F3DAB08F37744FF6F8C05B00B9C18 /* RCTBaseTextShadowView.m */; }; BB0E48F804C4577F614C7C4144E7757A /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B606C3DDAF2EFB94FD81B5B70B0A198 /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB6E05C3DE3BA57A47108822797DD27D /* RCTImageLoaderWithAttributionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = A683A59BA86B8C72B3D3F79DB23C5458 /* RCTImageLoaderWithAttributionProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB6E05C3DE3BA57A47108822797DD27D /* RCTImageLoaderWithAttributionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = A59E89BC17764FD67238AFCB3714E538 /* RCTImageLoaderWithAttributionProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; BB72C52113C41EE2194D3A3EA913DC69 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = F1912D79F479F748F47918A3423B88C0 /* webpi_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB8D91196242AFE19E79B921D659EE74 /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 49A7C2C40FE569C64E713C2B9744B650 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB8D91196242AFE19E79B921D659EE74 /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FA133FF443545FD679E492E568820B6 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; BB91AF0B1144084593E5017E91C3A237 /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = FAA104852192F9F2689C07B555B3293D /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; BBAB76A21C95354A81832F9C5F856D09 /* SKResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = A4A6152E441BA892D3155E0A5B3C5736 /* 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"; }; }; BBB4E8EEF50C70033F406A49F2040ED3 /* SysMman.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C1460D9084CFBCE271CE70F15C7785F /* 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"; }; }; @@ -2367,46 +2377,46 @@ BBC83955233A742A5693B1C7A40E2E1D /* RequestResponseResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBA203410526E873FD2BA6EA31CAC0CF /* 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"; }; }; BBEA2040AB1AB4C04EC266B5965CEA76 /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 528FBF3A38050FAB0D15ACE839634B1B /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BBEF57329313254ED8F52D89464F39C6 /* FlipperStep.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7475678D43B3FABE4C3E6E70042FA89A /* 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"; }; }; - BC09034C66F7BDEB05FC6DF3A6D2B7D2 /* CallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 817EA3D9E4075E22C8E1D7E5FB63F5D9 /* CallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC09034C66F7BDEB05FC6DF3A6D2B7D2 /* CallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 4921921C7C64404DD7FF84797378B2BD /* CallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; BC254260B8604B20837E6C808B72014D /* TOCropScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D44D139FA47494C9F2C3FD27FC9C14F /* TOCropScrollView.m */; }; BC383056F1DB2F7478B30CCF6FFE5F60 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = F13C587249E9D10A20EDB69E61DBF834 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC41EDFC95D158F607DE441FBD7205D3 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = F92544970C948867510C6AFE22273CF6 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BC479BD3F6C3BF2BD1FBC876857618B5 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 44D591BAAD65EC439B6F1A7304E89BD4 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC41EDFC95D158F607DE441FBD7205D3 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 92CD58808BEC1B77743DB330D006FE17 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BC479BD3F6C3BF2BD1FBC876857618B5 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 491AED04763753D48BB1E360F814442C /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BC5B61B37C8BCD8467E30F6D9F15783C /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = B6B49746D7B4C1049D33AFCA620292EF /* SDImageCacheDefine.m */; }; BC618200543E0DFEF8921BCFBC97D579 /* AtomicNotification-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A6F20E6C826970B299408713259A5FAB /* AtomicNotification-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BC726EC62C981E8283E5D854F08EE647 /* SingletonRelaxedCounter.h in Headers */ = {isa = PBXBuildFile; fileRef = 67BC50D5F96759CF85CF5669EF447234 /* SingletonRelaxedCounter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC96F7ECB77D069E3F7256A1284D7D22 /* RCTTiming.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5FDC1CE06F0458615CD0B74AB05F0BA7 /* 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"; }; }; - BCC6BAAAC00E3426AC2DF5559231EAF6 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E231F1F7210F4CD348D5E9F2D0104EE1 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC96F7ECB77D069E3F7256A1284D7D22 /* RCTTiming.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8703D2055FA62C7E75DC2CEC5F8A8D2A /* 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"; }; }; + BCC6BAAAC00E3426AC2DF5559231EAF6 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A40454307D55504010728E2F84CC410A /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; BCD873A143E0D34BEC00AA959AD55659 /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ADC07E6F8AB8508C61B7727E03C3273 /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BCDD72F20390EC6D23080FC948D4EC3B /* HazptrThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 41286BF43643EC0D22E6495D126A94B9 /* HazptrThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCE287AB23E636C9B4A9CA60EB400D52 /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BAD38D2AD9D27FD4554AF3D66C9A9991 /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCE287AB23E636C9B4A9CA60EB400D52 /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 077E104C263332DB4F4F7BD9DA062B78 /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD0D4A0B32634B1D13D9E57BD4D4DAD8 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AF7BDD7B589CE7CD8BC311B01574069 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD1D9E289B85888E5A0DA85BFDB7A306 /* common_sse41.h in Headers */ = {isa = PBXBuildFile; fileRef = EEE3248F0F7589500C47384F04CAE609 /* common_sse41.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD30D501178A064D19E7DB0BDEED207C /* GDTCORTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = C3A93A7C5F6A0F2C1EEDC9EDE3C12E12 /* GDTCORTransformer.m */; }; - BDADC8329AD00834CF153FD2DB953E04 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7950D5F8D42922169511C70BC8A76A9E /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BDADC8329AD00834CF153FD2DB953E04 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 08ABEBB9725655CC6ED26B3DEDB4CA00 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; BDC1917353224F29E170FF5FFB75F6BE /* ManualExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C22259A206D11BC58FAD50035C4E804 /* 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"; }; }; BDD8E02DC0DE315460C8452A92E64F0C /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 975543F4DF1A3254A9BE804D71DF9D25 /* 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"; }; }; BDE17974FF49ED73F08298CDC7E01D5F /* FlipperResponderImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = DCF9C0F901ECE09B6D592C8AC869357F /* FlipperResponderImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BDFABD15A8D4DB4905425E02902B21C3 /* AtomicNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 063EE953E780320CB010F1F0C42E48E1 /* AtomicNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE13FFBC3ECD1D252D25888F6B0FF93A /* SKTapListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 3494E2DD06E10CB2B5DAEE094A77E219 /* SKTapListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE40EDBCF4471381FF28E7701C8FEA69 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 85AC1326A0F55B702F31FCB4E29C0D18 /* bit_reader_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - BE495B8B88591823B448C899FCDC22A3 /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC78EF6E015F7F1CCDCF3B310B0F2FDE /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BE495B8B88591823B448C899FCDC22A3 /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 449186A1FD562F7DCB008783E13C8BCE /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BE6F8D3062484095226992E20BB339DA /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 668B5E80E08960E464EB3C163D8D19AC /* 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"; }; }; BE7C61DDD06679BA1298ABA9CF18CDA5 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AD306A52450FF701DE02555B3745972 /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; BEA7DD3B32ECCC8891AF8E6EB931B571 /* ParkingLot.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E01C0EB45DFE73C38812AAD0C34E7E7 /* ParkingLot.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEAE3668C99FF6B70535D14ADBFC1971 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 71F8C7D1FCE51B747B4284DFC5A37EC2 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEAE3668C99FF6B70535D14ADBFC1971 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 209CA054AFC6D7B52A3633988433EACE /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; BEB8A46866B0036585164D48371F67F3 /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = EEB506DC9174101E862BE53F349EEE1B /* rescaler_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; BEED64FF0DAE73F86741D0DF21B4CBD6 /* RSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C52B6578B5E021E9BF2AFFF4F6FEF84 /* 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"; }; }; BF08BC85875ECC5F80F249620BA6FF98 /* GDTCORReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A469974EB144681D75EE677799BD632 /* GDTCORReachability.m */; }; BF4FDCC4F1BC4069129114C5CC7C0E3D /* ReadMostlySharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 55057364D1B31884FD509434B07AFC70 /* ReadMostlySharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF600203ED20170B32D07A27FE9D63D5 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 8432996E1A83786BF3950A9216943A28 /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF600203ED20170B32D07A27FE9D63D5 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 9652CB5F5744FD7E236307D575339A15 /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF649BCAE7F16742B4A6781A42372DFC /* LifoSem.h in Headers */ = {isa = PBXBuildFile; fileRef = 88AE1DDDCF2704E074DA97D4881CCB17 /* LifoSem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF8DD81AF5CA47EDA91EECC241516063 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 06BFAAEC4C9DCE8E0E1100EAE7E78F1D /* BSG_KSCrashType.c */; }; - BFA315F1B904E334EA552B6D6A6848F8 /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C6D05C339CAFF93449D9207342890752 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF8DD81AF5CA47EDA91EECC241516063 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 09AEF2D1F4A3A89E05BC42A67C9A9078 /* BSG_KSCrashType.c */; }; + BFA315F1B904E334EA552B6D6A6848F8 /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CB4578475007A74E070102107138CF00 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; BFCC85691AED43515CACDCDB566E10EE /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FC616C8356C77BB569FB79454D32E2D /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFD25A0DCB8C16E01937EF26DBA8E7B1 /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = 8511196A00D9F17F33EECD75EE612D1D /* ARTBrush.m */; }; - BFDBEDA2F9345FED6BF31A72192A415E /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EC5D37BC5F9383C4051C5CC05D3BB2D7 /* REATransformNode.m */; }; - C0212109D1A2A2C10AAC8340C845DC73 /* RCTI18nManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 450AFEEF0AA1876A3F9BF8D66DF22A12 /* 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"; }; }; + BFD25A0DCB8C16E01937EF26DBA8E7B1 /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = BB2D3C3460F8F63518DD4E289F7D0265 /* ARTBrush.m */; }; + BFDBEDA2F9345FED6BF31A72192A415E /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B0EB0C1455E1309931489C3C4346DC9 /* REATransformNode.m */; }; + C0212109D1A2A2C10AAC8340C845DC73 /* RCTI18nManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 675B2C2AFE90C3AE02FB47A8366ECCD7 /* 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"; }; }; C057DE004A17A3F8D3B35D884C28C883 /* DynamicBoundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = D6900D86A4145822B97D5B8BE8BC3265 /* DynamicBoundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; C06443B16AB8E3BFD89427A2B4B49DEB /* SKHiddenWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 249E431ECB7062A376A77BF1293AE447 /* SKHiddenWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; C07E5C729C5CDBA463F9B3244CB7557F /* ParallelMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BCE56F98F0FD3F694163684BF304F9A /* ParallelMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2414,233 +2424,234 @@ C0A2023B19676FAABBBA6B2BC4D9F8F5 /* FrameTransportImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 631395FF074A61F59CD06E7617BBDB84 /* 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"; }; }; C0A325EF483D590E330CAE0754811F0E /* yuv_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = D950CA442FCE71D20BAC91A8491BF8BF /* yuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; C0A764E2A7162F96CDC19C3FBB3941BA /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 97D5B3A87EDE5E5EE3B834F94B26B292 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0ACB39A2A62B6BE2B02F8A7AB97A14F /* RNFirebaseLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = C9EED251D0562B9AC03A005055380663 /* RNFirebaseLinks.m */; }; + C0ACB39A2A62B6BE2B02F8A7AB97A14F /* RNFirebaseLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = BB759F07AA4F96184B483DA4D5D1044A /* RNFirebaseLinks.m */; }; C0E488789FEA375C81FE2F74F4AA9D58 /* EventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF0C368240181DC19A047556A75A06A1 /* 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"; }; }; - C0FCDF752209039DE050D739046CA841 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = FD71ADB87D8940445C6E93C982C110DC /* 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"; }; }; + C0FCDF752209039DE050D739046CA841 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = 87BC5392A15D33DF52E1EA10F18A8449 /* 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"; }; }; C0FEA850E34B4915EAAE6772C2C0221B /* TOCropViewController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C091FB67164F621B15BB83DF4194BE7 /* TOCropViewController-dummy.m */; }; - C10FBABE08506DAFC414E706F80196A9 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 40E7F7110995D0200FB9ADD981B99926 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C10FBABE08506DAFC414E706F80196A9 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 70B3C3AE5C2CDC52BD74F7C527EF126E /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; C11DD2F2A0EC13794D0F91C78BD33660 /* BasicTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = B49412CDE6DE2E211035FF09F182783B /* BasicTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C13607802A82E097C94614A6F16A33AE /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D92AB73FA85C2EFD5BAF51DDF0BA5466 /* RNVectorIcons-dummy.m */; }; - C13EFBDE5744BB83A5A6033903378641 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2EBB735830CD6F04A874EE7F92E5E17D /* InspectorInterfaces.cpp */; }; - C1527E631CCA0A9E697CE853758205F9 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 78E079F329E2EA05ADB7D20605DC4251 /* RNPanHandler.m */; }; - C17FB5AEA62C5636EF99FC0311BF2FB3 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = A36A728598495F81A65543D130D1002D /* BSG_KSCrashSentry_NSException.m */; }; - C19100CFF6BD15D5AFE3EC100C926ADF /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 57C1D0033FCD6C917A9C222F068771BA /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C13607802A82E097C94614A6F16A33AE /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6473A1A5035B1F43BB549E01BEF8EB93 /* RNVectorIcons-dummy.m */; }; + C13EFBDE5744BB83A5A6033903378641 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32D8F496A70588E5E81E35795E7BD3EB /* InspectorInterfaces.cpp */; }; + C1527E631CCA0A9E697CE853758205F9 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 92B4938E17DE6E0F57D621D9A0B535B6 /* RNPanHandler.m */; }; + C17FB5AEA62C5636EF99FC0311BF2FB3 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = B09BEB8BF8B9A86ECDA18517AA7D8677 /* BSG_KSCrashSentry_NSException.m */; }; + C19100CFF6BD15D5AFE3EC100C926ADF /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = A97B54AF94D69E660EA7DC1739BA3584 /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; C1E765069FBFC5049BDD3048CF48C443 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DEA16C84145A5C716890FD5A24439FB /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; C2210BD937C3EFB00A98950CDF17E200 /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DD62CAAA7E16DC81FADB221C0579481 /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; C28013B0E6EE2B2312C28F6C894195C2 /* SmallLocks.h in Headers */ = {isa = PBXBuildFile; fileRef = E23A8B7A5F1AACF75628382B60FDC727 /* SmallLocks.h */; settings = {ATTRIBUTES = (Project, ); }; }; C280FBA6CB4B66759E107B5F44C4873B /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 56722B3CD28973C29746EFC85B194276 /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C298975604349C2BB0E1BA4F33DC37C9 /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 67AB383D600CBB69E2C06164AB420E46 /* 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"; }; }; - C29D2737771EAE9744B4FA2AF8CD3927 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C6D08ED23005FE63E709D7D5FDFBF69 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C298975604349C2BB0E1BA4F33DC37C9 /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = F413EB8549ECEB611157781FBA189FF5 /* 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"; }; }; + C29D2737771EAE9744B4FA2AF8CD3927 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = F5DBA3F2E8CDCBEF00EBF286758F73E4 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; C2A20A2FC7C090819B293CF1B8AE1C79 /* TimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5092168409DB8012F9B2825897B078FD /* TimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2C92CE1A68EF439A391D8CB91F831AC /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F8CE013B9C53E37CCC0233A7D43F027B /* RCTRawTextViewManager.m */; }; - C2CD982B19A3149D14C0DD99C903BA27 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 66A809627B181D7C7F939337DBF8CB8E /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2C92CE1A68EF439A391D8CB91F831AC /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C99C09197F47A717D2D6F03FDACA5EA /* RCTRawTextViewManager.m */; }; + C2CD982B19A3149D14C0DD99C903BA27 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 70BA231528C44BD9AB5D994D37520985 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C2D28B4B3FBFC6E8C78FF52F978104E4 /* AsyncSocketBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A0DAB5825027912427BBC8195D3F162 /* AsyncSocketBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2E7DC0C436E0EAA9FAF9517CAF48A97 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EFF9011FA81CBCFE129F5940006063E /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C2E7DC0C436E0EAA9FAF9517CAF48A97 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = E613C10854AA0E97A10A1F81C1CE65B1 /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C3349FD62950CE68B534E08E98989248 /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = 46CACAFDC7683A8955912C018E916497 /* filters.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; C35C08137C73A031B842E342644BA18C /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = CEB8AEED78C1A8EDC8CE62AB73EBFCB9 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; C375C167B744F2795615999A24BFDCF4 /* SingletonStackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CAA843AAD8263F323CF147222124FAEE /* 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"; }; }; C39D561E85EFC337D50ED754F7246617 /* StreamFragmentAccumulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FFD4D97C2F3F13F89A50B8B6C6E52B07 /* 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"; }; }; - C3ACE4D0C00034561584FEFEAA6F9016 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 91BAF91C77005E5A5BF8EB37B17CB1CC /* RNPushKitEventListener.m */; }; - C3AF87D9D12C1AEC2EE36F4AAFCD8A97 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E68C5478055EF90F971AFD8DA96BB21 /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3ACE4D0C00034561584FEFEAA6F9016 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EDE8B04F6E09D2755963245B947C89B /* RNPushKitEventListener.m */; }; + C3AF87D9D12C1AEC2EE36F4AAFCD8A97 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A53DBE7B1126235D0DFB30AD452911FA /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; C3BC1E0AA405968BB6EF6C6CFC4C639A /* AtomicSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 1211C74ED88052FE47183F43521FDB6B /* AtomicSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3D075B877A7097CA3E91A1A67E36A39 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A57CC8F5AFFF36AD5FC3BFF71CA40F1 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3D46DB31D5CA3166F7DB6B8CD502DBE /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A4C36C1AC8ECB65B803B2BC396193E8 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3DF2BDF751ACE6F70AEA46E964F80CC /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = B8B23E2DCFF2CEDF5DA4F6D1A9A791B0 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C3D075B877A7097CA3E91A1A67E36A39 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 029C1BABC6D0EB3908C82817D94E6D87 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3D46DB31D5CA3166F7DB6B8CD502DBE /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = AFD37B29F35DDD37893B7883D8662A56 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3DF2BDF751ACE6F70AEA46E964F80CC /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B6B94978324A1717A292F62AC242F43 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C3E036FEC576797A6BFFFD89A6BDFCFC /* Fixture.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B9A005C14FA62387D3BB415960382A /* Fixture.h */; settings = {ATTRIBUTES = (Project, ); }; }; C3E14453F764B48F93D114B6F06DB8F8 /* SocketAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B7B73865CCB3765817B24DF3D68838F /* SocketAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4121604E1F1CE075F2594D362577B7E /* SKRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A3A2CDB7464AA942E65D7943827F970 /* SKRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4190620ED58E5958E162C56DF3BC389 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F64962F0D25E0AA9ABB2F4300E47F623 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4190620ED58E5958E162C56DF3BC389 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 85D7EA372D091B41050D682B16FBD362 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4307E73DDD599B8D73C2F25D0D8C3B3 /* RSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7CD0C39047A1B7B83CFC0981F4638A13 /* 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"; }; }; C448A7F24667926FFE2CA75A251C6249 /* Log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75C2E673BC4C602DC4840634FAA6E617 /* 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"; }; }; C448B82E54D115C72AB59F4F6BE72C16 /* WaitOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 11C02616B5C0A1629DE792B60F8EE355 /* WaitOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4700FC8D4591A4BEF06FBDB6F9D6812 /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = 857582D8A41ACD94446254C89ED2C945 /* BSG_KSMach_x86_32.c */; }; + C4700FC8D4591A4BEF06FBDB6F9D6812 /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E76B6BB36B2A3C42DDF3D7B633F5976 /* BSG_KSMach_x86_32.c */; }; C470700CB17359170121D3848FE063BC /* Benchmarks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 757AC54CDF7539E8394457D47402CCE9 /* 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"; }; }; - C47A8BDB0918FCB122CB5FAF28A4D5AD /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = C9B73CA9D99311A9DA5B2131CBE847A2 /* 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"; }; }; - C49DDDA4E8518BFB2BDE88FDE0C8A5AC /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 61E745892A7448F89C062DEE4419807D /* React-RCTAnimation-dummy.m */; }; + C47A8BDB0918FCB122CB5FAF28A4D5AD /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 24B6F7ED44E5EE98C4B53B63797D9E0D /* 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"; }; }; + C49DDDA4E8518BFB2BDE88FDE0C8A5AC /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 09E6F1B93BCEDB39360721493C91D27F /* React-RCTAnimation-dummy.m */; }; C4A377EE7504F7B0BEA766EFD9885DD8 /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = 57A2682F160B9C465AE15810B9B19680 /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4C0690D0CC7D0EFC458CE9E1C67B9A2 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C380B27939E20F7DE2BD841434C5E74 /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4C0690D0CC7D0EFC458CE9E1C67B9A2 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DCFC81374FB80B7085A8B149771FECD /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4CF1A9274B26F538346FA24265C245B /* ExceptionWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4713EAEA9D6383DD7339BE8807484191 /* 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"; }; }; C4ECEC9864CEFBADAB76ACF75704CFF3 /* FlipperConnectionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = F96D58AFECF46661AD69F7873285F7D6 /* FlipperConnectionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; C51C3D70CCB9260030FA831AF35788CC /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = B591A431C729998F00CA050097C3BFE9 /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; C52EA3FB913ADE72343ED96051402BD4 /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 95FEEE73FE294BCF172DF9D75458CD19 /* SDWebImage-dummy.m */; }; - C53E701EF1D59823F42034EEDB90ED79 /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 12458DC7D4DC95957F2754C8A475FC35 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C53E701EF1D59823F42034EEDB90ED79 /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 612968A96E8A41623D518BAAAAC894B7 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; C54D5160B45A0C5EEF25E42C9361598B /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F2CDF4230B4B34095A302F4F2B0B66A0 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5754429324490E0B719A268D20FDD4F /* Tearable.h in Headers */ = {isa = PBXBuildFile; fileRef = 618261D3DCB248A7327BF46578D22BCD /* Tearable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C57BE850AD61F126370C11804774D465 /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C782DEE90C5CE37713B612FA60063C7 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C581E04803E07B777CFAB982B06F6515 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = BD0667D541A8082EF88CA14960BAF74A /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C57BE850AD61F126370C11804774D465 /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = E3FD50FC8643C8B1FDABAEB11FCC55B5 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C581E04803E07B777CFAB982B06F6515 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C5289DEFC56ED39BD71D8EC5B4C8A94 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; C589A35739F4BFB30A730B9898674387 /* ScheduledSingleSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 704B64BA0F1BDDF94DFCB7B5179EB319 /* 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"; }; }; C594A31CA074A02AC4A482543C626257 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = DD501F169A7952CB4CC3B224447AB103 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5A63C751653FE433E1E8DE64CC61E39 /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = CC769B15377863F8BF8D0D9BC25A307D /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C5DD3BF95D9FB28F7148A8EECE77A93C /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D1701087B20DC5B9A8EB0325671F231 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5A63C751653FE433E1E8DE64CC61E39 /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D124C870BD1AD4EF03CD7AC69FA610F /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C5DD3BF95D9FB28F7148A8EECE77A93C /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 4152E8E084F479AC464AB66097CCDDFD /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; C61606AB4B09AD3974A7A65C762E5F1C /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B4B25C480CA6B76598CB40CEAF97417 /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C67D0F5DEB6F068A8453FA1A2921CE32 /* RCTTVNavigationEventEmitter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8EA23C3BB3D64F8EB47A6FE06269D2B4 /* RCTTVNavigationEventEmitter.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C67D0F5DEB6F068A8453FA1A2921CE32 /* RCTTVNavigationEventEmitter.mm in Sources */ = {isa = PBXBuildFile; fileRef = A844ABFB86195E29719BE7A3A70722D8 /* RCTTVNavigationEventEmitter.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; C67E74CD75F4E6B9D8ADDD965B00F75F /* Unistd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 093E9DA3FA192A5297614C0C463DBC19 /* 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"; }; }; - C680AAB543D4CFDB99EF76CED42462E4 /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 26508A36D5838FDD6CC1B38CF7EAEACB /* ObservingInputAccessoryView.m */; }; - C6896F42011DE55D6973292599D4A3E4 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 712049F52355C5FECA8281099BB75DF3 /* BugsnagReactNative.m */; }; + C680AAB543D4CFDB99EF76CED42462E4 /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = A93A9E7A65732180621ADEFAE3CDD08A /* ObservingInputAccessoryView.m */; }; + C6896F42011DE55D6973292599D4A3E4 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 4669A53C93BC1B653C57B87A2DD1CFFA /* BugsnagReactNative.m */; }; C69D82AAFB23D14F38C990FDD557510B /* FlipperKitLayoutPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 32D55BCC259F3B2CF7742F3661A16058 /* FlipperKitLayoutPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6A936FCFCA729233A8763BEE3CA052B /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AB1EBB47E53C76A8E3693A4D910C045 /* RNNotifications.m */; }; + C6A936FCFCA729233A8763BEE3CA052B /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 98F4C41C33A646AB98C7D298B382D8D2 /* RNNotifications.m */; }; C6B1A2F2FB22FD061CBDEBC73699BF85 /* Retrying.h in Headers */ = {isa = PBXBuildFile; fileRef = E11431493CDFEC7F972E8599788F793D /* Retrying.h */; settings = {ATTRIBUTES = (Project, ); }; }; C6CC8CC7678B10107D83F3250F05CA3E /* RSocketErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 96EE6A9F812A3C115B660CA48025BE38 /* RSocketErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; C6E3FFB8A72569EFE2929C9FCA7D9009 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E31ED6E905AFD8BECDCF60354335DC24 /* 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"; }; }; - C6E8A155E4A808F940A640CA96DCFD89 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FA441F05395DC267F32E07B4232124CC /* React-RCTNetwork-dummy.m */; }; - C6F23BF09870212DD14AB8BB5BE54720 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = F68B4A2346A20F499A15E6541DB0515D /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6F9B4904ABB416A99C913DDF6EC210A /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = B757E08DABF9ED2D5DA2332EE709A28E /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C6E8A155E4A808F940A640CA96DCFD89 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 276BFC8506A1910A5AD973FEAEFB2BD6 /* React-RCTNetwork-dummy.m */; }; + C6F23BF09870212DD14AB8BB5BE54720 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = 7034C52AF5A115A04C42690DE056D075 /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6F9B4904ABB416A99C913DDF6EC210A /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 35808B26E361D66266FCEDC142699F57 /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C6FD6C0DC9F80A90245FCF4CA62032FF /* FrameHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C825ED21B535E55F3D0EEE80B078549 /* FrameHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6FF1B92FDD6FFE0C9F1C50A0A7C95D8 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 4D1CF3BFFC23DE95FBCAF929A29908F2 /* RCTProfileTrampoline-arm.S */; }; + C6FF1B92FDD6FFE0C9F1C50A0A7C95D8 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 54A3463CC32DA92D00E4D68BA05B415E /* RCTProfileTrampoline-arm.S */; }; C705373FEB64A9758E0642ADACF65A94 /* PriorityLifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = E020A900A1ACF98213A0161DC618761B /* PriorityLifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; C716E94E1FC3FD317F9317D4B823F47B /* SKViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 149A84F1B702EB46F6EC1A6325AB9C43 /* SKViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; C722F120971D6AAD6A8DFC845041263A /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 664A1E1DEBA57083FD1997F493C51AEB /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; C72CC6BD3565CD3EC264AF9A1ACA561A /* Flipper-DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FC532428432E804195A4FCFA849F055A /* Flipper-DoubleConversion-dummy.m */; }; - C74CEEC16CE658ED09054C50F88A9BFA /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C91DD0B19AEFAFA4B4D75FB0236620A /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C74D336962240FCC776B8DC81312E56D /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2D90B987D7A9509CD96F9A78E36416F3 /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C79C1C099A4E3D41A76FCFCB94D45A0A /* MessageQueueThreadCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = B0396BECE7B46A50278AC9710C82935D /* MessageQueueThreadCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C74CEEC16CE658ED09054C50F88A9BFA /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = F3367CCC04776A1175C5A45EFB6529C8 /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C74D336962240FCC776B8DC81312E56D /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = BF7626FC6716B8FFD496BE502D49929E /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C79C1C099A4E3D41A76FCFCB94D45A0A /* MessageQueueThreadCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F5705092A7E5EC01EFB09386E8FAEEF /* MessageQueueThreadCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7A173E1725C1373814BB51FE821C9FC /* FIRInstallationsItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DC15B5BDDC4879CFF2CD5A65DAF5B70 /* FIRInstallationsItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7A3E57940443B5D7E81822829D93FD7 /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C5F962BBBE94A973F8814B8639FDB87 /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7A3E57940443B5D7E81822829D93FD7 /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 884E3962C61598FE083992ECDA7986DF /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7A9C914D1147D6A5DD39398DF218798 /* ConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 8331554D3A413E7FCEE06A54CBD9353B /* ConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7AC334C71CD87B757084ED03CABC794 /* SequencedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C618383C9180ABFE3C78D4CD29ECA29B /* SequencedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7B54C967318F61468B5526684FC207A /* RNCMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3438A92E0705A029699AE3D344304330 /* RNCMaskedViewManager.m */; }; + C7B54C967318F61468B5526684FC207A /* RNCMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 16820BBC6885750171296D2BFF8E857A /* RNCMaskedViewManager.m */; }; C7EBA3555289B8BBEDD910BDB3C7FCC5 /* SSLSessionImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C98A071646EAE29F19D01679B12360B /* 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"; }; }; - C7F5BB6C7FCAD904664AE2800AA4713C /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = C2E74A5FA6A9D9512B8F7F9511B777E3 /* BugsnagNotifier.m */; }; + C7F5BB6C7FCAD904664AE2800AA4713C /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B16BF17465FB62E0B3AEEDF1623DC8C /* BugsnagNotifier.m */; }; C805F6088C0BA02E7153F45BB0997ABA /* Flipper-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 36D65CCC06124AE710B6760C10754CDA /* Flipper-Folly-dummy.m */; }; C86859572C69BC64FFBD0CDE09D902BF /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D28BC83B2BD12060727669AC9861AFF /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8820AA0E2B0ABE921571E52B40F5A56 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = D53828826E4AC107E693903B244C7418 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8820AA0E2B0ABE921571E52B40F5A56 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 06A065E51F4D81504E316C27A77D26C1 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C88239BAB97F0174A93D4CEBCD773F0F /* EXAppleAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 9882D646B43B77E05AD92A8392005D1F /* EXAppleAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; C8889525AB03223E9DDA3ED5DF1D31AD /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 98BC1CE48D98190B5806B7BEF30C8ED3 /* ja.lproj */; }; C8A1E2B5B461F13C1F45D6B15FFD6DE8 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 149229419C1D7A7AE8C9644705ECAD82 /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8ADB8A15F701A88C476DD0A3D66386E /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 80836B25B6B98EE8A8695874D5CFC00D /* zh-Hans.lproj */; }; + C8ADB8A15F701A88C476DD0A3D66386E /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 306C50F833A0809C36C0DD5B74E014D1 /* zh-Hans.lproj */; }; C8DC7F316AA448EFF2750D2E38A093BD /* IOBuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6A1D97AFF083766F7924AE8E0EFCE04E /* 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"; }; }; - C90AFF718E45E2616D23519AC26AD09A /* UMAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = A7121AC45158A096B75EF8997C6BD83E /* UMAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C90AFF718E45E2616D23519AC26AD09A /* UMAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FFF96ABF69D0252C424846E63667455 /* UMAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; C935EA88458F6D63A29BBB247BC8EE2A /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E5138C96BF9E64D500B447348CB329D /* UIImage+ForceDecode.m */; }; - C940D03C9052AA2516156A393AFB5D41 /* RNFirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 326BE608109CD737AE71E4DCBAD13050 /* RNFirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C94909826EB31FE3C9016B6E13C2FCF6 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0598A05C3FA7953C8D0C113CD4A573D3 /* UMViewManagerAdapter.m */; }; + C940D03C9052AA2516156A393AFB5D41 /* RNFirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = DCE394A0E0B69B37E3C5223460D02999 /* RNFirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C94909826EB31FE3C9016B6E13C2FCF6 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 42F5A0B87ADC713878A1F9951DA416B4 /* UMViewManagerAdapter.m */; }; C996524E284ABF18068EFC4E43751D3D /* FlipperKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EDD90116CC8A889E97D909D6A37CE4C1 /* FlipperKit-dummy.m */; }; - C9EDCC5CE69F87DCB8DC82E1C7455285 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 11B1B50E2419A2F77B4F76E677288C86 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C9EF8A6C951E50AD3B3D88D47A9D569B /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CB13247273DA1EDC15E72E4B74C2E1C /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9EDCC5CE69F87DCB8DC82E1C7455285 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 326D36A3C74DC68345558AC3A851ADC9 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C9EF8A6C951E50AD3B3D88D47A9D569B /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FE19B7DAAB2672D88B1F5E74DE62B517 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA1B639183072FD3D497C782D81793C6 /* Subscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 418B8D4F6330C0269AF6A1223E9EC36A /* Subscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA28EB9031E5E5659B2CA1F6BF10E4A2 /* RNFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = 91BADEE03DFF5F7C3B83BB655A83BCD3 /* RNFirebase.m */; }; - CA339FABE24CC2DB0B928D4BD89E2C1F /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = ED28CEE4903470D9B88CE566F49DD8AA /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA346BB90844C8A182A003AD3F622192 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 82C89CDE844236EA18A85AC998F20C01 /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CA28EB9031E5E5659B2CA1F6BF10E4A2 /* RNFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D32B0B459AAE9F44209A8B2B4D7350D /* RNFirebase.m */; }; + CA339FABE24CC2DB0B928D4BD89E2C1F /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = E26EAC0D5FFC97756CB264A63EE8C6AD /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA346BB90844C8A182A003AD3F622192 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61227F156D2BAF36E0807BBD1DBC487C /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CA358CA581FCD7B53B91B2DD197E9052 /* FireAndForgetResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = E9A57C7D5BCADD30378DD824EB5551C2 /* FireAndForgetResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA424AC6B355B3DFDFD75FC85D27D2B9 /* FIRInstallationsIDController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F2D3B9CF557114DC33DF027B49A13FB /* FIRInstallationsIDController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA450AEB2A714A74FB125D41DEBE56C4 /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 0476475AE08D9EAE2A07B1E44E0499BD /* 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"; }; }; - CA67199CAF85BD631A173567EACB114D /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = B88941F26D4EAEDC366AC47BE26EFEC5 /* Orientation.m */; }; + CA450AEB2A714A74FB125D41DEBE56C4 /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E181409EB769E1E4567A58BB6438BC /* 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"; }; }; + CA67199CAF85BD631A173567EACB114D /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1605C45A7EB80DD78D498C6ACE428CF4 /* Orientation.m */; }; CA6E8BCDD8BA3F3A19D47CFD4CA9E6E0 /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = A0DF227EC04A4C40F7B84D88C1068EAD /* msa_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA7C3CCDF100231E301CFFE195B6FA17 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = C5FBF2C655BDF50FBE56FB922C3EDC64 /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; CA7F2680DDBC7A3D04FBED8EF5242924 /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 93C4D9135868E958AD1A54280FA2B248 /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA8D0188358400F296BEF9AF39B41632 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 48DE2235F7876B7D827E04FB10D92127 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; CAA79EA2F883D11144D8FFD4130687FB /* SysStat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5678C9D9DB388DA83DB82B80263EC63E /* 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"; }; }; CAB7B5DC1D0EB61717767389C3232654 /* SSLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = FE2D7DF4575D500D9A9592204018B389 /* SSLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CAC7B70AE74EBD9280EA43FCB75DE9B5 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 918A7741E230976F34225A5AD202BEAD /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CAC7E02596426939C6B1169EB15CFA6A /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = CA3015C34E6DA6E89AE27E0E510E2DC3 /* RNEventEmitter.m */; }; - CADB95A31F2F4B8A80B5C6C4D7F4DB38 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6B4163820907085299B148411E69DA1D /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CAC7B70AE74EBD9280EA43FCB75DE9B5 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = B1897F8260B9D094F9D17905153180F8 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAC7E02596426939C6B1169EB15CFA6A /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = D442A7464ADD235A918A775E8F1FE747 /* RNEventEmitter.m */; }; + CADB95A31F2F4B8A80B5C6C4D7F4DB38 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = A66DACA6A2BC66D2AD2A1C50D43D9D59 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CAEA7F7BBB0FE8A1CC81D246E71CF1A6 /* BitVectorCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 6234151CD15BC62EA675A7907B1AE6C3 /* BitVectorCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB0D74E997007796BD50F14F96295806 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 7288210CAECF12E039CD64A2C78D6019 /* UMExportedModule.m */; }; - CB53CB8940FA626EDC9DA002C71F0199 /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F69BA290B8131479B24DB1059F8CDFAF /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB75321A593E9F9CF14DC01E77D2B71F /* RNFirebaseFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = 51EADEF91B7B886DA76E5CD35A5254EB /* RNFirebaseFunctions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB0D74E997007796BD50F14F96295806 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D24767B02EB893827AF0338BBB8ABFA /* UMExportedModule.m */; }; + CB53CB8940FA626EDC9DA002C71F0199 /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A7C9923AFC25F79D1EE735484960E4C2 /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB75321A593E9F9CF14DC01E77D2B71F /* RNFirebaseFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = 22FAF742CB5CC4C9D7C3DC50F3094EAB /* RNFirebaseFunctions.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB7AF504CF55228FE97BE27D1AA84EB7 /* TcpConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = B10A80804D7B5437EBCF0938D2DFD31B /* TcpConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBB4C50DABAB2D82A6DDA813CC909A1A /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = E25C7892696C7C07A200D8F5822EBB70 /* RCTUITextField.m */; }; + CBB4C50DABAB2D82A6DDA813CC909A1A /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 2444EE42E0284DE98A0E99D5624D1937 /* RCTUITextField.m */; }; CBD6C33EDA705688C4E4D90AB9F52DFD /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A5874AEF59E026C3AD3EDF6FE7090F0 /* FBLPromise+Timeout.m */; }; - CBDA33DF25A0B3889FDE9EAD72F6C6F2 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = A0212D4FA7674BAA2C48990DEFED4059 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC0C82C53785C1930CFE2B2816A38858 /* RCTImageEditingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 884CB87E57BD25F20F59B6060E7A44D3 /* 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"; }; }; - CC2AB736007F0715B7BDD403B7D738E6 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BC53DDF1ECA0F532D1A81F71AB1A69FC /* UMCore-dummy.m */; }; - CC2E7A5892E595B5BA476ED0030918DC /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 9293FEC03A243E75C03156FF0BB9EDD0 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBDA33DF25A0B3889FDE9EAD72F6C6F2 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D7193CF5CA94828C6A59C143EB401FD /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC0C82C53785C1930CFE2B2816A38858 /* RCTImageEditingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2660850DDB2DA283DA5E458102EAF98A /* 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"; }; }; + CC2AB736007F0715B7BDD403B7D738E6 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 87F5B9141D7DADA8D05A9CFFBDE907C6 /* UMCore-dummy.m */; }; + CC2E7A5892E595B5BA476ED0030918DC /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = E2AED86520903893606E05C7A2D91A43 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; CC60FD647487AB617149066737938DBC /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = F7678F697CCE24251E2DEEB64D3E414A /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC6A0BE35082DBB5289101DECECF77D8 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = E885728BDC4A8C2993A7BB23F35C3C36 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC7566760F4B12E3E0E4E0E37F7FEDC9 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = E6AF293B2145F6AFBA2CC16BCA37F41C /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC8C89F32092A2B0EA79F08C72D037AA /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = BEA76C48FC50984E4F9E6E0CF3DA4101 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC6A0BE35082DBB5289101DECECF77D8 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = CB247F3BE4B697A22587F15676F850EA /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC7566760F4B12E3E0E4E0E37F7FEDC9 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = F1E839D3BA68E28756EAAC8A5913028E /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC8C89F32092A2B0EA79F08C72D037AA /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 73FDEBC4D7AB872C43D0B328CA04F2C4 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCB6F59AABF0E21BC0F9A4A9021C9181 /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = AC3CD90F37CA219F8D166586CE751D6A /* alpha_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CCBDDDE01F7D70E7A680F5C8A65FC3F1 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 59A449755E5623E3F3A658CE870D8B15 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCBDDDE01F7D70E7A680F5C8A65FC3F1 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2306FB1ABBEFA9CE789F81A2FAC42EE6 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCD493CA845E56EFFB36328003F1B60A /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = E80ADB1E43F05B829F2D1AB9967D3EA4 /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCE2222A3A80A75225E2F7E51A4BF168 /* UIImage+CropRotate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E71D20E66B64C5F1349B061C42EE2C7 /* UIImage+CropRotate.m */; }; - CD112F3E6CF0C8643C9C8AF17A5302E9 /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = D73EA1F13714137B5168EE848EB8541B /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD13075789AC57DE43330658CAA0DCD2 /* RCTAppState.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9E7A5F6E8E45697D6F63CB9F6DFCD3C2 /* 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"; }; }; + CD112F3E6CF0C8643C9C8AF17A5302E9 /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C4190CC70591447D20794606785FDE8 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD13075789AC57DE43330658CAA0DCD2 /* RCTAppState.mm in Sources */ = {isa = PBXBuildFile; fileRef = E6E736646CFBF4EBA7384B1E486EE94E /* 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"; }; }; CD1FB10AF746E63E2B5968C20FF87173 /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = 5590AA1C00F0472D5C2137DBFD262D8B /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Project, ); }; }; CD52A4AFC3FD3D2461A0A97D88D9013B /* Common.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD62D51A9B5534C7BFE6863D088B08FC /* 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"; }; }; CD567A9B1C02C888612E19605619CB13 /* Types.h in Headers */ = {isa = PBXBuildFile; fileRef = D726DC19455D2E4EFCD7FE942BA02580 /* Types.h */; settings = {ATTRIBUTES = (Project, ); }; }; CD6E94CA433866EB0CE7F4274BC0D7C0 /* TimedDrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C3109FCC2F4243964C3D83291577711F /* TimedDrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD7DF4058DA2853BB82D8FD9E7E33F0E /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 4821A2BC728337B5065B1480185C9D72 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD7DF4058DA2853BB82D8FD9E7E33F0E /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = C8D1B31BC5FDE2E2292F2D47E7079016 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; CD804FB79353F1D929886460D8F8817E /* RSocketConnectionEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = D77E534BE1CD173935AFB52C39C8707E /* RSocketConnectionEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD973F58FC399073BDFBBC113C88728A /* RCTBlobPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4F46CD75880689900CCAE3953234155D /* 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"; }; }; + CD973F58FC399073BDFBBC113C88728A /* RCTBlobPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6093427BE39449CF4B7B503DE60F1CA /* 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"; }; }; CDA2E0586EEA705D076F557E182B0848 /* FrameTransportImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = DD29E6E8E8CB4743522F65BD6C3DDCB2 /* FrameTransportImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = CAAB0B6DC1FD159902E0EB5AE6A23A51 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDD8EF76014DBDD339CB5EB4289FD974 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 83490E4CFA06A68F3D77C88D18926441 /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 05E0A0D2314B170BE1F42E0C84F1599A /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDD8EF76014DBDD339CB5EB4289FD974 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 33663800333B2DE3B96EF0EC3C8A7306 /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CDE265747CB7B6A680D6189792C377CB /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D45168709ADC376EA8B431E1DDA9015 /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE0C6EB5F386C798A10DE6CF9D9D3163 /* SKHighlightOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 881F444B09AAEEE836F18BB0EE44916A /* SKHighlightOverlay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE246B49EC4C8A293BE0DA3A8282AB7F /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 64383462462BC346BA81FDCE07437F49 /* QBImagePickerController.m */; }; - CE25C95BBF3F1E5830A8EF8E1F7A9929 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9435A5F651CDFF2713C7933FB58BF0BE /* RootView.m */; }; + CE246B49EC4C8A293BE0DA3A8282AB7F /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = B0308D260F31194A500BE1434E9FC9BF /* QBImagePickerController.m */; }; + CE25C95BBF3F1E5830A8EF8E1F7A9929 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DD6B4AD935BF557920D22C91DE77005 /* RootView.m */; }; CE3A139FD95866808065114C3CE2F2F5 /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = 809EC9165948C2BAF546C95AD86A48B6 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE5150E60AB674AB60524EF055A64D8D /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 58CE32F77928341D12176EB9E0F9248A /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE535C17252BAFF7F01344DCD59DE2AD /* AsyncServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 711E5A29559B0895B88DC7DA2EC244D8 /* AsyncServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE535CDEB9D6DBBB9E70C19F3BE1369E /* RNCSafeAreaViewMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 550E11119FDC392C02215EF9CB4B944F /* RNCSafeAreaViewMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE5B0C859F1EC24A652A91AAECC40B5C /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C90E9C8356AD9D515C62B9B475FFF36 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE7B88EEC6948188535038D487BC28B4 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F50D85D2ABB1A17E0A43941DF96862A /* React-RCTBlob-dummy.m */; }; + CE535CDEB9D6DBBB9E70C19F3BE1369E /* RNCSafeAreaViewMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 89B66AA65776D5D011CDADCFCB4F1093 /* RNCSafeAreaViewMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE5B0C859F1EC24A652A91AAECC40B5C /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = E707EF4A9F0B2CF92BFFC42E09E49239 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE7B88EEC6948188535038D487BC28B4 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DFE199A94F260A920AA2102D8E7655CF /* React-RCTBlob-dummy.m */; }; CE8B8A61CC8002F9B980D10E9FECD1B5 /* FIRInstallationsAPIService.h in Headers */ = {isa = PBXBuildFile; fileRef = 86CC666650265ECF3DD15EDCF8418BA2 /* FIRInstallationsAPIService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE8CF5C0C2C84E7FA4BDE6058199BD86 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = E936B08EAEB98611A2F4235623253091 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE8CF5C0C2C84E7FA4BDE6058199BD86 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B3AC8C4510805B6693BC08157D72D931 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; CEAC4026292553F61925463F50AAD811 /* StreamsWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE389898517E134B6C210F47469C4FDC /* 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"; }; }; CEAE8036251091EE26E6E066741C0E86 /* FIRInstallationsStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 53987FF53060DC7928984443DC058F56 /* FIRInstallationsStatus.h */; settings = {ATTRIBUTES = (Project, ); }; }; CECC1FBE7FC467B747E6C2BA8B0CCFE0 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = D1DA016AD9C4ABE9530E299EE9495FD8 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEDAFDB3B3EA3DCE1E62FF82FCD516E3 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 2673987317A153F8A38EF758FE02CA9A /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEDAFDB3B3EA3DCE1E62FF82FCD516E3 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 1413FFFF6ADE74BB4EC379BF8CDCAFBD /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; CEF123E9C8B4FD3D3654297488F5C198 /* GDTCORUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = AC42E8A852293278C6758BA9966495F7 /* GDTCORUploadCoordinator.m */; }; - CEF6DC752682E4243AC785B96B9158C4 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 795E438BF19E4722C92E047A204889FD /* RNBridgeModule.m */; }; - CF2D3F2E3A348ADF3DBD9EF35343E212 /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 31A7914DE812140600E11796F057609E /* EXAV-dummy.m */; }; + CEF6DC752682E4243AC785B96B9158C4 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 70BBF9B79ED5994105858E2CF4EFF638 /* RNBridgeModule.m */; }; + CF2D3F2E3A348ADF3DBD9EF35343E212 /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 86159C8534820A22070AD2CBF12AF275 /* EXAV-dummy.m */; }; CF414AEB4CBAD8DF30894113E61CD76B /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 719DDB7B841C4CBCCF38804EA3ADD44E /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF44D440631F5B8957AD89ADED1F1D10 /* FlipperDiagnosticsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AFE1689B228874B6E1B0D1D4AB2D9BC /* FlipperDiagnosticsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF48FE22C5AA6A7005BC079B79517D56 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 384893C929C2E7804FCA0B1A2371017B /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF4DF7F6E87AA3A94C5A5FBE827815D8 /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D9E9DA01B712B6C1AE9DFD958EEB593 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF48FE22C5AA6A7005BC079B79517D56 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = B20198EFA4160D60463C44CAC66050AB /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF4DF7F6E87AA3A94C5A5FBE827815D8 /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 595D8F4E3C8DC70C61DEEE557893DE27 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF80B9F4958D0C931B081B404CE9284E /* GDTCORUploadPackage.h in Headers */ = {isa = PBXBuildFile; fileRef = AA21E5249C04715DB601081A3584269E /* GDTCORUploadPackage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF8A9457FD8A625D62F1C5B42B5CDB88 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B5838302607289F60F41DB4D8FDE194 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + CF8A9457FD8A625D62F1C5B42B5CDB88 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2148262530D07D32B42FD8E37018A73A /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; CF951D21CFD9031FE384D48969D63034 /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E57E533E30A43A5232CD36E33390556 /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF9F05AC93CD70E3F63B06ACFE0E4F30 /* GDTCORAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 82BB41D75E00673F2C570791310E59A2 /* GDTCORAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CFA7D57801B17592FB386DD9D64B0B4A /* RCTLocalAssetImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 90A2F6F0290C0306B85E822A39552736 /* 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"; }; }; + CFA7D57801B17592FB386DD9D64B0B4A /* RCTLocalAssetImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 786509F4FA686BA87CF7D9D1756FE1E3 /* 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"; }; }; CFEA96EBFA4939A78536A1C1A6DD63D7 /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 54BAA365514E4531F9A6F30FDD09B7CD /* lossless_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D0108264911D29A92E4A0F784F7D000A /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = F81EC68EEFDD0FE1C1C97EA765FDED19 /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D017A2D31E3E20C791F6F44D7A01B8A6 /* RNCSafeAreaProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 206538FE572342E6D8BA617EDF631F23 /* RNCSafeAreaProviderManager.m */; }; + D0108264911D29A92E4A0F784F7D000A /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2294975A06913B08D41195CE013BB1C8 /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D017A2D31E3E20C791F6F44D7A01B8A6 /* RNCSafeAreaProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E555307E8E5A077248C236B23FD72B3D /* RNCSafeAreaProviderManager.m */; }; D02983F9F8E968E99F28AC389A5C34EF /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D821F450106BEC44B12802D4CF95277 /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; D034FC411932B8C3C8F83C7E9D7687EA /* RangeCommon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA17742F16077F42413F16F266817EAC /* 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"; }; }; - D0667C2FF38D83D7109D27C016A9D8F2 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 13B375DBDAED765EE756A663051D4F59 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0667C2FF38D83D7109D27C016A9D8F2 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 65AF201D1A2210CCBBA39FB03570C461 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; D0CC2110764169A031BB05D078F35A7F /* AsyncUDPServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = C611ECDB782023017C5311E0E1882107 /* AsyncUDPServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0E1D34AF074E0454077772E3BF6B079 /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E0578404880DEA4B41E04A03DDF80D8 /* BSGConnectivity.m */; }; + D0E1D34AF074E0454077772E3BF6B079 /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = EF5486049EDC1824356D857F5C0F6915 /* BSGConnectivity.m */; }; D1249775C6575028B25BE687B4F0C982 /* FKUserDefaultsPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = DCE9904090A911013AD90075AB8884C2 /* 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"; }; }; D15B1D25AFE4F0CB60215790F195A38D /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = D6CBA639BC0A106017274FB55FAA013A /* quant_levels_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D18081D33C6AD5B2343DCBBC2CF61BB2 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ED74A6AC6550A6F60791194E337B0D9 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D18081D33C6AD5B2343DCBBC2CF61BB2 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = F8103D0961FA2AD9D3D3475D5F5BB421 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; D199E0C3F8DF1441C00AAAE2E597A99B /* Future-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DF671BAA08D1EA42C0975602D70C3688 /* Future-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1A09E1E3713069EE95C7B2D1CF845BF /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = E3247465BCC6955B408BFF4EC092D33D /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D1A09E1E3713069EE95C7B2D1CF845BF /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 381EE808730B845CBEACA73A6C0A99BB /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D1C6F6705A1FE1010070DCC4A3102D3F /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D9830840C80FE492AE46EEB8E178D46 /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; D1DEC09BFB8020649801F18884526D9D /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 23B988FF7781A76A0B6F07682B8E3871 /* SDImageCoder.m */; }; - D20919318EC23971CB63831D24F3955B /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 86279D6F840FCC2B4D1F9372E3DF2DD5 /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D20919318EC23971CB63831D24F3955B /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = A546E06EEC18CC5AB5459E96314B48FF /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D20CB1F465B6DEC72F0A0FB85325E552 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = BC34FC3BC5FBC0454E09F0942A1E2962 /* yuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D23230B6BDBF204F574436EC80D5795B /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 1480D363919A35F1E19FE10FC4D6B113 /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D29943598FA75CCE4393E3AB70854DB6 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 35D642116AC975EFBA8D696B1B7BA767 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D29D44E4839A3581CC7F03BFC1497A51 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F0EC37499F4820026AB30162B77C596 /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AF2718A7C2117A0EEEA5E94848C61BB /* RNLongPressHandler.m */; }; - D2B279573F702220400EB7E904392303 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DB5F0EB4AC10D3E3FE671D078D2EF6B /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D29943598FA75CCE4393E3AB70854DB6 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FA26F5CD6039D854B695DE1B9100EB5E /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D29D44E4839A3581CC7F03BFC1497A51 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = E1302BA0F105DBBB6C1DD6892800572C /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A22087B248A717DD8210B86F366BCBA8 /* RNLongPressHandler.m */; }; + D2B279573F702220400EB7E904392303 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 033AEAAFCE60615AF48A038283404C6B /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; D2E11DF07AAD7072CC507F7E383B4FE3 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = F4E2E67AA46EC78C7A9CB72800AEEC2B /* pb.h */; settings = {ATTRIBUTES = (Project, ); }; }; D2EF73B37E88FF241247DD0776642D6F /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9346E24A80AF7765A8BE8B33BAE93F5C /* 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"; }; }; D2F61C74B5DDE79B769222FCC98C82F6 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 83CFF644F37AB474C65E4D5EB0CD86FE /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D343EFB9E30EB3366E9FC4842C03757E /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 22881003652D995B73026FBCDBA39C82 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D343EFB9E30EB3366E9FC4842C03757E /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D2D1751ACFF90E1CCB30E85EEEB3C24 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; D3461F25CB195DE12347CFB156107C31 /* Payload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93778A3F3CA3D98E90562F56F9D95611 /* 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"; }; }; - D34EA63B7BC10C3B54AC07BB3DE56978 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FA0759551B0F3AA16FA22A8A183E46D /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3579009269FEC6A34542333B942C9FB /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C575223DD80A1A324BE64F252A30A9F /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D34EA63B7BC10C3B54AC07BB3DE56978 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 795879AD145A8FC49CE63D2F23335CD9 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3579009269FEC6A34542333B942C9FB /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 82FFF75FB306AB23B867834650F67403 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; D39505AA86E323C96932E3A04B1A0351 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = EF85D2C72A3C34E909C3195AC4283D33 /* alpha_processing.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D39629D5BD5717BD08135885F724851C /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 457A399CDA28385FA49BA8167A0217CA /* BugsnagCrashSentry.m */; }; - D39901BEC90B8BE64935C7372BE4D371 /* RCTConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 62E88D3F5C58EA25138827D6182D31A7 /* RCTConstants.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D39629D5BD5717BD08135885F724851C /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = CD70D2AA3F9709DFA32D80C23A668901 /* BugsnagCrashSentry.m */; }; + D39901BEC90B8BE64935C7372BE4D371 /* RCTConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 1701BB16E424CF991A1E406CC52B285A /* RCTConstants.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D3B16597778203DE6EDD2C915FC363E2 /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 165CCAFE6A06D409004F8CAF07494C97 /* yuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D3B5E7CD68B29084575732B1464A24CD /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 9E87EF4B76BB5675D1ADB5E8F4ADDCDA /* pl.lproj */; }; - D3BBAAEC1BB62E99D63C32C6742A60ED /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A3D85591BCF381152165FF4EA43C2DC0 /* UMLogManager.m */; }; - D3BE4AC7988B7A740B423AF784E299E1 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = F6DA3EF2777ECA866ABCDF65F4968613 /* ARTSurfaceView.m */; }; + D3B5E7CD68B29084575732B1464A24CD /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8E76D6C44A81A38F97B20CB129A923D3 /* pl.lproj */; }; + D3BBAAEC1BB62E99D63C32C6742A60ED /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1749F6851479091C87395887DCD61E51 /* UMLogManager.m */; }; + D3BE4AC7988B7A740B423AF784E299E1 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5048C882B6B24ACED251F005937C600C /* ARTSurfaceView.m */; }; D3C108FFA4787ECDB0A68E07CDF2BDBA /* FlowableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 245D2AFC8ED9BFDBA2EF29D68EBC985B /* FlowableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3C839E16CBE186C0BE387F94B00165D /* RCTDeviceInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = A6406D1EDBF70CA4DEC57908F01CF67E /* 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"; }; }; - D3F1F2786E81D2998037E666F2138400 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E36E388D5D9AED3B87265E9DE468D1B /* REAParamNode.m */; }; + D3C839E16CBE186C0BE387F94B00165D /* RCTDeviceInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = D97E945EAB5262C724CF49D188714044 /* 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"; }; }; + D3F1F2786E81D2998037E666F2138400 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 32D6CEEE188F5E019A0E0D332B9CDF02 /* REAParamNode.m */; }; D4040F200D00D6261963F43CBE89C880 /* KeepaliveTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB3029A06A7EE04F47FD16BC1EF44748 /* 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"; }; }; - D411323A01E0FB6595BFB07200F5BAA0 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 13476D98851D62545BC85FC3F3B75065 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D411323A01E0FB6595BFB07200F5BAA0 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = EDEFE166DD7CD1DDB8170EB2EDC5647C /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; D41E53EF9B0E35CDFF682EDEAA2B70AD /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = A6E160FB766104FB176D30B9193996EF /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E3305844444A129D964A1C780DBA683 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EB9D4B812F643F74A25D57EA9EB4B7C5 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; D44F4B162A48877F712281A9ACDD787D /* EventBaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C108660121E046B1BDEF96A2F71B2A5E /* EventBaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D46DB93B022EA46CE68A0AC363D5BAC4 /* RCTStatusBarManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0B323165A82758004B3BF7CF1D9B7BE2 /* 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"; }; }; - D4854148BBD285293974A3574283014A /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 47446E6FDCFAD179B4F5E48AA827CF35 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D46DB93B022EA46CE68A0AC363D5BAC4 /* RCTStatusBarManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = BE5EBF9B9E5EF12CBD5AD12B3E6B42B2 /* 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"; }; }; + D4854148BBD285293974A3574283014A /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 887C85C30BFFB73C5ACCE12EB42C4735 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; D49C2B5AD12F94C14929E9614A269641 /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E82C8E592B07968E3A2267B265BAE21 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; D4CCA1BA396882B6AC8AE5EF772DB855 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = B523F4277C8B2D610E8E1299460A3CF9 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4EE7FF64A89536083DBE4FCB3D2C5FD /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = 43E10A08E51FDE22F2B27E6FD2D0E927 /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4EF29669510C233A73C4D1BF709A3F5 /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = B31120ECF4100E36158AEE0982AD2906 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4EE7FF64A89536083DBE4FCB3D2C5FD /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = 2475A083CA7E9531F5DF98EB4E5E1B57 /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4EF29669510C233A73C4D1BF709A3F5 /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = FCA944816518E50AC3DD696784739696 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; D4F870A3745DAC99F9D1DE10267A3FDC /* Codel.h in Headers */ = {isa = PBXBuildFile; fileRef = 713A81815B3885B08757A419B2659FE6 /* Codel.h */; settings = {ATTRIBUTES = (Project, ); }; }; D50276F979C7915BC1E670A13F14C468 /* FlipperRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE820CDC63138126A93DFA9D1289691C /* 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"; }; }; D5127E8BB6E9A1A9B7F449A6C3D8F2E2 /* PublisherBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B4BC528B33441223AA224532206DC3C /* PublisherBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2652,169 +2663,169 @@ D59D6B91B38D40385B5671A02C789FFD /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = F9AC5E09B6219F4FAECA474AD5900E6A /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; D5B67F8483C8FB4C3B5356D28C3374D7 /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = 02CAE9298A2C4E7810DCC16EA4120CD2 /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; D5C7E82437FE04F2CD8A96072D2E9593 /* FIRInstallationsAPIService.m in Sources */ = {isa = PBXBuildFile; fileRef = 72F93B35E7840328A0BE89C021462A46 /* FIRInstallationsAPIService.m */; }; - D5EB936081DE1ABD23F6EF6E9A31D4A9 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 63D6DCC9D86537F9D3E9804D2880D0F4 /* RNGestureHandlerModule.m */; }; + D5EB936081DE1ABD23F6EF6E9A31D4A9 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CFDB601BC80758537EFDD2CD961C812 /* RNGestureHandlerModule.m */; }; D6147C5ED241AC483FF409EE1CAD9E12 /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = DBC153CADA88D1B0EDF1F9180048460C /* FIRInstallationsItem+RegisterInstallationAPI.m */; }; - D633250EED186E817206A31F4E170C99 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 78F9004D8744F424F748C9A7EFB1D2AA /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D63D855F5E5694B1078376751720F336 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DB055F2F0A57992EDE9F57B8090C83A /* UMModuleRegistryAdapter.m */; }; - D64F6039BAB8836544F7C0A4B8D04F32 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 9640473061AFF5CE841BEAFA0AAA690C /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D633250EED186E817206A31F4E170C99 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 187879FBE986DDC8A947A11CEDC57826 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D63D855F5E5694B1078376751720F336 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 86CF0BC0CA68A46963CF070AD7302459 /* UMModuleRegistryAdapter.m */; }; + D64F6039BAB8836544F7C0A4B8D04F32 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 951BC93835E6D048000E726EC9375F42 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; D657B1508E0606220A7DAFC0D6614475 /* EliasFanoCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = D6085E200587F025BD81BAAE6C3A3232 /* EliasFanoCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D65D905E1500A2BDD75E310C0E2C97FA /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 058A8D2CACD3432B5FE785E4D1904D54 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6889E1CF5492CAF58DE17FB57EB93BA /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = FB93889EE44F1D09E60F8608E9E52799 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D65D905E1500A2BDD75E310C0E2C97FA /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 85402553C855BA51F1055005117A39FF /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6889E1CF5492CAF58DE17FB57EB93BA /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 396BCC1103806DB62E13A01085BFDB9A /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; D69223C42741872E5B2A529FA5828F8E /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 81554050354D000790D952969A22BEFD /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - D6BE43E386E838E2F1C713789DFF481D /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = 73C15243C53B413C4D535D02B154D994 /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D71EEB365C42671A5A3E1D412C6118A4 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CBF38D0EDCD2BAE9F7E0DFC3EB793EAA /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6BE43E386E838E2F1C713789DFF481D /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = EEB527A333FF5A4AEF63DF312B770FA7 /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D71EEB365C42671A5A3E1D412C6118A4 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FAEB419F66E1976F7843B1EC7F1F451 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; D72503B8233647DFAB18589EFE0F1091 /* ExecutorWithPriority.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C059CB14AB6A27102E06C7874764793 /* ExecutorWithPriority.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7356315BF8062584A1CE7E4ACD15EF1 /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = 2D27EF6E62BF2AFA0B42B92939546604 /* BSG_KSMach.c */; }; + D7356315BF8062584A1CE7E4ACD15EF1 /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = D032D6FEA72FCE92B1AC6AAF34468012 /* BSG_KSMach.c */; }; D7386042B011F13F43898B1B9A5DEE54 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = C49C77B14C7A4ED1DE03E4400210D47C /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; D73C476373DBCB99DBDA5E3D9583A35A /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = B81FD2C473D887F59427BE78B558C91C /* GULNetworkConstants.m */; }; - D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 73A81D69BBA83AA8F9567A52654496CB /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 1912C5AEC1649E0A26A6C8D886057FB6 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7690664E9554486C6A08570CCA16219 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 365636C1858BBACEADB5F99BE4C9864C /* alpha_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D76D243B815E6B6FBC1319E69838AC67 /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FC6047C7715AC0C09653607C8FEC3E33 /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; D77CF59BDB5FC2113CF820C1C8CEC5DC /* FLEXNetworkObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1F4B3E6B4F39F0C0A8D6F8349CA8D6AB /* 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"; }; }; D7873A208EED0E3E763413036FCEABB7 /* TOCropViewControllerTransitioning.m in Sources */ = {isa = PBXBuildFile; fileRef = 51674CEE544BAFE4827F0D6B40061039 /* TOCropViewControllerTransitioning.m */; }; D7E5C384A3818E74886E35808F0E358B /* RValueReferenceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = D4F0F8AE60A7F903304667D6C24687EF /* RValueReferenceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7EE17DC61F2C233EA1F0DB1D29A9473 /* NamedThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 9701A78261BEDC2C84BE15AC12B2DF21 /* NamedThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 97FD1A550F6685B9E0B687215D385E68 /* RNCAssetsLibraryRequestHandler.m */; }; + D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 382504A213EAEA9F7B9E6159D87B51D8 /* RNCAssetsLibraryRequestHandler.m */; }; D82111A4E6432431C15468B9E171C02B /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C78AC8F8193767D450E7E8B4E33C3393 /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; D82A9BB2212B45FA75D895A40645B283 /* QueuedImmediateExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E85A19C773A4016CCFBA95A003F7AE7 /* 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"; }; }; D84F3F96DACBE38500F49916290FCB29 /* GroupVarintDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 260532C1B60BB9AC2E87BAA0D001146C /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; D86127EDB743996C7268E4EC78797A46 /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D3F042F12358CA20535695129D757E0 /* FBLPromise+Always.m */; }; D88C31D279C21999DD8E5D38378AF5F4 /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = F09F1807E45B0D81EF2C3805D8F0CC04 /* GULNetworkURLSession.m */; }; - D8A4FDD0CECED20763327BBFCBD15B23 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = E24EFE20F1762D2D036845A640ADD32E /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8A85963A2D21C1579FAB3528EE4157D /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F51AB3B9E6D4177AE31FE7343F6FC5C4 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D8A4FDD0CECED20763327BBFCBD15B23 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ACC86BFC387731739DC830B7201E00D /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8A85963A2D21C1579FAB3528EE4157D /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = F5AD7442235FB6BDB4ED75B9F5F8A9DB /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D8BB8787764B7EB4D18B8371DFCDDB62 /* TimekeeperScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BB7F42A922D4DCFF8096E3C184E06556 /* TimekeeperScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8BE1C65E30421034BDF3B754E368854 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = B93E9FA86E3780D3E6653301AA02704F /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8C07DB43458BB67C3DE4C4ECC0074A4 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8AA97DDF312021A67A66C576CBF31CF1 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D8F0C0DA31A17B805ED9F1CF41673F8A /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = A0AF3001AC2B881EC1F32AD005471915 /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9161027757C44A3F0538F626A0F1C75 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EBC062030E2474E2800217FE40BDB2D /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D92CAE62ECAFE549B7CADB800BE130C3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EBF213AD28C0D37DA0C69E3D7234ED9 /* RNJitsiMeetView.m */; }; - D93D8D29DA246204947AA3E291D57A71 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = FABF410FC5DEAC331E83F4C41574FBE5 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D942DF7B87B23857D907B43E8D40B6C8 /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D0EFD62B842697EABB07903F8065FC0 /* RCTInputAccessoryShadowView.m */; }; - D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D81CA9D8189010CC1FE9FB3F2B0F925C /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9818AAFEEE3ADE3426F8CEFD018BF08 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A4DE5073E11257819EBE2DCB1A0DAA0 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D9840E859E25D2072D4E5546E72D9C09 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = C43D53D1AA069BBB72E8F5CFDE1160CB /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D986C95FAAA3C9232D94D3CBC10130B9 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5398671EB6C01110E81BA064933D8CE6 /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D9AF634317E7F9D5802F08016A42573F /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 83CC034CE44E984FDE544845227AA356 /* BSG_KSMach_Arm.c */; }; + D8BE1C65E30421034BDF3B754E368854 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CB1F7A50693D9CF3D1B8F89276D0618 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8C07DB43458BB67C3DE4C4ECC0074A4 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 035AED08D71C220C5E407091F2A6CC0F /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D8F0C0DA31A17B805ED9F1CF41673F8A /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = E481E4C8F8218D44428C1C7ED1AF79F3 /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9161027757C44A3F0538F626A0F1C75 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A8028BCC58743A6AB3702379DF66EB6 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D92CAE62ECAFE549B7CADB800BE130C3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 911B53B91157F66224EA02E8A8FA0B7F /* RNJitsiMeetView.m */; }; + D93D8D29DA246204947AA3E291D57A71 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = EF3CF074EFB514AB39C2972DA32E2ABA /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D942DF7B87B23857D907B43E8D40B6C8 /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = D40BCDA9810F056BB68B0CE6A9A38580 /* RCTInputAccessoryShadowView.m */; }; + D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = AEA925593969061E24617E29F3435905 /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9818AAFEEE3ADE3426F8CEFD018BF08 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B468DA312920E115DBC601B9DD70210 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D9840E859E25D2072D4E5546E72D9C09 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = CCD0F420A8164C8556D141806692A281 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D986C95FAAA3C9232D94D3CBC10130B9 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5962B2E1763F0298920CAE87F9F6365D /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D9AF634317E7F9D5802F08016A42573F /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = C0A320184E361CD4261DBE4243AFAC31 /* BSG_KSMach_Arm.c */; }; D9CE5C4ED521A9CCCEE7E5371A8FEC83 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = F56B5CF5EB9A68ABE832746E0B370670 /* SDWebImageOptionsProcessor.m */; }; - D9DF18476953552CD71C30DABF23E52E /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = E6DCA9FED6C5C89616D46DAA362B5171 /* BugsnagSession.m */; }; - D9E85C15A4C7B9BC786776755CBE4E10 /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FA89CBEC2D3F43DE735B1B41BF1E577 /* 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"; }; }; - D9E8EF785F0508D50522BF668E520107 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EF8BA0AF02A308F427AB4CF2B5A08A9 /* EXHaptics-dummy.m */; }; + D9DF18476953552CD71C30DABF23E52E /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 71AE41B49320B7D195F1396292016E9B /* BugsnagSession.m */; }; + D9E85C15A4C7B9BC786776755CBE4E10 /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 14979149F23DF62C17F9E7A21EE83969 /* 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"; }; }; + D9E8EF785F0508D50522BF668E520107 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B210DEA7F13EE96BA6DA8B363A2EFD3 /* EXHaptics-dummy.m */; }; DA28A006984C9041039EA6EEB0F8195F /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2533E13A6E27DC148740766B9E66FAB2 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA2A500F2405B86DEEDCB9FC6C8CC0B6 /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7170A1DF984D20FE16FF2452F4687EF1 /* BSG_KSSystemInfo.m */; }; + DA2A500F2405B86DEEDCB9FC6C8CC0B6 /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 21F2D742801090DEBF0FE24B3991700C /* BSG_KSSystemInfo.m */; }; DA3E756FDDBB22F63B92675EE270BFD9 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 5ACAACE3DEF9B42B05A7E23CB9EB6DEC /* cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; DA5203CF64B1E9D5DAA840D3417F241E /* StaticTracepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = A0D3291B6110B268D394A23BB9189970 /* StaticTracepoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F91CF2E77582F31F5D3AFC2BEB8F4A3 /* RNSScreen.m */; }; + DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A37CA79C6B36FB48C96D5E545155E9C /* RNSScreen.m */; }; DA6126735254CBAD81AE08F7B1ED78B7 /* DrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EC05AA3F51FFF6F2DA357A81C9C31CE /* DrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA74636CD45F5B96E9705928A634522D /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A9E0F8E3943D6D7D8D7A41C34D5D77F /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA74636CD45F5B96E9705928A634522D /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F6E605DA6AFD3BC9439BAE111882C82E /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; DA8E7E9B1199739DD8242F7D627AA01D /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 941D82A7D647586A28F6DB4755B80869 /* FBLPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E474FB33AFD5A2EA3EBB99AB25648F49 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DB214EB8B00630F1D5159C416C5A867 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; DAAE0E3FED2202C7C92F463A7C4BAA2E /* CertificateUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D36006052769CE515737F1DB51F04D2 /* 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"; }; }; - DAB77630ECE8FFDE64A9BEFBD0B44DFF /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = FF6E2E1FF7F6BC264EC46C22E249C437 /* RNFetchBlobFS.m */; }; + DAB77630ECE8FFDE64A9BEFBD0B44DFF /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = 31EE61B5B2C4934ACFE959BCEB6D5CAA /* RNFetchBlobFS.m */; }; DAFC2F91BEA931FB9BA022CB9B77CA90 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = FDB002D534600214F4271BBA8E723272 /* backward_references_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; DB23770DDD223F6F66DD3161FEED485E /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = FCBB5CDE0891A424562D3C9DCB1D606E /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; DB5A7C7920EAF6928FBD7479829670B3 /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A3FD508A386252F71C815C4EA55471C /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 026C5640A11F741416A6D3D3C6C3AB69 /* RNGestureHandler.m */; }; - DB802AF253B585166A65DE3AF2807ACA /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A853EFEC2EDF5845BF738E8A03490A2 /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = CB0136873C962E55A307219684FD01DA /* RNGestureHandler.m */; }; + DB802AF253B585166A65DE3AF2807ACA /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = FC0FBCEDAA524F547423E330109EF828 /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; DB961B674D484615508DB15C8C03E3A7 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = CCF4D0A31596C7ACCD7B68399DBE7374 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB9717086AE45CE81AA97C3D12CDE9C7 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F6E31255807343DA5B79C6064CCB3698 /* rn-fetch-blob-dummy.m */; }; - DB98C51FFD075C2E920AE1CFE2B57068 /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FD65EB61DD90B8550179AA6BD6B09D11 /* ARTGroupManager.m */; }; + DB9717086AE45CE81AA97C3D12CDE9C7 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 70D2F1DE32D8D83ED283D13D70AE9546 /* rn-fetch-blob-dummy.m */; }; + DB98C51FFD075C2E920AE1CFE2B57068 /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A6CB24B50A72644E27C2B50F6A4FD641 /* ARTGroupManager.m */; }; DB99B89B363F703C56CC1CA9540AC911 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = D35AA32383740911279CBEFB0A7CED01 /* SDAnimatedImageView.m */; }; - DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D0F45C320E4E26BDBE55273EE1E1EC9 /* RNGestureHandlerButton.m */; }; - DBB7C961CF22090D0F1F8FB705151A2D /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A8483349E35D9DCA566CD160A24FC4F /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 229D455DAF28AED347F98E3AA7A9215F /* RNGestureHandlerButton.m */; }; + DBB7C961CF22090D0F1F8FB705151A2D /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 721AB46BD809C2987EF958E95073BFF2 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; DBBFB726B54D132205F42D6FD8E81979 /* GDTCCTPrioritizer.m in Sources */ = {isa = PBXBuildFile; fileRef = F59E426C20672DB4A39D2D32BC4D53FB /* GDTCCTPrioritizer.m */; }; - DBD6857FB4D7DF12D570243ECD9C73AD /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = B52505446B5C9841EEA2363C17ABF163 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBFAFC7FD12442E27B09353B999EACC3 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC13F7C79D892A62F91C9E560F9D0D2B /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - DC03FCBF6A0FA06C65EA19F08571B9E5 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E21FA93BDE61ED25CF1C1E266CB1FBC /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC138CE0F250720A264B598D27AB4C84 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CAB6C95B2964B03804A8F197E0EAD6C /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC22B9ED9AEC92C3C5BB77EBB9B54CA4 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E715E1B8FD064130CF7B8A3C3A754F4F /* 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"; }; }; - DC236F473EAB0803CB9FA676FAEB4377 /* RNFirebaseDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = A057974702A7BD2918EA4AFB43389B0A /* RNFirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBD6857FB4D7DF12D570243ECD9C73AD /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B9AEFF14A0B7431D172233187A20862 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBFAFC7FD12442E27B09353B999EACC3 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0C16D5592AAF54FDAD9945573AAF7295 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + DC03FCBF6A0FA06C65EA19F08571B9E5 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 80448D56DD2B463BCDBFBB3E5763237E /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC138CE0F250720A264B598D27AB4C84 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 762BEEE67A6C2BA66BC01DC9BDDEBEE5 /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC22B9ED9AEC92C3C5BB77EBB9B54CA4 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5910B455F2DD57F89C0663BA82E590FB /* 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"; }; }; + DC236F473EAB0803CB9FA676FAEB4377 /* RNFirebaseDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A07EB1BB471CCBD3DDB3373E225CFD6 /* RNFirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; DC28E96BA8BC8E051CA66420F836DDB5 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = B744243DDD3E90CBDBBEE7F8B7F2B4BB /* idec_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = A6FB26E8B106BDA09D54A8ADC23EC6B8 /* RNBackgroundTimer.m */; }; + DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 3826C185CC437E8F905232507D722145 /* RNBackgroundTimer.m */; }; DC91434903C0446DBE4EC705CEBBB6DE /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = DC45F7A3D4A7E67D6A6C04602CF64F57 /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; DCB90D8D8966F8964BA8B9A333F44E4F /* Base.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 087E38FA9ADF56CBFB0A88F271CD2D97 /* Base.lproj */; }; DCC79093B0298C5C73431BAB4A5CD43A /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = FC68EA81DFB6AFC80791473DFEFA648E /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; DCDCE485909B5CE0B0BC06693D89E54E /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 73C7E748D6247016CD225AF20049FBC9 /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; DD0172C138C004D1206227573AB94742 /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = 744FDBFE85D90D5ECFA859B3F358AA90 /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; DD0ED0194269A9546678AE2F538F3017 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = B3734B6DEF352FA194A23D8BF4EB7C2B /* SDImageFrame.m */; }; - DD1BC3892CC8386218B2AC5A82F6D729 /* ReactNativeKeyboardInput-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A7BA46CE21B71062894134D5B6EB2C03 /* ReactNativeKeyboardInput-dummy.m */; }; + DD1BC3892CC8386218B2AC5A82F6D729 /* ReactNativeKeyboardInput-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 759ADEA0F49999ED003E12B3140CEA1C /* ReactNativeKeyboardInput-dummy.m */; }; DD31E664C8D93EBC57110B8E97E90E9C /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 311652007C95DA14AF3C4E1583B6843E /* NSImage+Compatibility.m */; }; DD4C7A9E5CA5013D7786CFA9D177B890 /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = B9940970BDE50BD21BE9ABF71AFB8E2A /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD5E5AE9110DDEC1969C9AEB96A26D7A /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 31609F47469A3B892862A77E300E6942 /* BSG_KSCrashDoctor.m */; }; + DD5E5AE9110DDEC1969C9AEB96A26D7A /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EB757A79FF3B69AD6B9E4791A7020F0 /* BSG_KSCrashDoctor.m */; }; DD62E087ABC9059C2E7E3104FF8A8835 /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 193E2251E77EFDE11012242D727DC062 /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD631AAE5B18CDDA00ED19CF2081DDB3 /* RNFirebaseInstanceId.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FD6BBD159F5914E10A0DDBD79809389 /* RNFirebaseInstanceId.m */; }; - DD8331D4F1339F9333C4665A0589D24B /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FF4BD9CD4E1C59F8CCA9F2DFAA234CA /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDE256F5734BB9FFB186080C5B47E01F /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 61C19957AE3CEED64F8195E49B5CA6C6 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD631AAE5B18CDDA00ED19CF2081DDB3 /* RNFirebaseInstanceId.m in Sources */ = {isa = PBXBuildFile; fileRef = BEE2BAEED37A6A2D75DE4F8C9C7D1970 /* RNFirebaseInstanceId.m */; }; + DD8331D4F1339F9333C4665A0589D24B /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F77194E54C6A747E949B4AAA15A0675 /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDE256F5734BB9FFB186080C5B47E01F /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 124072C8CF5B3C82CAF4ECD605BC4C4E /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; DDE321B7B9538F10B934152A17769962 /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D083D91DCF05A1194D88C22CACAC0A4 /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; DDEECFFF302A446DF9F1194D17A36925 /* FutureSplitter.h in Headers */ = {isa = PBXBuildFile; fileRef = AB62F1932D4F21CA1B738E66C407D3A5 /* FutureSplitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE0EEF1A731CE26A87DF2824C0EA61B3 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = AA9C402FF8D48DC7DCEC716FD0EB6C50 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE0EEF1A731CE26A87DF2824C0EA61B3 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = FE2D90C34D9C0A9A6644DEAEDC0436CB /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; DE362CD58EB6E55028F789361187A702 /* ThreadCachedArena.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E49BDF8511EA64309A578D4B1B2DEE45 /* 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"; }; }; - DE3C8E08E38361EC13B19AF977A7F012 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 822B68D5798FAF66B06FDEFA1A122687 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE3C8E08E38361EC13B19AF977A7F012 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 44F9B6AFD75F2837103BC8793D42A32A /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; DE9795B12DC6F34813DDA08D4B8BA982 /* FrameType.h in Headers */ = {isa = PBXBuildFile; fileRef = AE1DDA6462CAE7ECA09C1514C6480BDB /* FrameType.h */; settings = {ATTRIBUTES = (Project, ); }; }; DEBFD8640231926B88FE3CD4FDDDF381 /* ManualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C594763EE856BA417805AA977CDF305E /* ManualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; DEDBA7D5E0A65DE6FE7B04A4E3B87CDD /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BF0A5227479C231AA36262A1AE5569A /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DEE4EA1E653EC166B12DE85CB96230FD /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = BECB0C184EC58C92F82472FC752114F2 /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEE4EA1E653EC166B12DE85CB96230FD /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = A724BD0C25F5146F814C94E6A142AE77 /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF404DA0B392DB192D47AC020D531A9A /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 40C99E3CD223EBC64465DFCAF6F3E771 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF7078E5269EF7551228DFC3F9501FEC /* FrameFlags.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE65E4C5199AB765432132DFD5B72525 /* 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"; }; }; DF75C756DB80CBFDFD43D0A99F83D035 /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = EDD81CB684516A2C3CE6651B54126EB0 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF8D5DA3700432625CCA28276EBC56FE /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 362F533612F39ED0A116F12242EB3851 /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF9256449C0F2EFC90E1BFC1763DB46F /* RCTAlertManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 91B1AE33881EB075C0F149DE8EB47EEF /* 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"; }; }; - DF9CDE086F36000D7C8E6834838EAAA6 /* RNFirebasePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 19ED04DE837A8C283B54F50AE3CFC19A /* RNFirebasePerformance.m */; }; + DF9256449C0F2EFC90E1BFC1763DB46F /* RCTAlertManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = BD5F3EF6EB0059568C5D5E1ACE4D16DF /* 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"; }; }; + DF9CDE086F36000D7C8E6834838EAAA6 /* RNFirebasePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F720EC32BC0BA1F12D5E70A9617F5BC /* RNFirebasePerformance.m */; }; DFA2F79F9121657E2DF8E7DDE482828C /* ThreadCachedInts.h in Headers */ = {isa = PBXBuildFile; fileRef = 0672A1C17F80DFD5A9341B19DD72461F /* ThreadCachedInts.h */; settings = {ATTRIBUTES = (Project, ); }; }; DFB1AFA14DA04F33017F0086D60693CF /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 69BD22B376ED5AF2061DF89B1D183BBB /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFFC4019C4EF86FD6A5A8A62F767ADDE /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = 3120CCC4BB4F2FFC7A6FA9A46A0223B0 /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E00AE219C77E8D17BBBF9A091E04A29D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A8D1FED0CE58854EEB0575FC8C80A45 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFFC4019C4EF86FD6A5A8A62F767ADDE /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F82FA274BA7E705C804627258FC1AFD /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E00AE219C77E8D17BBBF9A091E04A29D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = C6C36B4CF0EFE6B9FBE55B0E968F387A /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; E00BC402FDDAB7D225D87AB8410D1B1A /* DecoratedAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 86AC27475EFFAFF90ED461FD8F0DEC1F /* DecoratedAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E00FAD0FDB26AF9FE9B56ED65F8587EB /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = AFB4E917FDA63E6F71E5BCC8A1A41675 /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E00FAD0FDB26AF9FE9B56ED65F8587EB /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = 73AA7F6FDD0109D9B53978B88A0903BA /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; E0362698CD153611761F5468EE9F1CB5 /* FlipperRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = E6DF44FB4D4D204EDF10E6845C6C59D9 /* FlipperRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; E050964E1AB1383EA71092C52BA08CAC /* Syslog.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE4810BC3C59E5A850326AF4F5FB19C /* Syslog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E053534668BD0F090E588EA79CAC026A /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = 6B9AEDDB5F8023CE81EFE66995CDB9D8 /* BSG_KSObjC.c */; }; + E053534668BD0F090E588EA79CAC026A /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F6E770107F0F9662E99148E09934317 /* BSG_KSObjC.c */; }; E087DB435044D30051DCE1885634E2C9 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = DA0B7541A49C2650D4598D443197E8C8 /* UIImageView+HighlightedWebCache.m */; }; E0A65AF86EC06BDC7937CA9CB9972285 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = F785BAF95304001F5E6B0B6185D7BB7E /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; E0A95348DFCA5B73FAE577A45F6822FD /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = 398877019437A0142F23A0EA7B2F5B8C /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0C46A52452ABB7A82187CF8BADC033D /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = DAA03BFCAAA3F1A970DBA3F65D04417D /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0D24084E545AFDA689960BB764202E3 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = A28F4BCFA07BFCD1FBB3A8988D1341D9 /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E0F5FE366AD6B4F64411919D22AF271E /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 44D36755F64DC86FC5B660FBB5475A09 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E10071787CB631AD444940A8906FF5F9 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 28FDEC8C4917B4E72F65E5B9F9D28EF9 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + E0C46A52452ABB7A82187CF8BADC033D /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 00D1A29C97764FB371DCC4BB85B342F6 /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0D24084E545AFDA689960BB764202E3 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = D43403F0933FFC1A5067920E9A1085A0 /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E0F5FE366AD6B4F64411919D22AF271E /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = A5B1AD30F29FFCA73FADF2C224811D06 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E10071787CB631AD444940A8906FF5F9 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6CDB31BDF2D8BFC7451FA2DE3DEAEEB8 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; E11E13EF27F699205C8B6E7CA84524E0 /* ar.lproj in Resources */ = {isa = PBXBuildFile; fileRef = DE7E37E9E3C94914A6B940F786C071BB /* ar.lproj */; }; E1266B55B38842C13A05CFD3DF2E4C0D /* StaticSingletonManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F45C7EFA0D2C146F8C8BE384EE03B7CF /* 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"; }; }; - E13457FACFBE0A02A510B6A2FA0976A9 /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AD88D369AE5FCBBDAEA3A65A1242340 /* RCTTextShadowView.m */; }; - E155D2FA7860A20F4D688252FEE7C5EF /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = DB597466A20F0FC5B06343B7DCCBE233 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E19B575090355E623900BC4E520EE66A /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 644CE6E6A02CE714416A726EC48578AD /* REATransitionManager.m */; }; + E13457FACFBE0A02A510B6A2FA0976A9 /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = F91B915CE87D11F1EC02D7B6AE542EC5 /* RCTTextShadowView.m */; }; + E155D2FA7860A20F4D688252FEE7C5EF /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 07AF9A5578F23EBDE628D7A0CD44EE44 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E19B575090355E623900BC4E520EE66A /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 74CB6B32052B4980712DC85AF207A391 /* REATransitionManager.m */; }; E1B270459C9A3A1F331BAB2B69F8B319 /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EF5403BF740F93C1CDC1335EB3741F9 /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1C92AEEAF907D9FBB3D536670867DE4 /* UMAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A724A619FAA448EC4AEE88396B3CCE1 /* UMAppLoaderProvider.m */; }; + E1C92AEEAF907D9FBB3D536670867DE4 /* UMAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 107E6EA09D55A51A08CC1346FF70D5AC /* UMAppLoaderProvider.m */; }; E1C98A18F4F7534AC0A3D36EDB71822B /* GDTCOREventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BB7BA6E4C7D37135B581C10BA17555 /* GDTCOREventDataObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; E1E6C85C75FFE608F8639A084D7ADD81 /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = F56E6BCC902E5A6906931A4FEDCB7224 /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E200867DC2C7080B4818C3CC6A4A0B18 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 86BEE8A41433AAEDC75A9C8F9334E12C /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E200867DC2C7080B4818C3CC6A4A0B18 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 89720CB68A82B2FF5B98EE4FA09BF861 /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E2067AE94EC192C9626F836E18255B3D /* SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = C686E607286AB7E08B8E8B083E7C3B51 /* SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; E22214E4EF2CE522B3E8311CF4A002F9 /* FrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EB8D45C0E97E90D087657FC89EDEF81 /* FrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; E265227A4C1DB2311EFF7D1A481C37A6 /* SSLOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = CE89012333BC726EDF5F257C32C6E23C /* SSLOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; E275864857518C091CD5FF4CEEE87FB0 /* PTChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 578E7DE2903207C8DC9A9E617D70D24E /* PTChannel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E289DD56FB9A64EB8AA6A75ACA0F9CD3 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = CF4C8905C8FDE1862761861AABE7F880 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E2E490B23FB206AE0B3CD336767D0DC4 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 23512D9D1FA46DF9D7AB26488FD6D8FB /* RNDeviceInfo-dummy.m */; }; - E2E5AC3481B7CEC723E71F315B175F36 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E627D82208C709A675EC05836823B550 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2E63F80091EF95DB669379D32B18540 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 29741389F27E7F7213384B444FD5A6ED /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2FF9B95985AF9F0893B58D3A56E8F8E /* RCTNetworkPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 55C26A692C6E7B1A28C474303B2228AD /* 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"; }; }; + E289DD56FB9A64EB8AA6A75ACA0F9CD3 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B6C97675A37EFAC4203BE9D24797F2D /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E2E490B23FB206AE0B3CD336767D0DC4 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C3601DDF73E4E0C163E9C1038E282EC0 /* RNDeviceInfo-dummy.m */; }; + E2E5AC3481B7CEC723E71F315B175F36 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 52D70E6A6AE650734FECF0BA7B5B3005 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2E63F80091EF95DB669379D32B18540 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C389B355B317DAF3433694C53E04F99 /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2FF9B95985AF9F0893B58D3A56E8F8E /* RCTNetworkPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8E77041415D1CD541F3146A37A299F94 /* 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"; }; }; E305DF061F26647A3385379DB71FFDC6 /* RequestResponseRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CE30C981AFECA8F5C7649212D790153 /* RequestResponseRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E30DBF6F24A1AA672DB410F688B108B5 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = E0F93B07CA6A177B020501B813AF73FE /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E30DBF6F24A1AA672DB410F688B108B5 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 02EACCEF85C6401CE759EC23BFD20E25 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; E35C6D7DE7A931B32026F76A9CD0ADF1 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 21687532BBF95813285D4614E00325D8 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; E36CE82EE6E8EB310110289E09673AA7 /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = CCD31D2478D8ED31D3995A308550CD8E /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E39E3634C4CA7E2E69BB72A8AF9DF0DC /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D41A92F6CCFAC36752871F468C42914 /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3BEB1D6134538FEB6EF8E1F561712D1 /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AA490065F4BC8E0D3C4692DAEEFEAF6 /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3C2AA2EF8BF87E30448B374DC2AC287 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B318843A578BDB8143B81E602A3BD8A /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E39E3634C4CA7E2E69BB72A8AF9DF0DC /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 879C4675A42A906C9C1BAC3DFB52488A /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3BEB1D6134538FEB6EF8E1F561712D1 /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 28BBE692349E857ED55046519762BAA7 /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3C2AA2EF8BF87E30448B374DC2AC287 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 03C971251727F36F630D77196BF3442A /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; E3D417E505AF2104EB996901585FD373 /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = D3D5F57863D6E4968D27A62227156915 /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3D899247BA051EF2CCED618D78F98BD /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 778CBF152932CBF275F1EF51184F3EE1 /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3D899247BA051EF2CCED618D78F98BD /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 86AC22B4BB409F1E101B286CF2109DB4 /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; E3DEE879EF45B3369CCA589810AC4F9D /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = 117D6F285FFB893278988CB329E1BA68 /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3EF52EAA4DDBA2C5783321F550DC1EC /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 83B8CA6C9AFC665C3A24D768AEA995AD /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E3EF52EAA4DDBA2C5783321F550DC1EC /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 41949BFA1C03419EA1DBC94919B131BF /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E3F33BB478775D7C31E8EFF44424CABC /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 54F0EBC3C7D804136FA44144E2525C9C /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3F93C06523AB7C891246F4F5AD44B0D /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = CB64A782AAA28CAD578D9FBA2E4463F5 /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3FCFE46DD5FB40E8C723A5AB913D248 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = B923EA2312B2BB180A784C9E1D5644DD /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3FFAD5E1E8EB56B739FE7117329E4AA /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D48AAEE3B7A82C36CE218CA0D4ABA3C8 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3F93C06523AB7C891246F4F5AD44B0D /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E942DCB54F046D2146E9F69DC7E1335 /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3FCFE46DD5FB40E8C723A5AB913D248 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D8C74FA13B259036623D80DFFD327CA9 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3FFAD5E1E8EB56B739FE7117329E4AA /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 85155F53DD15AAF844D7921324350B39 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; E432F1ADFEA6AF93027885C4153879EB /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = AE2B51D72A10BBBF6FEAAA9CD98C67A5 /* zh-Hans.lproj */; }; E4346CBB30A1CE0D0CCFC60AB0111070 /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D3D68E6A6FD5EAFBF6E6CF0344C747D /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; E435A140ED65F86C87BCE291EDA0F8FE /* StringKeyedUnorderedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = B9C0C1A7183EF88CCC354BB8A1419EFC /* StringKeyedUnorderedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 26D606583A8A4265E46BBCF9BEF7D7A8 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E0E785CEC2D81D047949A009814CE8F /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; E44CC82BF34E84E10A31CF56B0A6337A /* SKYogaKitHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = B473A7ADF0E19BB8A0272C25026C4DE5 /* SKYogaKitHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E46F43ADFBAD3F9789D0F8A633EF8A2B /* RCTRedBoxSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 49DB63552321F5EB6E8D67D9D3225A75 /* RCTRedBoxSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E46F43ADFBAD3F9789D0F8A633EF8A2B /* RCTRedBoxSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C2D2383D87C2AA4BF53D7569872A92E /* RCTRedBoxSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; E490A09CBBCE0CDE87FE320AACBA49B5 /* Async.h in Headers */ = {isa = PBXBuildFile; fileRef = D11D6FBDB64F3E56C9FBE59F31698518 /* Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; E49188CCEC47F2B014FEF6031EED26C5 /* PTPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 74C310DC3306E164BCE850AA3DB4439C /* PTPrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; E49C99B16AE53555FE7A7CB8A8BE5382 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = A686518110E3EF511C07B43C54066949 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2827,109 +2838,109 @@ E4FE62A73A78E2082178236455F1A718 /* Shell.h in Headers */ = {isa = PBXBuildFile; fileRef = B583011EC779284025BD8BC1EBE6A7C3 /* Shell.h */; settings = {ATTRIBUTES = (Project, ); }; }; E54627196D731B399218E48C6FA9CF9C /* FBDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EDAEB7D91BA29518EE5F8AD1DC515B9 /* FBDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; E547BCB79227691987B5794BFB30C99D /* StackTraceUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 217FB6AD97DF7CD2EF569E3A2676DC8D /* StackTraceUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 979A89974EA11CC2F7307DC24AE485A6 /* RNScreens-dummy.m */; }; - E56618D37F0F6C8E1894028F83D901E7 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 187588AD728FE895C4CE2336639A2FC2 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C4F76CE918BDF24D3B02B9768F7BCB3B /* RNScreens-dummy.m */; }; + E56618D37F0F6C8E1894028F83D901E7 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 32A66B75467762CA4BE821738EB96B6D /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E5782D8BD91896AAF55C1CBCBEF37684 /* SDImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FA7FAF71D780486BCBC9CF348A92AFC /* SDImageWebPCoder.m */; }; E5AC340EBD1517A25C5CD160306456FA /* TOCropToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = CB53773BBF77C128A533EB2861B17953 /* TOCropToolbar.m */; }; E5CC97DD2276BCDD567C0F159E753813 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 47589F57C14460D5BDC99E69B4E10519 /* SDImageLoader.m */; }; - E5EC406439D4AF312D4EB82CF3EAFDF9 /* RCTNetworkTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8B79FC781979D53C3D281BD06EC26E06 /* 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"; }; }; - E5FB31F6C23D375DE5CBC98123BE9B8D /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 42789F8F1B2AD1FB439310641EDDB97F /* RNGestureHandlerManager.m */; }; + E5EC406439D4AF312D4EB82CF3EAFDF9 /* RCTNetworkTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = 00738B77A5CE05C854F2D2638BD918C2 /* 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"; }; }; + E5FB31F6C23D375DE5CBC98123BE9B8D /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F1A053F801616ED4AD79D36175CDEF89 /* RNGestureHandlerManager.m */; }; E5FF1743F9D79897E8139453D5C34C92 /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BB48F690B5F5C5245ADDEFC1C2B0144 /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6335683CD8324A549F41BBB5F393D3A /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E79585604F8EEF8602D5D08CC2F22ED /* ARTShape.m */; }; + E6335683CD8324A549F41BBB5F393D3A /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = 15C31B504AFEF2F1081FAA0B4C5C45FE /* ARTShape.m */; }; E636F64793DF12561685F8A8C80F63FF /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D117A13E94F82321D8B4159140BC45B /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; E67F1572C88EAE81A75D56813DC25A81 /* Init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA0C002C7BB5AB0659612B13B3F68B59 /* 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"; }; }; - E6B28EC2EAA76DA7CBCA209D55786E4C /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BB8AB3616CFD2142F8046F8BDD1B760A /* RNFastImage-dummy.m */; }; + E6B28EC2EAA76DA7CBCA209D55786E4C /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C30C30074F4C0A197B79ED68957C6ED /* RNFastImage-dummy.m */; }; E6C3AC1533E09AB22822D392C9B9CFCC /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E5F817AABF49567F3399B48908C5949 /* FIRDependency.m */; }; E6E661E87351F35E9363075A0879E1B8 /* UIView+Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = E9EC0706590ECF7C9BB06ADB9A20367F /* UIView+Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6EEA57B39231F94F387361EDBC11C38 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EDA136A98B0D1CC8C14B696C3CA3288 /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6F7B9CEE9EFBFBE390A29BFBC562255 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 1387D192DEF83A58471C4E31CF164D14 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E6EEA57B39231F94F387361EDBC11C38 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E2F48AAC45A184290900EF2E16526FA /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6F7B9CEE9EFBFBE390A29BFBC562255 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = F5A35DF865955D1D0F752C21439DD2BB /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E6FE2807B85DDFB3EA91EEF768018D80 /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 46F4719382C42FA298DC8726823D9D46 /* dec_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; E707A2FAC0C36218BA2830206A0D76B0 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = DE1A03993F221E91A060D8EF328972C0 /* NSButton+WebCache.m */; }; E71ABA1C157CF07D0AB0F5123F4B3DF8 /* FlipperUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E38B6606BBB78AB1FF04F7074200380 /* 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"; }; }; E71B7C43CA2B681CE0F3BE76936B0452 /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 311D3552CE0BEA00664B89CA15F9E487 /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E72DABDE93F1A7CE6ABCABB7826FC731 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EC491942FBCB9E18C4D191EFA0AC2D7 /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E72DABDE93F1A7CE6ABCABB7826FC731 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = EAC5057FC760FBFD55BC580C40F920CE /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7584AD4F81B71B32D045FCA44EBC026 /* SKDescriptorMapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8449A83B76B6D20EA14E5B02BF02BD30 /* 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"; }; }; - E76931DBEBF9716593668E19CED50263 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = BABF1453638674E3E2F7C08B23127985 /* RCTBaseTextInputView.m */; }; - E79CC0FEF54CA45A7593ADEDEFEDF2F7 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C89A10E5A2F973FC16FE5EA6BF54102E /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E76931DBEBF9716593668E19CED50263 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 612BBADAE25F5CC04DCF32929D459F74 /* RCTBaseTextInputView.m */; }; + E79CC0FEF54CA45A7593ADEDEFEDF2F7 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C5BF9AA9C782B87608E0F4E3255B3AA /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; E79E09130D1B077C25C4840E4C51B025 /* HazptrRec.h in Headers */ = {isa = PBXBuildFile; fileRef = CA23BBA18B09DFADF204605037FA6989 /* HazptrRec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7A5F444042456C0ED617E5BD78C8D41 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AD858430194257ED9865ACF31CA62CE /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7A5F444042456C0ED617E5BD78C8D41 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = D10621A800B7B97AA6F5E01BCDFACEA6 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7A62D6CDBAA229E65AE672373925C76 /* fa.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 7975F4555AD3757824FA4466A2497A85 /* fa.lproj */; }; E7B341F66C139B10A13B3829F1EF50BF /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = C1AF7046F4295200DA1091E98F1B557F /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7BD9FFCE36687BDCA52879B12903E20 /* ExecutorWithPriority.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F17EAB6EC5ABDB09AAC7D5AE5ED78FFD /* 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"; }; }; E7C35E716B800BD4F5E87951BB2B21B6 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 85F7C760A276EBFC7EA9BBA94C4EA357 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7D2340812F03790C705D669D0BECD8D /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8BF3FE3E84F42D1F8138AC883498CA26 /* 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"; }; }; - E800B9775C2890021CD5E850C1902AE5 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = F8C19B245B025664E7F15066425AC15A /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E81B4FD413363CBA1C3EF0C8871AF34F /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EA73BD9A0670CEBBF8B1FFE8023CF4E0 /* REACallFuncNode.m */; }; + E800B9775C2890021CD5E850C1902AE5 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = E75FF60B158B1B011137F71422617F65 /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E81B4FD413363CBA1C3EF0C8871AF34F /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = FF4202637A81AEA50739266A3B02FCCA /* REACallFuncNode.m */; }; E82C91CC8CEB33B774DB5E1C9E5D8FB8 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 12E9A42573FF35B5739794EE14DB0D7D /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E853513BCE291CEE0B0E1CA5D20B1809 /* RNFirebaseAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = A9A14BC73F7C002FBCFE67B418D37145 /* RNFirebaseAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E853513BCE291CEE0B0E1CA5D20B1809 /* RNFirebaseAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = E6EEFCFD363248FF906BA5F5B0A32E75 /* RNFirebaseAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; E86715E049DB72C646A5223D1367BA05 /* AsyncTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F40837B384672DDFC34288BFFD5EC34 /* AsyncTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E88CCC48841EDF21CCE4162898C3A67A /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0768F9582B509DD1903F273F99CCBE3A /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E893729E87251274E6D1D3B51566E3B4 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B60E5A617C4376BA7FD9E6EF8C5EB36 /* RNCAppearance.m */; }; - E8995EBE55A6CB262BBBE43F5A8C476D /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = 0591949859C3338773C4E3829101278E /* BSG_KSCrashReport.c */; }; - E89D296821E52EC4446DEA0176A80531 /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A740AB9E84EE7F160C46FA027866F16 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E88CCC48841EDF21CCE4162898C3A67A /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 969B6F69D32F2EB84CFA0A410BDA47DF /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E893729E87251274E6D1D3B51566E3B4 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 122E04F7E1EC2E9AFE681E66A2D5D1FC /* RNCAppearance.m */; }; + E8995EBE55A6CB262BBBE43F5A8C476D /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = 15DF0AD1F4D72162B8B16CBE2821BB68 /* BSG_KSCrashReport.c */; }; + E89D296821E52EC4446DEA0176A80531 /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C0DD9DF6859C411D62FA7DB0B4ADAB70 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; E8A3095A649700DAC4035399D6F9253F /* FIRInstallationsLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 06F8EBA16B75A578F19F3C024272E7DB /* FIRInstallationsLogger.m */; }; - E8A6ABDCF3C0C5876058B074C4E29BB6 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 96EC42893AFEDCD3C773C7D9B8D2C506 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E8A6ABDCF3C0C5876058B074C4E29BB6 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = BB6917060CD8E3BCC7BAC43AAF2FDFEE /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; E8BEE2CF803308491014F4084284C941 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7FA9C670FDACA6DAD2C7B0BC088A8CB /* 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"; }; }; - E8CEFACE95B22A5EE6355422706B5E1A /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F04BBF6F474E888E7899CB3E0E61DE4 /* BugsnagKSCrashSysInfoParser.m */; }; + E8CEFACE95B22A5EE6355422706B5E1A /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F0CC2A5C60683A04E50F08667B3742AC /* BugsnagKSCrashSysInfoParser.m */; }; E8E57DC7FD3E1405D821BA98E547E940 /* CancellationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 28CE9608E7A72C33778634272680ABCE /* 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"; }; }; E8F8A1FD8DA38CF4A4223242F5E905FD /* GDTCORDataFuture.h in Headers */ = {isa = PBXBuildFile; fileRef = D8CF38A9D65D586F07E4D1801E49DEF4 /* GDTCORDataFuture.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E909C3B354A842A014E4C9C2F341F55C /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = FF054FBC4F1290AE1B95DDB9CF320F05 /* BSG_KSCrashReportStore.m */; }; - E930EFA4028C347FB207A0C4EF2AB204 /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 2668059D8F1D39DC60444BE60ECFB05A /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E909C3B354A842A014E4C9C2F341F55C /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = BA402C1554FE2BDBAB76A90DFB51A5C1 /* BSG_KSCrashReportStore.m */; }; + E930EFA4028C347FB207A0C4EF2AB204 /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = E8B20DC75F836A5E02E9E2ECB20ABDED /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; E9420AC963BB88173D440157F5C2F49B /* ConsumerBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 167F569B180CD0BCC576258711BEB603 /* ConsumerBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; E955BABD4485D7B2B958836126D6196A /* Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 66B721BD26A928F014758863ABC256CD /* Cursor.h */; settings = {ATTRIBUTES = (Project, ); }; }; E9724524AA9D6AF0B15DE2A0E50866CC /* ColdClass.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 188016977A4BCB7C17AA39C769EC6872 /* ColdClass.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"; }; }; - E97AC526AA9C09756D6D691D576366E7 /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 674E63ABDA8BF6B7033B9F3D41F3CC30 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E97AC526AA9C09756D6D691D576366E7 /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A3AF7F862CC74712717A4D37F702C87 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E98690E099869FCA322CDB7C8AB9B323 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 2DDE527B11E155E4BB506DEC931D0CBD /* webp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 29B0E2ADD93FF665A396F2BBD086349C /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9A3CC8E413540C894C020ABF96AD215 /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 2513D6F36A8FA8C9B73B64041F2EDEF2 /* BSG_KSFileUtils.c */; }; + E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = CB37AA76C764D977AF9EA4B1FA538F9D /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9A3CC8E413540C894C020ABF96AD215 /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 555614C4441CCF93180DF6410C9F48EA /* BSG_KSFileUtils.c */; }; E9A824AE0E78956A27149966A7E03D42 /* SKViewControllerDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B4C7BCE8DE1F357EC2A2E9C1BEB2D53 /* 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"; }; }; - E9AA3E90817EB0A8CD2A00F94D3F005D /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 61921553F1EC97895789B8D5FFC8C8E0 /* ReactCommon-dummy.m */; }; - E9ACBB81BB2D21567E75CB08C2B132A4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E2CAD787B7E9C2C2142BACFB04C3355 /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9B3CCF9119F1CA395816741CFF9A3F1 /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D6902FAFF61CDB772CD2B9E2EB0FE5DD /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E9C187BA8A39A6E5DC981B6BCD05DE81 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8047AAD4980D8D52D9E71B867281B50F /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9CB3E4BBC56D018906CC137FDCC2218 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 940929DAA269A4C4ACB67A9A2337AA01 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9AA3E90817EB0A8CD2A00F94D3F005D /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C14E45FD9623CC58C10518AD113563CE /* ReactCommon-dummy.m */; }; + E9ACBB81BB2D21567E75CB08C2B132A4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = D94271F55B4B4578FBF5D306CDE13760 /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9B3CCF9119F1CA395816741CFF9A3F1 /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 78545C54F7F735A7E71AC86B01AB3CD3 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E9C187BA8A39A6E5DC981B6BCD05DE81 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 082248F149CA01E5F5092279617FFF33 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9CB3E4BBC56D018906CC137FDCC2218 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A5D8F44DCDE87F173CBE63A075DB058 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA0FBF913FD0E76C393BC35D6CF6F339 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = 76328581CF6F60674D9292C4EC0DCE3F /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA1177A39135D58784EC37A4E968A7C4 /* SKButtonDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4E8C8594A79A3396703CAEB947C0E080 /* 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"; }; }; EA3D6A64F2CFE7B38FF1161EBA89FD0D /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7CF873064A7554B34BAC6A3F9E7DEB /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA4E9E8232435EE430E8A5864860B289 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = C8896265D038C4A8BC58E1851B938227 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA6CE73D410804EC6E57F5220D5163D2 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3169594B075AF1E3A5B47E086E0F5156 /* 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"; }; }; + EA6CE73D410804EC6E57F5220D5163D2 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 87A15D379D5A6FF0CA7347DCFDE9F8DD /* 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"; }; }; EA82D914F7C4376FA679563B04C8C252 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = DC07F7F25F7586236F6C78AE12515F9F /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA87C832CF6E91F3233B9E41993D100D /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = A68DB5CA0A99508DCB1E2CBBD5D98521 /* UIImage+Resize.m */; }; + EA87C832CF6E91F3233B9E41993D100D /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = B53AA8B5C803FAFC7AB1D0090127D684 /* UIImage+Resize.m */; }; EAA2B4C60F7BDB41A80308A76A4D9848 /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 892713889486EA2800AA0E9C659FEF2C /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; EABBB15709D35D5F8EA21BC4880847C9 /* UICollectionView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 861E52E0F513A697B05B52BAB1712F11 /* UICollectionView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; EABEB2DE7ADB678B7E0DCFFBB64EA5F5 /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C0E589628171911A1111FDFEA643A78 /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; EAC3C6074678F577E47481233D845A7F /* OpenSSLVersionFinder.h in Headers */ = {isa = PBXBuildFile; fileRef = CF73B714894B60C06E72E372750D3331 /* OpenSSLVersionFinder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EAE7EB64A517307EEDACB23392569599 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 95689EA557684CC591A3707AB727EE2E /* BSG_KSCrashSentry_MachException.c */; }; - EB15609268E86B4D0F86331DBA9B9028 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BFECE6384E03B74BBDCD64E8B15A7BAE /* REABezierNode.m */; }; - EB25A6FBE311C5DDA2C62825FC450926 /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C052C1FB343F7F0A9BF08D183CFD4EC /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EAE7EB64A517307EEDACB23392569599 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 902655D099DB95E0ABE2787457DD2742 /* BSG_KSCrashSentry_MachException.c */; }; + EB15609268E86B4D0F86331DBA9B9028 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = FC173FDB05B7BEFFF5A3A8234F36C097 /* REABezierNode.m */; }; + EB25A6FBE311C5DDA2C62825FC450926 /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = F01F18AEA282CB9E34DD14D19C2D63A1 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; EB2C44784270DFBA3B582FB79FB0B4CA /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 1697E071BD485DD567399534761FB4C2 /* alpha_processing_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; EB3971376915EF8F6758C39F0A90EF35 /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = BBE5EFCABEB336804CDA1C119FB28B51 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CC91CB22BA56B10A996E0E12450DC09 /* RNGestureHandlerEvents.m */; }; - EBA878971E9F0642C4A9BB01CC1CF5CF /* EXKeepAwake.m in Sources */ = {isa = PBXBuildFile; fileRef = 05E7285D3CE4D977C35CFECF3AED54DB /* EXKeepAwake.m */; }; + EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = AB19388EE5EB2981E1C9A9DF67E6FF9C /* RNGestureHandlerEvents.m */; }; + EBA878971E9F0642C4A9BB01CC1CF5CF /* EXKeepAwake.m in Sources */ = {isa = PBXBuildFile; fileRef = B9FB1155EF84D6AC90960986987D4C56 /* EXKeepAwake.m */; }; EBB0B32AE8A9FE7267668D1F2DF10CE4 /* FramedReader.h in Headers */ = {isa = PBXBuildFile; fileRef = DB7324CC6440821330D5AB267227CF47 /* FramedReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBC0F9270448ECBF6E1A9B635E245FD0 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = CD8B535DC636A2F8344F95F9BF077873 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EBC0F9270448ECBF6E1A9B635E245FD0 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 756E6084FBDF051F9DC7F4553649C4B0 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; EBDA10C96D8A27B909F8DB3B0A7C32F1 /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CA6F654F7CF1E6F99A19DC2E57C9CC2 /* pb_decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; EBEB8E966F0000E5B9996ECAAA718A72 /* fa-IR.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 123D42F2364ADFC74FCB4B75098452B2 /* fa-IR.lproj */; }; - EBFD540945522362ECEE6BE93F273482 /* RNFirebaseAdMobBannerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 80D4810D33665522C8172471CD6F0912 /* RNFirebaseAdMobBannerManager.m */; }; + EBFD540945522362ECEE6BE93F273482 /* RNFirebaseAdMobBannerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 066FD3A91B0F1517F1463DB5F7CABA38 /* RNFirebaseAdMobBannerManager.m */; }; EC60D5885663C26EC9E47C3CBEC60DF1 /* Sockets.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3ED322C4DA7FFE66A84B029B0A0F8B14 /* 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"; }; }; EC6C3231D7D2C1200CB6826C0A9CEE53 /* GULSceneDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ADFFB1471FE2E15D6E606ADFC40A14E /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC6FEA75CC5E02F4EC760C49A764BF56 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B9EECE7FEF87ABC9945DCC76B0242B4 /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC6FEA75CC5E02F4EC760C49A764BF56 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AD6C8ED2DA49566A7EF6CBB775EA267 /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; EC90A4E51EF3B2F0B3EBC17E4880A9C2 /* SetupResumeAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9105437915529F5B93662FFE4F8C5AB /* 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"; }; }; ECB6B7BA94B66641FE3315168B7D0F3D /* FlipperKitNetworkPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = DA2BF1C1B987C3DE8074663DD5C69C64 /* 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"; }; }; - ECBA10F950524D80B5078713F5AD858F /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C01677F298780E9A8D60D5281B060257 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECBA10F950524D80B5078713F5AD858F /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 02C81FEA3987E502AC2FE0D8F1CA6DE2 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; ED241C44D1BE21C144A33B37AD586BD7 /* EventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 89AB6E474FACC815694CD925415864A5 /* EventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; ED368130DB855003BACEA28F8A340D7A /* OpenSSLPtrTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = CD130C92244E30DD5B03966D954ABBA4 /* OpenSSLPtrTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED429D2623150E0DB78AE2FF534E555D /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = D85F93BA0C1F91F82E872303AC967FE5 /* BSG_KSBacktrace.c */; }; + ED429D2623150E0DB78AE2FF534E555D /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 17BF13DD148057E6199EEF5D184DF394 /* BSG_KSBacktrace.c */; }; ED62691B003B2C54B15DD706EBD7FA6B /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 233894ECB8BBAA48D27FF8FFCE1B143F /* histogram_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; ED95751FEA58215AFA04947C656EF88D /* ColdResumeHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E790B8EA7C4CAC702EAFB5FC27534D19 /* 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"; }; }; EDD81D5D065ECC3489D1E01E230664E5 /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D9274FD89581B52AE591700F394D0E7A /* SDImageLoadersManager.m */; }; EDDC688091DA36B599E3070AF38C8E58 /* SKScrollViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = EA0396D3F432432F9B9F518FCADFBED3 /* SKScrollViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE12DC119553B31EDCD3458F6E314E08 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FFDFD5627E8F443A5C394A522D97255 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EE12DC119553B31EDCD3458F6E314E08 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AF9C9C70D76802E90418693DC909EBB5 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; EE26C68BA1E4A373F6AA58F711E44168 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = C2C3BA5452DF3C79CF3586FD7F42D79F /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; EE545CCD58E4A2E2390092397FF90035 /* DestructorCheck.h in Headers */ = {isa = PBXBuildFile; fileRef = AD1783DEF94BD003B7142CE78AEC498B /* DestructorCheck.h */; settings = {ATTRIBUTES = (Project, ); }; }; EE7F301F7EB3117BC1E77E72245E3FDA /* Sse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0C2BF3F5C45A731E60EC8AFB9F98F12 /* 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"; }; }; EE8A83128D8380211CB6876B0BD6CC89 /* Benchmark.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BFC378E35DFD38F87AC7213983ACA3F /* 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"; }; }; - EEC8F25A4CD8C7F41690C1DBFE4D31D4 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = F36EFD190D824B1AA3C9D168D5A91F6D /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EEC8F25A4CD8C7F41690C1DBFE4D31D4 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = D674B7043399AE923A8080EB3E0DD7B3 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; EECE8417F87A642504A215B21A1BD894 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 255BCEE432582E3F2C689BDA7BE538E4 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; EEEE7946609F4EB86E6A6971970E1A7C /* DistributedMutexSpecializations.h in Headers */ = {isa = PBXBuildFile; fileRef = 02057BFC1C42DD60C7390331C635D854 /* DistributedMutexSpecializations.h */; settings = {ATTRIBUTES = (Project, ); }; }; EEF97C679BEE5F2A9C7F7D95720C9AF6 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 631F1241AC9687C84BEA7F2B9A6BB421 /* lossless_enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; @@ -2941,16 +2952,16 @@ EF6ED61C297982CF31DF19548C24548C /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D4CDCA061F91341EAB5C84F1240915D /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; EF78A78AAD79DFDE72D424FF8F35DB23 /* GlobalExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AFB017F3173CA155D67E4F2D5C68D4E9 /* 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"; }; }; EF7E6C878AB8A30D92FFA18861A908EF /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 874E66AD127D6AABA1479A242A5DF47A /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF8E20FC60FEDE81B71F5AE86978AACA /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 67B8DFFCE4C7CC70F13C349BE6035C8C /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF8E20FC60FEDE81B71F5AE86978AACA /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 578E76A091CE645BF475F243B3511735 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFD68E385A78185DD955ABACB421ED01 /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 48EF4C8B5B8E6AC7B3B8A8E4EC37313B /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFDA25149EA9A68F536F11701E46BDA4 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 846E289778E9CB2CF36CA55865F975F2 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFDA25149EA9A68F536F11701E46BDA4 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 60124DCD1F20F3DFE9902D3F831F0CFA /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFDDDA86D58A5A3B5A5C52CD2E4684D8 /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BADE06D6084A945F5CA9C74E12346D3 /* random_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFFA7E6647BD21D78B6DAF725C5E62E5 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 393A3EC9791AAD4CA73A390DC97CBD6A /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFFF616FD9B0B9494F7242A085F23A95 /* NotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E90ABA43547076CF75FFE95114B3CD8 /* NotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F01494E1D98DEC7F2602E362E9CDD818 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = EDC17792673B4E74A85240A093A34E23 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F01494E1D98DEC7F2602E362E9CDD818 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = EA772201825DCD0D0BD240A7017BAF9F /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F026131495373C5DE569B201034D9101 /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 7AC126BC129D538B800F33EC28D5D75A /* cost_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F029DBE2241C707F43B4AEF3919C8C0C /* NestedCommandLineApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 108FFC228C1812512805FE28F3585E1A /* NestedCommandLineApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B41DBB54CB5BC29C9F2DD4AC442948CA /* RNPinchHandler.m */; }; + F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B345A3B464A66FC1F84CD8C067A5243E /* RNPinchHandler.m */; }; F062B79236AA526A32FA60C8582C91A7 /* AtFork.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FFBD976BE791AD9DDF1BC7B789CF0041 /* 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"; }; }; F06D028A6F88B5E5C99E9486691C1816 /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B755882455E18414CD2AF4E615548B3 /* SDImageHEICCoder.m */; }; F089F83DA2C72E81AD2B58C6535A6626 /* Executor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A5652151D82DE56E6CE3D4428217CE5 /* 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"; }; }; @@ -2961,30 +2972,30 @@ F1270B3BF10D921BCFC9023E8D24D71D /* LockFreeRingBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B986BC6E10518C6271D2246B808BA2A /* LockFreeRingBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; F128E5421AFDD733B6EA5E6DC0BDBBBF /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A7C6D8E16697B9813BEB8DE1975BA7E /* dec_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F13D5204BA38F81E8AABCCEEFF2EBB49 /* EventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = CA3941A14A20F28719058AA8F389EEDC /* EventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F15168851413744B3EF7AADCD0B323B2 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = DA70B4DCF41CBF382730E796B3FD3315 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F15C77BBB508B9EE00B7C25733685310 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 210DCEF81B5A5C5B4EECC6BAC8BCAC40 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F15168851413744B3EF7AADCD0B323B2 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = D464809C3C3854D1F9775A805FC36A2C /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F15C77BBB508B9EE00B7C25733685310 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 16BEFE6A5F51633D8AE6553FDE7F2B38 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; F15DE35EBA4CB4B476438C0692A0950A /* FIRHeartbeatInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = CD69B1BA273ECED47476DB724711B422 /* FIRHeartbeatInfo.m */; }; F161334CFD6395BBE0856CEBF4DE186B /* WaitOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B5E4040453D8C7A7AD4D19C06C47AF6B /* 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"; }; }; F1CFAD1BBFF7E0BDA26021957C170257 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 5857793AC1B20D235A93893B55D4E024 /* vp8_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1D29EEE977196CF2060E83F8D6DC9F4 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E3EDCAEDE57D6F600816F83663FBA53 /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1D29EEE977196CF2060E83F8D6DC9F4 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 86E393A367FE82ABC7B17ECBE2B0B1E2 /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; F1D8204CAEC154C28A303A0B0E0D8B7A /* TimeoutManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF20FC977818063C4962F1A51D72E83 /* 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"; }; }; - F1E1333AEA9A20A7D09582045666A987 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 64390CB491BCD314AE059ED98D830851 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1E9F4F61494F37A09D095B3675E4A8F /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 670FFCA9F4BFB50956ABBE651270B075 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F20C9E3E4D0BE9C8724AFD7556F663C8 /* RCTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 140B58D080DCD1D139F1EB3283AAABB7 /* RCTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F232397B38A23317C4A05F4975207C25 /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = A733777449DF2F8811A31FC086E540BB /* BugsnagFileStore.m */; }; - F242BAB0E83DD4405CC1FCE0D2D9B7BA /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 79D877874616F616FD9B90D000C2EE5C /* RNCWKProcessPoolManager.m */; }; - F252EE542CF5FAC448CADE1D81F56DF6 /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C1A2D7195A33B28D3E8779C2D1CAD7E /* RCTCustomKeyboardViewController.m */; }; + F1E1333AEA9A20A7D09582045666A987 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D12E7F5CECBA2EC6D11887658B661A2 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1E9F4F61494F37A09D095B3675E4A8F /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B2948ABDB21DABAE59D9D6DFF951012 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F20C9E3E4D0BE9C8724AFD7556F663C8 /* RCTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A0CD1151988E642F6763E1E0FEBC062 /* RCTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F232397B38A23317C4A05F4975207C25 /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = F48F0353F4F7EE6357B920EF17DCE593 /* BugsnagFileStore.m */; }; + F242BAB0E83DD4405CC1FCE0D2D9B7BA /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E282F321953E292EEE8FEE03D7E56028 /* RNCWKProcessPoolManager.m */; }; + F252EE542CF5FAC448CADE1D81F56DF6 /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CAE3FAD576DFEF9531504E3694317A5 /* RCTCustomKeyboardViewController.m */; }; F255767A43EB01B5324B1B7536288503 /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F7EDC18F664B0FDA4C2400EB74F4144F /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; F25A24D58F9DB18D19FA4AF42B7466B0 /* FIRInstallationsSingleOperationPromiseCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F169A2F5C7C92F36CCF25CEF693D9EB /* FIRInstallationsSingleOperationPromiseCache.m */; }; - F262E5F995D10548509FDF5E5834B607 /* RCTAnimationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = B456F787CDAD8E9FBC971E3589135E4B /* 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"; }; }; + F262E5F995D10548509FDF5E5834B607 /* RCTAnimationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = C1A63DDB109BA4203505D76411BFC8F3 /* 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"; }; }; F26A41277C12D8FFF8439BA0A0DAE745 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 675B3C63734646BDAEB1A3033BC02E0B /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; F272955FEB837F77CA7044A8841831DB /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DAE28EC73109D44B9C46C23181E60BC /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; F2A8DA1AC957383ED61BC129CBFEE9AE /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = E656F2916FF54534E4646F7D2B1C5400 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - F2C1EAB86A623FD0E3AE7D85B984C89E /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 74054676BA9C8D1B26EACF72E7B7879C /* RCTBaseTextViewManager.m */; }; - F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 896E3405123D8222C02B5AF250E310BD /* RNTapHandler.m */; }; - F2F6974CB2911E6E418367E261E1CB4A /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D6F465A07E7B71C8BD64BFBB39709B4 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2C1EAB86A623FD0E3AE7D85B984C89E /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 77B684152044F95724A69EDE979113A0 /* RCTBaseTextViewManager.m */; }; + F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 25F57D1BC4A85048563BB3D7FD14366B /* RNTapHandler.m */; }; + F2F6974CB2911E6E418367E261E1CB4A /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = BB81AFF45CB95797F486992B1E8100EA /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; F32F2C636023C27F22172F64D4D1936D /* EventUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = C8DD038465A9BEFEA0B2B73AB0D535AA /* EventUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3636AAE48C74951140FBFEF7AD11D19 /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 66E53087487877DA1338C28363B6884D /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3636AAE48C74951140FBFEF7AD11D19 /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DB92C8FC3FC92540D11087C99286E40 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; F3A009B81FF8A92B347826968ED9AF1E /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = 830FD88C94F259C1A38BAE2C9E877464 /* demux.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F3B34CBCC961EF36E3ACA1228C478F39 /* FlipperConnectionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D5F7BCB867E244067BE6D14F9FAFFAB1 /* FlipperConnectionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; F3B80E2B758010DEDA95D8CD4B00CB84 /* OpenSSL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F0E80F5B80651483B200226F1AC7F0C /* 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"; }; }; @@ -2993,132 +3004,131 @@ F4227A5A22C299DB2F673D8875C42BAD /* picture_psnr_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 96DFA5E6B7BD7B64B68398EF8B746DB5 /* picture_psnr_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F42591F023436E2D251408E0F6DC9E9F /* GTest.h in Headers */ = {isa = PBXBuildFile; fileRef = C7DC09936FA681FD6534B67D460E6377 /* GTest.h */; settings = {ATTRIBUTES = (Project, ); }; }; F43EF5DB5AC2D8D783DCCDD92DEF2232 /* HHWheelTimer-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = EB99404986864F2D05D2FC2B60B4B753 /* HHWheelTimer-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F458466F3BF75C1058975EECD1F9FD6D /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F11B9B92C0E35FBA7898DE7A2A81B02 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F489673F5E89F0C8C8621528F0F3BD78 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 55B584D504D0EBBCB3ADE54119D0FA67 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F458466F3BF75C1058975EECD1F9FD6D /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = A6635C4C480B1A9D8C117CA1FCC87D13 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F489673F5E89F0C8C8621528F0F3BD78 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 95F07232DD6C43A691C9B7768164DA05 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F48A0381C51B2F0D24730133B0C5D5FA /* GlobalThreadPoolList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01317DD0FBC67A8D7591529633AF3EC2 /* 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"; }; }; F48DC19A7DE41508D245FE55D1995E1A /* ColdResumeHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A14A135D0D1EBAB15A05123FDC4C6BD /* ColdResumeHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; F49F1B5A4B1DA201D133771E9923D648 /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = A27CB91DABE5DA552B926FF662C52DD2 /* webp_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F4A5AF62639EE12B25A134CC761AE115 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 691FF0282B7E134729F1A5F8A2A5DBFC /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4A5AF62639EE12B25A134CC761AE115 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = E86A3DEE59098AEA0F18200A1B624959 /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; F4E86361F0A277D41AF92EEC1D515841 /* FIRInstallationsSingleOperationPromiseCache.h in Headers */ = {isa = PBXBuildFile; fileRef = C597DD708F8111E3F8A0C470DFC62F00 /* FIRInstallationsSingleOperationPromiseCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; F4F2AD90553CB120BC682940433493B8 /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = 47870AF521D3DC75A055CAC41A8A11D3 /* lossless.h */; settings = {ATTRIBUTES = (Project, ); }; }; F4FA192DF8E95C26C55DAC65EE6B310F /* EmitterFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = D1D081B8E8C632A44F45A426E3345E74 /* EmitterFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; F506CCC7C34A049D1253C979B7807514 /* SKNetworkReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = C189539BA2A4A2E7C6039B950C1B63FC /* SKNetworkReporter.h */; settings = {ATTRIBUTES = (Project, ); }; }; F5106A9D245E7C593DA00BD467654ADF /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B49F4886F558A20270FB1B28A61A7F2 /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F518CDF6FC7F5085F4C33D36E71E6B35 /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B6F81B3B0CD61E1951D55B1ABC4C31C /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F518CDF6FC7F5085F4C33D36E71E6B35 /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9F9FB50FE02D6165060C3BB45997DD /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; F52336859BB9F756E055C93AE2968A87 /* TOCropView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F1ECE604E7ADB398D87DEC9A211AF72 /* TOCropView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F5292BB5CF2C799435F4B1E53237DFA4 /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = 5210F187C4D7354884092134D73C6EB0 /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; F555F8C238747A97FF295FA277B84567 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 75CAF893E56A3E68A2D0CE06985393DF /* lossless_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5569D7601768A0E8A97A9EDE6CCE8E0 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = C818EB36F01E79DDBCD64734BB197383 /* RNNotificationsStore.m */; }; + F5569D7601768A0E8A97A9EDE6CCE8E0 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 22E30478C4160A8365B501CC0D700C84 /* RNNotificationsStore.m */; }; F557D614321C8F93BE3F898A9BCAA82A /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23FBFEF2ED0201D52F50C20C8BFE4A8B /* 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"; }; }; F5978CC4D77598D1A49F9D24FA00C184 /* EventCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 8919BF37BBF0ED23EB9EF0C3029F1AA1 /* EventCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5BC03175EE7232A1912FE3CDDCD970A /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = F30AF17564906D1A6005AFC0ABF10B35 /* QBVideoIndicatorView.m */; }; + F5BC03175EE7232A1912FE3CDDCD970A /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = B93E931A811386F363040FE7E7792B66 /* QBVideoIndicatorView.m */; }; F5E977F9F31FB31665D9BB76A04FFF46 /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DBB41E2265A85A4A5A23B38A7B6E88E /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; F6086ADBCBE0EF97E2FEAD8C5415439D /* MemoryIdler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14B3C2BFC1E0AFF93FB0ACAF2513E787 /* 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"; }; }; F60BE74EC0CAAE86DF95B244A4C5151B /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 501080DAE21711CE6E8FADCE54B0D5D5 /* UIColor+SDHexString.m */; }; - F629573D9A6915E4B81534F7AEFF6C94 /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = C84F32F9099BEBC7F2D27568864D160D /* BugsnagConfiguration.m */; }; - F64B30462C3E89F7E2EF6BB6F90F0B57 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = DDC153135A8664CE2D76E9E60D5E2631 /* BugsnagHandledState.m */; }; + F629573D9A6915E4B81534F7AEFF6C94 /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D64575D372A7F5A5C6B1E7CAA66CD49 /* BugsnagConfiguration.m */; }; + F64B30462C3E89F7E2EF6BB6F90F0B57 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D8409785A38DCC8B6E9EFC8DDF80F5E /* BugsnagHandledState.m */; }; F657530EEA9AC9426F2F7045A997234F /* Singleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC846AEF3261BACC05944DB052148106 /* 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"; }; }; - F670C6D440F38F5C8CB289D1D0A50C7B /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 560EC7B7328E44C765D557C465B7C2E6 /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F670C6D440F38F5C8CB289D1D0A50C7B /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E124D38A17FD4250EBC351A8C9F437C /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F679A1C3FFB46A8DA72E9B7078375DDD /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = ED89F458A2CA581F83FA7C1B223BFF63 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; F680A09D6874079978F4C5CAD3748BF4 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 9AF79998E78893179131B1D456AD4AB5 /* fr.lproj */; }; - F69B2A01BCC45CE52653888D2D954540 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = F75FFFB4A60327E536707F5E073BBF4E /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6CA15782A2C0C1E88AD0B2314B7655D /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0DEF98D45877DF4D904216235211640E /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F6EAE7F32B58579065F02A073AE50A0D /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = 5921D7E19DAD65DBFDC7FF5F4C0037AD /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F69B2A01BCC45CE52653888D2D954540 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = FA9DD52D3ED759F100B2EDAFDF5E699C /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6CA15782A2C0C1E88AD0B2314B7655D /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EF2C04C9FBCE8D759B215220D6D7AE3 /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F6EAE7F32B58579065F02A073AE50A0D /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = A20E0FF6E32A8014393A252BE69DCB70 /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F6F66797F0FC78C2248492479CBE62CE /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F4C3DDEFA9C202FF1A5B1F8644FBA4D /* 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"; }; }; F70C1B48EE8C32FBC9AF78B84C715BB0 /* TLSDefinitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 59211E17E611B8A20CE3C0D35EB995C4 /* TLSDefinitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; F714A528842E6AC83C6A9282ABE869CD /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 969742EA463838E22D79466329ED84EA /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F718E29630F179BE5B516894C8601FBA /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B11BFB4326D12F848BD7A8912FA1F14 /* RCTSinglelineTextInputViewManager.m */; }; + F718E29630F179BE5B516894C8601FBA /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F7AE66658B6D58193498536A962DE0A1 /* RCTSinglelineTextInputViewManager.m */; }; F75DC605FC8D1F7681541CE667AB7CB4 /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = AC810F6424D64F2673FB3991806617EC /* huffman_encode_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7635F19EFECA17CCA8B34B1FE4B0A41 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C44288E4F9D989101F85D6BC24EA9B5 /* Pods-ShareRocketChatRN-dummy.m */; }; - F76B9F350B7C4018D1A20BBAB9D61AEB /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D0348860E2DCDF89CFDCBB47AE6638F /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7792BF3636610713062788116665BF3 /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7913982620E849A94716CA7242FFA815 /* RNCSafeAreaViewManager.m */; }; - F78CCFD0E705F38836EC90A08A0D099E /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8674838230E26E5E95763F4CF0FB79F0 /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + F76B9F350B7C4018D1A20BBAB9D61AEB /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DC4C8830B7C0D76E6F9DEF1FE64BC05 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7792BF3636610713062788116665BF3 /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 799C66ABBD581DDD88595D23EE45D9DD /* RNCSafeAreaViewManager.m */; }; + F78CCFD0E705F38836EC90A08A0D099E /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3E09970D79DFEC086D95A80EEF6D680 /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; F79075F88B5F0A11693594549A7B8C5F /* SKScrollViewDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B571F3F029DD2D6D83D36652A5A26DE /* 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"; }; }; F792B40741251C6B961A49C5E56AC7EB /* ScheduledFrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EA9E7E0A8E853CA0F94059F56F6E222 /* ScheduledFrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7957488A7E05B294D0FDCB86F08DE8B /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E654BD64EA4CF0D62614F245EBE844D /* react-native-slider-dummy.m */; }; - F7A599510F9FFC45C84600ECE6EB69A7 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5241F6B1EC453465B9D3899EC8B1A83E /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + F7957488A7E05B294D0FDCB86F08DE8B /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B2AAE58A26E1DF2320BB3B2AD7277A1E /* react-native-slider-dummy.m */; }; + F7A599510F9FFC45C84600ECE6EB69A7 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81AD6C487CCEAA0F5DAFF49CC9DDD9F9 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; F7AA02141B7C9712F22D1023EE2FA272 /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 4EE50DF2753D29D083173EACF2387EAA /* syntax_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F7ACA0219D0817840C5BDC9A69E4BF5C /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD35DEE35B20109018E8DAA45E5264E7 /* 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"; }; }; F8382867AA53861CD193DAF210EAE2DD /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AB253740B78D4B6FC3BA8FB6859F65E /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; F83D6DC16A3DDE2C67D8E9F41EF111A9 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = A5465A0CACF72BF7759D145CF9FDB9F5 /* yuv_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F868B0F2EB72D34861497F45B6754CFD /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 35E4046ECB7E16B188B82CD52EB5578C /* 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"; }; }; F87291CF6BE44C7D989180B811879180 /* ProtocolVersion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 223ECB752B780279A2762E33A0D366C0 /* 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"; }; }; - F8D2633BB510B8BEDB93A5A5E3F3060C /* RCTLinkingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = F84C9DCA5279A3667D6257DCCBF5E5C9 /* 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"; }; }; + F8D2633BB510B8BEDB93A5A5E3F3060C /* RCTLinkingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = CACF2B685B649906EB9892ADAC750941 /* 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"; }; }; F8DB5DE2E38CD1A3156CE3DE8EDB3FB5 /* pt-BR.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D0BB7E5B597F81C13326CDB06D9B74C7 /* pt-BR.lproj */; }; F8DF4276E3FB3B7C5B8439933EF119CF /* FLEXNetworkRecorder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13557C0B7A0B2B1C2F2818AEAF31F414 /* 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"; }; }; - F91923107338828C1B57FC4D410102FD /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AAC11F1613B55F051B873E278DC1C4F /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F91923107338828C1B57FC4D410102FD /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = CC268622DF95F0EB5FF95B5D1027B2AD /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F9231F6B75F9828C1E7E7BACA93EC40C /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EB737C1B839F683C08D055F496DC54C /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F93061647B578E8C3199EE4628107A1E /* RCTImageViewManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8FEB764BE874A607248376B9352CB04A /* 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"; }; }; + F93061647B578E8C3199EE4628107A1E /* RCTImageViewManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 10BC9BB79CE745F5F7AA23B9ACEDFC2A /* 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"; }; }; F93B81DDDAEA148C915D38C6EFCEB3D5 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = BC4A4DFD5C2B5E942C4C4F8D60E0C9FE /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; F96192C5BD1E33227FEF89509259CDCF /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E6373AA654AB7C0358CCE7BFE827109 /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F96D1655C792D82A40819E223055836E /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A6DCD5044E6054D97DE4D6D9F91953F /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F96D1655C792D82A40819E223055836E /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1D14771DAF845523B655DB9144C5891D /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F97BED093A11441ADBF6C0E05D48E8CE /* ProxyLockable.h in Headers */ = {isa = PBXBuildFile; fileRef = 88F577B012AF7393F7179A8A5A123DAF /* ProxyLockable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F99C6EF148A5F929C6714A10414821BB /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 079B62AE33AE93B5551EE35A65870003 /* react-native-jitsi-meet-dummy.m */; }; + F99C6EF148A5F929C6714A10414821BB /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FDF5377FFC3A9BA9CC53D6C97ADD2E4E /* react-native-jitsi-meet-dummy.m */; }; F9C79E07315E4101EE1E6284DBE96B6D /* json_patch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E61C8595E6BF0B87BDBC62507DE05D8 /* 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"; }; }; F9D66462790E3ECCB90C80157BFEE731 /* DeferFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 96C64DD2767B07BC03C0ADB071CBADFC /* DeferFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA0913FA65B2D27FCAFE7E072BCDA6B8 /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CD859C1D7B68AC31771AF0D074966DA /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA0913FA65B2D27FCAFE7E072BCDA6B8 /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0021AAD20B41A86FC16C442527F9535C /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; FA14342E79B4712BB89BFD6F442A6A64 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C169D4829984F2E758F0715F2FA405D /* enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 23770BBC56FF093593705E2DF83EAF1E /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 96425385B1223999EC8995BC6E3AFA06 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; FA4153C149EF3F1DDED6E4846513C67F /* ThriftStreamShim.h in Headers */ = {isa = PBXBuildFile; fileRef = 22EA2EFC4D37975856FABA3B17A53CA7 /* ThriftStreamShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA41B3CEA87D34E244EA46A8F06EBCD1 /* BannerComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 7433DD22EBF954B9D6FE46CBB533A55A /* BannerComponent.m */; }; + FA41B3CEA87D34E244EA46A8F06EBCD1 /* BannerComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D71F8CB11FA9EFCE632EF2ADC483214 /* BannerComponent.m */; }; FA4347EF4A800F16CE57D834D4859D8D /* CocoaAsyncSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B43351F49906948085795035177EACE /* CocoaAsyncSocket-dummy.m */; }; - FA6CDEB2A292F61C8FA52F4239629B79 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A453CEEB4F76F588A7696C94988C9B3 /* RNVectorIconsManager.m */; }; + FA6CDEB2A292F61C8FA52F4239629B79 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DF7B0433CB697E740BA7B259FE091C76 /* RNVectorIconsManager.m */; }; FA7B91BBFE85B37005DA2A166EA97D07 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 444C4CB3BA6D072ECE05A85E7B4AD55F /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; FAE7FB7F49C39C5CC3B15E412575429D /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D9460FFFD360C196CCAEFA156B82B71 /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB0F92706EF1B0B3F1CCF387BAFC3433 /* RSocketStats.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C482C4730A3D930704DB1E78CED3AA3E /* 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"; }; }; FB0FC8AE6675285761278B79CA6D28FA /* InlineExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 699E3A51920E2B9318649B379A34C156 /* InlineExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB3DE01BC34DE183A41B48871808F975 /* RCTSourceCode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18DD138B14C91D2AB76B3260B96E619F /* 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"; }; }; + FB3DE01BC34DE183A41B48871808F975 /* RCTSourceCode.mm in Sources */ = {isa = PBXBuildFile; fileRef = C1D5A570574B92F76B7BD7A8A1BDF5A3 /* 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"; }; }; FB3F02BE14AE9F8DB2CEDA38C6A80300 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C589B0E36FF0F86584B6C9F7A250535 /* 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"; }; }; - FB68E4F21B1748E1957D68800AFD3CA1 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = D2073CD7E7818AA59EBB2F655AA624BA /* 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"; }; }; - FB72FD83F67C894AD142EB1845000CF2 /* RNCAsyncStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 3801A9AA76CFB87F753B9C9CDC97CC0A /* RNCAsyncStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB813826D2D03C2BB7AAC1130C477D8F /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = B3C4FFB58E0149D4582F336D3F3A93DE /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FB68E4F21B1748E1957D68800AFD3CA1 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = C56C1693BDC084EDD80C7D26ADD67C9E /* 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"; }; }; + FB72FD83F67C894AD142EB1845000CF2 /* RNCAsyncStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F20EA7B3F5905572DE6CF16610A8A2C /* RNCAsyncStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB813826D2D03C2BB7AAC1130C477D8F /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 78292FDA999C9C32726C8A5E4C3A1CE8 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FB8C1E2C48F2AD8515C5E099C749C5BF /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 94096471176B5A63422BD7DDAC6122E6 /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB92EE439043A66D7DA98BFDC70A3E17 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BD12214F5826815CB7FDB5BED2E67ED /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB9DEAA3FF6C672E354650B1ECAF88D1 /* RNCSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C463C99F441B3AF65C45BEA1F02881F /* RNCSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB9DEAA3FF6C672E354650B1ECAF88D1 /* RNCSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = F7A0FBDCCD90814E8084C90BA1BAA2AB /* RNCSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; FBBA5CBD3A64DB549CC7D70A8158B368 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = BFC7C2CDFD20C9563CC341F59F84CCAC /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; FBC0D2805C929A4C5832392FC8E13163 /* ThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 486B9CD622145C39FA6B9A49869C4CA8 /* ThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; FBD7C4826F1DD46AE003317225C0D984 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = C4D02AD3FB4B53CDBE474C4BCC0F2D7E /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; FBED05764440E7FEF17C007B2437FB0D /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8616166244CC3EEF891C531B942EBA /* FIRVersion.m */; }; - FBED8C83DADC53ED21AFE070E8625622 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 38BD4FC3679D32ED6AB7AAA85114541B /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FBED8C83DADC53ED21AFE070E8625622 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = D1C1E335ECAE091937087AEF551B8518 /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FBF4EEFCACA4C3C85581D62F93473E7F /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = E023960F905CAC763C2EFD745F313EC4 /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC26ECFC0E452C0B1FC7543F2EBC89C8 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 45CB80B7AD42144BEA36D5928A84F76D /* RCTMultilineTextInputView.m */; }; + FC26ECFC0E452C0B1FC7543F2EBC89C8 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FBCF12118BE36F18E343B01FE292CBC /* RCTMultilineTextInputView.m */; }; FC6B3ABED8B138EF2E98AD6E2819FBF0 /* PasswordInFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 77C278422DC579B6055C42FC6492DFDD /* PasswordInFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC759D82AFEEBB0CDCFA7B4D29B2D9CF /* RCTTVNavigationEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = B1EFE76640888E1541786E9A667A8B81 /* RCTTVNavigationEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC759D82AFEEBB0CDCFA7B4D29B2D9CF /* RCTTVNavigationEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 96989709EBA4251565F487F8F55924DA /* RCTTVNavigationEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; FC75D51E54C6036FB1E4A073F39DE7B2 /* ScheduledSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = AECBEE636EB2D64798479F9B3CD4FA9B /* ScheduledSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; FC775095597914294ABF7C56BF70052A /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 97A4EA46F14A54B737026EC7D1B2CCAE /* FIRComponentContainer.m */; }; FC87714A41923AA16685BCF5EA2F22F7 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D65D4E79DCD9838F91437CD602771ADD /* SDImageCodersManager.m */; }; - FC98D260B0CFC32AFF56A78B6D25EEFA /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D0C72EA1C1B71ECCF4254E8B27462CA /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC98E27E7370D5E45EE6140BE503DD6E /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B14095F63BB5DDCAA899D3F778B1BE3 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCA9C6B6B3DC07E4BC8A9ECC0A5E19C8 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F5B13FF4E57C544291150EFD89A36F6 /* React-Core-dummy.m */; }; + FC98D260B0CFC32AFF56A78B6D25EEFA /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FF124BFE4789E564508AA5A571693E7 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC98E27E7370D5E45EE6140BE503DD6E /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 30E7AB436B129FA770A942480C3CCFD1 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCA9C6B6B3DC07E4BC8A9ECC0A5E19C8 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E6F633DA233010259078C80B210B8CB0 /* React-Core-dummy.m */; }; FCC4D9CA0739EB52E8ACD925155F5C8F /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = AF2B8CA91FAF518D816F9D608C6514A4 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCC5B2ABD1B7DB7019EF1DF3AF45565F /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DCC97EC97FBD04FF4EFA55A517103EF6 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FCC5B2ABD1B7DB7019EF1DF3AF45565F /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C4819B006A4CB7BDE21A5A4D9D1239BF /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FCD3515E17588302448E1EEEDB5DE753 /* FlipperClient.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9FCE117B9000CC7F18A99493B9FD2771 /* 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"; }; }; - FCDC5F5AF807DB5781447F7EC845B581 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = B7BE348A4BE2F57CA5704C782D041C83 /* RNDeviceInfo.m */; }; + FCDC5F5AF807DB5781447F7EC845B581 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = E4717C28EB9B27DF783198B758A4CF07 /* RNDeviceInfo.m */; }; FCE3A33F83836596ACAE1381D52942AB /* Cursor-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = EE2991BE8BD32C230B39899B8AAB4CA9 /* Cursor-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD0A3452882955D51AE629E3813489BA /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E3939A83E98B735EFD3973DAE2E4FCD /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FD0FD721DD68A6C1A0E02CD6C8D21303 /* EXUserNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FBEA0DAC355C97FB1BBC87C15F7363C /* EXUserNotificationPermissionRequester.m */; }; - FD309F3148AABB6FF5CE94800C8CEEC5 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FB18BE26F612F2CD0FA155922D40231C /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD4075015771EB548EE8ADB386FA5E20 /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AD11B259B7DD8E19188CB41300D227E /* REANode.m */; }; - FD8440A64A1004A0B0E3D18D6E2AFAD2 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C286AD7EC1E09E7CC3550C72EBEF2B6 /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD0A3452882955D51AE629E3813489BA /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = DF22B26A42CCFCCA352128CBD25F0A45 /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FD0FD721DD68A6C1A0E02CD6C8D21303 /* EXUserNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 533A436110B2A43D96258CDCDC425754 /* EXUserNotificationPermissionRequester.m */; }; + FD309F3148AABB6FF5CE94800C8CEEC5 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D4994A75D45527F7F5930F67C8B5BEB /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD4075015771EB548EE8ADB386FA5E20 /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 35FF01812EF4A19AF5A496A538F75336 /* REANode.m */; }; + FD8440A64A1004A0B0E3D18D6E2AFAD2 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = ADE10929ECA897064616AF907B1E46F7 /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; FDD5FCFCFF3A1F08C968E2B47BEEF20A /* SSLErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 12B2B27F837989ABA1A2A07BDA1C4149 /* SSLErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; FDD98AFFE343DEF1281990CB755B5933 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46D770330A5BDDAA6FCDCF618C6EA47F /* 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"; }; }; FDE050EAD80EBE0E02D981562F432050 /* ThreadLocalDetail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9370A3A3860C554622DA5C821883ABF1 /* 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"; }; }; FE01338F38ED1D4F33168220521C0B44 /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = B88BF0F6E8E0D9231FE0B18A655A9D4C /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE568F942AC8C78A9288A55D7EDAD5C6 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 832BFBD5B4D8F5A6474A1205C9A5F781 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FE568F942AC8C78A9288A55D7EDAD5C6 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 92D5EA8127BD486680F99368655E6E32 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FE570C55427946ABBAB0EF448040C12E /* CancelingSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = B46F3DC8D803A6ABEDBB0D57180B5093 /* CancelingSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE5B55CC4A37EF0D7B2C1E92CAF12F99 /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 7957D5180559E76A9D30C43440B199E0 /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 949B1AC69E29D86673D25F0A39823AA1 /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 96AA26E861DA5B0E29D148F918CC770E /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE9B01DC938E8FF1AE38579797F5CBB0 /* EnvUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = C9561D2C0C8BB162D69476064062DDAF /* EnvUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEE81DDBC8EE950322B4DFBC3C91A8F5 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = BAED703E7AA2427C8BB0AE4748AC34C7 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF20886F669DA038DCB2D84F30D71D5E /* IOBufQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E105AEEC4F98A6688022793332EF421 /* 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"; }; }; - FF217BF4F60D6ABBE53FF634B951F784 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F2E5A60687B26ECCDAEB921308A2BD5 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF217BF4F60D6ABBE53FF634B951F784 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 9470C0122B1CEFE0E5EB0E44CB510B68 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF25A72AFBFDD3B1F8A677B56EE3F6C6 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = E865E5F7D3DCA436B02BC22EA8D2291B /* rescaler_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FF26719BB69A2F1411F3516CE44D4912 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F1B6B155C1362423F030CED4E3879362 /* 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"; }; }; - FF28A2B722BF2ACB2EEEA732848F44CD /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 4383417B4A71491BC74E2F1638CDC3EB /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF60B7B41824DC680D901D24F8DB2F78 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0ECAA28A148DEBDCEADACA33912091EB /* EXFileSystemLocalFileHandler.m */; }; - FF6C3E3D7803F7C47C69F0D1971E6E0B /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = E8CC976D41A74619CB0ABB2532626EEB /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF26719BB69A2F1411F3516CE44D4912 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C18252439B490C91FC5F74CCC76918A3 /* 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"; }; }; + FF28A2B722BF2ACB2EEEA732848F44CD /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 15BC50236B6BFC8A12A25EA5714EEE3C /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF60B7B41824DC680D901D24F8DB2F78 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E3C14843CFD8E90981B9685A9A32E31 /* EXFileSystemLocalFileHandler.m */; }; + FF6C3E3D7803F7C47C69F0D1971E6E0B /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = E38BAD38A31B5ED29F98169234AC11AF /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF8366ADAE423B2AFB5753C39F314128 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 7BBC3B23E8EE049BC21430020FE0977C /* alpha_processing_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FF9E21A6087B13223BBAD7DE03C03FB7 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 762660FFC0E4FE182E1FFE0CD372E250 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF9E21A6087B13223BBAD7DE03C03FB7 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 70FE932D7EE0A2E6E295FF0F651AC85F /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; FFA5B034E4A506917A5D5ECDF9E13251 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D7603F1BAF85E5C25B87E41D2D5AC5D1 /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; FFC03B7D8F37AE0403024D9BD66DB19C /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 120F2F5591146C7F60A5E7F5D1050B47 /* vp8li_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; FFE8ABF8136FB927DC4744C89D988D59 /* GULKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 83E57D81AC9B27761CE40C566F67EB80 /* GULKeychainUtils.m */; }; @@ -3133,12 +3143,12 @@ remoteGlobalIDString = 2D4D3D5AD93ADCCF3DD45A88009E48D6; remoteInfo = "TOCropViewController-TOCropViewControllerBundle"; }; - 0116B2737E089344989450E6E1B69A0B /* PBXContainerItemProxy */ = { + 006FFD111E6A8FAE31D391B1258ECE73 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; - remoteInfo = UMCameraInterface; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; }; 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3175,13 +3185,6 @@ remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; remoteInfo = FirebaseCoreDiagnostics; }; - 045925F6CA8BD00EF0B2D37DD16FA8C3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; - }; 0460274CCCBB15E986D75C4F43071A5F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3189,40 +3192,47 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 04C8E33CA50AA775BD16865431B2E464 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; - }; - 05433F69140BFF84EEC14F8BBB6945CB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - 060ED10C2EBCFE34D69703A51C63C6C7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; - remoteInfo = UMCameraInterface; - }; - 06EBA32A34CCB8C9B7BAD688DBAC6D7F /* PBXContainerItemProxy */ = { + 06357C575172F4B5451C3E739080442F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; remoteInfo = PromisesObjC; }; - 0A5CEF3A16E0391B3D8A34D784325872 /* PBXContainerItemProxy */ = { + 067DD36D9804D714A3F2FCD90B3DE7E6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; + }; + 06C70D25B96AEE012200733CF6F48730 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; + }; + 06FBA034F5D3AFA9DBD729820C204661 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; + }; + 07B6F9E3541C3F8BCB338E03FEC8AFFC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; + remoteInfo = Crashlytics; + }; + 092D5D93A4BE95E389BE905BEB806868 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; 0A78C568CA90DDDEBA5BDB1A9F02EBD9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3238,12 +3248,33 @@ remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; remoteInfo = "React-jsiexecutor"; }; - 0BFAC62C90DB34E5EB165821CBA3F39F /* PBXContainerItemProxy */ = { + 0B7A345282316D55B1AD772ECDE5A000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; - remoteInfo = EXVideoThumbnails; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; + }; + 0BD54CE7E69CD00194A61C45BA9BF88F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; + remoteInfo = EXAppleAuthentication; + }; + 0C40A8447D42BDF8AC8721B21735CA7E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; + }; + 0C760DE2C342A8BC39EC77E846EF71A1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; 0DBDC3964B7166E1CC00C4929706C8F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3252,6 +3283,20 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; + 0DF774A81A20F68BC500FF8CF0A4EF7E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; + }; + 0E690F84AA7AA6530F0CBB3905FDDD4B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; + }; 0FD6A4ED78388214475895E97458EB68 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3259,12 +3304,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 10462D2FB8734AC0498462246ACC9159 /* PBXContainerItemProxy */ = { + 105FDB31D94C66C04F3E0D41406A4BB6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; }; 10C2BEA52A3170A3F51CFAF499B2C693 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3280,6 +3325,13 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; + 11A497FC73C58260E8E0E0AEB542CC12 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; + }; 1202CD0D4E7F78CCFBB9BAF05625B5D2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3287,13 +3339,6 @@ remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; - 1237B4612BF07E2FE2C447645E528444 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; - remoteInfo = UMSensorsInterface; - }; 13791CBAE3B4CCAF1FC636BA2BBD9DE4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3301,6 +3346,13 @@ remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; remoteInfo = UMConstantsInterface; }; + 14732642223C3A0E210DAC0D0A7AE603 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; + }; 14BB3DAC17135FD28DBB5B1361FD079A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3322,12 +3374,26 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 174B7075A6ABFB1AFF801224DFF77F4F /* PBXContainerItemProxy */ = { + 153A0189C24DBD77067A3268550023E9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; + }; + 170D54C326C002FD03C550DB01721559 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; + }; + 170F8250F261AD6425C56FFCC9DCBF4D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; }; 1842322FCC293F8D40D3185CF322FF92 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3336,19 +3402,19 @@ remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; remoteInfo = "React-RCTBlob"; }; - 188E6DF3DB8E81B4E6E29CE517BDD087 /* PBXContainerItemProxy */ = { + 189FAE730F2AD443DA6ED7896B411E85 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; - remoteInfo = UMAppLoader; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; }; - 1A25A47716C421B0C6927B3070A9EF50 /* PBXContainerItemProxy */ = { + 1AB665C5E636E2F8919C09E5D379B6F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; 1B209875BE1A2519F69D4DFF0948FFAC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3357,33 +3423,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 1BBBC893DBD938F4DFC60A3408267F40 /* PBXContainerItemProxy */ = { + 1D023B10F0C7CE36A473A29B07710EF9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; - }; - 1D8407A38C27AB9C26D52006D102E706 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; - 1D9D179E4E7BF38554B980D44D77C5CF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; - remoteInfo = EXLocalAuthentication; - }; - 1E1B2A23EF447B10FEDF2178D18D978E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; 1EECCDC5376D77D4DC29D8ACA3551B3F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3392,20 +3437,6 @@ remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; remoteInfo = Yoga; }; - 1EF5F695EA2DEA7EF97626D25839C70C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; - }; - 1F02FA0831737414CC4F7A8CE051B029 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; - remoteInfo = FlipperKit; - }; 1F6D1D516291934964CB96DF667AC71C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3413,6 +3444,27 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; + 20143E36D25D64437DA7043058ADBE44 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; + }; + 202440C7FF13158AF71424C4D654A141 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; + }; + 20E777755AF765F21E7F5E5DB8B7A6B6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; + }; 21B7FFD1A14C9DCA797642821E09A7B1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3420,12 +3472,19 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 222A9C67ED7439D98C5B4144344B0060 /* PBXContainerItemProxy */ = { + 224CE05F4D19F823EB1006D63050CBDD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; - remoteInfo = UMBarCodeScannerInterface; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; + 227B8D1EC7D0321A6B7F9ED5A1743ED0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; }; 2284921B4FC397971FFFACC555D01A18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3441,12 +3500,26 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 25362ACD74E89C105C9D080C6542652F /* PBXContainerItemProxy */ = { + 232986BB47C322C30D1143857049D54D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; - remoteInfo = TOCropViewController; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; + }; + 24D5C13D178CF0802FCEF10E057941CB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; + }; + 252E71DE0991E80B542EA10DA3A25289 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; }; 2539C386890D7883A108FF4E3829524A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3469,6 +3542,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + 25826E5D56FD9E01AD102B12D7A61A2E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; + }; 269E90A4666876CC5B9B5CB8454B71F7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3476,19 +3556,19 @@ remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; remoteInfo = "React-RCTAnimation"; }; - 26B83CBC371CF41D1302ADF5DFE24988 /* PBXContainerItemProxy */ = { + 2765E79995E24E3217CCF2849AEF4DA5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; + remoteGlobalIDString = 33B041E5D061336F88B875C8B86E45FB; + remoteInfo = ReactNativeKeyboardInput; }; - 27A74937B06F884A86943CF9C90580BF /* PBXContainerItemProxy */ = { + 286AFF2A09BE8B7E3EB73D6714F627B6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; - remoteInfo = EXKeepAwake; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; }; 286C7DA34EBE9F8A3EC10424B36A30C8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3497,13 +3577,6 @@ remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; remoteInfo = "Flipper-RSocket"; }; - 28D48E2C4D25C55FAD60DCBC9982C765 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; - }; 28E9E87BF06330725E1FF3E5A023FE61 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3511,19 +3584,40 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 2972809194259C35A82F0A5C069EFCEB /* PBXContainerItemProxy */ = { + 2958B2C92CD9984F2826D3D7750AFC8D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; - remoteInfo = RNCAsyncStorage; + remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; + remoteInfo = EXKeepAwake; }; - 2A808EEBB3550A71B033A7E0FFD411F1 /* PBXContainerItemProxy */ = { + 297FC80123F1DFC24A03D665820093EC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; - remoteInfo = "react-native-safe-area-context"; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; + }; + 298636FFF0001105699F1548C6BBC7CD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; + }; + 29B365CFAFF9C370252AF30147EFD2ED /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; + }; + 2A3E974D156992FA7F66E2A9F0B19765 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; 2AB4E316E2673B76ACA537189D619922 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3532,26 +3626,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 2B3BE131DA476AF8BE4B50F1FA83049F /* PBXContainerItemProxy */ = { + 2D1E565BFE779CCD691BD8B2A18F8996 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; - remoteInfo = Fabric; - }; - 2C16BCDBAA64743DD91ABA9157CE6AD6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; - }; - 2E0DF34D5B789464B1D97696AE2D67A9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; 2E1E454B327932AE914124C66C371526 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3560,19 +3640,12 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 2EBA48794C05ABFBA6153F0D902F9861 /* PBXContainerItemProxy */ = { + 2E4F89230AF3B1CF459EC6D2378511C5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; - }; - 2ECCD98146CA451C78B2BA873BC0620D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; 2EEDA8CE75E6D0DC62A3B88EAA06ADD9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3616,47 +3689,33 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 30384FB97F0D9671BE2258C4BE541A17 /* PBXContainerItemProxy */ = { + 303CEF21791850427C498FE2B7DFB7A4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; }; - 30C7F6A92B04FE790A4E7968CC78579F /* PBXContainerItemProxy */ = { + 30F41A6855AF507791D562D68F0705EA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; - 3179B42BF8C305E2F4B1A5E7173BFD7B /* PBXContainerItemProxy */ = { + 31DA2ED95B4C7793CD007B9126068447 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; + remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; + remoteInfo = RNCAsyncStorage; }; - 317A344C7E9C1AEDDC75B120EABE2CEF /* PBXContainerItemProxy */ = { + 33E63CEAEBF09E105836CE4DF66472C2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; - }; - 31DDFAC27156F8372B2A145F5AC0437E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; - }; - 344036EC19227C4285CC2EE8F664ECDC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; 34DE7C292D92E3CB1F5D90FC054FCBA3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3665,6 +3724,13 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; + 354C239E304DD331D683C8EFA1A02739 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; + }; 35A10B7FC1F84462218C13545EB7FB88 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3672,14 +3738,14 @@ remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; remoteInfo = PromisesObjC; }; - 36984564ED77D3FA35292387EE92F363 /* PBXContainerItemProxy */ = { + 36233BA523D9887690672B17A116B11B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; }; - 36B6F866548C04AD2B2D225EF8CFEBD6 /* PBXContainerItemProxy */ = { + 36984564ED77D3FA35292387EE92F363 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; @@ -3693,12 +3759,12 @@ remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; - 381062F03A2B27DA90748720242455D0 /* PBXContainerItemProxy */ = { + 37714EEC18131C97FABBE62171FA67B6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; }; 38EA73CE3C061B8768A17C136BC136B7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3707,12 +3773,12 @@ remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; remoteInfo = "React-RCTVibration"; }; - 3946F854D475D0BF7D3C7F0621194BDF /* PBXContainerItemProxy */ = { + 3977589164DE9F1C55A614BA750357EC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; - remoteInfo = UMSensorsInterface; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; }; 39CD33DB7DC4569D42431023259B76CF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3721,26 +3787,12 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 3A64E280F9CAC21F0AF9EB146CF51057 /* PBXContainerItemProxy */ = { + 3A12BA06CA4CF168BEE7C6E7F3897F9C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - 3ABEC2868A0BAD054ED2D717850F163B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; - }; - 3B027DD0F8DCA6E67401418460AFC338 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; - remoteInfo = Crashlytics; + remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; + remoteInfo = RNCMaskedView; }; 3B2CB4C09D3A44183329A2C1357EC2EF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3749,47 +3801,26 @@ remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; remoteInfo = "OpenSSL-Universal"; }; - 3BE1C4009D8A45802CFFB79116407EDC /* PBXContainerItemProxy */ = { + 3B68398C682F15F5E65918B86248E49A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; + remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; + remoteInfo = EXVideoThumbnails; }; - 3C770ECC535BF84D20FB0220C85C8609 /* PBXContainerItemProxy */ = { + 3BDF6D95E20D7F6DE120BE857C141E15 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; - 3C9785616804C9DEDCB45622F3C482BD /* PBXContainerItemProxy */ = { + 3D2E71249F7E43576E7C316A5E1D69FF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; - }; - 3CB4F9C318EE73F9F4AB2300E045B9F8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; - }; - 3DAF60C10A17A33CFA1179FF2D513171 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; - remoteInfo = RNFirebase; - }; - 3DE80F8E0B71E3524D479F7EE7B0E363 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; 3E4CD36F9EC3B65498E3DB16276FF67A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3798,47 +3829,47 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 3F21E2D881324022A742C5BBCA8DD8CA /* PBXContainerItemProxy */ = { + 3FAFF19B5B13947E38D0BDF59C572CF9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; }; - 3F31754C30988FEDE2676752BAF1B877 /* PBXContainerItemProxy */ = { + 404A852F60FF9546CEA9CD2C0281B22A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; }; - 3FF1F1F1DC51D56F1EA3FD69647ADC80 /* PBXContainerItemProxy */ = { + 40B80BD704FDA147F57257B6F5D6315E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - 408A871D2AB7B868CA034AE6E1ED6D14 /* PBXContainerItemProxy */ = { + 40D2745D9F6D71BEFB9C792CB5B43850 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; }; - 4196171600955B9E27E99E6261CC6E96 /* PBXContainerItemProxy */ = { + 4141964F22C9138F9AFF848D76DFD172 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 431E6B3839368D55719D0A35F07E898C /* PBXContainerItemProxy */ = { + 42A2D3112486CB4681FE2C2D2EF8707D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; - remoteInfo = RNUserDefaults; + remoteGlobalIDString = 33B041E5D061336F88B875C8B86E45FB; + remoteInfo = ReactNativeKeyboardInput; }; 437B65583B16B649BD8F25DF7359E61D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3854,6 +3885,13 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; + 447C988D5D9EF2BC5A598401905BF069 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; + }; 449D79087AC8EFD285D3D6948D363A86 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3861,6 +3899,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 453240879BFC423EA480A7E604AD26B8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; + }; 455009ED9ED8F59E3D7880EA52A66B11 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3875,26 +3920,12 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 46EE37F6E4BB094CDCE20D1E1C7A579C /* PBXContainerItemProxy */ = { + 46B960A1C091E45C696686A79117B4B8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; - }; - 47404D8ABE78883247C8DCCB6E35FE2D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; - }; - 47C045DC4CD83E83CD76D1A727484876 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 27E277B43A5F7AE00EC5051AB99AC38E; - remoteInfo = ReactNativeKeyboardTrackingView; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; }; 47CDAF2090697A38D58C4D7A13E2CC2F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3903,47 +3934,19 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 47FC2A1F1B631E19D28534C6C4AA85AE /* PBXContainerItemProxy */ = { + 4B87DA8B5938D22B8D51C124BD488706 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; }; - 481C26762652A3ED23B8618AD20F0E7D /* PBXContainerItemProxy */ = { + 4BAA84BFF9B20E3F8F4184185BE52A6B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; - }; - 48BD7CFAC9003DBE551DFAF720242C0F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; - remoteInfo = UMTaskManagerInterface; - }; - 49FE2B4A0C52CFE08486E147D72C26FF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; - remoteInfo = "Flipper-DoubleConversion"; - }; - 4B40A2C79A28E34CDB7203C80264E65D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; - }; - 4BEA71D832BF1E5BC7807D8691C385D6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; 4C6653A5CA1CE41FC050930288153C50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3952,48 +3955,6 @@ remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; remoteInfo = RCTRequired; }; - 4D3DFEC9C67C33E29DAA6D88F1FC1E91 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; - }; - 4D543F8C0B229D78E400529D026C4593 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; - }; - 4D9C7DF46A51FBF89A10C9A270BADABC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; - }; - 4DFD4EF8EC82659EDD4E4665F1129D0A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; - }; - 4E378DDDE83C64819C7A986FE09F853E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; - }; - 4E4DE69D3FCACC81D796FEAC7191B165 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; 4EC2A48991B69891116F09993FBAC1BC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4008,19 +3969,47 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 4F1706FEE6346280404E29235C8384F6 /* PBXContainerItemProxy */ = { + 4F619D8AB0503D069E026C32F5C950F4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; - remoteInfo = RNCMaskedView; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; }; - 5236A234E25B2CFE6A52B5DEE538DBFC /* PBXContainerItemProxy */ = { + 4F849012C23837E88D876BD9AEE9149C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; - remoteInfo = CocoaLibEvent; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; + }; + 4FCE8BE543358CAA504BE25009D695D4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; + remoteInfo = FirebaseCoreDiagnosticsInterop; + }; + 500A80D035300BA35B899BD5A8517DF5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; + }; + 51BB17051B552032F9321C6BC8CFAD27 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + 51E4FD0F7A487DE201F67A95E826854D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; }; 52D75569EE8B532085465A5470C6C390 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4029,13 +4018,6 @@ remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; remoteInfo = JitsiMeetSDK; }; - 52E1388521F34C28255CEBB9D98A8563 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; - }; 531AEE2AD8DFFD598D97E440C81B6FA9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4050,19 +4032,12 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 54048EF4931DB398FA94A206710CDD56 /* PBXContainerItemProxy */ = { + 549F714D928A8A50086DA38418737940 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; - }; - 550F5146FC3B6531E02C9A8B5AA23DDA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 33B041E5D061336F88B875C8B86E45FB; - remoteInfo = ReactNativeKeyboardInput; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; }; 553C9E2156C22165A3D5F8E54F781E1E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4071,6 +4046,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 5553C1EE342EFF4901FB5728164EB396 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; + }; 55B00EF6EA1E3BAC13075885EAE12B7B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4085,13 +4067,6 @@ remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; remoteInfo = "React-RCTLinking"; }; - 55DD6890666763EBEADAC1EC6EBEDAD4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; - remoteInfo = EXPermissions; - }; 56C91901D2770AB6795E24C1123C4FCC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4099,26 +4074,19 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 56F2E5DA9C49C6133084D6AC9DC743B2 /* PBXContainerItemProxy */ = { + 56E0EB5C58A2EEC8DF59B35227006F62 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 57F3CBA300AC408A19126D6BB9FFA6C8 /* PBXContainerItemProxy */ = { + 576B7133DDAFDFDCEF71AFA635A63C72 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; - }; - 5812E690C68386B0A60C2218B5A3A726 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; 592671C6C3F74111AF89BE688E45B730 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4127,6 +4095,20 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 5958F3A2AEF622CEB166C8D0FA937D67 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; + }; + 59609326015762E5E6F343117D40AD1A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; + }; 597CFB532608DEF395BB4DE21E13FCB7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4134,6 +4116,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + 598B1FA2EC7A69C105906F84BB488F2F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; + }; 59A6F7E541C545C99CA82678B8F26212 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4141,19 +4130,12 @@ remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; remoteInfo = SDWebImage; }; - 5AF248A1FD104CDFD0250F53DD56127A /* PBXContainerItemProxy */ = { + 5AE51F009A33D1B7331DF1D9381F2C55 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; - remoteInfo = FlipperKit; - }; - 5B14C1044AF0849B28C9E976B1585789 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; + remoteInfo = FirebaseCoreDiagnosticsInterop; }; 5BE1625FF2C73ACD1127D4A9DDADF1AF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4176,6 +4158,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 5DB01B2BF93496C026B42AA6FF9CEF6A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; + }; 5DCA67E832A9675BB0A0994ED38A5284 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4183,19 +4172,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 5E9E4991CB68CBDE236966D0406D7CE5 /* PBXContainerItemProxy */ = { + 5E72E2807316BEBE675D079C59C7DBA6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; - remoteInfo = UMBarCodeScannerInterface; - }; - 5EB1D3D0AFE32D6A6C975AC9E5AF6D5B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; + remoteInfo = EXAppleAuthentication; }; 5EED9A44D7E37951C7239080722062AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4204,33 +4186,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 5F5B0DE477C61F987CF8142B3CF588D0 /* PBXContainerItemProxy */ = { + 5FF43511BE60159BE089A2C5E493EECB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - 5F69953284D0882B021B3E6D980E06F0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; - }; - 5F8EB664C2A12DD7A33B25F3869F691B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; - }; - 5FE63AA05536D7C5E67000168D143713 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; }; 60A0EA9E2BD9CEC64E95082A2A9E3B65 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4253,13 +4214,6 @@ remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; - 6260F1B7C1477694069FB3B572F5E8CD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; - }; 6295B26D9349A23F0AF1DE7C6AD8A1B3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4267,19 +4221,19 @@ remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; remoteInfo = UMFileSystemInterface; }; - 629C5807B00C50D54974153BC0A76121 /* PBXContainerItemProxy */ = { + 63B9A99436D7584090F856E1D13DA648 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; - remoteInfo = EXWebBrowser; + remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; + remoteInfo = UMAppLoader; }; - 632707EE8DA31E2A93D47FEF8EDDE1AA /* PBXContainerItemProxy */ = { + 63DAEB7942186CACF16D74E2E99979E6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; }; 6423924A022902547DBE5FC8EF93BD4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4295,6 +4249,13 @@ remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; remoteInfo = Flipper; }; + 65C77DAC2D2C060E5DB6865ADCAC128E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; + }; 65F1482F271C028DB3676FA82CE9C9EC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4302,26 +4263,12 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 676D2695BED8212BBD74D56E41F71B23 /* PBXContainerItemProxy */ = { + 67A8546D74124EC298648150DA451BDE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; - }; - 679042776339ABEEA2D119CB3784C799 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; - remoteInfo = UMFaceDetectorInterface; - }; - 67CB15584E0A1370B7562305B26A6521 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; }; 68398EDCB17F0A6D8CEE83EC1EB7E137 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4337,19 +4284,12 @@ remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; remoteInfo = TOCropViewController; }; - 68F37D20E1C74E44E4CE4423DF48E942 /* PBXContainerItemProxy */ = { + 694D509D479FFBBBF10A1B48B42481E5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; - }; - 6959BDE814EE634BBFC694E5B0C1A67B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; }; 69C4D7766C312F032D5267A5354EEDFE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4365,12 +4305,12 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 6AE7CBCAE558A0E6F4B1ABAB5A3B9315 /* PBXContainerItemProxy */ = { + 6A3D5FC42F6B13BCE34B6B8DE37A5CC8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; - remoteInfo = RNFirebase; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; 6B208C6A49DF0227CFB52DEC61D41F38 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4379,6 +4319,13 @@ remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; + 6B60C34FBF652D002088E96812A26589 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; + remoteInfo = UMSensorsInterface; + }; 6B6C9C98FB7F5650E3334BCFFACE0D76 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4386,20 +4333,6 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 6B919EC005ED5007D390107A6AD1CBEA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; - }; - 6BEF6A163642DC8E1EC60F38AD926F66 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; - }; 6C2F4A0DAC27B8CC1550B7060BBD3B66 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4407,13 +4340,6 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 6D3FE13E3E025E0A30C7C1C6B873A7F5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; 6E0F5F25DDCF1759D45031621E96590D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4442,33 +4368,47 @@ remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; remoteInfo = Crashlytics; }; - 70AD287B1950F749FDEE7B3610E6E049 /* PBXContainerItemProxy */ = { + 706833155F95699A64764C9E85FDCE5D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 868B90C74770285449C60DBA82181479; - remoteInfo = EXFileSystem; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - 7145415F600675F5E72D0C732809AED9 /* PBXContainerItemProxy */ = { + 706D386EA4641163A5A187A413A39C47 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; }; - 718E0D3CE26B1FB2B97E28083667C52D /* PBXContainerItemProxy */ = { + 7167E4A0BD1718C1F6B24C44834A819D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; - 720408A1D31B175413586576DCCCC475 /* PBXContainerItemProxy */ = { + 71D43E1A76C8403FDA8250720EB71196 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; + }; + 725894CF4367EF746E78A3359D8D449F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; + }; + 72963B3761D0107E3EC9C2EE08B1D4E4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; }; 729C920815C311E1D586861019E10612 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4484,6 +4424,13 @@ remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; remoteInfo = UMPermissionsInterface; }; + 734191857EDB7891885172A64AA896AA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; + }; 734EDC79ECD7EB645E49FCFEECA93782 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4498,19 +4445,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 74A0D298AE5BCE1D79985AF66C6FBDBE /* PBXContainerItemProxy */ = { + 749A20BB057EED14FD05DB0753D957C3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; - }; - 74A2763575472BC381AE45C212EE91BD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; - remoteInfo = Fabric; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; }; 74C2CAAD882619C327EBDCCC07631937 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4519,19 +4459,19 @@ remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; remoteInfo = Fabric; }; - 7559A8317D80704586EAB8B887C304FE /* PBXContainerItemProxy */ = { + 75E62958F06E1D20EBBB2155728C859F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; }; - 762C669FFCAA00C1034D8CE4F859C0CE /* PBXContainerItemProxy */ = { + 77264277B54709FEF7037E98BCBC4655 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; - remoteInfo = EXWebBrowser; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; }; 77650DB9BCD15D3DBD659DF4437F2533 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4540,54 +4480,40 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 77C760CAC899BDAB7B43C7A2B6A33CD4 /* PBXContainerItemProxy */ = { + 77DF3CFFD128403CEDF05414E1AEC356 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; + remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; + remoteInfo = EXImageLoader; }; - 7895C6701AB756D4BFF112C5836924EE /* PBXContainerItemProxy */ = { + 77E20C5AE1531D5EDB82E8E438BD8EE6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 33B041E5D061336F88B875C8B86E45FB; - remoteInfo = ReactNativeKeyboardInput; + remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; + remoteInfo = RNUserDefaults; }; - 78B10C6F2FA81F30731B4748D97F5BD8 /* PBXContainerItemProxy */ = { + 79ACBF25A5CD389C24D321946680253D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; + remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; + remoteInfo = RNUserDefaults; }; - 78F7FD224F81708BF91847A2E37B0075 /* PBXContainerItemProxy */ = { + 7A29A65755D65CFC19E13093AC0952EC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; }; - 793AE50DCD18BF30EAE713EAD69D4598 /* PBXContainerItemProxy */ = { + 7A79CE40C71C08A6C869EA0B717CF2CD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; - }; - 795D7742E58C6A0E87A73A538EBBE907 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; - }; - 796799DD587C5E10C47ADC4985169543 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; - remoteInfo = EXConstants; + remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; + remoteInfo = EXLocalAuthentication; }; 7A89F7EA8C0CCE4C1799109D360F0F8D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4596,27 +4522,6 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 7A98E3501C5AAE10C2EAE0879EE1DBAD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; - }; - 7A9EF5282137CF199A626635891B394C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; - }; - 7ADA24622F8FE4F0304606BC02619C3C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; - }; 7AEA5761B26CAEF1A0C0E82599059DA8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4624,13 +4529,6 @@ remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; remoteInfo = FirebaseAnalytics; }; - 7B45BC810DAF0AC05041ED3FCC16A428 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; - }; 7B4E5E1C683AA4C9D6520E9A4748E8B3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4645,19 +4543,19 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 7CC878764E325DF5D6D1F598241F3FC1 /* PBXContainerItemProxy */ = { + 7CC1385DDB15071C21AFB05B229FC1B4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - 7D6E2E84219248A0B3D4C8D1AA859E73 /* PBXContainerItemProxy */ = { + 7CC878764E325DF5D6D1F598241F3FC1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; 7D9A4DEA0175BC4538E1272B3B0504FD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4666,12 +4564,19 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 7DBC5C5357C6AC596498CDA40CEF508E /* PBXContainerItemProxy */ = { + 7F2668ECFE31EF908445AC97603E131C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 27E277B43A5F7AE00EC5051AB99AC38E; + remoteInfo = ReactNativeKeyboardTrackingView; + }; + 804563040BAECCEA04FB968F4C280422 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; + remoteInfo = RNFirebase; }; 8074B236F0C465FFAA342F8D44BC108D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4687,6 +4592,13 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; + 80E967EA332943BEC384D7675F823134 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; + }; 8110DAB12235E146C76645C74A703974 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4701,13 +4613,6 @@ remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; remoteInfo = UMConstantsInterface; }; - 82236DF17F5C942521120295D080F7D1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; - }; 82B12BA2AABCF09A5F85DF84C0BDD0AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4715,7 +4620,28 @@ remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; remoteInfo = PromisesObjC; }; - 8710DAA9C6D5F3955888357F15A9418E /* PBXContainerItemProxy */ = { + 834EA5F02787C22CE4D03C8DEE00D1C1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; + }; + 8531074ABCB5C05FC66BED6C6BB53DD6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; + }; + 85B27E89404135AD56F6FEAEF3401400 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; + }; + 864F216D2EB2762793A57CF0AAE46942 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; @@ -4750,41 +4676,41 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 8953C20239212D028F00C92ACE3CF2AF /* PBXContainerItemProxy */ = { + 88E1F938A885FA85DE4D3CABDB731469 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; + remoteInfo = UMSensorsInterface; }; - 898E476F8C830571E10C8552078EC323 /* PBXContainerItemProxy */ = { + 8900FE856EF905CBCD785BF94E7A6BF1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; + remoteInfo = EXImageLoader; + }; + 89420211A78AD85A2D86E7650595251B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; + }; + 8B8F3734E854EA42124817D5A1677D76 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; + }; + 8C5C7CA39F6AF729677ECBF53C1A2266 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; - 89B2623F7869C7E9D0D43A8A48C947DF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; - }; - 8A6D22F0AFA16615424D80A71C9845A6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; - }; - 8C39DD71EE6CA0BF8F945B662CE21295 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; - }; 8CD598B3122E1B5D5E0411E9F8DFF385 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4792,6 +4718,13 @@ remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; remoteInfo = GoogleDataTransport; }; + 8CE71AA8781B71C9704B47DE20532E37 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; + }; 8D04B36B23A984DDD45F643F1C461D61 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4799,6 +4732,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 8D3BCC32C8E13A767F88ED3763D7011D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; + }; 8E0CE3BCFC23F708AABA713FFB149206 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4813,19 +4753,12 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 8ECDA4EB40594393E21F07C27E2B1B7E /* PBXContainerItemProxy */ = { + 8EA2DFF5F72EEE22237A70596D36994C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; - }; - 8F48ACE2B527E4126DD10C79571644A9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; 90A863AAA5E405464866F689B43DA4E0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4834,20 +4767,6 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 90AFF999E29DAAAEA7C958EAE957D9F0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; - }; - 90C535ADA3DE6665B3F7671A9D2E102D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; - }; 91345979BEE4768EF9136EE4EE3D00FB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4862,13 +4781,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 9197328BE9F47A8375085B22B0969CF0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; 91EE084DD583BBFC5B94D7F82B78A6A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4876,6 +4788,13 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; + 91FC7F0156F2BC52272424A1F1452D05 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; + }; 924025D4D8E604372CC80524DD2E97F8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4890,6 +4809,20 @@ remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; remoteInfo = SDWebImage; }; + 92CA885640DD6EEF8330F1670757BFF2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; + }; + 9325A41A02CB2579B98997066B923F71 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; + remoteInfo = RNCAsyncStorage; + }; 935BBCA2BD6E481D46FA01E32BFEF1E3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4897,26 +4830,19 @@ remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; remoteInfo = "Flipper-Folly"; }; - 93A0620EBAF14E638910C7A9ADEBD6EF /* PBXContainerItemProxy */ = { + 936BB6ACA83A2417F513B8A8D187E568 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; - remoteInfo = EXLocalAuthentication; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; }; - 943AB19ECCBB088EA73DD87CC1784089 /* PBXContainerItemProxy */ = { + 9445C87FDF7818E193B036F782FA708C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; - }; - 94E5603CE4B3BA9ADE043A69466BE569 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; }; 95D6942673DEF26CD96965BD3A7F39D6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4925,47 +4851,33 @@ remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; remoteInfo = "React-RCTText"; }; - 962344F4FA79C5EBC91075ED318244D5 /* PBXContainerItemProxy */ = { + 9637208698DA30F2A71CCD8891C19BCA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; }; - 9693F79DBB15E1DA6F060060DA0EB898 /* PBXContainerItemProxy */ = { + 97187704D8204A2C5C8776824B73B031 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; - 9763D40CC5D02A42112AE30CC6CD7D86 /* PBXContainerItemProxy */ = { + 97894FFD854495B3BFAF3BE04A1CA0CF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; }; - 99837D434906DCCE1752A26D4E5B4AF6 /* PBXContainerItemProxy */ = { + 98179CF85CEA7AE85A44B6F6495FA671 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; - remoteInfo = FirebaseCoreDiagnosticsInterop; - }; - 9A1F148BB9741CF28367FC9447D154BF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; - }; - 9A28EC5DBE039C7D890EEADDAE1671A0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; - remoteInfo = RNCMaskedView; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4974,12 +4886,26 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 9AB7B0FDEA6B6742C4103A0952C92B4D /* PBXContainerItemProxy */ = { + 9ACEDD1B5FDD5104C25CA5999EA35B62 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; + }; + 9AD2EFCF2E241006927958B1D18596C2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; + remoteInfo = CocoaLibEvent; + }; + 9AEF888E619C66D8E123A0BED97ADE94 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; }; 9BAAC27A785084FD67CA13B8EDA42C7D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4988,6 +4914,27 @@ remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; remoteInfo = "Flipper-Folly"; }; + 9CD3CFAE0EEC3EED2DC6B4FF7CD95119 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; + }; + 9D1D10FB6C759428691CCC399809693C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; + remoteInfo = EXKeepAwake; + }; + 9D222BA2EE84A4ECD28EDF8CA8EBC20B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; + }; 9D5A278B1D609214380E444D1D5DFFEE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4995,6 +4942,13 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; + 9D762FF5E68DCE5D238CD3E8BBFD4AD2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; + }; 9E534D42CEE0BAE16AFBC5CDD1AE05CE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5002,13 +4956,6 @@ remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; remoteInfo = "Flipper-DoubleConversion"; }; - 9E72363DA6C1591DFAF38CB02D03EB05 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; - }; 9F5139B580DB48CBB546E5DA6213CF53 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5016,19 +4963,12 @@ remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; - A127D21EBA71C57FCB79D5306ADDA618 /* PBXContainerItemProxy */ = { + 9FB6D195AFD22A8ACEAAFAECB06E2949 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; - remoteInfo = EXPermissions; - }; - A1CC74FCBFDCFF1D1A2FC002E53B7EFE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; }; A21650743E2C37A78D811B8920A0B860 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5037,47 +4977,26 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - A3D9435A8EBCF8F8790B859CCA724EC3 /* PBXContainerItemProxy */ = { + A22369E227C889A95186EF385C7C166B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; - A406CAD384FAD0994073A19BA2E9AC74 /* PBXContainerItemProxy */ = { + A4D09E583FAD7EE7C96D582BD6FCBC69 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; + remoteInfo = RNFirebase; }; - A4386E72B48087BCD0D6F184CA71381B /* PBXContainerItemProxy */ = { + A58413346B6A6C7BC090C0902BBCFB6E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; - }; - A4FFCF7C5B93AA0EF08295EE0D326644 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; - }; - A75D3837E228F472566132F7582CFE05 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; - }; - A77B106A1C9CC159EBBD1F6886FB8168 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; - remoteInfo = UMAppLoader; + remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; + remoteInfo = FlipperKit; }; A7E5D397C11338DEED5E896EF959836C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5093,20 +5012,6 @@ remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; remoteInfo = "Flipper-Folly"; }; - A8BBCC97D63E3AE230C84D64111B127D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; - }; - A921776BC2F14D2D5B734DEFF9D0A717 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; - }; A948FF4AC90480FCBFC7BBA8916F351F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5121,12 +5026,19 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - AA694DF82A10F0AFD276ED63989B5923 /* PBXContainerItemProxy */ = { + AAC6F0E65E53BA5F06941709D33E8BAB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; + }; + ABB803B08A445DBEE22F586C47A9EC15 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 64F427905796B33B78A704063422979D; + remoteInfo = "rn-fetch-blob"; }; AC4A774AD4298B03F7153D4FC3C59F8D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5135,13 +5047,6 @@ remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; remoteInfo = CocoaAsyncSocket; }; - AC6C67A4A9B052ED45C188DAEB9BE4E2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; AD772911BB22AACF6D82C7659AC43148 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5149,13 +5054,6 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - AE43FA96D15DAFADF4684DFE82A47739 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; - remoteInfo = EXAV; - }; AE7111F2927DD7B05F869FBCAFD506C0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5163,12 +5061,12 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - AE813DC2F2E66E205C125C30C04712D5 /* PBXContainerItemProxy */ = { + AF2AC1522D1372FC04283E4C84C01AD4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; }; AFBC06851050FD0681A66F16BA170F39 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5177,6 +5075,13 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; + B0078FBBA4435D1A82DFF2541CA9203E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; + }; B016F73616BD062B510476739F12C437 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5184,19 +5089,68 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - B20FDC1003CFB464227B383816B8E303 /* PBXContainerItemProxy */ = { + B02DC2AB2266E41305F739C1736DF09C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - B267C3EE30846CAF55C6680E5B3596E8 /* PBXContainerItemProxy */ = { + B094776F3A9B5E05CD8DDD7688EA0C42 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; - remoteInfo = RNUserDefaults; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; + }; + B115C105B3BFACB74789A91278CA57A1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; + }; + B14B15692E4311A408CA364CFD65AB4D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; + remoteInfo = EXVideoThumbnails; + }; + B1D8A0A14ED718FA3B98B6700E35F2B6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + B24BCD8B194323E1A21283709EDA199C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; + }; + B2899726ABDAC8715657D03D2A0A223B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; + }; + B2A034C6B05291BF4E2511A8293DA9C8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; + }; + B33C12D2E768A6A3D86F7FCCFEE6566B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; }; B3A01A4439D0D10A063FC8A085DBCE8F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5205,13 +5159,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - B3E14BF8F3E60443BCDBB39A66B40306 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; - }; B3F501C8895365B2E84048FB6C665944 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5226,12 +5173,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - B40CEA861DFE9F3D3D13E19E12D4934B /* PBXContainerItemProxy */ = { + B4C669C525BDF8D44C43DCE8C3C0F8DD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; }; B4E7AA2F388BF06D09134ABA91287970 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5240,6 +5187,13 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; + B4F2BE960A3EB94B2C1047BE3C921FBC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; + }; B56678A4474A9DE17802BB174F7A946D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5247,13 +5201,6 @@ remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; remoteInfo = "React-RCTSettings"; }; - B5714FB9EE5DB4D83825D87B997EA29E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; - }; B6677D6DAB197C7676A97F624A434B26 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5261,20 +5208,6 @@ remoteGlobalIDString = 014495932E402CA67C37681988047CA2; remoteInfo = UMFontInterface; }; - B6A8CE4D4B0075915C1D5434617E466B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; - }; - B6CD73604E0150FC8D50830C4723D0D4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; - remoteInfo = FirebaseCoreDiagnosticsInterop; - }; B751513B14C19C0FA5699BF3C6A6103C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5282,19 +5215,33 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - B978B475810C4FD7869B954D06A2016C /* PBXContainerItemProxy */ = { + B7F34BBFB480A7E845CF82ABC4C1ADC6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; - remoteInfo = RNDateTimePicker; + remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; + remoteInfo = RNCMaskedView; }; - B9F2E86227A638EC5082DD61A3FBFE5A /* PBXContainerItemProxy */ = { + B848B0EFAFC4D5E803108781586DF435 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; - remoteInfo = RNCAsyncStorage; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; + }; + B9296716273ADCFA2BF4726F57CCE47A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; + }; + BA907D770E77E9C34D66DB36F5A3DEC9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; }; BA9E3A8B825153221034FDB7B6A40DD0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5303,6 +5250,20 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; + BB39212FA65A9AE0EFEB7CDC6F1F2617 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; + }; + BBCAA45653EAD052AE277467CF3A88B6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; + }; BBDC7C661CA5567D3925BC0747CAAEC5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5310,20 +5271,20 @@ remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; remoteInfo = GoogleAppMeasurement; }; - BE6B7E74326E637C60B0CEFB1055878C /* PBXContainerItemProxy */ = { + BE62512199D0FE802C91821E5181CDB3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; + }; + BECFBFB611A1E96DCC768C2CEC0F2500 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; remoteInfo = Crashlytics; }; - BE7535E51A4A486A7DA2F76C8FD89AEB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; - remoteInfo = EXImageLoader; - }; BF32D407ED9D0F154DE76F25EEB923DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5331,6 +5292,20 @@ remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; remoteInfo = GoogleDataTransportCCTSupport; }; + BF4C4D9D4341EB49D3D729EE5C98D764 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; + }; + BF606E13E2A1959F7B63E64798921746 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; + }; BF6D3B39A50224068CD35E1C88D41C69 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5345,41 +5320,41 @@ remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; remoteInfo = FirebaseCoreDiagnosticsInterop; }; - C06F36EE31EC164977BF22B3CBDAFAB8 /* PBXContainerItemProxy */ = { + C004D8AE90263EF8D0830369C0DAFA6C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; + }; + C04C07C309466878C915DC6353256A77 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; + remoteInfo = EXWebBrowser; + }; + C096062354C4BC8A36FEE5FBD640EA09 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; + remoteInfo = UMAppLoader; + }; + C16728EE85969BC632204C2133DD829A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; + }; + C177E5B32F71C9BB8F16DA67BCE37C85 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 27E277B43A5F7AE00EC5051AB99AC38E; remoteInfo = ReactNativeKeyboardTrackingView; }; - C0B020E7689352D13F595A01CC8AADBF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; - }; - C0C0992BAE4527DAA7E8AC3E4F3CF74A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - C1D65FCB157FEF43F833E6201ED09DCC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; - }; - C202376E2BA0A81D605ECB42DD1D03C8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; - }; C266DDB269EE618DE8FA720583C9C81B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5387,12 +5362,40 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - C4925555C5F1CD71488BFAB78DC9E016 /* PBXContainerItemProxy */ = { + C2D52719141EB853EF6FA0F32FDE142B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; + }; + C336E00A5FB732ED9C591A771122B06A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; + }; + C4C66FA1E8F92FF7213B3DF7B6D0B802 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; + remoteInfo = TOCropViewController; + }; + C4DAA5E6CB24D3776ABA958A85BBBE9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; + }; + C53CF983E39A5F8C2F252BFD3933BB88 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; }; C5792CABC007D0A7A4E11F4A976C441D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5401,13 +5404,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - C5A1B9ADEB84E33D04F1F9A0E7F619E5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; - }; C5C74D9E7DA1AA3DC76770DCBD7CC27C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5422,12 +5418,33 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - C67EE3D12E433241D320DB94508DA063 /* PBXContainerItemProxy */ = { + C645A03D6705940515BE53A4CD154F62 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; + }; + C673100DE0464C758420BC59FBCB47CC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + C687E0F2A84310D36737FAFF93DC681C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; + }; + C68864A3DE9DC26D441E45BF15E2BECC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; + remoteInfo = EXAV; }; C6B6F02506FCA9766276DEF5FAE04229 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5443,26 +5460,12 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - C7B05112030597801ED7542D38391D76 /* PBXContainerItemProxy */ = { + C7ECDDDAAD607FD244CCECC1FDA62E66 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; - }; - C82885FA3259C59A556AF708E76F94E5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; - }; - C8AB2AB5A9917BB0107587489D2CC0EE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; - remoteInfo = UMFaceDetectorInterface; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; }; C8CA4B534CE37351B06EDF9C3744C014 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5485,12 +5488,19 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - CA5914A72D30A9A8FDDE07F91E9D7495 /* PBXContainerItemProxy */ = { + CA3DFA2162ADE9515B93098FB2BB06EF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; + remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; + remoteInfo = EXAV; + }; + CAA23E0DD6E27DB6CF11EA13C866C7CA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; }; CAAFA5AEF75D91014E0A847946B5CD1B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5506,6 +5516,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + CB543409C4BB73D6C08A911A71CA3587 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; + }; CBBD408BB7D70EE08646E3F8BD770069 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5534,26 +5551,12 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - D03CA778A6E244BE04E5AF75E924F041 /* PBXContainerItemProxy */ = { + CF4EE2A449FC18BDA0C3F2736A03DE64 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; - }; - D044FF13830E865D08E4620199940F43 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; - }; - D04EB8D2EBFD2C318BFAB21E15C68445 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; D07A2073C8416FD3ABDA2FC695482B1F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5562,6 +5565,13 @@ remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; + D082D73FF4A8F73D44DA21DD186C6AAD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; + remoteInfo = "react-native-safe-area-context"; + }; D19900A8FD578E00B4FDAFCE6EE7C8CC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5576,6 +5586,20 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; + D1F6C742E10F479A07F22A0DE95D9802 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; + }; + D21021B0C1B79DCD785D11FE6F9FD2F0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; + }; D290869CE5E3CD1EF4C5525BBBF8EC9C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5583,13 +5607,6 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - D2C0DCB291335C1579D740F152A3BBAC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; - }; D465047540D12FD9D95291AE82A76DB9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5611,26 +5628,19 @@ remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; remoteInfo = "React-jsinspector"; }; - D4C14BAAE12A6ABF46BAD7E39BA62AEE /* PBXContainerItemProxy */ = { + D516B0FB4F3EAB4591E0F4942A3A033D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; + remoteInfo = EXWebBrowser; }; - D4EB8A4D0EC7A8D9BFC5A641A65D5F65 /* PBXContainerItemProxy */ = { + D56D8A502B7D2CAE553F9A5412C1C754 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; - remoteInfo = EXImageLoader; - }; - D4F2E6E9387DC06F3EEF3B428A229E6E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; }; D57C0DD9800DB5B6699D08359FEF3AEE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5653,26 +5663,26 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - D6B403831851DA671398380B9C6F3A2F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; - remoteInfo = CocoaLibEvent; - }; - D6F0A9F1849492F459148B90BB24465E /* PBXContainerItemProxy */ = { + D683C0E379FACDFD3EFD2ED1415D1F24 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; remoteInfo = RNDateTimePicker; }; - D7C25C0FB255A19858D8DDB603B65AAD /* PBXContainerItemProxy */ = { + D6D9D9C76D7E941EBAB22197BAE3D1BD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; - remoteInfo = TOCropViewController; + remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; + remoteInfo = Fabric; + }; + D77004465F7ADDFEDA4CA46A7B673A89 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; DA7D2B89AC64EE5AF84FBFEB65251C98 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5681,19 +5691,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - DADC14A7A8BCB45E728E9CD9AE3F8220 /* PBXContainerItemProxy */ = { + DC0B40CA4F3802AD32801D2F549975F9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; - }; - DBB6C8F12B0797C8326E1FC9BFB721F4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; }; DDFCA674E1FE8DC1DB86D5A0C0A1FB6A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5716,6 +5719,13 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; + DF3633FAA5EC90229E46CFE87B60C7F0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; + }; DF83807DED7F8C5AF770B13C6BAA9515 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5723,19 +5733,12 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - DFB5C67925F4E263504F38498A934366 /* PBXContainerItemProxy */ = { + DFD14860E14161EA0C449996EF960AC6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; - }; - E0CFB39BD8E717D560D89235C08E1CF5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; }; E151C3507E1AC3F51E6253967970D729 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5744,12 +5747,19 @@ remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; remoteInfo = RCTRequired; }; - E1C1C58E0BC414F1D20EEC983F1810DD /* PBXContainerItemProxy */ = { + E1EBE8BC66E64E8969A36A99FF847642 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; + remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; + remoteInfo = TOCropViewController; + }; + E284AB23F847DDF014D356A1EAE33869 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; + remoteInfo = FlipperKit; }; E2A7D57EF8EAB020233EDC68A9ECF68D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5758,33 +5768,26 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - E329011C07D23B48175E14DF9F6D4695 /* PBXContainerItemProxy */ = { + E2E441DBF8E075DDC51B4F16D210B36C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; }; - E37B960537EA420BF9C0195E81ED785C /* PBXContainerItemProxy */ = { + E3249D63E224AEC58C5C2721FB305F90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; - remoteInfo = "react-native-safe-area-context"; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; }; - E3DFD6C753374EC37EF82E29BEBD7560 /* PBXContainerItemProxy */ = { + E4F93203EDABFFC91685A5A65687BCA3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 868B90C74770285449C60DBA82181479; - remoteInfo = EXFileSystem; - }; - E53FEEE02F1680E78E75A94EF79D3275 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; - remoteInfo = "Flipper-DoubleConversion"; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; }; E679399E70A1302F64F34F5147A0D753 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5800,6 +5803,20 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + E7B06BC27E7E38FF0A88678908AB6CAE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; + }; + E83DAA721CA5B6F643752FA5682547F9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; + remoteInfo = EXLocalAuthentication; + }; E8524B7128B54F7936616A550BEB7203 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5807,19 +5824,26 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - E926C664359DC5CB9521170529335640 /* PBXContainerItemProxy */ = { + E85B95ADC8BE1478B8D23355ADD1F227 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; }; - E9CB8EC8A37394D48521504782B91B5E /* PBXContainerItemProxy */ = { + E87AC16A9662BEF88FF2E2BAAAFEBDBA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; - remoteInfo = EXAV; + remoteGlobalIDString = 64F427905796B33B78A704063422979D; + remoteInfo = "rn-fetch-blob"; + }; + EA5DEEA02CC150FBAE6FC947A1BC58E5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; }; EAA9F477386E52EB30E75431006FAA8C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5828,26 +5852,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - EB19CB7D9F00528401CE9736964AAE7F /* PBXContainerItemProxy */ = { + EB36A0FE3F91D25A7DD9B93149D836E9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; - remoteInfo = EXKeepAwake; - }; - EB2FDC9DDA1AF82A434970FF9CE0D680 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; - }; - EBB6248729E41BC2F278396E7C52771E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; - remoteInfo = EXConstants; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; }; ECADD9C57FC2C24C9729ACF2EB4520A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5863,40 +5873,47 @@ remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; remoteInfo = "Flipper-PeerTalk"; }; - EF8EC92F22C3003E9D6BE6F9454A61C8 /* PBXContainerItemProxy */ = { + ECEDAA251C2E2D3C28E78D46B9A1D203 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; - EFC2E89E7AC251CD5F2C0200CF3B4D49 /* PBXContainerItemProxy */ = { + ED0F6455624CB20903964C51B6AAF98B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; }; - EFD81B6EF818BC0265E3E1F274D86213 /* PBXContainerItemProxy */ = { + ED8929F0D66DACF7D445CE27EF09DF71 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; - remoteInfo = EXVideoThumbnails; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; }; - EFE407E385D7036745EFE2953E06F9D4 /* PBXContainerItemProxy */ = { + EE0C95B13996AEABA9923914B989BF5C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; + remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; + remoteInfo = "react-native-safe-area-context"; }; - F003B85F651199B31EC150EC74BEED0D /* PBXContainerItemProxy */ = { + EE16F29907E7D566487750CF1E5309B8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; + EF23D762D0E80AF622A44B955C09860C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; }; F02CC3076A54CCCA5F221E28F3E20FAE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5905,20 +5922,6 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - F043312E230596AB95D2D17693A9DE42 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; - }; - F0DF7E5E5BA1D21DE25056C1ABF3B6AD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; - }; F13412B1EC8D97A0134A577EFE4FFBFA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5940,12 +5943,19 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - F1F9C17FC0F0BE1E038F8A015D56F6FD /* PBXContainerItemProxy */ = { + F22AB42A9DBEC7E21E8087F5BFF4D7DC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; + remoteInfo = Fabric; + }; + F2C10956405A63CDC97CDC6FE68A3802 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; }; F2E57867E76DED400D1A4035EF3D8735 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5954,19 +5964,19 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - F31E1194E8FA65F9209DFC2EEA928D0F /* PBXContainerItemProxy */ = { + F311A539394BA353F92B4272130FAA6B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; }; - F3A4A95C9F3B130E7E75D71CB63F10B5 /* PBXContainerItemProxy */ = { + F317CDE17FB2CAE098CA97F0CCF4FBAA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; }; F40F967DB5AFDF925A6D54E4FB17CA0A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5975,20 +5985,6 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - F4E509105FDE73580318BDB17A2F6C75 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; - }; - F518DF2618C642FE54AEA6CD462109C5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; - }; F56EBC18CB64EE0482444624DFEC06A2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5996,12 +5992,26 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - F650FC1B94E34A921FA3719203A1275F /* PBXContainerItemProxy */ = { + F64CFEDA3CBAD6894333563BAA894554 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; - remoteInfo = UMTaskManagerInterface; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; + }; + F67926210B7A7552C183FFC2C056582E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; + }; + F67FCF59E786704810F16F9736B0290B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; }; F6A14184DE3C02C257A7298719E4FD9B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6010,20 +6020,41 @@ remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - F767A206A3EA93D29A277C6E8F7B8A73 /* PBXContainerItemProxy */ = { + F6EC57AB926F92C2799983D4DB7DE9EF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - F8D85C4D530ACA778BAF25964E5DF846 /* PBXContainerItemProxy */ = { + F76F980ED32FE5AEC1552E2BFA5AE826 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; + }; + F8258A98BA9CCE965E391202E1897942 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; + remoteInfo = CocoaLibEvent; + }; + F86AC551D0AF61605964F573ADB4FFDE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; remoteInfo = FirebaseCoreDiagnostics; }; + F88D6413693A80E2630BAF025843AE0F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; + }; FA5C86A90420903CA42E08EC8584B824 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6031,2444 +6062,2486 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - FBA6C9DE7B3B074641632813762887B5 /* PBXContainerItemProxy */ = { + FBFE6A1909A4826A7FA75D8CF1EB9C21 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; }; - FD2126BE964A674B026672DB69726EEC /* PBXContainerItemProxy */ = { + FD94CEE5407A7A65AFADEEF368B33E91 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; }; - FE16F8027274ECF3315E626AA73E496B /* PBXContainerItemProxy */ = { + FF5CD573CD2CA46046A23A9661ECBD02 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ 0004ADA1CA081B030684FB19EC77BEC2 /* ThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadPoolExecutor.cpp; path = folly/executors/ThreadPoolExecutor.cpp; sourceTree = ""; }; - 0017FB47E14E5B32E82A90381435D24E /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; + 0004CD2B1C7A554C35DAB64B5EBAE612 /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; + 0013155BD637465406EC7C9A5EBFD577 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; + 0021AAD20B41A86FC16C442527F9535C /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; + 003EAF4329308F1EC6185DA44A1D66DC /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; + 00738B77A5CE05C854F2D2638BD918C2 /* RCTNetworkTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkTask.mm; sourceTree = ""; }; 0082E5271A0A42B9A35B2F9EBBE28914 /* GULSceneDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSceneDelegateSwizzler.m; path = GoogleUtilities/SceneDelegateSwizzler/GULSceneDelegateSwizzler.m; sourceTree = ""; }; + 008D4EEA0505267E416DCDEBB6A3CB34 /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = ""; }; 009CF839932EDA691FF3C5786F28642F /* Latch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Latch.h; path = rsocket/benchmarks/Latch.h; sourceTree = ""; }; - 00A26D8E2C88C84085C59339D32C8A40 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; + 009E1A7B40B535EB77ACA21024028C42 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; + 00A208973A5C820DB58EA49C7ADFEB32 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; + 00D1A29C97764FB371DCC4BB85B342F6 /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = ""; }; + 00E181409EB769E1E4567A58BB6438BC /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; + 00E976495F86A5FC584B964CB92ADF63 /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; 010B5109BD821A3F8B3B29CFCDE19C3A /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; - 011FF85ADE51F2C3229D8D1563E1B5D4 /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevMenu.h; path = React/CoreModules/RCTDevMenu.h; 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; }; 012D2366D2C172885416EEAAB9F76A32 /* CallOnce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallOnce.h; path = folly/synchronization/CallOnce.h; sourceTree = ""; }; 01317DD0FBC67A8D7591529633AF3EC2 /* GlobalThreadPoolList.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GlobalThreadPoolList.cpp; path = folly/executors/GlobalThreadPoolList.cpp; sourceTree = ""; }; - 014B16143B6BE9269F59C30B5C9D178B /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; 015B8C320491CDF6FE6160D9DF5F206A /* ClientResumeStatusCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClientResumeStatusCallback.h; path = rsocket/internal/ClientResumeStatusCallback.h; sourceTree = ""; }; - 017EFE10CDD6741C8D50EAA9F06C0AD9 /* BitUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitUtils.h; path = yoga/BitUtils.h; sourceTree = ""; }; - 01AB4AEEAEFBEA748EA4844C2FFCFD7C /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; 01AEDCFC3ED04DFFE39D6F80D460287A /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = ""; }; 01AF6B3F7CCE670710F45E8B5157C55F /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; - 01CEB4FCC8845C95F772C4401D4D0088 /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; + 01C8D2F0DA3AC1453C4A4E1AAEBEDAF0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 01CF13B9D679B7BC88155AD55F3DD540 /* Pods-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.release.xcconfig"; sourceTree = ""; }; 01DF912D12F8A8AF95935A4DEEABA8F0 /* opensslv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslv.h; path = ios/include/openssl/opensslv.h; sourceTree = ""; }; + 01E29E1E919123FA73529DB1E40266E0 /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = ""; }; 02057BFC1C42DD60C7390331C635D854 /* DistributedMutexSpecializations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutexSpecializations.h; path = folly/synchronization/DistributedMutexSpecializations.h; sourceTree = ""; }; - 0215D8AB0FBA29427175CF3D02025890 /* RNFirebaseAdMobInterstitial.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobInterstitial.m; sourceTree = ""; }; - 021BB114EC44FDCE5750A9BFC39134F3 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; + 020B4A74E08D3438BA845901F7EAE0C1 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; 0225409427FFE99591DCBD4FEDDA3EDB /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = ""; }; 022760F1F3F03EEEF53CBA1B3AEB597A /* SocketAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SocketAddress.cpp; path = folly/SocketAddress.cpp; sourceTree = ""; }; + 0231B9765D9737322AAC9865EC423544 /* RNFirebaseRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseRemoteConfig.m; sourceTree = ""; }; 024F789B72FA8D92CC84DCD82857AD1C /* picture_csp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_csp_enc.c; path = src/enc/picture_csp_enc.c; sourceTree = ""; }; - 025E2171C4B4BA5572C7E2EEB9C596B2 /* RNFirebaseAdMobInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobInterstitial.h; sourceTree = ""; }; - 026C5640A11F741416A6D3D3C6C3AB69 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; - 0292F0409BE3032F07AE00C5D25A0C70 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + 025E0CDFD18867BDA9A8DB9B3184A6C1 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; + 025E645C19027FF11B2AD002927427AD /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; + 026D365C03F0738EBB8705648566148D /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; 029B3D446838960B31BCBD02394F100C /* Stdlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdlib.h; path = folly/portability/Stdlib.h; sourceTree = ""; }; - 02A9C40501F0D483BFBFA6D239378924 /* RNCSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewLocalData.m; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.m; sourceTree = ""; }; + 029C1BABC6D0EB3908C82817D94E6D87 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; + 02BC12FC7B6F443A4F115B707678242C /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = ""; }; + 02C81FEA3987E502AC2FE0D8F1CA6DE2 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; + 02CA029FB79AF696A740D09145194B3B /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; 02CAE9298A2C4E7810DCC16EA4120CD2 /* Sockets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sockets.h; path = folly/portability/Sockets.h; sourceTree = ""; }; + 02EACCEF85C6401CE759EC23BFD20E25 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; 02F896E427E81E60D05E4F642B7D77FB /* GDTCORPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORPlatform.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m; sourceTree = ""; }; - 031EF52C51F3F057FE42F641F96CDF2F /* RNFirebaseDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabaseReference.m; sourceTree = ""; }; - 038EC3FEF3E378705AFC70F8439DCCDE /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; - 03A4A214ECFB8B66DB5206004751513C /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; + 03055D7A42E5E850114489ED90D99F78 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; + 032664ABA202E30892CBB23A17DB14F3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 0339FF0394421A78EC4E62FACD4BBDEB /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; + 033AEAAFCE60615AF48A038283404C6B /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; + 03415F6712E38CEF6B5BA9AC87327B01 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; + 035AED08D71C220C5E407091F2A6CC0F /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; 03B3B8A2D8AA371D0684A81EAD100DCF /* Core-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Core-inl.h"; path = "folly/gen/Core-inl.h"; sourceTree = ""; }; 03BCAE262C2C98BC754ECFA00DD34E2D /* buffer_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer_compat.h; path = src/event2/buffer_compat.h; sourceTree = ""; }; 03BFDE2AEA3E71063E0597E9870ED535 /* pem2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pem2.h; path = ios/include/openssl/pem2.h; sourceTree = ""; }; + 03C971251727F36F630D77196BF3442A /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; + 03D7B85BCC7288374F354DCD44FC86E9 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; + 03EFB66160C26CFADD86A2D0EF4170B2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 03FBD72B129570234DDB4A6856B7A3FD /* 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 = ""; }; - 04079F3F915E2504AFB4073E09E67CBB /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = ""; }; - 040BE3382B7334D6BB8897189DBAE420 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 040AA9DAA7862B475B2E5120A5EEF914 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; + 041293840B618AC2B9040C82E56A4EC6 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; + 041999B01F33F5728EADE2E9A551CF9B /* RNFirebaseUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseUtil.h; path = RNFirebase/RNFirebaseUtil.h; sourceTree = ""; }; 041A3AB9D3FA721EE3FA6A1C010E3C97 /* lossless_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_msa.c; path = src/dsp/lossless_msa.c; sourceTree = ""; }; 042DF8DFEEB1D8E5580AAC6A366BDAB8 /* FirebaseInstallations-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstallations-dummy.m"; sourceTree = ""; }; - 043ED4F8DDAC348C73E37E585DDF8CDF /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = ""; }; - 044347D679B9EB2948B4421209C2C9EC /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; - 045C2246BF47FF94296C1DF119A721FC /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; + 04368F41390E638813991BAD65E58B7B /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; 0461463C7C51A58FADE5719B78D3486F /* ui_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ui_compat.h; path = ios/include/openssl/ui_compat.h; sourceTree = ""; }; - 0476475AE08D9EAE2A07B1E44E0499BD /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; + 047E3082BDAAFDB754C2F948E1FB9C07 /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; + 0489DFAD8CDFB314CDC540B95FD79C84 /* react-native-notifications.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.xcconfig"; sourceTree = ""; }; + 049121CD6C0B1D64E58E3C9027BDCEFB /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; 04AEECEA2393B4EDABC37244F1239588 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/synchronization/RWSpinLock.h; sourceTree = ""; }; - 04B0CAFC92C46EEDCFB2A67C85B3D411 /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; - 04CDD11E2851BA524D515400C91BF246 /* 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; }; + 050293ECCB39238309F20D196347F57D /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; 0519EC5A4AFFBE2BB26D2B7BA7702EDB /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = ""; }; 052E73AD9356D481A265F7E0FAA85B84 /* ms.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ms.lproj; path = "Objective-C/TOCropViewController/Resources/ms.lproj"; sourceTree = ""; }; - 0566809519C6B1B9B8048DD66BB8D9FA /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0553A531F07D4AE16DD483083B42D7A9 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; 05672D7B2C6130AF07E326DF8EF6CDE0 /* OpenSSLThreading.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLThreading.cpp; path = folly/ssl/detail/OpenSSLThreading.cpp; sourceTree = ""; }; - 056A6BD326D5FAB3144508859FB38451 /* EXLocalAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXLocalAuthentication-prefix.pch"; sourceTree = ""; }; - 058A8D2CACD3432B5FE785E4D1904D54 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; - 0591949859C3338773C4E3829101278E /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; - 0598A05C3FA7953C8D0C113CD4A573D3 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; 059D07B656F170281E4608441D5988EB /* FrameSerializer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameSerializer.cpp; path = rsocket/framing/FrameSerializer.cpp; sourceTree = ""; }; 05A7B5AFD49681298FBC68113C18BFE9 /* srtp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srtp.h; path = ios/include/openssl/srtp.h; sourceTree = ""; }; 05D86D6DAA63D4275173FC63FD7F89BC /* TurnSequencer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurnSequencer.h; path = folly/detail/TurnSequencer.h; sourceTree = ""; }; - 05E7285D3CE4D977C35CFECF3AED54DB /* EXKeepAwake.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXKeepAwake.m; path = EXKeepAwake/EXKeepAwake.m; sourceTree = ""; }; - 05F68EE13E6ED5837AA2208FCCA1B7A8 /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = ""; }; + 05E0A0D2314B170BE1F42E0C84F1599A /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; 05FD1CADBA934C110DFE16A11C133F0B /* lossless_enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse2.c; path = src/dsp/lossless_enc_sse2.c; sourceTree = ""; }; - 06353F9686498FF537BA050E3967FC4A /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; + 0615D3DFC82C26757E1BD398535DAACC /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; + 0633D4BC2B6C74F5592307ACB6CA753E /* EXVideoThumbnails-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXVideoThumbnails-dummy.m"; sourceTree = ""; }; 063EE953E780320CB010F1F0C42E48E1 /* AtomicNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicNotification.h; path = folly/synchronization/AtomicNotification.h; sourceTree = ""; }; 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 0660A4AF44B1A8B709A1A279D0F0352C /* 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; }; + 066BB0768735A88992CD059E35B6F38F /* 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; }; + 066FD3A91B0F1517F1463DB5F7CABA38 /* RNFirebaseAdMobBannerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobBannerManager.m; sourceTree = ""; }; 0672A1C17F80DFD5A9341B19DD72461F /* ThreadCachedInts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInts.h; path = folly/synchronization/detail/ThreadCachedInts.h; sourceTree = ""; }; 06800ED7F45E9EEE33317363307DAF0E /* TimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFDTimeoutManager.h; path = folly/experimental/TimerFDTimeoutManager.h; sourceTree = ""; }; 0686C0EC9AF0D66EFC1B412EB9124045 /* GDTCOREvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREvent.h; sourceTree = ""; }; 0688E1BF1908E81DBF8C7C1D4D8AD3BA /* SetupResumeAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SetupResumeAcceptor.h; path = rsocket/internal/SetupResumeAcceptor.h; sourceTree = ""; }; - 068ADB4B4217E951C5CD2F684E130707 /* 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; }; - 068FEB8942799C25ABFF13F26928F3DE /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; - 06BFAAEC4C9DCE8E0E1100EAE7E78F1D /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; + 069507335A033B9D3A7F90B470BDB266 /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; + 06A065E51F4D81504E316C27A77D26C1 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; + 06AAD9D0F4DA3DB3A4910B53E9778504 /* ReactNativeKeyboardInput.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardInput.xcconfig; sourceTree = ""; }; 06D222764BE5EFFDA1CB8E727535B257 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h; sourceTree = ""; }; - 06DDD034E8BC8B718DEAD16CFEF6DD3F /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; 06EA43809DB273039C5E47565F2C72B1 /* camellia.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = camellia.h; path = ios/include/openssl/camellia.h; sourceTree = ""; }; 06F8EBA16B75A578F19F3C024272E7DB /* FIRInstallationsLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsLogger.m; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.m; sourceTree = ""; }; + 06FB3CE26855FB694C1788270CD863E2 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; 06FE4534A33746E9A14498E2181A341F /* FlipperConnectionManagerImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionManagerImpl.h; path = xplat/Flipper/FlipperConnectionManagerImpl.h; sourceTree = ""; }; + 071EAC1216B90DC198CDBCF0BD16D771 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; + 072440311BE630265E8A9BA9FE4B579C /* RNFirebaseLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseLinks.h; sourceTree = ""; }; 072C64D0E7E5B999D84E772A74C31778 /* dynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic.h; path = folly/dynamic.h; sourceTree = ""; }; - 0768F9582B509DD1903F273F99CCBE3A /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; 0769ED595B1401CF902DB671F1E66530 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; - 0773A1266A8E3BCC9A3C57CC7DC04F95 /* EXVideoThumbnailsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXVideoThumbnailsModule.m; path = EXVideoThumbnails/EXVideoThumbnailsModule.m; sourceTree = ""; }; - 079B62AE33AE93B5551EE35A65870003 /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; - 079E15960D8A469FBF3CE8B19E12F350 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; - 07AA4BD17AFAD621804CD03BAE1CF973 /* EXLocalAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocalAuthentication.m; path = EXLocalAuthentication/EXLocalAuthentication.m; sourceTree = ""; }; + 077B84BC0E5BCB688AF3980FA3447CFC /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; + 077E104C263332DB4F4F7BD9DA062B78 /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; + 078ACB560B9DF301B22DB27AC0251D1B /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; + 079F6E76299A18536226AD3A42E9764F /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; + 07AA1343D184912CDFB622E045546DFF /* RCTImageURLLoaderWithAttribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoaderWithAttribution.h; path = Libraries/Image/RCTImageURLLoaderWithAttribution.h; sourceTree = ""; }; + 07AF9A5578F23EBDE628D7A0CD44EE44 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; 07B717D9C7622FEE492A55061400A1CC /* 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 = ""; }; 07BCE1AE056CAF0D6339A46A3F531494 /* modes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = modes.h; path = ios/include/openssl/modes.h; sourceTree = ""; }; 07BCE99FA93A40DB52862B5658D00310 /* FKPortForwardingCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKPortForwardingCommon.h; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingCommon.h; sourceTree = ""; }; - 07C80E242654D1BA9979DC38736D3632 /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; + 07C4828CD0AFEB81ABBE1417846D2AAB /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = ""; }; 07EF8F24AB991394A0B0F3F56E87D22E /* ResumeIdentificationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ResumeIdentificationToken.h; path = rsocket/framing/ResumeIdentificationToken.h; sourceTree = ""; }; - 07F7BC878AD42B87F559C08DA8FFA6D5 /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; - 08088FFC505F9EB5299EABCA1F1830AF /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; 080E1E929CA7373B755FD57255F88E0F /* CocoaAsyncSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CocoaAsyncSocket-prefix.pch"; sourceTree = ""; }; - 0832D97F675F7913811359F39365D101 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; - 0841B0DCBAE83C09DAADCF0C30099F81 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; + 080EC6C50A948DD67F2B8A2304C6EB5F /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; + 081E5EECE46CD1A347C6EF95EB9C8529 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; + 082248F149CA01E5F5092279617FFF33 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; + 08286E5500972EC4C7AFF7710EB30701 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; + 085AB487C8EB644BA63C60DAF68D9AC4 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; 085AD3D2DD563788E6C7AD22A0ABAD84 /* RSocketTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketTransport.h; path = rsocket/transports/RSocketTransport.h; sourceTree = ""; }; 087E38FA9ADF56CBFB0A88F271CD2D97 /* Base.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = Base.lproj; path = "Objective-C/TOCropViewController/Resources/Base.lproj"; sourceTree = ""; }; 088370164BB99DF2DADD633FC502F026 /* anim_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_encode.c; path = src/mux/anim_encode.c; sourceTree = ""; }; + 08841ACBAD03EBFF0D2F52BD702B6CDA /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; 08942B0A179F3F1363C8C8572C592955 /* frame_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_dec.c; path = src/dec/frame_dec.c; sourceTree = ""; }; + 08ABEBB9725655CC6ED26B3DEDB4CA00 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.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; }; - 08F35E718A43E3769E9829CD5DB3D66C /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 093068FC0E267C91415EDE13698C369A /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; 093E9DA3FA192A5297614C0C463DBC19 /* Unistd.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unistd.cpp; path = folly/portability/Unistd.cpp; sourceTree = ""; }; - 0945BBEEC7F494B6316CB68B3BEBC976 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 099175F27CBD66453311A8A60CF896F9 /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; - 09B325A9595679D5E72539CD1ADB40FC /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; + 094B2079D554B45CE52B8DB78B37ADE8 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; + 09A01FEB7B8297EBB01FB336C4B31A7F /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = ""; }; + 09AEF2D1F4A3A89E05BC42A67C9A9078 /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; 09B5856105EF7C6447B9EC57E7E36B34 /* libEXKeepAwake.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXKeepAwake.a; path = libEXKeepAwake.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 09DE74C202CF22C5F34DA4963E3EB4AB /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; + 09CF615CD864B0E7013EFE0697D54749 /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; 09DED66FCFC8C3AAC38BEDE2A70464FD /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = "Objective-C/TOCropViewController/Resources/en.lproj"; sourceTree = ""; }; + 09E6F1B93BCEDB39360721493C91D27F /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; + 0A0CD1151988E642F6763E1E0FEBC062 /* RCTConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConstants.h; sourceTree = ""; }; 0A0DAB5825027912427BBC8195D3F162 /* AsyncSocketBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocketBase.h; path = folly/io/async/AsyncSocketBase.h; sourceTree = ""; }; - 0A15FBDA096B2BD5A70750F661A84F01 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; - 0A1F4947E57242ED7DA527F0CC888F99 /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = ""; }; - 0A45B438353CDD3D4B69A51D16A27037 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppState.h; path = React/CoreModules/RCTAppState.h; sourceTree = ""; }; + 0A3317667F31F7168FA5A80542BA6B0B /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; + 0A3AF7F862CC74712717A4D37F702C87 /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; + 0A3B08539A1E5B0286CB3F069942B8C7 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; 0A469974EB144681D75EE677799BD632 /* GDTCORReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORReachability.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m; sourceTree = ""; }; - 0A4802CD6320F1866FAF9644C0B4F0DF /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; 0A492A3D9D89118A05A744C52DF693A9 /* Flipper-PeerTalk-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-PeerTalk-dummy.m"; sourceTree = ""; }; 0A51B5944DAB19F25618C50A23CAAF4D /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/gen/String.h; sourceTree = ""; }; 0A5874AEF59E026C3AD3EDF6FE7090F0 /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = ""; }; - 0A81DE66523DA03FDE7B454B003A23AA /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; + 0A8028BCC58743A6AB3702379DF66EB6 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; 0A8700F9216F84EC4EEF704759982EBB /* OpenSSLUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLUtils.cpp; path = folly/io/async/ssl/OpenSSLUtils.cpp; sourceTree = ""; }; - 0A8D1FED0CE58854EEB0575FC8C80A45 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; 0A8F55A8C8BB50C6855CDE1204DD1AFF /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; - 0A915925BDD8213CB949A2B270F41493 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = ""; }; 0A9937D7A360E83F8CA7E0155AF042E5 /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = SDWebImage/Private/SDAssociatedObject.m; sourceTree = ""; }; 0A9C8AA219AAFDA477CA1004291AB179 /* Select64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Select64.h; path = folly/experimental/Select64.h; sourceTree = ""; }; - 0A9E0F8E3943D6D7D8D7A41C34D5D77F /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; + 0AC9C1DB7C04328B5BB8E33489022D4E /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; + 0ACC86BFC387731739DC830B7201E00D /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; 0AD1D003B598514E16C0786487FABBB2 /* Pods-ShareRocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ShareRocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; 0AE130A027B7F43833C7C43F403F665A /* GlobalExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalExecutor.h; path = folly/executors/GlobalExecutor.h; sourceTree = ""; }; 0AE7D0770D2BE30C5BDABB080AA8E015 /* FlipperCppBridgingResponder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperCppBridgingResponder.mm; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.mm; sourceTree = ""; }; - 0AF68A599124576AE077A04547C6DB4D /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; - 0B03E177185332CDB8914F429FC265C5 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; - 0B0A24DE9F10C66203FFC2F813929497 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 0AEBB74E46017DCAE9ED28A67AE68D17 /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; + 0B0A67F61C92A74A973F3AD157FF31AE /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = ""; }; + 0B0EB0C1455E1309931489C3C4346DC9 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; 0B20C7AD4C0DAFD0A549410FB953D3C7 /* ApplyTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ApplyTuple.h; path = folly/functional/ApplyTuple.h; sourceTree = ""; }; 0B31005ABA816DF2BAF8B73B5030CBC2 /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = ""; }; - 0B323165A82758004B3BF7CF1D9B7BE2 /* RCTStatusBarManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTStatusBarManager.mm; sourceTree = ""; }; 0B38F44E67E4A3E8B7610532B8694EC3 /* Arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Arena.h; path = folly/memory/Arena.h; sourceTree = ""; }; - 0B3A0AA50391C1B5390DC63C87751BF8 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; + 0B3D37D4AD8CFFB551561CAB8EFED1F7 /* RNFirebaseDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabaseReference.h; sourceTree = ""; }; 0B4C7BCE8DE1F357EC2A2E9C1BEB2D53 /* SKViewControllerDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKViewControllerDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewControllerDescriptor.m; sourceTree = ""; }; + 0B54E1D7B3FDC8FE90C21E035DC2B477 /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = ""; }; + 0B64EEB3F7933A5B2098647909E0ED92 /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; 0B699E2A67EEA22C814FEAB92F07069D /* 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 = ""; }; - 0B8FB29F6AC044354596468EB0E63CFD /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; + 0B7FF6573344CDA68FFC6BB1457E8553 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; + 0BA71B3682336787CBEDC68D8B7DEFCD /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; 0BC9EB36FA9896389542A9FC6195B19B /* FutureDAG.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureDAG.h; path = folly/experimental/FutureDAG.h; sourceTree = ""; }; - 0BCC70F4FF4C368C566CA84DDD9D0F52 /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; 0BCE56F98F0FD3F694163684BF304F9A /* ParallelMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParallelMap.h; path = folly/gen/ParallelMap.h; sourceTree = ""; }; - 0BF0B7B11DC9E6EE4E7DC50E16451765 /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; - 0BF2A83643B8FA28BACB7D11BC209D29 /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; + 0BD21030CD3C2076216E327F1F2AB1A2 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; + 0BF0F433723BD9A207365B72398890D4 /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; + 0BF107D5D9DB209E57E52C2D601BFC40 /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; 0BF59E237AF5DB0D099095014DA0DC64 /* CPUThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CPUThreadPoolExecutor.cpp; path = folly/executors/CPUThreadPoolExecutor.cpp; sourceTree = ""; }; + 0BFB651D0748DF11336DEDB9ED0D4468 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + 0C16D5592AAF54FDAD9945573AAF7295 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; + 0C17DAEB767685E151CBEEE677106E5A /* EXRemoteNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXRemoteNotificationPermissionRequester.m; sourceTree = ""; }; + 0C1D0B760CCF24755B2727D31B9EDCE0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 0C278AB3E6FCF15F4728074C278D384B /* SocketFastOpen.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SocketFastOpen.cpp; path = folly/detail/SocketFastOpen.cpp; sourceTree = ""; }; - 0C286AD7EC1E09E7CC3550C72EBEF2B6 /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; - 0C527A242FCB70C4E79C1BB4DE5B8DF4 /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; + 0C4E83823B124CE4BEA4F71B475706AD /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; + 0C5479F774B6CA1B2BC9515C2724511F /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; 0C5ABBDFB0EB3AB7D3EA468CF07FA3BC /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; 0C63A47DAF16CD2A0834B1A35401355C /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; - 0C7EAA5CB9379993BD07BCA5D5A33B12 /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; + 0C69A4C9BEE6C6DB95D331757A1B845D /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; + 0C7E521014162B0C14C9EB7404009500 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 0C879FAF890CC44C742103804933655E /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; + 0C87E1F4965B92CF2B0D2DECD11DAE13 /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = ""; }; 0C89CA7C949CC2297DDA1B574D639836 /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = ""; }; 0CA4586504E0FD172DD164A3A4F5FD53 /* AsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocket.h; path = folly/io/async/AsyncSocket.h; sourceTree = ""; }; - 0CC94E256873EF1A6C4BCB70936D273A /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; + 0CB1410A921E227EA20B80E650DF64E8 /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; + 0CBE6A03E32FC26465FCF0F3AF1DFDEB /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = ""; }; 0CCDADBF1E0BCF5E4B4986AC4DA0A3F9 /* ManualTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualTimekeeper.h; path = folly/futures/ManualTimekeeper.h; sourceTree = ""; }; 0D083D91DCF05A1194D88C22CACAC0A4 /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = ""; }; + 0D124C870BD1AD4EF03CD7AC69FA610F /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; 0D15813CBCD75E6248C5684A453D7F43 /* CancellationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancellationToken.h; path = folly/CancellationToken.h; sourceTree = ""; }; - 0D15C40CA8D0C400B39E4EC4ABF7AF5F /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; 0D21BF6BCB829FC04D2BC3A16759D75A /* upsampling_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_mips_dsp_r2.c; path = src/dsp/upsampling_mips_dsp_r2.c; sourceTree = ""; }; - 0D27998CFA5C0E77A18D200E10757361 /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; 0D525395ABBADE7600560BDA60B7A6FB /* SoftRealTimeExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SoftRealTimeExecutor.h; path = folly/executors/SoftRealTimeExecutor.h; sourceTree = ""; }; 0D589AAC9C2027007645B7D5BDA05231 /* GDTCORPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPlatform.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORPlatform.h; sourceTree = ""; }; - 0D5C72F658BE37FBCAB30618A68F9D23 /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; 0D65795EAEBDB3248E4FFEFD8AE28B5B /* 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 = ""; }; - 0D838479726FE37EF7204F8038CDC189 /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; - 0D9526635D048D516E86BDC0C54F35F7 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; - 0DC699F0D9FE9CBAF4C154CDCB2CFF9B /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; - 0DCCA917653E3FB19DCC244BC113C5FD /* RNCMaskedView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.xcconfig; sourceTree = ""; }; + 0DC4753856349A20BF60E239F3DE0374 /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = ""; }; + 0DC98997424B18CC73CB93D3C00FFEDB /* RNCSafeAreaProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProvider.h; path = ios/SafeAreaView/RNCSafeAreaProvider.h; sourceTree = ""; }; 0DEA16C84145A5C716890FD5A24439FB /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = folly/portability/Config.h; sourceTree = ""; }; - 0DEF98D45877DF4D904216235211640E /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; - 0E1A31DC6AD24779052F7AD79137C357 /* RNCSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaShadowView.h; path = ios/SafeAreaView/RNCSafeAreaShadowView.h; sourceTree = ""; }; - 0E320279B3F311301F678F4DDB06C802 /* 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; }; - 0E878B95DE1321991EF7EDCA77D6AC46 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; + 0DFBE72CD90D262E7A6933E7E30E47E9 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; + 0E07A1EA86C3DEBCE81DC09370DFC974 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; + 0E1555A71B1B88690357F182AE3E27EA /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; + 0E3265C42333A48771EC37248BBC59B3 /* RNFirebaseAdMobRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobRewardedVideo.h; sourceTree = ""; }; + 0E3C14843CFD8E90981B9685A9A32E31 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; + 0E42CC7555AD8E8F6B67AFD7B4427870 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; + 0E4627AF647F69A0666BB332B99DFB32 /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; + 0E8F0C8A8EA584A96DEEF4825A115884 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; 0E90ABA43547076CF75FFE95114B3CD8 /* NotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NotificationQueue.h; path = folly/io/async/NotificationQueue.h; sourceTree = ""; }; + 0E942DCB54F046D2146E9F69DC7E1335 /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; + 0EA2652DADB72FFC3372DC4610D94043 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; 0EC05AA3F51FFF6F2DA357A81C9C31CE /* DrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DrivableExecutor.h; path = folly/executors/DrivableExecutor.h; sourceTree = ""; }; - 0ECAA28A148DEBDCEADACA33912091EB /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; - 0EDFC6E8E64DE90936068C27466892BF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 0EEAB525FF29656BF4A9BC0EF3846EB7 /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = ""; }; - 0EF8BA0AF02A308F427AB4CF2B5A08A9 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; + 0EF2C04C9FBCE8D759B215220D6D7AE3 /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; + 0F0512CBCDA1447DCD89511D30DA8FCF /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; + 0F10B8B6674550EA000A3ABB3BCA9273 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; 0F2D3B9CF557114DC33DF027B49A13FB /* FIRInstallationsIDController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIDController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h; sourceTree = ""; }; - 0F311E036A6CCE07931510059BC1289F /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; - 0F4E46F906C35AFCA50D74860A1A755E /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; + 0F40B52FC2DFDB13480B387C4F29CA0F /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; 0F897454653A2D3E345A1AA30CB71ED7 /* Flipper-DoubleConversion.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-DoubleConversion.xcconfig"; sourceTree = ""; }; - 0F91CC22FD02C12DE7E61375FFA29955 /* 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; }; 0FACA78D90AB953F871C42892796C3B0 /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = ""; }; - 0FB643881A96AB7E3640E83A710DBF2D /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; + 0FBCF12118BE36F18E343B01FE292CBC /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; + 0FBF585EBA9B386402A60BD79F70A534 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; 0FD3E4CFE5DBDA98213FB9D73FDC4C26 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; - 0FD6BBD159F5914E10A0DDBD79809389 /* RNFirebaseInstanceId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseInstanceId.m; sourceTree = ""; }; 0FDC6B990073E8B1A8B035C2933F316A /* FBCxxFollyDynamicConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FBCxxFollyDynamicConvert.mm; path = iOS/FlipperKit/FBCxxFollyDynamicConvert/FBCxxFollyDynamicConvert.mm; sourceTree = ""; }; 0FEB237EFA588675D5F1D8F4365EE764 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; - 100FC90DF3F10194AB37E353AAFC64EB /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; 101039A0E2F69BBC8476AB61583B7249 /* TOCroppedImageAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCroppedImageAttributes.m; path = "Objective-C/TOCropViewController/Models/TOCroppedImageAttributes.m"; sourceTree = ""; }; - 1018BD214C8F0629210A84AD70CB7294 /* EXVideoThumbnails-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXVideoThumbnails-dummy.m"; sourceTree = ""; }; - 1026A0EA6EE749E75A0B9AD22250EBE0 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; 104C42A61B3D6157224ED06DBE2DF1F4 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; + 106F6B8D6E0E1D4159EFC59CA49D35ED /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; + 107E6EA09D55A51A08CC1346FF70D5AC /* UMAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppLoaderProvider.m; path = UMAppLoader/UMAppLoaderProvider.m; sourceTree = ""; }; 10814B74CDE15DC6EB1F5120B83AF3C0 /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; 1087704F8AB27E2FC8CEA11CCA45BA10 /* ReentrantAllocator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ReentrantAllocator.cpp; path = folly/memory/ReentrantAllocator.cpp; sourceTree = ""; }; 108FFC228C1812512805FE28F3585E1A /* NestedCommandLineApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NestedCommandLineApp.h; path = folly/experimental/NestedCommandLineApp.h; sourceTree = ""; }; 1096C62987E060CDB91A9A0667807111 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/detail/Demangle.h; sourceTree = ""; }; - 10A0E5B448E578CA854F88D23DDB48C9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 10A12DBED3913027E742D5A12B53ADD7 /* Yoga.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Yoga.modulemap; sourceTree = ""; }; 10AC0610BFD1233219F62C08EA9836D5 /* AtomicHashArray-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashArray-inl.h"; path = "folly/AtomicHashArray-inl.h"; sourceTree = ""; }; + 10BC9BB79CE745F5F7AA23B9ACEDFC2A /* RCTImageViewManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageViewManager.mm; sourceTree = ""; }; 10D8024A3E862301166AF1F823758DFE /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; 10E27EE0A11AA474165B731B0190E8C4 /* CertificateUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CertificateUtils.h; path = xplat/Flipper/CertificateUtils.h; sourceTree = ""; }; - 10F76B5D9E90B1C8AEB0E10A384DAFB3 /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; - 10FA882BE2A1CC62A084B0FDC31D5E2D /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; + 110E77A6AB839639D0BB6E6E11CA239A /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = ""; }; + 11124971ECBA9E121883A6EF7A92CE49 /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; + 11145ABC1368532AD8C8BAA8E947BA5F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 113CABA82A1AFDABBD9BD0633DB77BE6 /* SingleWriterFixedHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingleWriterFixedHashMap.h; path = folly/experimental/SingleWriterFixedHashMap.h; sourceTree = ""; }; 11660FFD2D5E05362E022517E8D47E88 /* UICollectionView+SKInvalidation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UICollectionView+SKInvalidation.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UICollectionView+SKInvalidation.mm"; sourceTree = ""; }; 117D6F285FFB893278988CB329E1BA68 /* Pretty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Pretty.h; path = folly/lang/Pretty.h; sourceTree = ""; }; - 118935DB48F3E9A3C3F88BA28BFD212F /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = ""; }; - 11B1B50E2419A2F77B4F76E677288C86 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; - 11B26118160321B6863E597D7ECD6ADA /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; - 11B2CD6FEA433142CF2642FD63D646A7 /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; + 11893D7D91D9CBDF71B033F695F52827 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; + 119FA8BE700BB585F326E8DDDBE2097B /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; 11B81A5FEB883D4AA13766110CDCE04B /* bufferevent_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent_compat.h; path = src/event2/bufferevent_compat.h; sourceTree = ""; }; 11C02616B5C0A1629DE792B60F8EE355 /* WaitOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WaitOptions.h; path = folly/synchronization/WaitOptions.h; sourceTree = ""; }; - 11D57F3E85CB70F4630EAE63364EAFC9 /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; 11EA20EEA3BE11B46C97E00FE1D99E02 /* GlobalThreadPoolList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalThreadPoolList.h; path = folly/executors/GlobalThreadPoolList.h; sourceTree = ""; }; 11EAE715397E8FE0FA3CB97ED5895596 /* Unistd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unistd.h; path = folly/portability/Unistd.h; sourceTree = ""; }; 120F2F5591146C7F60A5E7F5D1050B47 /* vp8li_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_dec.h; path = src/dec/vp8li_dec.h; sourceTree = ""; }; + 1210196EDCC2368A83CE532E53CAB073 /* EXLocalAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocalAuthentication.m; path = EXLocalAuthentication/EXLocalAuthentication.m; sourceTree = ""; }; 1211C74ED88052FE47183F43521FDB6B /* AtomicSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicSharedPtr.h; path = folly/concurrency/AtomicSharedPtr.h; sourceTree = ""; }; - 1229A417537FC603DDC0EF7036EDF414 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; + 122E04F7E1EC2E9AFE681E66A2D5D1FC /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = ""; }; 123D42F2364ADFC74FCB4B75098452B2 /* fa-IR.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "fa-IR.lproj"; path = "Objective-C/TOCropViewController/Resources/fa-IR.lproj"; sourceTree = ""; }; - 12458DC7D4DC95957F2754C8A475FC35 /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; + 124072C8CF5B3C82CAF4ECD605BC4C4E /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; + 126199C73856BB1169A9044CA9A5649D /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; 12685E77FBCB9CBCC8C7CBA44526FD02 /* SwappableEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SwappableEventBase.h; path = rsocket/internal/SwappableEventBase.h; sourceTree = ""; }; 126CB7FE81224259DFF1F3CE6B1112D3 /* GroupVarint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarint.h; path = folly/GroupVarint.h; sourceTree = ""; }; - 1287010DACE738C9B6D1C77358A23353 /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; + 12760B2ADEEB617BF703F0D43FEFCC77 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; 1299B516202C6B6DD5D3B44DDCAB43AF /* GDTCORDataFuture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORDataFuture.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORDataFuture.m; sourceTree = ""; }; - 12AF2C6E03DDD77B4BDF11B77EB63479 /* EXLocalAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXLocalAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 12B2B27F837989ABA1A2A07BDA1C4149 /* SSLErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLErrors.h; path = folly/io/async/ssl/SSLErrors.h; sourceTree = ""; }; - 12C58830DD213F20169E98FB6CFDD961 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; - 12CB442B630EA66817536E0157E1E4C3 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; 12CD80C83BEB69E40871C0FC92B59C60 /* enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse2.c; path = src/dsp/enc_sse2.c; sourceTree = ""; }; + 12CD988AB5526B4808905AE557BF0F4D /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; 12D3717C18660E0F2A02FEC09AFC1346 /* dtls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dtls1.h; path = ios/include/openssl/dtls1.h; sourceTree = ""; }; - 12D3CD87830F42F1663F1365496738BD /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 12D479D7F81530DCC5D5BF185A747439 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; + 12D61B0E0EB973297C194764B16CFAC9 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; 12D7348ECB9E178985096E40F683606A /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; 12E7DBE9A6D2E2B64628A51D714E14E5 /* TimekeeperScheduledExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimekeeperScheduledExecutor.cpp; path = folly/executors/TimekeeperScheduledExecutor.cpp; sourceTree = ""; }; 12E9A42573FF35B5739794EE14DB0D7D /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/MicroSpinLock.h; sourceTree = ""; }; 12EC624D805F2A2DF72612BAE59EF11A /* RSocketServer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketServer.cpp; path = rsocket/RSocketServer.cpp; sourceTree = ""; }; 12ED3A017DA113F5FB9A727B91D58167 /* Flipper-Glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Glog-dummy.m"; sourceTree = ""; }; + 12EDE432BD3D8860F80EBFF04A6C53E4 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; + 12FC96FD85B0EE6C53FFF770B8B474F5 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; 130335B611EDD6AFF8824641E06138D6 /* libEXVideoThumbnails.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXVideoThumbnails.a; path = libEXVideoThumbnails.a; sourceTree = BUILT_PRODUCTS_DIR; }; 131281C3CA3CBEF8B374B1DA5946C719 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; - 132D217F2F91CB8E2288EA57F6C8A2A0 /* RCTGIFImageDecoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTGIFImageDecoder.mm; sourceTree = ""; }; + 131CD649B2B7FE421F563A3FE5F15B97 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; 133D0B8106A5DF5A97A1EC55698B5430 /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; - 13476D98851D62545BC85FC3F3B75065 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; 134809788D95B1424C9966E8E30A136E /* IPAddressV4.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddressV4.cpp; path = folly/IPAddressV4.cpp; sourceTree = ""; }; + 134E75B44815EFD151A2D9B70BD40986 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; 13557C0B7A0B2B1C2F2818AEAF31F414 /* FLEXNetworkRecorder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXNetworkRecorder.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkRecorder.mm; sourceTree = ""; }; + 136C438561B6D5CB3D1286C9153B7C31 /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = ""; }; 1381B07386B17DB1B283F6B3EC16F8CA /* Hazptr-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Hazptr-fwd.h"; path = "folly/synchronization/Hazptr-fwd.h"; sourceTree = ""; }; - 1387D192DEF83A58471C4E31CF164D14 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; - 13B375DBDAED765EE756A663051D4F59 /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstallations.a; path = libFirebaseInstallations.a; sourceTree = BUILT_PRODUCTS_DIR; }; 13CCEE65A81AC4AEFAF2C7B869CEC702 /* id.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = id.lproj; path = "Objective-C/TOCropViewController/Resources/id.lproj"; sourceTree = ""; }; - 13CDFAA4F38795DA76021D68522D7B2C /* 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; }; - 13D2000ABC8C569854622AE56324160D /* RCTFileRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileRequestHandler.mm; sourceTree = ""; }; - 13DD1B28DAEDF569254323914729E6C3 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; 1401893E9BDAAECA1EF9DEB558623B65 /* ocsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ocsp.h; path = ios/include/openssl/ocsp.h; sourceTree = ""; }; - 1404FC0E23413F78C58200069A101F19 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; - 140B58D080DCD1D139F1EB3283AAABB7 /* RCTConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConstants.h; sourceTree = ""; }; + 1413FFFF6ADE74BB4EC379BF8CDCAFBD /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; + 14491B988359F95819D696C672587578 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; 14678CD44F55B1A64B7CCF96F5E94126 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; 1480D363919A35F1E19FE10FC4D6B113 /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; 149229419C1D7A7AE8C9644705ECAD82 /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = FirebaseCore/Sources/Public/FIRLoggerLevel.h; sourceTree = ""; }; + 14979149F23DF62C17F9E7A21EE83969 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; 149A84F1B702EB46F6EC1A6325AB9C43 /* SKViewDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKViewDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewDescriptor.h; sourceTree = ""; }; 14AD00F6794B75E13769E36734C64BAB /* TcpDuplexConnection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpDuplexConnection.cpp; path = rsocket/transports/tcp/TcpDuplexConnection.cpp; sourceTree = ""; }; + 14B051DDE46778264E83099E407929F4 /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; 14B3C2BFC1E0AFF93FB0ACAF2513E787 /* MemoryIdler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MemoryIdler.cpp; path = folly/detail/MemoryIdler.cpp; sourceTree = ""; }; - 14D8D4CDF8859688529E2A068193FA57 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; + 14DB85DA281E7406A95457602CC430B7 /* EXImageLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXImageLoader-dummy.m"; sourceTree = ""; }; 14DE5E20048BA83B6CF49A1811EE2017 /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = ""; }; 14E9E31486EBBBC68C0749E85DD654F7 /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; - 14EE582EA538BF33EE107885F8B42466 /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; 152014191CA2BD50E3C9D7E4E22D9CFD /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = ""; }; 153DF6367AD0FF17144D2F56B391560A /* Ordering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Ordering.h; path = folly/lang/Ordering.h; sourceTree = ""; }; - 1542983A99B8D9A17698A7EC78796E04 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; - 154930B5CD237788D51995410631A451 /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = ""; }; 154F69A69C27A4D8693B7BB2D3BB1152 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; + 156000D09829F9412CE412849106C412 /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = callinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = ""; }; 156F5E2F004918518437A6AE68B03312 /* GDTCORRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h; sourceTree = ""; }; 1571AEAE2EF0732E6D6067B2390563D0 /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; 1571EDF5F318A19407F937B26350F11C /* HazptrHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrHolder.h; path = folly/synchronization/HazptrHolder.h; sourceTree = ""; }; + 1578EE1C0EA94CFE091DEC4F00AE2E2C /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; 158180CFDF1271C01C71F98CB153D36C /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Frameworks/FIRAnalyticsConnector.framework; sourceTree = ""; }; 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 15988DF1C27AC4CD9250DC7E4CE2D05D /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; - 15A8E5FC9E7730834F67803F561808D6 /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; + 15BC50236B6BFC8A12A25EA5714EEE3C /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; + 15C31B504AFEF2F1081FAA0B4C5C45FE /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = ""; }; 15DD8D53302593BBF07E4AAAE29BCED8 /* Uri.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Uri.cpp; path = folly/Uri.cpp; sourceTree = ""; }; + 15DF0AD1F4D72162B8B16CBE2821BB68 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; + 1605C45A7EB80DD78D498C6ACE428CF4 /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; + 1606FAF1B7E71C3407C25835E69D6CF9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 16086B523FED7F06189654E0468CA934 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; 160D5029DBA2C42C89315C3F98DE573A /* thread_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_utils.h; path = src/utils/thread_utils.h; sourceTree = ""; }; 161719886E740E1380CA97BC1D44C8D6 /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FileUtil.cpp; path = folly/FileUtil.cpp; sourceTree = ""; }; 161D5036C6E1E9D09858BC871CC4520E /* CancellationToken-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CancellationToken-inl.h"; path = "folly/CancellationToken-inl.h"; sourceTree = ""; }; - 16343C4984A652AD4DA38317AE200D52 /* 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; }; + 1642B5970EA2D1E7F8CA2E2121764DEB /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; 1649E224C4DDA3C3C93A193AFE08D20B /* ScheduledRSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledRSocketResponder.cpp; path = rsocket/internal/ScheduledRSocketResponder.cpp; sourceTree = ""; }; - 1657E2CFAD8519FA56E7AC6F8133E913 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; 165CCAFE6A06D409004F8CAF07494C97 /* yuv_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse2.c; path = src/dsp/yuv_sse2.c; sourceTree = ""; }; - 166D0329EAD73A74AE0A5097E6566379 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; + 16663CF894AFA1FC253A61AE2AC172FB /* RCTAsyncLocalStorage.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAsyncLocalStorage.mm; sourceTree = ""; }; + 1676FC615941B3942BB2D9289298A715 /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; + 167E5DDA48F3A4D87178E63BE121B4F0 /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; 167F569B180CD0BCC576258711BEB603 /* ConsumerBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConsumerBase.h; path = rsocket/statemachine/ConsumerBase.h; sourceTree = ""; }; + 16820BBC6885750171296D2BFF8E857A /* RNCMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedViewManager.m; path = ios/RNCMaskedViewManager.m; sourceTree = ""; }; 1697E071BD485DD567399534761FB4C2 /* 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 = ""; }; - 169F6049694732668A84DF1F0D4614FD /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; 16A19D3BA60E31A56CD6F95F12C0CD07 /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; + 16BEFE6A5F51633D8AE6553FDE7F2B38 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; 16D54EB99B8C1F9762F4535A8E6B7A3F /* krb5_asn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = krb5_asn.h; path = ios/include/openssl/krb5_asn.h; sourceTree = ""; }; 16E9F31EC059F2E6FADBF7D544CCCA1D /* libReactNativeKeyboardInput.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeKeyboardInput.a; path = libReactNativeKeyboardInput.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 1754487CF8D3E651EBD87BBABDB3A91E /* ReactNativeKeyboardInput-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardInput-prefix.pch"; sourceTree = ""; }; - 176E682D41DF7CC73EC689503E11CFC5 /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; + 16EDF9F4F68DD8A45FAF7D7434479632 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; + 1701BB16E424CF991A1E406CC52B285A /* RCTConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConstants.m; sourceTree = ""; }; + 1711B188EC11F4C1FEAD7932A4A1A3DE /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; + 1749F6851479091C87395887DCD61E51 /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; + 1754C542BA03C7EB47091AA16D3D4B49 /* RNFirebaseMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseMessaging.m; sourceTree = ""; }; 17772905A5DCAAE05D22C2CC78ABB63D /* libReactNativeKeyboardTrackingView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeKeyboardTrackingView.a; path = libReactNativeKeyboardTrackingView.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 1778BB76850FD1A4A84F34996DDA2CB5 /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; - 17897E6E0BBF0D2797F2D1FFDDA55B5F /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; - 178E8A48C4E60EFA94418FF914B82743 /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; 179EE663681A5C6AC6022428A4F16E0D /* Stdlib.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Stdlib.cpp; path = folly/portability/Stdlib.cpp; sourceTree = ""; }; - 17A4D2D64DF2CF0F199284458CA3F95B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 17A61121C03A8D3B576632439432AB57 /* SKSwizzle.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKSwizzle.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKSwizzle.mm; sourceTree = ""; }; 17B16E05C4A91EA5C4A45ED944F1411A /* vi.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = vi.lproj; path = "Objective-C/TOCropViewController/Resources/vi.lproj"; sourceTree = ""; }; + 17BC9E5C4DEB82B74B5BFC4E7C56357F /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; + 17BF13DD148057E6199EEF5D184DF394 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; 17C8CD40EE467EAD8F86B969DF4605D1 /* GULHeartbeatDateStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorage.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorage.m; sourceTree = ""; }; 1808AE5719BA2B98B8645C66770AEC9E /* rand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rand.h; path = ios/include/openssl/rand.h; sourceTree = ""; }; 18162DE6C50E2863BE3AA20B43A71F52 /* SKIOSNetworkAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKIOSNetworkAdapter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.h; sourceTree = ""; }; 18174ECBCD33426D3D4DACD46232DB0B /* AsyncPipe.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncPipe.cpp; path = folly/io/async/AsyncPipe.cpp; sourceTree = ""; }; 181B1B487AC9DD3DC3B97011195CDEF3 /* zh-Hant.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hant.lproj"; path = "Objective-C/TOCropViewController/Resources/zh-Hant.lproj"; sourceTree = ""; }; - 181C9AC6344CCE2653E6D3C053095857 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; - 1822FEE04D7DC86E792297283A876EB3 /* react-native-slider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.xcconfig"; sourceTree = ""; }; 182EBC33A94F4200EED630D4051AEA48 /* enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse41.c; path = src/dsp/enc_sse41.c; sourceTree = ""; }; - 183D03E62E2B7FD69A5607DF2BD1BDA3 /* EXLocalAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXLocalAuthentication-dummy.m"; sourceTree = ""; }; + 183E61566B54F596580EB43C7A97F866 /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = ""; }; + 18462B43FFBDF05E68BAB2E07C605FB9 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; 184A6523686F370AC7BCF0D35228EA46 /* bio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bio.h; path = ios/include/openssl/bio.h; sourceTree = ""; }; - 187588AD728FE895C4CE2336639A2FC2 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; + 185705258B307AF0CBC2F59ED6261B25 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 18774485D964BA179328A4121E1BACED /* Parallel-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Parallel-inl.h"; path = "folly/gen/Parallel-inl.h"; sourceTree = ""; }; 18775CCD233F50176F12695DA5A375C2 /* UIImage+WebP.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+WebP.m"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.m"; sourceTree = ""; }; + 187879FBE986DDC8A947A11CEDC57826 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; 188016977A4BCB7C17AA39C769EC6872 /* ColdClass.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdClass.cpp; path = folly/lang/ColdClass.cpp; sourceTree = ""; }; - 1898543D12931668DB83E756B14A50CC /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = apple/RNCWebViewManager.h; sourceTree = ""; }; 18C2278F9B58199F6BD826C6265E25FE /* HazptrUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrUtils.h; path = folly/synchronization/detail/HazptrUtils.h; sourceTree = ""; }; 18D02EE20BF587B8F1FD8003EE186FD8 /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; - 18DD138B14C91D2AB76B3260B96E619F /* RCTSourceCode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSourceCode.mm; sourceTree = ""; }; - 18EA6B6BFB191F4006C3102D8E1E7B45 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; - 18EB1EB7F0A4C661429327868B586E7F /* RNFirebaseAdMobNativeExpressManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobNativeExpressManager.h; sourceTree = ""; }; 18ED57B25C62135D25FAC8C5ADBBFB06 /* SanitizeThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeThread.h; path = folly/synchronization/SanitizeThread.h; sourceTree = ""; }; 18F92F00169D229BE1AD59EB4983621D /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/gen/Core.h; sourceTree = ""; }; - 18FD9E2CBD18D0E5921C04F1483C3BB6 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; 18FDDE8F1626879AA0CDFAA2EFBF1F66 /* GDTCOREvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREvent.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m; sourceTree = ""; }; 190E5765B6F1778741A8C7C37B763282 /* seed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed.h; path = ios/include/openssl/seed.h; sourceTree = ""; }; - 192FB3DB5A581D02931D684CE8836984 /* ReactNativeKeyboardTrackingView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardTrackingView-dummy.m"; sourceTree = ""; }; + 1912C5AEC1649E0A26A6C8D886057FB6 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; 193E2251E77EFDE11012242D727DC062 /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Private/GULLogger.h; sourceTree = ""; }; - 194C8D25FF14664B73B97F728D08A4BD /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; 194FDA7D4FB1A675A8B7C35218D609FB /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = ""; }; - 19A309142A896FF9CE42C80282D3F79D /* RNCSafeAreaProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProviderManager.h; path = ios/SafeAreaView/RNCSafeAreaProviderManager.h; sourceTree = ""; }; + 198A5250D407D50D33F2AAC0B8048876 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; + 199009BB4DC631CE1BED656007525A3B /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + 1996D9C230EB0924BA74B49833FEC80B /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; 19CA29DD3AFD6634378EC428704EAC63 /* HeterogeneousAccess-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HeterogeneousAccess-fwd.h"; path = "folly/container/HeterogeneousAccess-fwd.h"; sourceTree = ""; }; - 19ED04DE837A8C283B54F50AE3CFC19A /* RNFirebasePerformance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebasePerformance.m; sourceTree = ""; }; + 19EB35F2F254B311138218F74DE97208 /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = ""; }; 19FE8475B1C7C573050BCE46DB1A637C /* histogram_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_enc.h; path = src/enc/histogram_enc.h; sourceTree = ""; }; + 1A007ACDD8283948E99A5DD959DE9242 /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; + 1A00D7608C84CD3E9E40FFA4EAE992A4 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; + 1A0B8792CF6208F57C912BB7C29B4FCB /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; + 1A18989B04E0616980D292BD374E4DD7 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; + 1A1D9610A449D2388F01014781CD204A /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; 1A2BACA8327C003E2D06D71AADC414D3 /* glog.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.xcconfig; sourceTree = ""; }; + 1A3B2D322C2010B68E5E905B86DF2C62 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 1A3FD508A386252F71C815C4EA55471C /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FIRConfiguration.h; sourceTree = ""; }; - 1A4DE5073E11257819EBE2DCB1A0DAA0 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; - 1A54E4C5A5326743B98E955E26C8CEA2 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; 1A5652151D82DE56E6CE3D4428217CE5 /* Executor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Executor.cpp; path = folly/Executor.cpp; sourceTree = ""; }; 1A581425163E8074315E70D041B14F97 /* CoreCachedSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreCachedSharedPtr.h; path = folly/concurrency/CoreCachedSharedPtr.h; sourceTree = ""; }; - 1A9D65778FDC48595F6A4B3E574F8ADB /* react-native-cameraroll.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.xcconfig"; sourceTree = ""; }; + 1A6472F58B3F93C36DF8E6328DB2BC31 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; + 1A7AEEC1C24F87D64A9A5FB6FD6B6539 /* RNCSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaShadowView.h; path = ios/SafeAreaView/RNCSafeAreaShadowView.h; sourceTree = ""; }; + 1A7B039C29307375F1B0ABD08E3E46AF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 1ABF60825E26576EBCDB04028A7ACF8E /* MPMCPipelineDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipelineDetail.h; path = folly/detail/MPMCPipelineDetail.h; sourceTree = ""; }; - 1ACEC62AD3F9E866C6D987DB71219DAE /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; 1AD3488E3ED1D9E978C1DBD1D5FF8006 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = rsocket/README.md; sourceTree = ""; }; 1B0A3C699074BA5A89960FEB3303B723 /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; 1B11D8F6B10DE245DD594083479F5770 /* FIRInstallationsIDController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIDController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m; sourceTree = ""; }; 1B15765A033F56AA45539C76C571546A /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/Private/FIRConfigurationInternal.h; sourceTree = ""; }; + 1B2948ABDB21DABAE59D9D6DFF951012 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; 1B43351F49906948085795035177EACE /* CocoaAsyncSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CocoaAsyncSocket-dummy.m"; sourceTree = ""; }; 1B4884B99063BB48B97948B437FE8022 /* Arena-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Arena-inl.h"; path = "folly/memory/Arena-inl.h"; sourceTree = ""; }; - 1B55DFA95AF3D4E90C11136AD780D408 /* RNNotificationCenterMulticast.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterMulticast.m; path = RNNotifications/RNNotificationCenterMulticast.m; sourceTree = ""; }; + 1B4B04C675AD000807C98844D4BCB30A /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; 1B606C3DDAF2EFB94FD81B5B70B0A198 /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = SDWebImage/Core/SDImageHEICCoder.h; sourceTree = ""; }; - 1B60FBA5879F6ED7539AE706D52D79AA /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 1B66039BD77444C6E1A930CEA35B4856 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; + 1B68E7E8F81A7A29F567BCAF59647574 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; 1B68E9A3C2EB364D589D3580A9545F9B /* InitThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InitThreadFactory.h; path = folly/executors/thread_factory/InitThreadFactory.h; sourceTree = ""; }; - 1B6FE6D4BBBC604D1805CF59A5685007 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; - 1B77EF67D215D0CC165090EF68145073 /* RCTLogBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBox.h; path = React/CoreModules/RCTLogBox.h; sourceTree = ""; }; + 1B87F8E16A65AB0AA58EBDC9AC6B343F /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; 1BCDAE4A50DD905C59990F40625FB0A5 /* FlipperClient+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FlipperClient+Testing.h"; path = "iOS/FlipperKit/FlipperClient+Testing.h"; sourceTree = ""; }; - 1C18C780B51845AEAD8B40A66BD671EA /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; - 1C254DDF760CFE1B957F1285F8E05730 /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; + 1BE06198C27F8E9E487826A3D1389423 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; + 1BE6C709B2CDA1C8F74B0EB1C19753A3 /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; 1C2F553968BECCD33FC32D449D56D607 /* asn1_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1_mac.h; path = ios/include/openssl/asn1_mac.h; sourceTree = ""; }; 1C542A328D40D8A36A2C63FC74562276 /* kssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kssl.h; path = ios/include/openssl/kssl.h; sourceTree = ""; }; - 1C575223DD80A1A324BE64F252A30A9F /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; - 1C65A9DA1E65CC708117D99AAB7D0C4F /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; 1C9B9530FE73925539BBC1D217AA9D62 /* ObservableDoOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableDoOperator.h; path = yarpl/observable/ObservableDoOperator.h; sourceTree = ""; }; - 1CC91CB22BA56B10A996E0E12450DC09 /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; - 1CD1B6E707FCE3DA0964C73557A3F74D /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; - 1CE0E0D6483E6B6D67A06256495BE46E /* EXKeepAwake.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.xcconfig; sourceTree = ""; }; 1CEB8D4B56C3DFCB24548D0163C9D41E /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; - 1D0271D5E8E0630A5C01B1A874559A40 /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; 1D13110FBB2938986FEAE408B775B7B4 /* filters_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_msa.c; path = src/dsp/filters_msa.c; sourceTree = ""; }; - 1D6E5B64017CA191E21A10500294791C /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; + 1D14771DAF845523B655DB9144C5891D /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; + 1D32B0B459AAE9F44209A8B2B4D7350D /* RNFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebase.m; path = RNFirebase/RNFirebase.m; sourceTree = ""; }; + 1D33A07A03A476E1AFF9662BAA20BB2B /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; + 1D4D41211C446BE6090144A856378B10 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; 1D7A00734ABDED0D84DE85316BAF7397 /* HazptrObjLinked.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObjLinked.h; path = folly/synchronization/HazptrObjLinked.h; sourceTree = ""; }; 1D806D7DD73FF9FA103135069EAF9863 /* ScheduledSubscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledSubscription.cpp; path = rsocket/internal/ScheduledSubscription.cpp; sourceTree = ""; }; 1D821F450106BEC44B12802D4CF95277 /* FlipperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlugin.h; path = iOS/FlipperKit/FlipperPlugin.h; sourceTree = ""; }; 1D9460FFFD360C196CCAEFA156B82B71 /* sorted_vector_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sorted_vector_types.h; path = folly/sorted_vector_types.h; sourceTree = ""; }; 1DAE28EC73109D44B9C46C23181E60BC /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = ""; }; + 1DB63DF1A95876A2FAC34C050BCC3855 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; + 1DD31C9CD7C36C6C05AA5884262620D1 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; 1DEC1C372EEDAE6E243ECADA6B9B8564 /* tag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tag.h; path = src/event2/tag.h; sourceTree = ""; }; - 1DED9F8FF68789EA26962FF97F09D3BB /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; + 1E0E785CEC2D81D047949A009814CE8F /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; + 1E1749F8D2A7A46634E4C9E76C88DA67 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; 1E1CFFFAB8A4A2D75524936EE293EC91 /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = ""; }; - 1E3939A83E98B735EFD3973DAE2E4FCD /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; + 1E2AA7FC7161AAC1C25764F3B0C67935 /* RNCAsyncStorage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCAsyncStorage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 1E3DA206C09B3DF568B673F2FAD2FCB1 /* DistributedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = DistributedMutex.cpp; path = folly/synchronization/DistributedMutex.cpp; sourceTree = ""; }; - 1E3EEB571DA081D93F06C33F0690D2EF /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = React/CoreModules/RCTActionSheetManager.h; sourceTree = ""; }; 1E4C989A33D90A61D1AFE1A7A4E7A113 /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; 1E5823A98AFDC2E88398046ECD303BAD /* File.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = File.cpp; path = folly/File.cpp; sourceTree = ""; }; - 1E68C5478055EF90F971AFD8DA96BB21 /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; 1E71D20E66B64C5F1349B061C42EE2C7 /* UIImage+CropRotate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+CropRotate.m"; path = "Objective-C/TOCropViewController/Categories/UIImage+CropRotate.m"; sourceTree = ""; }; + 1E76B6BB36B2A3C42DDF3D7B633F5976 /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; 1E7F01BCB84D8C9EBBA34737EF2962AC /* AsyncTimeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTimeout.h; path = folly/io/async/AsyncTimeout.h; sourceTree = ""; }; + 1E83938C524F8F5A17A8F7FD3FDD03B6 /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; + 1E84BABFA46907C3092C5F2ABC995C29 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; 1E8829A45C391249A921EAA2ECB324A1 /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; 1EBCB9F825BB74349DA8464E4078D6CD /* SDWebImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.xcconfig; sourceTree = ""; }; - 1EC2A2B4FB3B75643522D72ADC35B110 /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = ""; }; + 1EC15084DB3363D73309F2FFC704EC04 /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; 1ECBA4FA2EE40C8C14FC14A12567D8FE /* enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc.c; path = src/dsp/enc.c; sourceTree = ""; }; + 1EF403D5ED7B4AC1BD1B459C3D9B0A38 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; 1EF928F0135955C6628E8137331522C3 /* RecordIO.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RecordIO.cpp; path = folly/io/RecordIO.cpp; sourceTree = ""; }; 1EFA54296C3CB620F743547DD8A9297B /* SKStateUpdateCPPWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKStateUpdateCPPWrapper.h; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.h; sourceTree = ""; }; 1F169A2F5C7C92F36CCF25CEF693D9EB /* FIRInstallationsSingleOperationPromiseCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsSingleOperationPromiseCache.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m; sourceTree = ""; }; 1F17B1D8B12505C59B68DEF70AA852D5 /* AsyncSocketException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocketException.h; path = folly/io/async/AsyncSocketException.h; sourceTree = ""; }; - 1F228F589A5E0C3E7A3AABA43442C5BF /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; - 1F2E52A1218F748E57349CFBEDDB565E /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; 1F34CDAA5FAE8D10A8A77EBE52B29E3A /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = ""; }; 1F4B3E6B4F39F0C0A8D6F8349CA8D6AB /* FLEXNetworkObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXNetworkObserver.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkObserver.mm; sourceTree = ""; }; - 1F50D85D2ABB1A17E0A43941DF96862A /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; 1F6CEAA5D418CC1CED2D2ACE01D78B26 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/RWSpinLock.h; sourceTree = ""; }; - 1F6EEF03AB61BA96B505482C5AB6E1F0 /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; + 1F6F2CFA01EC3575434B192A4A609F3A /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; 1F8E40CA30A2750FBC8296C9FE83154B /* ClockGettimeWrappers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClockGettimeWrappers.h; path = folly/ClockGettimeWrappers.h; sourceTree = ""; }; - 1F91CF2E77582F31F5D3AFC2BEB8F4A3 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; 1F93898804FCC4161FCECF761209EF52 /* FKUserDefaultsSwizzleUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKUserDefaultsSwizzleUtility.m; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsSwizzleUtility.m; sourceTree = ""; }; - 1FBEA0DAC355C97FB1BBC87C15F7363C /* EXUserNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXUserNotificationPermissionRequester.m; sourceTree = ""; }; - 2006A3AC22462826731E745F343FE7F7 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; + 1FAE064E6AFB8845B5FF3B9D0AFC6863 /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = ""; }; + 1FC9F360C6E2DE922732719E9CF39F59 /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; 201FBE1E6F0A8284A98B38DCA976AD1C /* AtomicNotification.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AtomicNotification.cpp; path = folly/synchronization/AtomicNotification.cpp; sourceTree = ""; }; 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNBootSplash.a; path = libRNBootSplash.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 203227B7E5F123C2C18C807954C432A9 /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = ""; }; 203874E0A88009B0AA2F01295E927BF8 /* FlipperInitConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperInitConfig.h; path = xplat/Flipper/FlipperInitConfig.h; sourceTree = ""; }; 205617F2BA6572C4FB0072874D254967 /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = ""; }; - 2056C01590D85F60BA805762144D861D /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; - 206538FE572342E6D8BA617EDF631F23 /* RNCSafeAreaProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProviderManager.m; path = ios/SafeAreaView/RNCSafeAreaProviderManager.m; sourceTree = ""; }; 2071F71A875AD0A9F66C109B903EE168 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; - 2091BB47DBE48DD2A68BBDE3A3632E4F /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = ""; }; - 20A6380999E9B0D9DED6EDB034D0FE76 /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; + 209CA054AFC6D7B52A3633988433EACE /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; 20F0360096A49ED0E255A9341B07C0A3 /* FlipperClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperClient.h; path = xplat/Flipper/FlipperClient.h; sourceTree = ""; }; - 20F18A76FC6A2B873CCF4F03200AF4DF /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; - 21096E683D104D1228A9BADA7F2A7F42 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFPSGraph.h; path = React/CoreModules/RCTFPSGraph.h; sourceTree = ""; }; - 210DCEF81B5A5C5B4EECC6BAC8BCAC40 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; 21290654BD889919D322EFF3B3F075C5 /* FIRDiagnosticsData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDiagnosticsData.m; path = FirebaseCore/Sources/FIRDiagnosticsData.m; sourceTree = ""; }; 2134642023B5EEA4EDF1B56B7AACAAE6 /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; + 2148262530D07D32B42FD8E37018A73A /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; + 2151AAB814BA4694A87F13FCB2CE314C /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; + 215B5C61A1572BEF192E6E40890740CB /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 21687532BBF95813285D4614E00325D8 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; 217FB6AD97DF7CD2EF569E3A2676DC8D /* StackTraceUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StackTraceUtils.h; path = rsocket/internal/StackTraceUtils.h; sourceTree = ""; }; - 218C7D7C9A58A2F00A43E0A813EE7FDE /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = ""; }; + 218422C5163CBAD686311A3CF0701DF7 /* RNFirebaseAdMobRewardedVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobRewardedVideo.m; sourceTree = ""; }; 218CBF55D7DCB97ECFF83FA91CF6946B /* GoogleUtilities-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-prefix.pch"; sourceTree = ""; }; - 21B4F21E27E5CEAB7A1E4D18014A6C8F /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; 21C5FBC65D86618E8BB010733F011BE0 /* FiberIOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberIOExecutor.h; path = folly/executors/FiberIOExecutor.h; sourceTree = ""; }; 21C84F6D1366D920F804707536A54084 /* FIRInstallationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStore.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m; sourceTree = ""; }; - 21D9C70A8F47F56275117FC3BD2FA20A /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; + 21DBB7108A9FA1EEFCA9735DD0E85D7D /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; + 21DF973E0B0381E6F81ACD448A537C4E /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = ""; }; + 21F2D742801090DEBF0FE24B3991700C /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; + 21FA8F5FC5A5FA3D930E63232DACA794 /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; 21FE4D900ED58E6E62B988CFE1D0A798 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 22067950C5C6A4A4DC87C7D141E6E076 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; 222E9654CA1C5DC25162987035779AAB /* UIColor+SKSonarValueCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SKSonarValueCoder.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIColor+SKSonarValueCoder.h"; sourceTree = ""; }; - 2233A3D8AF08DC9CAB0FAE75F534B157 /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = ""; }; 223ECB752B780279A2762E33A0D366C0 /* ProtocolVersion.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ProtocolVersion.cpp; path = rsocket/framing/ProtocolVersion.cpp; sourceTree = ""; }; - 2246D8A7E67C1D1932D5CE9417BA86E4 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; 224B0F633CF99533D589753DA8AB82B0 /* tree_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_dec.c; path = src/dec/tree_dec.c; sourceTree = ""; }; 22503E55D13A05D557E5314F522C5630 /* demux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demux.h; path = src/webp/demux.h; sourceTree = ""; }; - 225730C036CA76EEE74CF961CC8DC5F1 /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; + 226258FFBB4B604235CD4E538EFD58C3 /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; 2263EA0BAD7D92061F727D33ABCC9D99 /* SlowFingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlowFingerprint.h; path = folly/detail/SlowFingerprint.h; sourceTree = ""; }; 2266B9FB963B08C9EC349C28D1DD1637 /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/gen/File.h; sourceTree = ""; }; - 226F882EA37ABF25B36964BD0F1C3440 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; - 22881003652D995B73026FBCDBA39C82 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; + 2294975A06913B08D41195CE013BB1C8 /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; + 229BD827D7F4F590318CD67644EB6FDE /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; + 229D455DAF28AED347F98E3AA7A9215F /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; 229E2B54AB29984EC08EBB7E55115D30 /* MemoryIdler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryIdler.h; path = folly/detail/MemoryIdler.h; sourceTree = ""; }; - 229F228FC5FB9549EDE19E04D5118418 /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; 22AC901C615FFB0A63B6E8F228C6A7F7 /* GDTCORRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORRegistrar.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m; sourceTree = ""; }; + 22AE0F027BA8E662707B93E6A49025BC /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; + 22DC540653AA6DEFE018F0E96892639A /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; + 22E30478C4160A8365B501CC0D700C84 /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; 22EA2EFC4D37975856FABA3B17A53CA7 /* ThriftStreamShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThriftStreamShim.h; path = yarpl/flowable/ThriftStreamShim.h; sourceTree = ""; }; + 22F817D447B0FBFC5E919D280677C049 /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; + 22FAF742CB5CC4C9D7C3DC50F3094EAB /* RNFirebaseFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFunctions.h; sourceTree = ""; }; 22FFDAA8BCFC22C1488A725107778ACF /* enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips_dsp_r2.c; path = src/dsp/enc_mips_dsp_r2.c; sourceTree = ""; }; - 23030DDFBB09C8793CC263DCD249A4C0 /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = apple/RNCWebViewManager.m; sourceTree = ""; }; + 2306FB1ABBEFA9CE789F81A2FAC42EE6 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; 233894ECB8BBAA48D27FF8FFCE1B143F /* histogram_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram_enc.c; path = src/enc/histogram_enc.c; sourceTree = ""; }; 2338BCF400AD9C25F4563792E4535745 /* MPMCPipeline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipeline.h; path = folly/MPMCPipeline.h; sourceTree = ""; }; - 23423CF6EA7C6A496B8D9DF4C59955FE /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; 234B1411B48C8BE2215721F896C6B79A /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; - 23512D9D1FA46DF9D7AB26488FD6D8FB /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; - 236B99ED08B344D430D50229C19689A9 /* EXRemoteNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXRemoteNotificationPermissionRequester.h; sourceTree = ""; }; - 23770BBC56FF093593705E2DF83EAF1E /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; - 237CC3ABD81B96AE4676A00DDA048928 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; + 23920DCA27BEDAE8BD8AAC64F3753841 /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; + 2394FD30544F1A0E0D6827F674CAFF38 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; 23B988FF7781A76A0B6F07682B8E3871 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; 23EEA0044B9B84D5163474C480831759 /* enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_neon.c; path = src/dsp/enc_neon.c; sourceTree = ""; }; - 23F74F87AF59856E46547C2881B0AFAE /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; + 23F91F7ECFFD18675908FE501CA1B836 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; 23FB5D71EDB1CE3FC9227ACB4D929D62 /* ScheduledFrameProcessor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledFrameProcessor.cpp; path = rsocket/framing/ScheduledFrameProcessor.cpp; sourceTree = ""; }; 23FBFEF2ED0201D52F50C20C8BFE4A8B /* ParkingLot.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ParkingLot.cpp; path = folly/synchronization/ParkingLot.cpp; sourceTree = ""; }; + 23FC3234B2DB57E1ED7030BCE13BB424 /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; 2407279E734F1C65AA5D6D485EB3F4EE /* FIRInstallationsErrorUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsErrorUtil.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m; sourceTree = ""; }; + 241396C8A411DEA5271976B765D0DB6B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; 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; }; - 243500BCBB61324A1989B60D21E1E475 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; - 243D64C70C3BB8D6678B33719B5B6556 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; - 2445FCA743A7135BAB54BA939458F8F6 /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; - 24479DD5D9677CE489CC3BDB6489B144 /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; + 24289386D837C7C24973A780A5CFC145 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; + 2444EE42E0284DE98A0E99D5624D1937 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; 244810D219B6E98BEDE760339F52EC1C /* EventBaseManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseManager.cpp; path = folly/io/async/EventBaseManager.cpp; sourceTree = ""; }; 245D2AFC8ED9BFDBA2EF29D68EBC985B /* FlowableOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableOperator.h; path = yarpl/flowable/FlowableOperator.h; sourceTree = ""; }; - 246900FADB4F3C74288C75E1A8280DB8 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; + 2475A083CA7E9531F5DF98EB4E5E1B57 /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; 248B4CE1C7DDAE021DD958A76F7AFA3E /* Subprocess.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Subprocess.cpp; path = folly/Subprocess.cpp; sourceTree = ""; }; - 249A7D40A6715A3AA99D6160299D46D1 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; + 2498A4DA779B27626860F0C820BF4D36 /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; 249E431ECB7062A376A77BF1293AE447 /* SKHiddenWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKHiddenWindow.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKHiddenWindow.h; sourceTree = ""; }; - 24D27E95E22AECBF6A8EBC4AF37A09DE /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; - 24D4A9A6CFB1C3FFFFCBF1D3CA5E1B53 /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; + 24A7EE7C1875E720E6FD85B5EEE4C368 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; + 24B4674663B10F5919335B67C8807E6E /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; + 24B6F7ED44E5EE98C4B53B63797D9E0D /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; 2512C05B6417269BA0C18DFB826A09D6 /* ExceptionString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionString.h; path = folly/ExceptionString.h; sourceTree = ""; }; - 2513D6F36A8FA8C9B73B64041F2EDEF2 /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; + 251536CB04DA819939DE200CBD5BA105 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; 2533E13A6E27DC148740766B9E66FAB2 /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; 2537A03F74E26F248FC9304254BCA826 /* vp8i_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_dec.h; path = src/dec/vp8i_dec.h; sourceTree = ""; }; 253CDB5FB8D1A583B4EABEAD69DA64E2 /* Crashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Crashlytics.framework; path = iOS/Crashlytics.framework; sourceTree = ""; }; + 25551C2EFCC1B8A180FFC6ED5CACC156 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; 255BCEE432582E3F2C689BDA7BE538E4 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/portability/Malloc.h; sourceTree = ""; }; + 25683557B86FEB22A5831C6F008419E1 /* 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; }; 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsinspector.a"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 25A0097282A0AF586E0783D1A26002DE /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; - 25C2D49CB4D73F95CEA2CEC1A59E5672 /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; - 25DD3BD753CD74DB2E3C40564A14E7D5 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; + 259A7A98CD2D59BD5742C7E41787EBD7 /* RNFirebaseCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseCrashlytics.m; sourceTree = ""; }; + 25BDBD014796225914C8BE9790EEAF48 /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; + 25F57D1BC4A85048563BB3D7FD14366B /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; 260248C5F1AF9B9BD1145497E4B7F701 /* Preprocessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Preprocessor.h; path = folly/Preprocessor.h; sourceTree = ""; }; 260532C1B60BB9AC2E87BAA0D001146C /* GroupVarintDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarintDetail.h; path = folly/detail/GroupVarintDetail.h; sourceTree = ""; }; 26100ED62D912528C0C01D6903A8A230 /* PThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PThread.cpp; path = folly/portability/PThread.cpp; sourceTree = ""; }; - 2621D939ABECF381C4333FD11B3DBE11 /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; - 26508A36D5838FDD6CC1B38CF7EAEACB /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; + 2625B767D0A3165A55BF95193B14F6A5 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; + 2649E0E14CC40301FE5BC5CBCFE7C60C /* EXAV.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.xcconfig; sourceTree = ""; }; 266067ADABDCA6C5E9BB18B919AE8432 /* Observable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observable.h; path = yarpl/observable/Observable.h; sourceTree = ""; }; - 2668059D8F1D39DC60444BE60ECFB05A /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; + 2660850DDB2DA283DA5E458102EAF98A /* RCTImageEditingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageEditingManager.mm; sourceTree = ""; }; 266B524D0AB8F9504500D7E7891293B0 /* ErrorCode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ErrorCode.cpp; path = rsocket/framing/ErrorCode.cpp; sourceTree = ""; }; - 266DE4D7452FEA4F243F95332F75B2AD /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; - 2673987317A153F8A38EF758FE02CA9A /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; - 2693995EDE501AD0CA7E26234FE363FA /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; + 267F6C74F5F2AB98971FC8EA2F47B183 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; 269495D53DEF8D3D3EA734E80CEE3BCA /* Barrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Barrier.cpp; path = folly/futures/Barrier.cpp; sourceTree = ""; }; 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTSettings.a"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 26CA9C5B027A193D6EE2D654B1850FF7 /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = ""; }; - 26D606583A8A4265E46BBCF9BEF7D7A8 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; - 26F885F9B385256D885415C97E0FEF7A /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; + 26D34E8EF25EA2FB1249DD3B286FD598 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; + 26E2B81D847EE92831E2B4214E2580F8 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; + 26E6F381E54D63B3B6494AEBD4A5B28E /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; + 26F32BCDDA6E518EC2F330306560C1D7 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; + 2701234FB9632D24B2506BBBD4163530 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; + 27022965E30076F988DA9D6535E05F09 /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; 2724C31E54B001AE871AF4177D6E4099 /* PTProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTProtocol.m; path = peertalk/PTProtocol.m; sourceTree = ""; }; + 2744D69B7CA848FB0307E86A45438935 /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = ""; }; 27487DDA42910A33F1B7210A7350CA6A /* QuotientMultiSet-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "QuotientMultiSet-inl.h"; path = "folly/experimental/QuotientMultiSet-inl.h"; sourceTree = ""; }; + 276BFC8506A1910A5AD973FEAEFB2BD6 /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; + 276C646216FB007F4DA63A5EA1E23167 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; + 27740AED39B856AD14E9D9FEF84F85D7 /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libKeyCommands.a; path = libKeyCommands.a; sourceTree = BUILT_PRODUCTS_DIR; }; 27C71620694D8BFBA545CB1B9B57506C /* ro.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ro.lproj; path = "Objective-C/TOCropViewController/Resources/ro.lproj"; sourceTree = ""; }; - 280073A9944B03667F12E624AABE183B /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; - 281755D3FED0AC0C07667D6185F87413 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXAV/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; + 27C8EAF9DFEB41BE5E435DD9FD81B42E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 27E6AED9FBDEF38A7FA78B749F80EA24 /* UMPermissionsMethodsDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsMethodsDelegate.h; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.h; sourceTree = ""; }; 282B3B8630B35B791B564F393334998C /* EventFDWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventFDWrapper.h; path = folly/io/async/EventFDWrapper.h; sourceTree = ""; }; - 2836C992399327B4574D0ABD5F11D065 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 28449F76B89032B07C051A3E0089EC0B /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; + 284D9D2232E840D4407AF909CFEC6332 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; 286835DF3559AC299C2D9CD4496A883D /* FirebaseInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations.h; sourceTree = ""; }; + 2868DBB725094899C2B14D6416E2A0E2 /* react-native-safe-area-context-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-safe-area-context-prefix.pch"; sourceTree = ""; }; + 2874635C8ACF2F545342C9694BF49DC3 /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; 287BBF5036A97E7A194DC153ECBD3AAA /* Fixture.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Fixture.cpp; path = rsocket/benchmarks/Fixture.cpp; sourceTree = ""; }; + 287C8A93C301A3B7B63F622356930F97 /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; 2885BF137F3A56176A92387EEED7B8F1 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; 288780D994881037854C7588B3978585 /* GDTCORUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploader.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploader.h; sourceTree = ""; }; 288FA69B3B754B0FB6067DDECAD79A67 /* SDImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageWebPCoder.h; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.h; sourceTree = ""; }; 28939CDB0CCA3985A14C65A8C16AB553 /* asn1t.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1t.h; path = ios/include/openssl/asn1t.h; sourceTree = ""; }; - 289AB504D307CADBD61BC9ECB6FB301C /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; - 28AFDFAC42099B59DF0310E5A01B0695 /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = ""; }; - 28CE0A2263810AB8B174A3BC5EDDD46F /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; + 28BBE692349E857ED55046519762BAA7 /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; 28CE9608E7A72C33778634272680ABCE /* CancellationToken.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CancellationToken.cpp; path = folly/CancellationToken.cpp; sourceTree = ""; }; 28D98DE7B4C06BC15C59B3B7C5D8B39D /* vp8li_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_enc.h; path = src/enc/vp8li_enc.h; sourceTree = ""; }; - 28FDEC8C4917B4E72F65E5B9F9D28EF9 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; + 28E7299B4D7DC027AEA6FF8027B16E29 /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = ""; }; 29036740DCDF6F5940B8B339551BDCC7 /* RSocketStateMachine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketStateMachine.h; path = rsocket/statemachine/RSocketStateMachine.h; sourceTree = ""; }; + 2905F5558875923B7AF4A82D78A04C68 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; 29227B5772A6FCF4BEFAE1D7C92803A2 /* FlowableDoOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableDoOperator.h; path = yarpl/flowable/FlowableDoOperator.h; sourceTree = ""; }; 292BCA39737346379D2062A64AAFD7FE /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = ""; }; - 292F4C7DB5ADBD377DBECB33A5F61BA3 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; + 2932CAE48B908051425DCA562EFACA17 /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; + 29338AFC017E7E5A79D48DB5F1F97991 /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; + 2955E1F0E269B00A6DF445737D241CC5 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; 295CEDAE4FA152B93443DBE17DCBE9A6 /* nanopb.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.xcconfig; sourceTree = ""; }; 29606D0428A257B7EEA91DF2AEF5A104 /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; - 29741389F27E7F7213384B444FD5A6ED /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; + 29747568ABBBA9E9A1EC0F48BD467C22 /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; 299D244F43EF10E054A5D4532D2242F5 /* dso.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dso.h; path = ios/include/openssl/dso.h; sourceTree = ""; }; 29A3786758BA5BD9869DBCBF6C13D43C /* EventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBase.cpp; path = folly/io/async/EventBase.cpp; sourceTree = ""; }; - 29A79EFAC50AA6F7BA8971A7DDE91CD9 /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; 29A7D37421922AE17AD3190FEF825B11 /* RSocketStateMachine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketStateMachine.cpp; path = rsocket/statemachine/RSocketStateMachine.cpp; sourceTree = ""; }; - 29AEF47D2DDBC9C79C53A60A730C0E32 /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; - 29B0E2ADD93FF665A396F2BBD086349C /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; 29B836691D2C3E25B3EC9AFE80E342BF /* WriteChainAsyncTransportWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WriteChainAsyncTransportWrapper.h; path = folly/io/async/WriteChainAsyncTransportWrapper.h; sourceTree = ""; }; 29D9B2C34C5B4908444142055250AE80 /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport.h; sourceTree = ""; }; 29E28015056A8B8122C22038951F8C02 /* cms.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cms.h; path = ios/include/openssl/cms.h; sourceTree = ""; }; - 29E3E89084221292A1F6A511DED075FF /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; - 29E4C78CEA536C120FB4E3042AFBC7E0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 29E9C1CBBFB95DE4094DBF41CFB75549 /* MallctlHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallctlHelper.cpp; path = folly/memory/MallctlHelper.cpp; sourceTree = ""; }; - 2A1A7657676383C3DD07A56DBB78453D /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; - 2A4465D9C66789A29A41BC4026FC7721 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; + 29F3B76C0EF0EF9795762A690523B285 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; + 2A01A31FE793FB476EBD3590E428F3CA /* 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; }; 2A469D3C7285FE42D9BAFA2CB009D58A /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; - 2A9430F671659F2F9CC13A57617A5836 /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = apple/RNCWebView.m; sourceTree = ""; }; + 2A4F57D2ACE402704AF6C758AA83E669 /* UMAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLoaderInterface.h; sourceTree = ""; }; + 2A825626709AF13F75D065EFCC2E9178 /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = apple/RNCWebViewManager.h; sourceTree = ""; }; 2A98DB0A4AB17DB921C1ED635750D654 /* ExceptionWrapper-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExceptionWrapper-inl.h"; path = "folly/ExceptionWrapper-inl.h"; sourceTree = ""; }; 2AB253740B78D4B6FC3BA8FB6859F65E /* BitIteratorDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIteratorDetail.h; path = folly/container/detail/BitIteratorDetail.h; sourceTree = ""; }; - 2AC48C614EF608D8A8ECADA5403E7886 /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; 2AC61BE0BDDF573058CD9FE666F12A72 /* AsyncUDPSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncUDPSocket.h; path = folly/io/async/AsyncUDPSocket.h; sourceTree = ""; }; - 2AD11B259B7DD8E19188CB41300D227E /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; + 2AC7952E4EB82FDF80EE45F4F7C9817C /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; 2ADFFB1471FE2E15D6E606ADFC40A14E /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/SceneDelegateSwizzler/Private/GULSceneDelegateSwizzler.h; sourceTree = ""; }; - 2AE7D63FD52D8DF551781E15915CDBF0 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; 2AF7BDD7B589CE7CD8BC311B01574069 /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/Memory.h; sourceTree = ""; }; - 2B0694334ED556A548C81BDE6C48F957 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = apple/RNCWKProcessPoolManager.h; sourceTree = ""; }; - 2B0D6D5351E9FEE34EC25890E8F1C42A /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; 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; }; - 2B2A08D8D954D554D533AD9629E96E30 /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; 2B3F4CBE63D26B3507E66BF620BF409E /* SysTime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysTime.cpp; path = folly/portability/SysTime.cpp; sourceTree = ""; }; 2B55A15A4DD10CFE1C54130E09F18C61 /* FIRInstallationsErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrors.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsErrors.h; sourceTree = ""; }; - 2B7748EB32FDE490DEEE86DEF49D1FCA /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; + 2B5B4D65517EA9E604FDECF4A1846876 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; + 2B6B94978324A1717A292F62AC242F43 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; + 2B73E343A993E6CEF42350881F8F0E84 /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; 2B7E6CF1DA3AC611617928B73C696AA2 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; + 2B816DA2D6F8861904EA446D74DFF951 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; 2B819B405EE6D794E6E47B0FB1CA3C6F /* UniqueInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = UniqueInstance.cpp; path = folly/detail/UniqueInstance.cpp; sourceTree = ""; }; + 2B9791A84E3FD01985C6E61A8FE2E3BA /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; 2BBD251041467488C62CAACF77FC7EE2 /* filter_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_enc.c; path = src/enc/filter_enc.c; sourceTree = ""; }; 2BE8A21AE787CA0316CAB8B12808184C /* EDFThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EDFThreadPoolExecutor.h; path = folly/executors/EDFThreadPoolExecutor.h; sourceTree = ""; }; - 2BFDD514937B20C543A2E6097EA22E2B /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; - 2C5383D8B108AC10101C2B270CFD6834 /* RCTConvert+UIBackgroundFetchResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+UIBackgroundFetchResult.m"; sourceTree = ""; }; + 2C0DFEE7AB0E2E06D08C7A0E58297A01 /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; + 2C2F1EF0A75899E0297AE7C0ED554440 /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = ""; }; + 2C2FBC0A054D33CDCCF8C06A100B019E /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; + 2C4AD36AF9A99718600B5ECBED9C08F9 /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; + 2C514716EB275CDB666C4007580DC233 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; 2C589B0E36FF0F86584B6C9F7A250535 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; - 2C5C63223AB5EAA7F18B5732308E2937 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; + 2C5CE9C01B4C47DC2AF69CC5D89C02F9 /* RCTAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppearance.h; path = React/CoreModules/RCTAppearance.h; sourceTree = ""; }; 2C5D41B5EA1A48033608AC8B23407F3C /* libssl.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libssl.a; path = ios/lib/libssl.a; sourceTree = ""; }; + 2C67267A8A17001BD55473995B72CDCF /* ReactNativeKeyboardInput-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardInput-prefix.pch"; sourceTree = ""; }; 2C6742C7BEBBD69BBBB16472408F518B /* FIRInstallationsLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsLogger.h; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.h; sourceTree = ""; }; - 2C74A1CB781F3A9CA9D729DAD82BE6CD /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; + 2C8937263FFB2C59A5E5A48194035D49 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; 2C93089C71CB9569A26437215513C814 /* GDTCORConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORConsoleLogger.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORConsoleLogger.h; sourceTree = ""; }; - 2C9813749E51B33067875DDE17E0DE94 /* 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; }; 2C98A1F038692A38FFDA4138201117EC /* ThreadName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadName.h; path = folly/system/ThreadName.h; sourceTree = ""; }; 2CA6F654F7CF1E6F99A19DC2E57C9CC2 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; + 2CAC25D7FC5DF89ED2F7953785D55282 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; 2CB20BD04177E56CACE67BEA86275FAF /* CacheLocality.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CacheLocality.cpp; path = folly/concurrency/CacheLocality.cpp; sourceTree = ""; }; + 2CF59DE05A098DAA833C7A70753F25BC /* NativeExpressComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeExpressComponent.h; sourceTree = ""; }; 2CF7D6056217651E8A1F42E80D1E9B80 /* StampedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StampedPtr.h; path = folly/experimental/StampedPtr.h; sourceTree = ""; }; 2CFC64A70AB0E91C95E6C266AD5D221B /* AsyncSocketException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSocketException.cpp; path = folly/io/async/AsyncSocketException.cpp; sourceTree = ""; }; 2D113AB762E333161D4F04EE310B3C90 /* Pods-RocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RocketChatRN-acknowledgements.plist"; sourceTree = ""; }; + 2D1897FAFE5D5F8C700B53AD1E489BE0 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; + 2D1FDE73C0584894CCEAA11A49E2129D /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; 2D2584473F8E196EEB11BE408FA7E274 /* Indestructible.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Indestructible.h; path = folly/Indestructible.h; sourceTree = ""; }; - 2D27EF6E62BF2AFA0B42B92939546604 /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; + 2D2D1751ACFF90E1CCB30E85EEEB3C24 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; 2D2F29E9273B0EF4FE4CC44B6380CDE5 /* FlowableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableConcatOperators.h; path = yarpl/flowable/FlowableConcatOperators.h; sourceTree = ""; }; 2D36006052769CE515737F1DB51F04D2 /* CertificateUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CertificateUtils.cpp; path = xplat/Flipper/CertificateUtils.cpp; sourceTree = ""; }; 2D3D68E6A6FD5EAFBF6E6CF0344C747D /* Aligned.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Aligned.h; path = folly/lang/Aligned.h; sourceTree = ""; }; 2D4C752E0B92569CEEF88B435C38553F /* CLSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSStackFrame.h; path = iOS/Crashlytics.framework/Headers/CLSStackFrame.h; sourceTree = ""; }; + 2D64575D372A7F5A5C6B1E7CAA66CD49 /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; + 2D6D7B9EFBE1AC81F29FC86693A8CAB1 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + 2D780F29E8B27EF815A15DF6A4D809F3 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; 2D7BF22D6E06F8C37F33C8CDB0AFDFBC /* upsampling_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_neon.c; path = src/dsp/upsampling_neon.c; sourceTree = ""; }; + 2D8409785A38DCC8B6E9EFC8DDF80F5E /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMAppLoader.a; path = libUMAppLoader.a; sourceTree = BUILT_PRODUCTS_DIR; }; 2D8F07A79BD6CB0BEC7D9F73FF2AFA41 /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = ""; }; - 2D90B987D7A9509CD96F9A78E36416F3 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + 2DB92C8FC3FC92540D11087C99286E40 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; + 2DCFC81374FB80B7085A8B149771FECD /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; 2DDE527B11E155E4BB506DEC931D0CBD /* webp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_enc.c; path = src/enc/webp_enc.c; sourceTree = ""; }; - 2DE2311C8B2580FDCA375908C56C7D36 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; - 2DF2DACD43667A6FD9B3079D72946763 /* RNFirebaseDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabaseReference.h; sourceTree = ""; }; - 2E080D7510CAB789BD804E9F7C16E8F9 /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; + 2DF42191E5D0F0270A08953BE5753EBA /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + 2E04D3A647F36E8B028E2D8851475024 /* UMAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppLoaderProvider.h; path = UMAppLoader/UMAppLoaderProvider.h; sourceTree = ""; }; 2E105AEEC4F98A6688022793332EF421 /* IOBufQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IOBufQueue.cpp; path = folly/io/IOBufQueue.cpp; sourceTree = ""; }; - 2E21FA93BDE61ED25CF1C1E266CB1FBC /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + 2E31D2EDC5ECA24821ED9B416DBC9795 /* UIImage+Extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Extension.h"; path = "ios/src/UIImage+Extension.h"; sourceTree = ""; }; 2E342836BC369B6A02CA365B2EDFE945 /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cct.nanopb.c; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = ""; }; 2E38B6606BBB78AB1FF04F7074200380 /* FlipperUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperUtil.m; path = iOS/FlipperKit/FlipperUtil.m; sourceTree = ""; }; + 2E4E3D7778CEABC0932F3CD31EEC5032 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; 2E51A17A62CC1ED1DD8973517632E8A4 /* DistributedMutex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DistributedMutex-inl.h"; path = "folly/synchronization/DistributedMutex-inl.h"; sourceTree = ""; }; + 2E5F66F8E856DEE00B552564AF706E9D /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; + 2E72E9D52F37CD871C6EFA0C46E5899D /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; + 2E7E8B77C5E49902748BAC6FD806AE7F /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; 2E82DDAD9A9BDD55B50D8A85D999856D /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = ""; }; 2EA7F3E61180F9381D6E7007D93FDC30 /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; - 2EB385FF646BC1607B6A982D874C1AD3 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2EA97B926A768539C6BAA099C794686B /* RNFirebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFirebase.xcconfig; sourceTree = ""; }; 2EB8D45C0E97E90D087657FC89EDEF81 /* FrameTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameTransport.h; path = rsocket/framing/FrameTransport.h; sourceTree = ""; }; - 2EBB735830CD6F04A874EE7F92E5E17D /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; - 2EBF213AD28C0D37DA0C69E3D7234ED9 /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; 2EECC37A5384ADA3A0EA2363ED1312A5 /* StreamResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamResponder.h; path = rsocket/statemachine/StreamResponder.h; sourceTree = ""; }; 2EF43FFB9533324103690B426A450B35 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GULLoggerLevel.h; sourceTree = ""; }; 2EF9D1B841C6204A2EC5D0DFE011FE80 /* io_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = io_dec.c; path = src/dec/io_dec.c; sourceTree = ""; }; - 2EFF1B3CB4D2A850414200366C5565B4 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; - 2F04BBF6F474E888E7899CB3E0E61DE4 /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; - 2F6373F563279B12A436A58BEB650040 /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; - 2F7CA6490F20360A7064C08F46FCF5DC /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; - 2F875BFD1CA3EC391F34B82B3BD1A9F0 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 2F8A02485800C6E27383CAEF19BAB5B5 /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; + 2F453AB8650E5E04AF66A8676A2B8967 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; + 2F4B4CF25B4C47002CC185DC4D991BFD /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; + 2F6E770107F0F9662E99148E09934317 /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; 2F96BBC2C349EFE0561E41FF1D59ADE2 /* Assume-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Assume-inl.h"; path = "folly/lang/Assume-inl.h"; sourceTree = ""; }; 2FA7FAF71D780486BCBC9CF348A92AFC /* SDImageWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageWebPCoder.m; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.m; sourceTree = ""; }; - 2FA9557D126ABF05071EA793543C18C6 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; 2FCFBC7F2F86F2106715AE7854979DDC /* GoogleDataTransportCCTSupport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransportCCTSupport.xcconfig; sourceTree = ""; }; + 2FD687F7A3E9231B853C6F9BB2506528 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; 2FD89FE7149F49ECE939C0D668485C2A /* pt.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pt.lproj; path = "Objective-C/TOCropViewController/Resources/pt.lproj"; sourceTree = ""; }; 2FE243CEBF31283F9B48FD56D86CE803 /* Random.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Random.cpp; path = folly/Random.cpp; sourceTree = ""; }; 2FEE60C719A471DBD4B5E6093935C8FD /* TOCropViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropViewController.m; path = "Objective-C/TOCropViewController/TOCropViewController.m"; sourceTree = ""; }; 2FF492AE67C415F581B90EE78BE0ED44 /* FIRInstallationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStore.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h; sourceTree = ""; }; 2FFD01ED62EB70B241703996ED004808 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; - 300ACEFA6E05B7FB33C7E3A880C1CCC1 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; - 3021B14A09D4716AEEB8CBACE9316DB3 /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; - 303A73CBD94A4706CCCD402D519ED20D /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; - 304C00D0EA7A1B47B55F546B89E7306D /* UIImage+Extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Extension.h"; path = "ios/src/UIImage+Extension.h"; sourceTree = ""; }; - 30567A88DBFBF298463E3A00798BDAD8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 30496EEC07B29FD00B42D064DFA20B22 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; + 306C50F833A0809C36C0DD5B74E014D1 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; 307AC7E91B54A8B513EEE19246B784DA /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; - 307C073B29F5AB6D829BC84F233DC00F /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; - 30CC3B2ADA60E450F29AA47F0F9C5626 /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; - 30E493FF1F09264FA743C82D5C7C04CF /* ReactNativeKeyboardTrackingView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardTrackingView.xcconfig; sourceTree = ""; }; + 3082B4F67DF8A2C570FEF766BE0A18F3 /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = ""; }; + 30BAC8AC4EF89E119C4D7156A861883C /* UMAppLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMAppLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 30D01623D5B2069095D4078A25ADB625 /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = callinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = ""; }; + 30E068B0B144FCD0EAD039ECE9DB57A8 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; + 30E7AB436B129FA770A942480C3CCFD1 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; + 310CCBD58CAC10932222DD449C29A85E /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; + 3112F58816F680D616BEE524C8BA9360 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; 311652007C95DA14AF3C4E1583B6843E /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; + 31172A1D79DC9491F3DE61DC9D8DE12B /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; 311D3552CE0BEA00664B89CA15F9E487 /* DynamicConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicConverter.h; path = folly/DynamicConverter.h; sourceTree = ""; }; - 31203E4AAD1FC38EAD20B1B10A91190B /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; - 3120CCC4BB4F2FFC7A6FA9A46A0223B0 /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; + 3121408745595749887D41BA8C1D4AB2 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; 3121F4E39E2FDCA07C70F743382E9D1D /* GDTCORPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPrioritizer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORPrioritizer.h; sourceTree = ""; }; 31284479B3D54042FE245BE41CF1013B /* x509v3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509v3.h; path = ios/include/openssl/x509v3.h; sourceTree = ""; }; + 3128C28642D3ACDF91F0A1B18869FF79 /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3149899EA1140A5AAE52CCD55745C11B /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; 3151A27F8EB83157C77B704A82CEAB27 /* CallstackHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallstackHelper.h; path = xplat/Flipper/utils/CallstackHelper.h; sourceTree = ""; }; - 31609F47469A3B892862A77E300E6942 /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; - 3169594B075AF1E3A5B47E086E0F5156 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; - 317C6299B6027595FDD09D62475F57EE /* RNCSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewManager.h; path = ios/SafeAreaView/RNCSafeAreaViewManager.h; sourceTree = ""; }; - 319366C6B71F1F8B7C58EED5D381E0F9 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; - 31A62F7D36A317FBB5A8A4E1AD72E2E0 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; + 31544FA1A34C77D66C793534B5D01D8F /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; + 3181EBFF3AA9E8E21FE1CB080DDF96F4 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; + 3190F6F63102777D0B20446986C48AC0 /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = ""; }; 31A6F042C824B8C234E02AF82D6074C4 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/String.h; sourceTree = ""; }; - 31A7914DE812140600E11796F057609E /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; - 31AE3C94309955E524BEF01546E39AFC /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; - 31C14AF5BE3B281BF4BC9886FC51D8B4 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; + 31B9586A25A945DFDF336F9090B11E07 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; 31CA4A4746C7B9C11F6F7B92681A9B88 /* SysStat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysStat.h; path = folly/portability/SysStat.h; sourceTree = ""; }; 31E08DAC1A619FCDA26A814273FD6980 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; + 31EE61B5B2C4934ACFE959BCEB6D5CAA /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; 31F50628462B7286EECC487C600E7514 /* Flipper-Glog.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Glog.xcconfig"; sourceTree = ""; }; - 3223727D3A1CC6B4D7B7E44A1E35ED7E /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; - 3250010EA1DB72E62D84585E36016E5F /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; - 3253A25054A815CD6D78C4B3270C0AE8 /* RNNotificationCenterMulticast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterMulticast.h; path = RNNotifications/RNNotificationCenterMulticast.h; sourceTree = ""; }; 3254163C10759D309B2575E574C6828A /* alpha_processing_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_neon.c; path = src/dsp/alpha_processing_neon.c; sourceTree = ""; }; - 326BE608109CD737AE71E4DCBAD13050 /* RNFirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseRemoteConfig.h; sourceTree = ""; }; + 326D36A3C74DC68345558AC3A851ADC9 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; + 327656D2867C9A9125E6AD17423A15D1 /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = ""; }; 32A060A76FC1635AD55AAE0FB1400BD3 /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = ""; }; + 32A66B75467762CA4BE821738EB96B6D /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; 32D303C87B10C49F7145013CEFE7B67F /* PromisesObjC.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.xcconfig; sourceTree = ""; }; - 32D3AAEC3A19B32B24B56FD58AAF3CFB /* RCTLinkingPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingPlugins.h; path = Libraries/LinkingIOS/RCTLinkingPlugins.h; sourceTree = ""; }; 32D55BCC259F3B2CF7742F3661A16058 /* FlipperKitLayoutPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitLayoutPlugin.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h; sourceTree = ""; }; + 32D6CEEE188F5E019A0E0D332B9CDF02 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; + 32D8F496A70588E5E81E35795E7BD3EB /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; 32DC6C87B3109D3A047BB48B1D9547AD /* DoubleConversion.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.xcconfig; sourceTree = ""; }; - 330591B23AC30025C60AAA759192D205 /* RCTUtilsUIOverride.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtilsUIOverride.m; sourceTree = ""; }; - 330F23D7B53A95233627DE41F79DF342 /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; - 332A8AA4D66AB38E71450D0753AB0B60 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; - 332DA0451C9A2BC6F61E6CC609379D26 /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libPromisesObjC.a; path = libPromisesObjC.a; sourceTree = BUILT_PRODUCTS_DIR; }; 335BEEEE056B1F03F417E347AC410F26 /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; - 33CDEBE8A77A2A5A2F42AA42C5DD210C /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + 33663800333B2DE3B96EF0EC3C8A7306 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + 33A0B92651A94B287FDE6B14359D92F7 /* RNFirebaseUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebaseUtil.m; path = RNFirebase/RNFirebaseUtil.m; sourceTree = ""; }; 33D0D0C5D3CF1763B7E47E413FDAD898 /* GCDAsyncSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncSocket.m; path = Source/GCD/GCDAsyncSocket.m; sourceTree = ""; }; - 33ED18F3D1D1B71256ED883C0802EB6A /* RNFirebaseAdMobBannerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobBannerManager.h; sourceTree = ""; }; - 33F2E207C32422892ADBEA68CD80D69C /* RCTImagePlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImagePlugins.h; path = Libraries/Image/RCTImagePlugins.h; sourceTree = ""; }; - 3402802DDA99A7E5C6EEC15699A7B8F0 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; + 33D551B60F8530F4356EB55964B4FA03 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; 340CF216836AE1108FD997C37A4833D6 /* YGLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YGLayout.m; path = YogaKit/Source/YGLayout.m; sourceTree = ""; }; - 3412BB0B012BE91E0C5D2CAFC31E4A9C /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; 342C1A6308329C1B905E347FC5BDAFC4 /* frame_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_enc.c; path = src/enc/frame_enc.c; sourceTree = ""; }; - 3438A92E0705A029699AE3D344304330 /* RNCMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedViewManager.m; path = ios/RNCMaskedViewManager.m; sourceTree = ""; }; - 34579908D35ED78F87A95AD8D241DBEB /* RNCSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaShadowView.m; path = ios/SafeAreaView/RNCSafeAreaShadowView.m; sourceTree = ""; }; - 348AA5B5AC508B77A3D637486F0346FC /* RCTAsyncLocalStorage.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAsyncLocalStorage.mm; sourceTree = ""; }; + 3438ADEC6BFD173853DBE02CDB14D4E6 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; + 346826B90C891C3D7725CA4C9354B292 /* RCTGIFImageDecoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTGIFImageDecoder.mm; sourceTree = ""; }; + 3472323B1AEFB0C13EE49F7103F6F7E0 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; + 3486F0BAF3DFB19D0DC2AB86584B4982 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXAV/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; 348B199EEFC3DA083A2E10408D39B62E /* picture_rescale_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_rescale_enc.c; path = src/enc/picture_rescale_enc.c; sourceTree = ""; }; 3494E2DD06E10CB2B5DAEE094A77E219 /* SKTapListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTapListener.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListener.h; sourceTree = ""; }; 34B1FFB6141C73209C4E5A15B39EDEA7 /* GDTCORStorageProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageProtocol.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORStorageProtocol.h; sourceTree = ""; }; 34B7BDD48B65CB852F0BD71AA4D5F649 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; 34C72E24FF9AE020F595BAB7BE7B92FF /* FlipperKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlipperKit-umbrella.h"; sourceTree = ""; }; - 34E1B20C58561E8991E3003B6915A1FA /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; - 34E846E2A6909123C2B8E5EC4860DFAA /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; + 34D5C6524B5EECBE4308D60A0177C1B9 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; + 34E54A0143BAC6774E7ED46216E9562D /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; + 34F0B89001764776FAF3677B7137DC39 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; 352C7AC625618C55B3C1EB9ECA388A12 /* Semaphore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Semaphore.cpp; path = folly/portability/Semaphore.cpp; sourceTree = ""; }; - 35B468CF8FF3E3BC1AD58CB8ED8ED5EA /* Yoga-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-umbrella.h"; sourceTree = ""; }; - 35C2E34985CFA9E525EAE37A33CF8B17 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; - 35D642116AC975EFBA8D696B1B7BA767 /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; + 35808B26E361D66266FCEDC142699F57 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; + 359E24958405B6EDF860F722188F7647 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; + 35CF31EF6370977242F693B963634BA3 /* ReactNativeKeyboardInput.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardInput.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 35D65F11FB88FBD45804F6317971486A /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; 35DA5D83B94E2AAAB00EDCEBBBE69FA0 /* SSLContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLContext.h; path = folly/io/async/SSLContext.h; sourceTree = ""; }; - 35DAACEE22375215A28F445680E28CF8 /* RNFirebaseNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseNotifications.m; sourceTree = ""; }; 35E4046ECB7E16B188B82CD52EB5578C /* CString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CString.cpp; path = folly/lang/CString.cpp; sourceTree = ""; }; + 35F091C33CF755F5204262A08B542402 /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; 35F18838412262166EBA0E797B231CC3 /* Overload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Overload.h; path = folly/Overload.h; sourceTree = ""; }; + 35FF01812EF4A19AF5A496A538F75336 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; + 36006A5D327E48945D7E0C370C648DE9 /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = ""; }; 3608FA6C0F3B192297FA0C37931AF755 /* SKStateUpdateCPPWrapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKStateUpdateCPPWrapper.mm; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.mm; sourceTree = ""; }; - 3612C556FEA262A16DD0238ABF81BB74 /* react-native-safe-area-context-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-safe-area-context-prefix.pch"; sourceTree = ""; }; 3613A31266D2AD06647090A378878079 /* yuv_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse41.c; path = src/dsp/yuv_sse41.c; sourceTree = ""; }; 362F533612F39ED0A116F12242EB3851 /* RangeCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeCommon.h; path = folly/detail/RangeCommon.h; sourceTree = ""; }; + 3636F14631625280E28D82BACF327AEB /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; 3642927267BA5A07470303E775D65DFA /* Poly-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Poly-inl.h"; path = "folly/Poly-inl.h"; sourceTree = ""; }; 365636C1858BBACEADB5F99BE4C9864C /* alpha_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_dec.c; path = src/dec/alpha_dec.c; sourceTree = ""; }; - 3686AB05F2FB2444048AC98F5E5E305E /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = ""; }; + 365A6806983A06E40D88574D1A430189 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; 368A4AD8773CF8767E6EC2DA65901B5B /* FlowableTimeoutOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableTimeoutOperator.h; path = yarpl/flowable/FlowableTimeoutOperator.h; sourceTree = ""; }; - 36938C4AE46A403632FBBB6781E84192 /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; - 3696C49C9234E00FACC99834BC009560 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; - 36B4B555A7345845BD541D75B33A46D8 /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; - 36CD5A95887F55368E62220E39020141 /* 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; }; + 36C3AB77231D2DA03640B39959D39D09 /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = ""; }; + 36CBBA01812843981C3B21BD724C267F /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; 36D65CCC06124AE710B6760C10754CDA /* Flipper-Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Folly-dummy.m"; sourceTree = ""; }; 36DD4FA93980FA05CC847D3AFD4D93CB /* IPAddressException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressException.h; path = folly/IPAddressException.h; sourceTree = ""; }; + 36DD59698462AF3BB58AFA0B87ACAA45 /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; 36E1B5B2CFFF00267506ED80195F616B /* SafeAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SafeAssert.h; path = folly/lang/SafeAssert.h; sourceTree = ""; }; - 3708A1323C1DF619C344E7F5A1D60345 /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = ""; }; + 36F1336686CF053FAF0D1F783F28DEDC /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; 3718C0542EF040AFC08106C65C8BAA2D /* FIRInstallationsStoredAuthToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredAuthToken.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h; sourceTree = ""; }; - 37216B6E12125370DB6D9BBE2207512E /* RCTWebSocketExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketExecutor.mm; sourceTree = ""; }; - 37342866BC8641DD44D51F5B2175BC0B /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; 373709EFF0AAF162459EF5D0B0F390E6 /* PTChannel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTChannel.m; path = peertalk/PTChannel.m; sourceTree = ""; }; 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-cxxreact.a"; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 375C415B4E60AB8C88FDA699432DE2AA /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h; sourceTree = ""; }; - 379C513DDBC4E0394999FA853E4A61F3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 37CAF81E9E4AA35A161ABCCE6FE90679 /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = ""; }; + 3762FECAFF7F556152C59808B990F279 /* 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; }; + 3763AB04A89529750855C4C3533760D9 /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; + 3780662E1E04FF442BC6E58B98F204FF /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 37895F3BEBC6FBAE7B69AC1E9B664C63 /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; + 379625BE5B27420085234B6B8BF607D0 /* RNCSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewLocalData.m; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.m; sourceTree = ""; }; + 37A782E342242AD117AB051759601D63 /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; + 37B394D80684978604DE1A7BBE048EE9 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; 37E57BF0ADE4302F482B1DB7DA3957F2 /* SpookyHashV2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV2.h; path = folly/hash/SpookyHashV2.h; sourceTree = ""; }; - 37ECD20A2178106F568877ACDFB4944B /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; 37F05CAA072B1B41891EB96F94580E6D /* GMock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMock.h; path = folly/portability/GMock.h; sourceTree = ""; }; - 3801A9AA76CFB87F753B9C9CDC97CC0A /* RNCAsyncStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorage.h; path = ios/RNCAsyncStorage.h; sourceTree = ""; }; 380CC79E918E3BBE9C8BAFCE026DFC7E /* YGLayoutExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = YGLayoutExtensions.swift; path = YogaKit/Source/YGLayoutExtensions.swift; sourceTree = ""; }; + 381EE808730B845CBEACA73A6C0A99BB /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; + 382504A213EAEA9F7B9E6159D87B51D8 /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; + 3826C185CC437E8F905232507D722145 /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; 382DF59437BD2A2071FCEA0EECB84C6E /* picture_tools_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_tools_enc.c; path = src/enc/picture_tools_enc.c; sourceTree = ""; }; - 384893C929C2E7804FCA0B1A2371017B /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; + 3849EEFE0D7DD1DDED58F4F9AF3B84B4 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; 384F5B9DB93D796878863CCCAB7853EF /* FlipperKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlipperKit-prefix.pch"; sourceTree = ""; }; + 3861A556F991E0FB85827D1D364AA6EA /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; 386B4341B5AD4C77C36CC4A190DB860D /* ssl2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl2.h; path = ios/include/openssl/ssl2.h; sourceTree = ""; }; - 38AC229967EB1A3B5161006686531264 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; - 38AD9CA9D464D1F4AA14FD830C09AFAA /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; - 38BD4FC3679D32ED6AB7AAA85114541B /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; - 38D99895242A709511883F21E9571FDB /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; - 38DDD9EC232549F32E09F16BC5D05D82 /* BannerComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BannerComponent.h; sourceTree = ""; }; + 389456A7DF76B1A6643347A601988A77 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; 391DCE7E1FC1980DD72A702B02280B80 /* IPAddressV6.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV6.h; path = folly/IPAddressV6.h; sourceTree = ""; }; + 3924139DCBF1E96013E3D806FA355B7C /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; 39329E18987753D317DDA860F29C1772 /* SingletonThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonThreadLocal.h; path = folly/SingletonThreadLocal.h; sourceTree = ""; }; 393A3EC9791AAD4CA73A390DC97CBD6A /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; 393D1FF6D158CD71F0244E40E3D99A9D /* FIRInstallationsAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResult.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsAuthTokenResult.h; sourceTree = ""; }; - 39446EDAFFBB0FF7075E0DAA4CCB0CC1 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; 3947BDBB1A4AD14C3E700D8630CFBF7D /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Private/GULNetworkConstants.h; sourceTree = ""; }; - 3952FE228AC8F49810009754B414EA0A /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 3957078C9B055BE3CAE3EC2D92A5C3A2 /* tree_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_enc.c; path = src/enc/tree_enc.c; sourceTree = ""; }; - 39592E7518AEA079B23E5DF37B8CC628 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; + 396BCC1103806DB62E13A01085BFDB9A /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; + 3978E0817217815A03BD8559CBC212A0 /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; 398877019437A0142F23A0EA7B2F5B8C /* Function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Function.h; path = folly/Function.h; sourceTree = ""; }; - 39B28B1988D29E1DF313B43FBF1F2507 /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; - 39BAEE4DAC0E1227FA20F4904C1221B1 /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 39C2B4A45BAEFA2B83291B29E21C89F4 /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; + 39CDDF3FC6F08B54E8F1E21067DD7181 /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; + 39F4D653B834C5AD699B8608F1CDACEF /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = ""; }; + 3A087F03D451E89A5AAD301D0B58B36C /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; 3A09FC1F6FE2C60C12E163DDE81961C9 /* muxinternal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxinternal.c; path = src/mux/muxinternal.c; sourceTree = ""; }; + 3A0F82FC8E543DE98A2ACB23CE52A960 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; 3A14A135D0D1EBAB15A05123FDC4C6BD /* ColdResumeHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ColdResumeHandler.h; path = rsocket/ColdResumeHandler.h; sourceTree = ""; }; 3A30E79178D6FA0359C8D0889910DDD0 /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = ""; }; - 3A3B6CD03DB936F086CB3AFF7FE558AE /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; - 3A69772246CC5C13967C50549B628B78 /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = ""; }; - 3A724A619FAA448EC4AEE88396B3CCE1 /* UMAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppLoaderProvider.m; path = UMAppLoader/UMAppLoaderProvider.m; sourceTree = ""; }; + 3A8EB6CB82FF58D29DCA66F92F103701 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; 3A9797F59D2A40E6912254EAD970F4F7 /* PTProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTProtocol.h; path = peertalk/PTProtocol.h; sourceTree = ""; }; - 3AA490065F4BC8E0D3C4692DAEEFEAF6 /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; - 3AAC11F1613B55F051B873E278DC1C4F /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; 3AB87183B9900CD53A4C415F658014FF /* quant_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_enc.c; path = src/enc/quant_enc.c; sourceTree = ""; }; 3ABEC4132D8A614C5B3C617207B44C1D /* FlipperKitNetworkPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitNetworkPlugin.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.h; sourceTree = ""; }; + 3AC743AAF093BEA69296F8D19A4A63DB /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = ""; }; 3ACAC0DFB62D2E075A4ADE1AA43F65CD /* YogaKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YogaKit-prefix.pch"; sourceTree = ""; }; - 3ADFD7C87D38BB59A7251CDABC626E6A /* rn-fetch-blob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.xcconfig"; sourceTree = ""; }; - 3AE5BDEEEDCAAEE59EFC82C33EC71FC8 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; + 3AD9E3A089699EE37B9B9DB63D50FD4E /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3B01459926C4078CD55D67E0BD4E6367 /* PublisherBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PublisherBase.cpp; path = rsocket/statemachine/PublisherBase.cpp; sourceTree = ""; }; - 3B14095F63BB5DDCAA899D3F778B1BE3 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; + 3B0BB472098B8C1333572351A2D915B6 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; + 3B298DC760AAF3986A2D64997749D50B /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; + 3B45B6C3975F42178855A0EA49CAAF12 /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; + 3B468DA312920E115DBC601B9DD70210 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3B7FBF33AC92AD6DA22A777AFC78B0BC /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = ""; }; + 3B71A920C29887C22EF38F089AC74AC3 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; 3B8430674EA6F4FC03E630EADC00FAA4 /* EventBaseBackendBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseBackendBase.h; path = folly/io/async/EventBaseBackendBase.h; sourceTree = ""; }; 3B9072041845022C2B19230F2775A2C3 /* sha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sha.h; path = ios/include/openssl/sha.h; sourceTree = ""; }; - 3B963523997919758D0FAB0A9669A0B6 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; 3B986BC6E10518C6271D2246B808BA2A /* LockFreeRingBuffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockFreeRingBuffer.h; path = folly/experimental/LockFreeRingBuffer.h; sourceTree = ""; }; - 3B9F7601EED2B0A99FFDA98CF2FA4BA2 /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = ""; }; + 3BA5BEBF5EA5AEAF9C55ADFDF12357EB /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; 3BADE06D6084A945F5CA9C74E12346D3 /* random_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_utils.h; path = src/utils/random_utils.h; sourceTree = ""; }; - 3BD2EF7F1226651AB2E94E608674EEE3 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; 3BD3D4E6B83467B5A10273B7C54AC3BB /* random_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random_utils.c; path = src/utils/random_utils.c; sourceTree = ""; }; 3BDEFCD869A4F4674CE7CF0D6E3AA523 /* MasterPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MasterPtr.h; path = folly/experimental/MasterPtr.h; sourceTree = ""; }; 3BF9A72ED1750E91CA64088BD18ED276 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = ""; }; 3BFC378E35DFD38F87AC7213983ACA3F /* Benchmark.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Benchmark.cpp; path = folly/Benchmark.cpp; sourceTree = ""; }; - 3C04B222BADBF278384BF00FEFC6B141 /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; 3C0C00C3EB81DAD74BFC49082FC652D8 /* IStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IStream.h; path = folly/gen/IStream.h; sourceTree = ""; }; 3C169D4829984F2E758F0715F2FA405D /* enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_msa.c; path = src/dsp/enc_msa.c; sourceTree = ""; }; - 3C463C99F441B3AF65C45BEA1F02881F /* RNCSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewLocalData.h; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.h; sourceTree = ""; }; - 3C679D75081C23DDE01FB23A6A0C1EF2 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; - 3C6F9D80F6FEC327B071FDB1586C77E1 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; - 3C90E9C8356AD9D515C62B9B475FFF36 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; - 3C91DD0B19AEFAFA4B4D75FB0236620A /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; + 3C414E485D7D4519F47F6D97898A8A82 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; + 3C4A7193D1505AB4E7B8EEB458479E5B /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; + 3C4D934407C0DE63D6FCEF3662980C0D /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; + 3C705C1315A99F2E22859FD59954D434 /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; + 3C8355C5A727F67C1B3CC117903FECB9 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; + 3C867FCCE49877A00F3EF1D8BFF334BF /* RCTLinkingPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingPlugins.h; path = Libraries/LinkingIOS/RCTLinkingPlugins.h; sourceTree = ""; }; 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3CAD289A64AE0C76D0C35AD49B6B4AF8 /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = ""; }; - 3CB3E097FB8D4699ADBD9E68474B0E50 /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; 3CB5E312C6C9A36C98F77187CC83FCB2 /* opensslconf-arm64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-arm64.h"; path = "ios/include/openssl/opensslconf-arm64.h"; sourceTree = ""; }; + 3CC873D1D6B745AC90DADC4CB32145AA /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; 3CCB4396AAF56D20EB9A192AC562A979 /* bufferevent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent.h; path = src/event2/bufferevent.h; sourceTree = ""; }; + 3CCC75DE3E19DBDCDC976CB51121AA6A /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; 3CDCCF6765F48984B05B95D24E8940C4 /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; - 3CE06DDB5C28C8CDBD7DA9C8A8B59571 /* RCTImageView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageView.mm; sourceTree = ""; }; - 3CE34BD48DDD564DA1A5F6F2EAF0DEFE /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; 3CF20FC977818063C4962F1A51D72E83 /* TimeoutManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimeoutManager.cpp; path = folly/io/async/TimeoutManager.cpp; sourceTree = ""; }; 3D6A10E15B062A93E4B205F47161AD9B /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = SDWebImage/Private/SDAssociatedObject.h; sourceTree = ""; }; - 3D7392A2B955C6B6E853ECBBE4E4E3B6 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; - 3D956B10A36543035362FC1A7F716E8E /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; + 3D6A6B77DF11FFD47C326907BC67E4D4 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; + 3D71F8CB11FA9EFCE632EF2ADC483214 /* BannerComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BannerComponent.m; sourceTree = ""; }; 3DA962609E253ADFE3AD2A762D7D940C /* SKNodeDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNodeDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNodeDescriptor.h; sourceTree = ""; }; 3DA9D361F52E7491727CEF403357788B /* mdc2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mdc2.h; path = ios/include/openssl/mdc2.h; sourceTree = ""; }; 3DBF55AB682A256705CF187E386752F9 /* Peertalk.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Peertalk.h; path = peertalk/Peertalk.h; sourceTree = ""; }; + 3DBF61F838B1097FD62D7591FEB07A99 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; + 3DC4C8830B7C0D76E6F9DEF1FE64BC05 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; + 3DC83B2F3CD5791A8779CE94324B6B47 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "RNImageCropPicker-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; 3DF954218538FB691AFFF406E45034EA /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; - 3DFD37227366B3C1618056411F6E0B4B /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAccessibilityManager.h; path = React/CoreModules/RCTAccessibilityManager.h; sourceTree = ""; }; - 3DFE160F16EC7A844A34840BBFE7F713 /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = ""; }; + 3DFF981C47CA2DEF0ABD18204C9C309B /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; 3E102A439D6647D41F701D80646B9C05 /* StreamStateMachineBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamStateMachineBase.cpp; path = rsocket/statemachine/StreamStateMachineBase.cpp; sourceTree = ""; }; + 3E175DE75BEC8374D35C99F207F91DDC /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 3E296909E6CC7D70178295D47836CEB5 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; - 3E2CAD787B7E9C2C2142BACFB04C3355 /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; - 3E3B134139265E70A7391B77D55C5C79 /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3E4D592C2AF43FA97F8D82ABED2664A3 /* 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; }; + 3E330A0088F6483DE33FAE71EA483B80 /* RNBootSplash.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.xcconfig; sourceTree = ""; }; + 3E35514A3865F337BAB34807B357E24B /* RNRootView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.xcconfig; sourceTree = ""; }; + 3E417FCC99890ADA6613B3B742D3E0C9 /* RNCMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedView.m; path = ios/RNCMaskedView.m; sourceTree = ""; }; + 3E41A3B00394163C9CBAF010F4ECE1B6 /* RCTConvert+UIBackgroundFetchResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+UIBackgroundFetchResult.m"; sourceTree = ""; }; 3E5E391D33A2890AD170E829C7D11427 /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; - 3E5F3928F91C4971F0D20F7F89AEA223 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; 3E6A5F25F40F4E0E18F49EEA5D28EF3C /* GDTCORTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTargets.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORTargets.h; sourceTree = ""; }; 3E7064B173A25FBB44D8EF835F3D27C6 /* ScopeGuard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopeGuard.h; path = folly/ScopeGuard.h; sourceTree = ""; }; - 3E81CBB70226B89AF95EBC4D1189E164 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; - 3E90831989E76AA375C7D7AA610075B1 /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; - 3EBC062030E2474E2800217FE40BDB2D /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; - 3EC707E40A56FB45B18630938D291BF8 /* RNFirebaseFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFunctions.m; sourceTree = ""; }; - 3ECAD576FC93676742AF2BEB00B37145 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; + 3EAC43B84F9547719B73E62784E57016 /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = ""; }; 3ED0812C8DBCE08BA6203C27C3235C88 /* libevent_pthreads.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent_pthreads.a; path = lib/libevent_pthreads.a; sourceTree = ""; }; 3ED322C4DA7FFE66A84B029B0A0F8B14 /* Sockets.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Sockets.cpp; path = folly/portability/Sockets.cpp; sourceTree = ""; }; 3ED7D50C2A4F1D8ED397EF40EB5ED71F /* StreamResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamResponder.cpp; path = rsocket/statemachine/StreamResponder.cpp; sourceTree = ""; }; 3EE1D577BC7E2701CD1769E1578C3F2E /* cost_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cost_enc.h; path = src/enc/cost_enc.h; sourceTree = ""; }; - 3EE3EB154C4B26EF48C50AFFA8D0F031 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libBugsnagReactNative.a; path = libBugsnagReactNative.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3F0EC37499F4820026AB30162B77C596 /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; + 3F143168A55B0B275D7ABE38E92D0A7C /* RNNotificationCenterMulticast.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterMulticast.m; path = RNNotifications/RNNotificationCenterMulticast.m; sourceTree = ""; }; 3F2700851C4165B395335A1B0169844C /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = iOS/FlipperKit/FlipperResponder.h; sourceTree = ""; }; - 3F288DD742A90D42BB243D41296F4845 /* RNCMaskedView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCMaskedView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3F30531A84345F1C2D7A1FDE6C5194E6 /* RNCMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedViewManager.h; path = ios/RNCMaskedViewManager.h; sourceTree = ""; }; 3F53E7DE802643EE9148400CFA8D2F2B /* rescaler_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips_dsp_r2.c; path = src/dsp/rescaler_mips_dsp_r2.c; sourceTree = ""; }; 3F5FCC2B0B2354A005BA4E4CDA38589C /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = ""; }; - 3F6018200CB5E3676FFC482BA965B684 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; - 3F74C75537AB9A84C780287DC28D5023 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; - 3F84BFC0298CBD4CB510824140F71440 /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = ""; }; - 3FA7B179A187CA9F095E596EB65561A6 /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; - 3FBAA376761268B02C2068DAAFA0E18E /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; - 4007700B7984997C895AECD0BA11FE55 /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; + 3F7005D6F70287937B451E5C38FB180B /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; + 3F82FA274BA7E705C804627258FC1AFD /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; + 3F96DF6D6BA0CF581CC46C988CF8122B /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; + 3FA37BB8D5CE3A4D72821970E36DAD96 /* RCTVibrationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibrationPlugins.h; path = Libraries/Vibration/RCTVibrationPlugins.h; sourceTree = ""; }; + 3FE10C005ADB64B0306F9E69FE080DBB /* RNFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebase.h; path = RNFirebase/RNFirebase.h; sourceTree = ""; }; 400DBB6ED3B273ABFFDB48A492E31FCF /* FIRInstallationsErrorUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrorUtil.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h; sourceTree = ""; }; 40101A6123815377203D40D4392D585A /* AtomicUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtil.h; path = folly/synchronization/AtomicUtil.h; sourceTree = ""; }; 401B0063B340C5EA59BE881F792B4CFA /* ProtocolVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProtocolVersion.h; path = rsocket/framing/ProtocolVersion.h; sourceTree = ""; }; + 401D6E755CD3B998E73591B856E4DA14 /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = ""; }; + 4036DA66AEAADDE67F7AF5FF9DD0B667 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = ""; }; + 404125022A4DE6ACDF8B89CC27579A03 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; + 4045917217D1231943C756B745F1F8E7 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertManager.h; path = React/CoreModules/RCTAlertManager.h; sourceTree = ""; }; 406126CDE866DEC6B775C6D397305C58 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; - 4074E995EDF098FF2CA2927FCC7D4895 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; - 408BC1BCD56C9EDBD173F9764DE80CE3 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; - 40A63EB5D11569F884DD560319645C1D /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = ""; }; + 4069652AA03B0E7510525C531D945EC2 /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; + 40721705024406AE4E8607335A91AF04 /* RCTFileRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileRequestHandler.mm; sourceTree = ""; }; 40C99E3CD223EBC64465DFCAF6F3E771 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/Demangle.h; sourceTree = ""; }; - 40E7F7110995D0200FB9ADD981B99926 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; + 40CC5CEBEF1FD6B260ECFB4E7B4A77EC /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; + 40DA589797B65249F51467C00467339A /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = ""; }; + 40DD3FADDC87FB94BC8C59709E9960A3 /* EXAppleAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthentication.m; path = EXAppleAuthentication/EXAppleAuthentication.m; sourceTree = ""; }; + 40E6DCD80E4FC6FFB164600E707463D7 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; + 4102C6ABE9B6D8A970C2C548F9BE4FCA /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; + 411C77468EFAC449BC05F4BE98E07F71 /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; 41286BF43643EC0D22E6495D126A94B9 /* HazptrThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThreadPoolExecutor.h; path = folly/synchronization/HazptrThreadPoolExecutor.h; sourceTree = ""; }; - 415F3E5470AF03E227F33C7685577453 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; - 416047E8ABB8DCF4B1C92A69B0BE21DA /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; + 4130B32047215C733F9E8513CEBCCE71 /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; + 4149C036165F6D00E7345C44173AC0C4 /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = ""; }; + 4152E8E084F479AC464AB66097CCDDFD /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; 416190984EC0862F162E2E48E0B3BAC3 /* SKSwizzle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKSwizzle.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKSwizzle.h; sourceTree = ""; }; + 4170EA930CC1710E8CD10295F5027F00 /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = ""; }; + 418793307BC38610A8688BBDC0102CF2 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; 418B8D4F6330C0269AF6A1223E9EC36A /* Subscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscriber.h; path = yarpl/flowable/Subscriber.h; sourceTree = ""; }; - 4195373022D017C35FEF3127FC071669 /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; + 418F58C2275BDE975AAB7658A777A532 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; + 41949BFA1C03419EA1DBC94919B131BF /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; 419AFAD3BACA493568A21704D1085C63 /* EvictingCacheMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EvictingCacheMap.h; path = folly/container/EvictingCacheMap.h; sourceTree = ""; }; - 41B263499C915410519F6D1081B02DC3 /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; - 41B3140B228FFA637D56327E92ADC4D3 /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; 41B38A2014725CA6308DABFB8F503F4B /* Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Folly-dummy.m"; sourceTree = ""; }; - 41EFF701D7733E84C3E6CB4249D15E50 /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; + 41CB39FD5D11539EAE2ECF837C19AC7F /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; + 41E9388F4F2F474F51343984C953523A /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; 41FE12E33CA973C1CA3D422181BB6C86 /* TypeInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeInfo.h; path = folly/lang/TypeInfo.h; sourceTree = ""; }; - 420BB02F7725324C307852F9D875E358 /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; 422866F2343B4FA12000754B30B2F006 /* FKUserDefaultsSwizzleUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKUserDefaultsSwizzleUtility.h; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsSwizzleUtility.h; sourceTree = ""; }; - 423C19C06292E448ECBEC29F4F33904F /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + 42361CCA7EE61E9ECF248240D46300FA /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; + 423C28B97E7DA33075093A150B611AE6 /* UMPermissionsMethodsDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMPermissionsMethodsDelegate.m; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.m; sourceTree = ""; }; 4241AFA83AB806724D464D03F5808DBB /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; - 424E59C4F74F5D9FEC58EB8A0417BEB8 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; - 42789F8F1B2AD1FB439310641EDDB97F /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; 4284C13E0107188DC785753754385D52 /* StreamThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamThroughputTcp.cpp; path = rsocket/benchmarks/StreamThroughputTcp.cpp; sourceTree = ""; }; + 4294ADC52CAD14B81DE5D364BF4332DB /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; + 429E81C70FB1627BEAB071C56E303483 /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; 42A0F52C9215438BA3904E573B0890EF /* rescaler_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rescaler_utils.h; path = src/utils/rescaler_utils.h; sourceTree = ""; }; + 42B0FA4D0C81A84BABD6BF79E80D54FD /* RNFirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseCrashlytics.h; sourceTree = ""; }; + 42CEC327588106C76B062F4A34140ACC /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAccessibilityManager.h; path = React/CoreModules/RCTAccessibilityManager.h; sourceTree = ""; }; 42E30BF5CE842E55AEEC568063B8D31B /* PThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PThread.h; path = folly/portability/PThread.h; sourceTree = ""; }; + 42F5A0B87ADC713878A1F9951DA416B4 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; + 42F77A23ED4C373C3DC6188163D412D8 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; 42FD1E55CC5460FBEE20AFB73228F4D9 /* GDTCORClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORClock.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORClock.h; sourceTree = ""; }; + 43172E33D97ACB9262B3896A1C8EEA25 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; + 43216B6B4C1AEA1BD2A30C66CA5DA2E9 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; 43289003F43ADD8130C473D9EE7B1E19 /* DelayedDestructionBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestructionBase.h; path = folly/io/async/DelayedDestructionBase.h; sourceTree = ""; }; 433B2105FDE53C5CBB3D124CBA9AF726 /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = SDWebImage/Private/SDDisplayLink.m; sourceTree = ""; }; - 4354FD53164162840040324844BDCA29 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; - 436E2826F32B431657C2556FA61074FF /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; 43828C17499AC5864814AF1C88C540FD /* Flipper-DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-DoubleConversion-prefix.pch"; sourceTree = ""; }; - 4383417B4A71491BC74E2F1638CDC3EB /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; - 4389C794EF360A373970122BCE3E3B04 /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; - 438CFAEA08738C77DEFA64FF6895AF1A /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; + 4391A5FFBDF8ABD0DBF0BD40A41B7DA8 /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = ""; }; 43A7859468E03E02E0496C59CBF6861D /* Access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Access.h; path = folly/container/Access.h; sourceTree = ""; }; 43A9F53B173EA2381E51CAA6832ABD1F /* Flipper-Glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Glog-prefix.pch"; sourceTree = ""; }; 43B69FCD8D50501DDFA9BCDED9C89518 /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; 43BE5D34C125EE2F7DE250FDD2B61547 /* ScheduledRSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledRSocketResponder.h; path = rsocket/internal/ScheduledRSocketResponder.h; sourceTree = ""; }; - 43E10A08E51FDE22F2B27E6FD2D0E927 /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; + 43E4F1558AC479BE196BDD1CFC6902BA /* EXAppleAuthenticationButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButton.m; path = EXAppleAuthentication/EXAppleAuthenticationButton.m; sourceTree = ""; }; 43EE0B73152C4977E13E9D53721F35B0 /* FirebaseCoreDiagnostics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreDiagnostics-dummy.m"; sourceTree = ""; }; + 43F70EEC92DC6532FEB97B8FB47495B5 /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = ""; }; 43FDFB8A81364F8B51C37B2560E239FD /* ChannelResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ChannelResponder.cpp; path = rsocket/statemachine/ChannelResponder.cpp; sourceTree = ""; }; 43FEBEC8046768D8E5EDB05572CDBB62 /* ThreadLocalDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocalDetail.h; path = folly/detail/ThreadLocalDetail.h; sourceTree = ""; }; 4412B653F20312FC38D099057A287C9D /* MemoryMapping.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MemoryMapping.cpp; path = folly/system/MemoryMapping.cpp; sourceTree = ""; }; - 442F20D680362A19BEE6E307E407F4DF /* 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; }; - 44336000CC77A697F473138023CD4602 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 4422005A2570BE2F6D0A557FB2C06481 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 442EA89BCAF0FF088622BB0E7290853A /* RNFirebaseFirestoreCollectionReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreCollectionReference.m; sourceTree = ""; }; + 443BB3D0D8491A15B4E8DF3A73DE016D /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; + 443ED58974BE5CC32B09E74F5A784381 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 444C4CB3BA6D072ECE05A85E7B4AD55F /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; 445E1C327EF4E1176AC0B5382418D5FF /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = ""; }; - 4463766585E2B6DBB82FED87F7A45685 /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; 44897F3CFA9058AC66EA46BDE9D4E921 /* SKObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKObject.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKObject.h; sourceTree = ""; }; - 44A34EF8A3DF63476DA59F2D53176758 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; + 449186A1FD562F7DCB008783E13C8BCE /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; + 4491B07A5A45C84FDC154B2DFC264C3D /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; + 44A77B66CB563D3BB5FF97B8CBFEC42F /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; + 44B9D8C69D69194F6D4A1FD5B0FF9ACE /* 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; }; 44C8A9D7E27D52DB68228AE4A5EEAAF7 /* ossl_typ.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ossl_typ.h; path = ios/include/openssl/ossl_typ.h; sourceTree = ""; }; - 44D36755F64DC86FC5B660FBB5475A09 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; - 44D591BAAD65EC439B6F1A7304E89BD4 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; - 44DD7421AA84BA7B774B3EFE2250ECDB /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = apple/RNCWebView.h; sourceTree = ""; }; - 44EAA3EDED46FF71539A281AF4D1E345 /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; - 44ED88CBF5C8B32276B0726F04A9B9B7 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; + 44F9B6AFD75F2837103BC8793D42A32A /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = React/CoreModules/RCTWebSocketExecutor.h; sourceTree = ""; }; 4509075B648B1A4ABBF5CC9C07CA000D /* FireForgetThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FireForgetThroughputTcp.cpp; path = rsocket/benchmarks/FireForgetThroughputTcp.cpp; sourceTree = ""; }; - 450AFEEF0AA1876A3F9BF8D66DF22A12 /* RCTI18nManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTI18nManager.mm; sourceTree = ""; }; - 450FD5EDCCC149768DA8ED279D843C96 /* RCTSettingsPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsPlugins.mm; sourceTree = ""; }; - 453BEE2FDDDB6FCAC6FA2B914188273F /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; + 452F41A12ABBAAB84397380B42284D60 /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; 45416CE24440AC226668176D00E285BA /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; - 457A399CDA28385FA49BA8167A0217CA /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; - 459249E942D2FD50F651A22F80497889 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; - 45B6D745F1887A0E606CD8358C2E2862 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; - 45CB80B7AD42144BEA36D5928A84F76D /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; - 460E4DEF8032905E0F4A0F2C4E98DCA8 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; - 463E02AF901F4B917BFC3AC76F7C9FB5 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; - 464DC9CE552F7576266EBADC5015849F /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; - 468209B3D9E7F6D309269585FAC537A8 /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; - 46A907BB0135556D38312BEE62A0C3B4 /* RNDateTimePicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.xcconfig; sourceTree = ""; }; + 454B7DA6BA91FEB1C6431A46061AE923 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 45687295D331495FAC12FB8AA20733E6 /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 456B93874F92763985E86C307582D5DE /* RNFirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestore.h; sourceTree = ""; }; + 45739967460E2D1904354C494EDEEB86 /* EXVideoThumbnails.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXVideoThumbnails.xcconfig; sourceTree = ""; }; + 461AC52930C06809C3A0A91CCC3D7E5B /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; + 465454A21A09429BC53A1110206D6B71 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; + 4669A53C93BC1B653C57B87A2DD1CFFA /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; + 46A45D2EF0AD50250C14EC10A064ADF9 /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = ""; }; 46CACAFDC7683A8955912C018E916497 /* filters.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters.c; path = src/dsp/filters.c; sourceTree = ""; }; 46D770330A5BDDAA6FCDCF618C6EA47F /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; 46D9E9D657CC9AA80DDD166F57AB35A8 /* ANSCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ANSCompatibility.h; path = iOS/Crashlytics.framework/Headers/ANSCompatibility.h; sourceTree = ""; }; - 46E969FCD8BE80CC7A0BC72598694541 /* RNCAsyncStorage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCAsyncStorage-dummy.m"; sourceTree = ""; }; - 46EBA374352563CAA6026EE0F163A87B /* RNFirebaseAdMobNativeExpressManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobNativeExpressManager.m; sourceTree = ""; }; 46F3B9E5415F9B82E09D9820D439DEDE /* Subprocess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subprocess.h; path = folly/Subprocess.h; sourceTree = ""; }; 46F4719382C42FA298DC8726823D9D46 /* dec_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse2.c; path = src/dsp/dec_sse2.c; sourceTree = ""; }; + 46FC4C5A659A3EED85B9083A283C545B /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; + 4712A829EE1ADFA4F46D1872DA3A3A90 /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; 4713EAEA9D6383DD7339BE8807484191 /* ExceptionWrapper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ExceptionWrapper.cpp; path = folly/ExceptionWrapper.cpp; sourceTree = ""; }; 471F523A97739A5A43D77C7D24F81237 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; - 473B06EFC8025000815F2A178478157F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 47446E6FDCFAD179B4F5E48AA827CF35 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; - 474BC2E5DEC74C05178F6E0476989FA0 /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = ""; }; - 474DB0F722611816328CC014AB9BCF63 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; + 473D39B5852C9156257BE56DF22F3A38 /* RNCSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaShadowView.m; path = ios/SafeAreaView/RNCSafeAreaShadowView.m; sourceTree = ""; }; 47589F57C14460D5BDC99E69B4E10519 /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; - 4760EE72B1CEE4B1CC385435319105AD /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = ""; }; - 4763D50EC1B8BFE3DE35DEAFACEC16D3 /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; 47718F725E8AC098A2AB6FE3F4820058 /* TOCropViewController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TOCropViewController-prefix.pch"; sourceTree = ""; }; + 4771CCC3D05E5289CEBBA3375D768D88 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; 477454BA1818A04282869BFC8D046253 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/FirebaseAnalytics.framework; sourceTree = ""; }; - 4779773EF55D080D7D37F93B44724406 /* RNFirebaseDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabase.m; sourceTree = ""; }; 47870AF521D3DC75A055CAC41A8A11D3 /* lossless.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless.h; path = src/dsp/lossless.h; sourceTree = ""; }; - 47ABC6AB693D34D43108D5C78A31B43F /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; - 47B3E4F71019572CC50AE7FCEDFCA646 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; + 47B935784748CD8C29C62EF1B15E2040 /* RCTClipboard.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTClipboard.mm; sourceTree = ""; }; 47BBC2313A25AA337A8EBDB61F1E9426 /* pkcs7.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs7.h; path = ios/include/openssl/pkcs7.h; sourceTree = ""; }; - 47C7AD4A381985CD1A3659776721230E /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; + 47CEEEC269B05BDC532D4EA71D6E2901 /* RCTVibration.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibration.mm; sourceTree = ""; }; 47CF75D10934F39790AC9D0BD005293F /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; - 47EC3D6763499448EA190DC4E9EFB455 /* RCTSettingsPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsPlugins.h; path = Libraries/Settings/RCTSettingsPlugins.h; sourceTree = ""; }; 47F2E167D022EC3B2BBB539B5FC5B7B4 /* FramedDuplexConnection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FramedDuplexConnection.cpp; path = rsocket/framing/FramedDuplexConnection.cpp; sourceTree = ""; }; 480ACD8EB66689B1DB2A7EFC233EB866 /* near_lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = near_lossless_enc.c; path = src/enc/near_lossless_enc.c; sourceTree = ""; }; - 480DF966BAF372D6D54BEF2B856081DD /* react-native-safe-area-context.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.xcconfig"; sourceTree = ""; }; - 4821A2BC728337B5065B1480185C9D72 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRedBox.h; path = React/CoreModules/RCTRedBox.h; sourceTree = ""; }; + 4831228447E518D4B8D8BFB7333FFE97 /* EXAppleAuthenticationRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationRequest.m; path = EXAppleAuthentication/EXAppleAuthenticationRequest.m; sourceTree = ""; }; 48425DA2F01D82A20786D5E55E264A29 /* libreact-native-orientation-locker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-orientation-locker.a"; path = "libreact-native-orientation-locker.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 484FBA874A17D7148C4F3612F39F57FC /* RNCMaskedView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCMaskedView-prefix.pch"; sourceTree = ""; }; 48585445AE235AEDCD0FB7DD230879A2 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = "Objective-C/TOCropViewController/Resources/de.lproj"; sourceTree = ""; }; + 4865AD148FB95A16B139DE3AD0BB5331 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; 486B9CD622145C39FA6B9A49869C4CA8 /* ThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadFactory.h; path = folly/executors/thread_factory/ThreadFactory.h; sourceTree = ""; }; - 4872A4192F53CA0514FFD1C38F605F3B /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; - 4880F7901F9462D4EEEE3B8586CAF73E /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; - 4887C61A076F4297E7EC218B52CB90CD /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; 48927A4D44559D7320D6AACB0EC86314 /* ThreadedRepeatingFunctionRunner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedRepeatingFunctionRunner.h; path = folly/experimental/ThreadedRepeatingFunctionRunner.h; sourceTree = ""; }; - 48A0EA06DE8FBE826F65937BA555D504 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 489B2BE56ECB5369B8A21803E6CBA421 /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; 48BFF4507769ED087BF273D65AA632EC /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = ""; }; - 48D03C624A475988A737A006A113A787 /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = ""; }; 48DE2235F7876B7D827E04FB10D92127 /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/Exception.h; sourceTree = ""; }; 48EF4C8B5B8E6AC7B3B8A8E4EC37313B /* MapUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MapUtil.h; path = folly/MapUtil.h; sourceTree = ""; }; 48FF178F4A6064362BE104052C28F435 /* NSBezierPath+SDRoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+SDRoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.m"; sourceTree = ""; }; - 4902917D498A6B50F1CC8A63FC284F56 /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; - 4903B4BB6E4988D7C0DFE53CA04CE545 /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; 4905746AA215AA4A3BA3F59A0905C6B2 /* Expected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Expected.h; path = folly/Expected.h; sourceTree = ""; }; - 4938F4ACE687EF0BA1239C067F5C2F4A /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; + 491AED04763753D48BB1E360F814442C /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; + 4921921C7C64404DD7FF84797378B2BD /* CallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallInvoker.h; path = callinvoker/ReactCommon/CallInvoker.h; sourceTree = ""; }; 494B8F92D84B22C8489D80D4FDA8FC33 /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXImageLoader.a; path = libEXImageLoader.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 495A5EEC39F246A0D653BAFDC490350C /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; 495EEE7EC9CC941B2ED910F264DA5B2A /* FlatCombiningPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlatCombiningPriorityQueue.h; path = folly/experimental/FlatCombiningPriorityQueue.h; sourceTree = ""; }; - 497E9AEBEF0D663C31A57A11ED059DEB /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = ""; }; - 498C735C0DD0DD70289652F0489A7F4C /* NativeExpressComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = NativeExpressComponent.m; sourceTree = ""; }; + 496E921652C2248A6FFB1951C61E9A2D /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; + 4997FC565EB64A458E9459418736C6B6 /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; 499C4B4AFDCD3C0B51FBBDD25849E260 /* Flipper-PeerTalk.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-PeerTalk.xcconfig"; sourceTree = ""; }; - 49A7C2C40FE569C64E713C2B9744B650 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; + 49A408345DF37A714779AD3FFCBB21B6 /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 49AC4F1EDFD471A0178ED2F38D110BE8 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; 49B2130667FC877ECE76F0F609B82F7F /* Builtins.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Builtins.cpp; path = folly/portability/Builtins.cpp; sourceTree = ""; }; 49BBEED22BDEDA2833F3C2967601BC4B /* libevent_extra.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent_extra.a; path = lib/libevent_extra.a; sourceTree = ""; }; - 49C4A60375BDEBF6F42DF10F23547C50 /* EXImageLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXImageLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 49C954801764BA30B8837999C61E0088 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; - 49DB63552321F5EB6E8D67D9D3225A75 /* RCTRedBoxSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxSetEnabled.h; sourceTree = ""; }; - 49F32FA804DE69B9BF136B2B00E982F3 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; + 49C3C2D766AD5EBFBF77708CF363A786 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; + 49F37D41ACDCF417C3F20711F4D42ECC /* UMErrorCodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMErrorCodes.m; path = UMCore/UMErrorCodes.m; sourceTree = ""; }; 49FEA5D9BD36512D6DAF0305E454C21B /* SKSearchResultNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKSearchResultNode.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKSearchResultNode.h; sourceTree = ""; }; - 4A3B86524E138D9F36C6ABB751E7231E /* UMAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLoaderInterface.h; sourceTree = ""; }; + 4A1C7E7294D784E84D6A63A4ADF99834 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; + 4A400B04CC4314064FFD73A023EE9C4D /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; 4A4D65433A1D40E254CA23F0BC3B67C7 /* FileUtilDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtilDetail.h; path = folly/detail/FileUtilDetail.h; sourceTree = ""; }; + 4A5089756CA01445DAA8F58801683705 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; + 4A5D8F44DCDE87F173CBE63A075DB058 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; 4A694EE5ED5D9BAD6323EE82ACBC46FC /* RSocketRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketRequester.cpp; path = rsocket/RSocketRequester.cpp; sourceTree = ""; }; - 4A6A0169C7C620F5D591A8B275CF72E3 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; - 4A7FECA96FEB380EA071B4BFFFCB15A9 /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; 4A8A447263A0ADCDDC5832F1711C99F3 /* F14Set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Set.h; path = folly/container/F14Set.h; sourceTree = ""; }; 4A9111B998F6951B90BEEF4356A22BC7 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore.h; sourceTree = ""; }; - 4A98CFD13FCCF4E8B8421BD34D9821CB /* EXRemoteNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXRemoteNotificationPermissionRequester.m; sourceTree = ""; }; 4A9C870E415384C1941E5FEE0F27CBD9 /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; - 4AB1EBB47E53C76A8E3693A4D910C045 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; + 4AA5953CEC6B4F9133E614A9B1EDAF92 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; 4AB231ED9A140087BF5AA534E8D4B5E5 /* AtomicHashMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashMap-inl.h"; path = "folly/AtomicHashMap-inl.h"; sourceTree = ""; }; - 4AC46F45DA1D34DC0406E3439D485A29 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; 4AC69B228C927726F100BCC549ECD230 /* FIRInstallationsItem+RegisterInstallationAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstallationsItem+RegisterInstallationAPI.h"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h"; sourceTree = ""; }; + 4AD6C8ED2DA49566A7EF6CBB775EA267 /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; 4ADC6A713311A1017493308DF7F5603F /* dec_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips32.c; path = src/dsp/dec_mips32.c; sourceTree = ""; }; + 4B05EA68892A43B772F2291B520793E2 /* EXAppleAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppleAuthentication-prefix.pch"; sourceTree = ""; }; 4B0C45BCE792F8E95FD9ABE893893BC9 /* FramedDuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FramedDuplexConnection.h; path = rsocket/framing/FramedDuplexConnection.h; sourceTree = ""; }; - 4B0EA60829F0C9B8CA01FE04CD80A98F /* RNFirebaseAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAnalytics.m; sourceTree = ""; }; - 4B11BFB4326D12F848BD7A8912FA1F14 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; + 4B167CBAC7DC720B989DFA450011E400 /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = ""; }; + 4B16BF17465FB62E0B3AEEDF1623DC8C /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; 4B1B31D2AC8605E7CA304254F6F815DE /* cost_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_neon.c; path = src/dsp/cost_neon.c; sourceTree = ""; }; - 4B25090CF5A8EE2ECC9FB7F4AA565272 /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; 4B4B25C480CA6B76598CB40CEAF97417 /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = SDWebImage/Private/SDDeviceHelper.h; sourceTree = ""; }; + 4B4D3FE3A0902B85586AB8E1709522DA /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; 4B5210B14A763C0C46E3464166BFBBEB /* Time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Time.h; path = folly/portability/Time.h; sourceTree = ""; }; 4B52B751D77ED694DEA2432467C4AB0E /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; 4B52C4B2E727C1B5CD37B50A5AE89C5F /* Libgen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Libgen.h; path = folly/portability/Libgen.h; sourceTree = ""; }; 4B571F3F029DD2D6D83D36652A5A26DE /* SKScrollViewDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKScrollViewDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKScrollViewDescriptor.m; sourceTree = ""; }; + 4B653310B719340E4D330E97918BFC1B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 4B7280DC6FED85AD9589A66AC5647B62 /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; + 4B85BFB057BF705D4CEA4E38A4925154 /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; 4B868B975B17FD43D8795223F2C75789 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; + 4B9AEFF14A0B7431D172233187A20862 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; 4BA7636E5ED7A99CC81EDA96CECE6609 /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = ""; }; - 4BA7DBE6DCBED7C232ED5E202CAEEBA3 /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; 4BB48F690B5F5C5245ADDEFC1C2B0144 /* AsyncPipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncPipe.h; path = folly/io/async/AsyncPipe.h; sourceTree = ""; }; 4BC9F0A1EE59E920FB929308754C535E /* AtomicHashArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashArray.h; path = folly/AtomicHashArray.h; sourceTree = ""; }; - 4BF971D46BEF2E96744C234BEF055C9F /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4BD12A4E0E9E120671E3595F05564CB8 /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4BF56BE3E96D4B9ADB90A98D1091192B /* RCTVibrationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibrationPlugins.mm; sourceTree = ""; }; 4BFDEAE55F13AF514F755C6AEBAED37A /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = ""; }; - 4C10D118FCB5A1D44DAD24D400763822 /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; - 4C200DBA814F0F1BE533960ED7E88B31 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; - 4C2F3B2B18419478923F098C4C3F7CA2 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; - 4C380B27939E20F7DE2BD841434C5E74 /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; 4C79CE516CD630657363DDBDCA522425 /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; - 4CA81B64D64DCE78D97331CB4A14076A /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; - 4CAB6C95B2964B03804A8F197E0EAD6C /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; + 4CAE3FAD576DFEF9531504E3694317A5 /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; + 4CB1F7A50693D9CF3D1B8F89276D0618 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; 4CBC91A275622E387F639E5BDDA38294 /* SKObjectHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKObjectHash.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKObjectHash.h; sourceTree = ""; }; - 4CBCE895F8E553C0130CFBD89AD27A1A /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4CD7A9462008C27F5CF0A2FDA1F655E8 /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; - 4CDCD6A136E371FEBED4722B32D60D80 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; - 4CF0C8F232E34E452145999C6D84FE3B /* RCTNativeAnimatedModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeAnimatedModule.mm; sourceTree = ""; }; - 4CF98F4890E38089DA734E167808B5C4 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; - 4D13B4F891926B025701AF162EA83CC9 /* ReactNativeKeyboardInput.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardInput.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4D1CF3BFFC23DE95FBCAF929A29908F2 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + 4CD8D621D244624D31D23B1C91014A93 /* EXAppleAuthenticationRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationRequest.h; path = EXAppleAuthentication/EXAppleAuthenticationRequest.h; sourceTree = ""; }; + 4CFDB601BC80758537EFDD2CD961C812 /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; + 4D11220ABDB67C6C08B65828ED1B9A50 /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; + 4D30D8C74FFA15785DB15BC7AFBAA963 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; 4D3297C00E401A07F17B6B3F6A899B52 /* Array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Array.h; path = folly/container/Array.h; sourceTree = ""; }; + 4D38B1CF0BD847B29727942342B11073 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; 4D4387B5DEFD6C500A6EB7878ACEEDFF /* GDTCORTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransport.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m; sourceTree = ""; }; 4D448B892838AD09C2D3EF63EA7EA406 /* FlipperKitReactPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitReactPlugin.h; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.h; sourceTree = ""; }; 4D45168709ADC376EA8B431E1DDA9015 /* json_pointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_pointer.h; path = folly/json_pointer.h; sourceTree = ""; }; - 4D6BD65450C624EFCF56A701B8B07884 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 4D49C85A499B83A5304FA3A56A2B4282 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; 4D9974CBD930078B900874EECD585316 /* StreamThroughputMemory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamThroughputMemory.cpp; path = rsocket/benchmarks/StreamThroughputMemory.cpp; sourceTree = ""; }; - 4D9E9DA01B712B6C1AE9DFD958EEB593 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; - 4DA8FFD63A11DE004038642C959A1AFE /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; + 4DD6B706D7C83809F01C6C0B11777F78 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; 4DD859B7667F2DABB151D070B512AE66 /* OpenSSLHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLHash.h; path = folly/ssl/OpenSSLHash.h; sourceTree = ""; }; + 4DD8F5BBEF8845E9E86F103F6C46EAEB /* 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; }; 4DF42BF532FC18573523B1B1541B260D /* OpenSSLThreading.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLThreading.h; path = folly/ssl/detail/OpenSSLThreading.h; sourceTree = ""; }; 4E014C494E5AF4E2D3B95E59278A6E7A /* config_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_enc.c; path = src/enc/config_enc.c; sourceTree = ""; }; 4E01C0EB45DFE73C38812AAD0C34E7E7 /* ParkingLot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParkingLot.h; path = folly/synchronization/ParkingLot.h; sourceTree = ""; }; 4E0B54BC3A206AD1A540ECB89440B2A5 /* filters_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_mips_dsp_r2.c; path = src/dsp/filters_mips_dsp_r2.c; sourceTree = ""; }; - 4E313C1F8813EB82A89C8A1822911085 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; - 4E3EDCAEDE57D6F600816F83663FBA53 /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = ""; }; - 4E5EAA0F6A9E84FE2CAB239CDEE12A30 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 4E67473DCD12826E2CA3837583E9C9C2 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; - 4E7317E7709F95AD4EBE3D146EF52949 /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = ""; }; + 4E3187C6C948132009DB5543F9704A1D /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; + 4E3FD77131EA5EDCE0E84A962E4F4B4A /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; + 4E535088C379402A8A0165AE84AC64BA /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; + 4E686F63A3EC5D34AB3B20235ACBEA07 /* EXVideoThumbnails.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXVideoThumbnails.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4E6A5B0627CF2430FBEEDDDF9D3C6E43 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; + 4E79E7C4475819BE6183F64D6F78755E /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; 4E7BAD83EB8173C6E85EE46585F74AB1 /* TimedDrivableExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimedDrivableExecutor.cpp; path = folly/executors/TimedDrivableExecutor.cpp; sourceTree = ""; }; 4E8037656A7EA6390C835AFF7A2A5A14 /* SKEnvironmentVariables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKEnvironmentVariables.h; path = iOS/FlipperKit/SKEnvironmentVariables.h; sourceTree = ""; }; 4E8C8594A79A3396703CAEB947C0E080 /* SKButtonDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKButtonDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKButtonDescriptor.mm; sourceTree = ""; }; - 4EAE78FBD0E1720917B9B30E1494D853 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; + 4E8ED8A83DA5B53CBED456E31C005406 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; 4EAF7225D8D498E7D232AE1520E6CBD3 /* libRNFirebase.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFirebase.a; path = libRNFirebase.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 4EDA136A98B0D1CC8C14B696C3CA3288 /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; 4EE50DF2753D29D083173EACF2387EAA /* syntax_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax_enc.c; path = src/enc/syntax_enc.c; sourceTree = ""; }; 4EF5DD97AACA1860EB375EF5D474B603 /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = ""; }; 4EF993D3A2FE6B149FDC304C80E5ABF4 /* EDFThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EDFThreadPoolExecutor.cpp; path = folly/executors/EDFThreadPoolExecutor.cpp; sourceTree = ""; }; 4F0E80F5B80651483B200226F1AC7F0C /* OpenSSL.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSL.cpp; path = folly/portability/OpenSSL.cpp; sourceTree = ""; }; 4F165263816B6742FF0626215E359693 /* analysis_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = analysis_enc.c; path = src/enc/analysis_enc.c; sourceTree = ""; }; 4F1CD909714A0407163E8BF5BDEC08C8 /* FLEXNetworkTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkTransaction.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkTransaction.h; sourceTree = ""; }; - 4F3A1AA4799D64BC0CD42833FEA073A0 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; - 4F46CD75880689900CCAE3953234155D /* RCTBlobPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobPlugins.mm; sourceTree = ""; }; 4F4C3DDEFA9C202FF1A5B1F8644FBA4D /* IPAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddress.cpp; path = folly/IPAddress.cpp; sourceTree = ""; }; 4F51D848138A0C792F5CF514F90242E8 /* Combine-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Combine-inl.h"; path = "folly/gen/Combine-inl.h"; sourceTree = ""; }; + 4F5764F79EDB89B2E56B1DC234C9CDBD /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; 4F5DD97F8E6E4C0708077F62E6A6E922 /* CodingDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodingDetail.h; path = folly/experimental/CodingDetail.h; sourceTree = ""; }; - 4FABC4583A03AFF3425D5AB3E2858898 /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = ""; }; - 4FCF17466F0DCA386762F8FED8C852E0 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; + 4F9CFEA5DE5CD59C3161B14BC08A7D4C /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; + 4FA133FF443545FD679E492E568820B6 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; + 4FC3B717C83FAC114AB040CD800E0E06 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; 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; }; - 4FFE70B961CBDF7B7F2617C1ADD9EC53 /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; + 4FFCF1FC0664854C3FB32F39781917B1 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; 4FFFB836871837E3F0F105DF572CA9D8 /* GCDAsyncUdpSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncUdpSocket.h; path = Source/GCD/GCDAsyncUdpSocket.h; sourceTree = ""; }; - 500EE510AB695EB73B13EE9C3BFA1420 /* RCTView+SafeAreaCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTView+SafeAreaCompat.m"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.m"; sourceTree = ""; }; 501080DAE21711CE6E8FADCE54B0D5D5 /* UIColor+SDHexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+SDHexString.m"; path = "SDWebImage/Private/UIColor+SDHexString.m"; sourceTree = ""; }; 501527DF2B51A182FCF38F92501CA6FD /* SharedPromise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SharedPromise-inl.h"; path = "folly/futures/SharedPromise-inl.h"; sourceTree = ""; }; 5016EEF9A56A2CD15C954059F1487671 /* objects.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = objects.h; path = ios/include/openssl/objects.h; sourceTree = ""; }; - 501A9BC73EA16BFC1100B7CD8B4E6299 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 501799D18FF728DE0379BD277745DE90 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; + 5024867E4249A0B59A14EEC601A826C8 /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; + 5027F0CC646A6516D16F1A731BCE3023 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; + 5048C882B6B24ACED251F005937C600C /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = ""; }; + 5050A1FCDE105C0CA29E4FD8D2768331 /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; 5062F65CF90760ACE346693A81DC753F /* ExceptionWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionWrapper.h; path = folly/ExceptionWrapper.h; sourceTree = ""; }; 5092168409DB8012F9B2825897B078FD /* TimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutManager.h; path = folly/io/async/TimeoutManager.h; sourceTree = ""; }; 50ABB863B576FFD6C6CA53511D921D2D /* Dirent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Dirent.h; path = folly/portability/Dirent.h; sourceTree = ""; }; + 50AC756E0E949F216873FC9F7F3C7DF6 /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 50DAF5A9BC41E497F4DAFAE985C768B3 /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = ""; }; 50E24753E2BF7235A9180BA697DF606A /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; - 50E2FAE6557ADB0DE69C15A5A8ECBD56 /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; 50F122E5AEEB0232B93BD906033A1B59 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; - 510EE4B52831547FE4C81D061693AC7B /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = ""; }; - 5151CE307B385AE5FFB0C4860E43E725 /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; - 51650E0D93550CD76B8B4A39FB44A199 /* EXVideoThumbnails-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXVideoThumbnails-prefix.pch"; sourceTree = ""; }; + 510DE00B6A6C5033471591E3A351D1AA /* RNDateTimePicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.xcconfig; sourceTree = ""; }; + 512B8149A1DDC202F6AE37A0577E9EB2 /* UMErrorCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMErrorCodes.h; path = UMCore/UMErrorCodes.h; sourceTree = ""; }; + 513CCD42219FDB82C128464C0AD3C6CF /* RCTImagePlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImagePlugins.h; path = Libraries/Image/RCTImagePlugins.h; sourceTree = ""; }; + 5153E4056ECE5A55050793F2F68FFE44 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; 51674CEE544BAFE4827F0D6B40061039 /* TOCropViewControllerTransitioning.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropViewControllerTransitioning.m; path = "Objective-C/TOCropViewController/Models/TOCropViewControllerTransitioning.m"; sourceTree = ""; }; - 519E60F210A4D0FBF513E0A6BD2CE3B3 /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; - 51AA1D7606FC15F2B0A46B782BB51B3C /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = ""; }; + 516A725FD2FA0C22DB6B7DB0B99F417C /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = ""; }; + 517ABDB6A1D22F90BC800E73D1E05B81 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeART.a; path = libReactNativeART.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 51D92DB69D49FE06B70EB88A24CEAB3B /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = ""; }; - 51EADEF91B7B886DA76E5CD35A5254EB /* RNFirebaseFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFunctions.h; sourceTree = ""; }; + 51DECBC4E486E8A8C1C355E6C19A8843 /* RNCAsyncStorage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCAsyncStorage-prefix.pch"; sourceTree = ""; }; + 51EDE4A352C03CEEFF24BC91E49758F7 /* react-native-safe-area-context.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.xcconfig"; sourceTree = ""; }; 51F04E2D9A8DF407264771A7B6DB295D /* GDTCORTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORTransport.h; sourceTree = ""; }; + 5203E8481C68C7F88B05A6095736E0F2 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; 5210F187C4D7354884092134D73C6EB0 /* CString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CString.h; path = folly/lang/CString.h; sourceTree = ""; }; 521CD7F02EEA41315FD805AB120C0A74 /* backward_references_cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_cost_enc.c; path = src/enc/backward_references_cost_enc.c; sourceTree = ""; }; - 522A67FF6DEF458E98CF38C1DDE3CE3E /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = callinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = ""; }; + 522A8FF859ABCC748887C4355C5DD8BB /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = ""; }; 5239E8274D8C6BBA02745A0F60FBA5C7 /* FlowableObserveOnOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableObserveOnOperator.h; path = yarpl/flowable/FlowableObserveOnOperator.h; sourceTree = ""; }; - 5241F6B1EC453465B9D3899EC8B1A83E /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; + 524F9C9E4189025DCA5E843BA359C667 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; 528105474DED71A798CA300EF88F3691 /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULApplication.h; sourceTree = ""; }; 528FBF3A38050FAB0D15ACE839634B1B /* Try-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Try-inl.h"; path = "folly/Try-inl.h"; sourceTree = ""; }; + 52AEAC0B41502A6E3712BEB90D9E8EC6 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; 52BB66794D5CF468F90579F021C92C04 /* Malloc.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Malloc.cpp; path = folly/portability/Malloc.cpp; sourceTree = ""; }; - 52D5A4999CBC938C3EB96C5EB0DC4C53 /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = ""; }; - 52D997BDD7AFCA491005AA6906499E08 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; + 52C61D7A22F52E9650234D81BBB72159 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = ""; }; + 52D70E6A6AE650734FECF0BA7B5B3005 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; 52EBF71E699CB05470D3A3443B9252E7 /* SharedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SharedMutex.cpp; path = folly/SharedMutex.cpp; sourceTree = ""; }; + 52F3D7704D7909815C5F8B22E38B57D8 /* RCTAppearance.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppearance.mm; 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; }; + 53126359D02D735A3E1AC5815EF5ACB5 /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; 53339968D7BE0B7483D50FAB1177B806 /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/Math.h; sourceTree = ""; }; - 5398671EB6C01110E81BA064933D8CE6 /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; + 533A436110B2A43D96258CDCDC425754 /* EXUserNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXUserNotificationPermissionRequester.m; sourceTree = ""; }; 53987FF53060DC7928984443DC058F56 /* FIRInstallationsStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStatus.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h; sourceTree = ""; }; 539C672DA8001551E03AE7077FE7900F /* FBVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBVector.h; path = folly/FBVector.h; sourceTree = ""; }; - 53BF5156EB033D0CE1D6176F47450F75 /* UMPermissionsInterface-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMPermissionsInterface-prefix.pch"; sourceTree = ""; }; + 53BA2EEBDACA3F00B86D18D7ED315D3E /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; + 53BD81CD8513B30AA00AC0C699A9998F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 53D7F6BFEC09B23AD74FFD107A935416 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; 53F8CC267E4F45BDC0AE8A7DF8F1875A /* AtomicStruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicStruct.h; path = folly/synchronization/AtomicStruct.h; sourceTree = ""; }; + 5401F36DD46724F06EC804A065EE1E28 /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = ""; }; 54105DAE291928E7EAE8CCB1DA55853B /* IOBufQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBufQueue.h; path = folly/io/IOBufQueue.h; sourceTree = ""; }; 54206605F2A52BE5BA373E192791E240 /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = ""; }; 5427922F1C6F6A3813320CC20FB58D51 /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; 5436E0D21E3301A5E72DFF5629C3C12A /* dh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dh.h; path = ios/include/openssl/dh.h; sourceTree = ""; }; - 5441B4C5ADD574239F61F0C1050B1BF1 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; 5448E1EBD4A4EC32710F6DCB92875E3E /* SKEnvironmentVariables.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKEnvironmentVariables.m; path = iOS/FlipperKit/SKEnvironmentVariables.m; sourceTree = ""; }; - 545CF27041459F6DC7BF2DB9D86CD210 /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; 5490A4EF5B776FDB6A7B0FE97DF2CD88 /* Optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Optional.h; path = folly/Optional.h; sourceTree = ""; }; 549EB2E10D01D2B5BB81AE952D7495F4 /* engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = engine.h; path = ios/include/openssl/engine.h; sourceTree = ""; }; - 54A7710218923FBE9D86D5C914EEE935 /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; - 54B3E0CEA29CC571D11A364AD4711081 /* UMErrorCodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMErrorCodes.m; path = UMCore/UMErrorCodes.m; sourceTree = ""; }; + 54A3463CC32DA92D00E4D68BA05B415E /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; 54BAA365514E4531F9A6F30FDD09B7CD /* lossless_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_sse2.c; path = src/dsp/lossless_sse2.c; sourceTree = ""; }; 54C5B61685E18774870C6D33B017C34D /* CocoaLibEvent.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaLibEvent.xcconfig; sourceTree = ""; }; - 54CD452C01F10208A6B014EED82F7FDC /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; + 54D49797DB034BD9AFCF33501341C011 /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; 54F0EBC3C7D804136FA44144E2525C9C /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/gen/String-inl.h"; sourceTree = ""; }; + 54F82C1E638911B9626F6A00BAF5B246 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; 55057364D1B31884FD509434B07AFC70 /* ReadMostlySharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReadMostlySharedPtr.h; path = folly/experimental/ReadMostlySharedPtr.h; sourceTree = ""; }; - 550E11119FDC392C02215EF9CB4B944F /* RNCSafeAreaViewMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewMode.h; path = ios/SafeAreaView/RNCSafeAreaViewMode.h; sourceTree = ""; }; - 55236396A55D0926763EE84C72EDDC25 /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; - 55340EED345363477EF6B0438936AE88 /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; 55446750D23DEC41D551540FA5A25403 /* dec_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_neon.c; path = src/dsp/dec_neon.c; sourceTree = ""; }; 55458DAFBE268090431885279A793745 /* Subscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscription.h; path = yarpl/flowable/Subscription.h; sourceTree = ""; }; - 5568E3866E3B4DFC5178DC5C54F13503 /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; + 554B22F03906055DC4B73FDEE5372239 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; + 555614C4441CCF93180DF6410C9F48EA /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; 557D102B219E85522190E096C43E8104 /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/synchronization/detail/Hardware.h; sourceTree = ""; }; + 557D849BDD58B5EDD349B0A4B70B353F /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; 558DC40DA7E7A651E3445C0FD7432C12 /* AsymmetricMemoryBarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsymmetricMemoryBarrier.h; path = folly/synchronization/AsymmetricMemoryBarrier.h; sourceTree = ""; }; 5590AA1C00F0472D5C2137DBFD262D8B /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = ""; }; - 559BBC19F2C72D1E5847FE12880CC350 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; - 55B584D504D0EBBCB3ADE54119D0FA67 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; - 55C26A692C6E7B1A28C474303B2228AD /* RCTNetworkPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkPlugins.mm; sourceTree = ""; }; - 55E40C474A1B8A188FA0EBC0D7B1454C /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; - 56015852126C5BEE74215276534C3B92 /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; - 560EC7B7328E44C765D557C465B7C2E6 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; + 55A1D43E300473C503149B12A5DF80D5 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; + 55A754F94E16C39635E2AF9354FBFA4B /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; + 55C8AA679A3AD6B024B4E86F3ADE1654 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; + 55DED3FBCD9CA821EF7A18DF058FC1EE /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; + 55E8A6E0210B59074AACE28BDB6B9E52 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; + 56053D89CCBFA0BA3CDE1D02E7595E6B /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; + 560D612F81C9E8306A80EFA23F21AFF3 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + 5613065B221600F128B6FF6153943DAD /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; 561942E67089539146C0C4ACD62F6AE7 /* fi.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fi.lproj; path = "Objective-C/TOCropViewController/Resources/fi.lproj"; sourceTree = ""; }; - 563AEB557D8D49F5930222EC826BF462 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 56329E2231A05D55C0A5FF45601A5F03 /* BannerComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BannerComponent.h; sourceTree = ""; }; 5647B093DEA4FD66B05EBBDA403050D7 /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = ""; }; - 564893FF9249E9ECE45B1F5E1A0DB0F3 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; + 564AA92D57D9228644E3BE9F170936B2 /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = apple/RNCWebView.m; sourceTree = ""; }; + 564DEFDF58ED06E037C757714E253443 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; 5658FED65C334121069567CAB12E1A88 /* Firebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.xcconfig; sourceTree = ""; }; - 56603BE6D3B6D9CA90D7AFA32B2E0D34 /* RCTImageURLLoaderWithAttribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoaderWithAttribution.h; path = Libraries/Image/RCTImageURLLoaderWithAttribution.h; sourceTree = ""; }; 566D252641C4C2EB62C7455139BB71D6 /* Launder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Launder.h; path = folly/lang/Launder.h; sourceTree = ""; }; 56722B3CD28973C29746EFC85B194276 /* SingletonStackTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonStackTrace.h; path = folly/detail/SingletonStackTrace.h; sourceTree = ""; }; 5678C9D9DB388DA83DB82B80263EC63E /* SysStat.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysStat.cpp; path = folly/portability/SysStat.cpp; sourceTree = ""; }; - 5687C0F3CD1FE7DCF6A6AFFBABEF0297 /* react-native-safe-area-context-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-safe-area-context-dummy.m"; sourceTree = ""; }; + 567A0387E0B73D92544B9B6AE5BD82B3 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; + 568D062A0FF6D94B39E569F10DE6AD41 /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; 569F9E9198C1B4D2BBC78F62ECD1EA31 /* FIRInstallationsAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAuthTokenResult.m; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m; sourceTree = ""; }; 56A73D61D5673B89D78F2F6B02D77AD4 /* libwebp.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.xcconfig; sourceTree = ""; }; 56A76614CC57F364D865AE803573465F /* CMakeLists.txt */ = {isa = PBXFileReference; includeInIndex = 1; name = CMakeLists.txt; path = rsocket/benchmarks/CMakeLists.txt; sourceTree = ""; }; 56AED561EB3A3264573F7686989004A4 /* FlipperKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlipperKit.xcconfig; sourceTree = ""; }; 56CC3C3AB2AC0E9C53DC1B8DC9122BB4 /* StringKeyedCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedCommon.h; path = folly/experimental/StringKeyedCommon.h; sourceTree = ""; }; - 56D4EACA530A4C0E33C8B1F52968893B /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; - 56F14E5E776D7B19B46DF94B1F6742C5 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; + 56E325018147BA656AC7A8A93CB4E276 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; 56F60D5152237E7C75B595341DC35946 /* quant_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_dec.c; path = src/dec/quant_dec.c; sourceTree = ""; }; 57077BC8832B77EB3280A03E94418B43 /* tr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = tr.lproj; path = "Objective-C/TOCropViewController/Resources/tr.lproj"; sourceTree = ""; }; - 570CF44B3BC9B3E2801722C618A8E01A /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + 5716A6D1621B8CE34399740BD56D3A5A /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; + 57171E8592D216A0BCACF19A6FCE78FB /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; + 571BAD26D9BC6F164E5EB00F633B8668 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; + 57339AC3E4854CA0132274F301561DC6 /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = apple/RNCWebViewManager.m; sourceTree = ""; }; 5737A805379DB8158A0D0548C1324DC8 /* ConnectionAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionAcceptor.h; path = rsocket/ConnectionAcceptor.h; sourceTree = ""; }; 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNCAsyncStorage.a; path = libRNCAsyncStorage.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 57399FBE270C76AC3CEA2B00EB0352C8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 573E597027274BC29EBA777763EDC41F /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; 5777A47CB1785ED141BBA4A97C5ED417 /* SysTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTime.h; path = folly/portability/SysTime.h; sourceTree = ""; }; 57838D2006A1F401A3179B931C3A417F /* rc4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rc4.h; path = ios/include/openssl/rc4.h; sourceTree = ""; }; + 5787EFC5AEE0F00EE6CA2F88DF3F334D /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; + 578E76A091CE645BF475F243B3511735 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; 578E7DE2903207C8DC9A9E617D70D24E /* PTChannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTChannel.h; path = peertalk/PTChannel.h; sourceTree = ""; }; - 578E7FABF78F4B71F81A2530E4D2B393 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; 57A2682F160B9C465AE15810B9B19680 /* Sse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sse.h; path = folly/detail/Sse.h; sourceTree = ""; }; 57B1BBC643E020C8DFA80AEB7F9E636A /* Pods-ShareRocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.debug.xcconfig"; sourceTree = ""; }; - 57B1EF4537388B47E351FE6E8BE007AE /* RNFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebase.h; path = RNFirebase/RNFirebase.h; sourceTree = ""; }; - 57C1D0033FCD6C917A9C222F068771BA /* RCTAnimationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationPlugins.h; path = Libraries/NativeAnimation/RCTAnimationPlugins.h; sourceTree = ""; }; - 57CC54FED6E3BD09BB3C35419FE88DE3 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; + 57DC9EA4D5833A0806D27ADB335ED964 /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = ""; }; + 57F56536E891B238679FB9405792E45F /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; 580CED7C9849AC631ED1934006A0AB0A /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = ""; }; - 580D5C6E95E4C416ED95656E884CA836 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; - 5842DB1199154EBA3E343304048164C1 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; + 5856E498F87DC64E56AF486736B65248 /* BugsnagPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagPlugin.h; sourceTree = ""; }; 5857793AC1B20D235A93893B55D4E024 /* vp8_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8_dec.h; path = src/dec/vp8_dec.h; sourceTree = ""; }; 5859B658E09A55DFE853367E281C57CE /* SocketFastOpen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFastOpen.h; path = folly/detail/SocketFastOpen.h; sourceTree = ""; }; - 586423E8C1E30C89F661FB5B859B6400 /* RNFirebaseNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseNotifications.h; sourceTree = ""; }; 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 58854BC93F03FC6A4441F422C42E5A69 /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = ""; }; 588CA1824CB3E799042E75E9D3023580 /* ts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ts.h; path = ios/include/openssl/ts.h; sourceTree = ""; }; 58A8142F2BD32A0A573F388E0EB7C982 /* GDTCORTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h; sourceTree = ""; }; + 58B93084D8745E5D0FB2F92B61D24F47 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 58CE32F77928341D12176EB9E0F9248A /* ConcurrentBitSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentBitSet.h; path = folly/ConcurrentBitSet.h; sourceTree = ""; }; + 5910B455F2DD57F89C0663BA82E590FB /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; + 59149DB4D7BD69A028948BDB37206DF2 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; 59211E17E611B8A20CE3C0D35EB995C4 /* TLSDefinitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLSDefinitions.h; path = folly/io/async/ssl/TLSDefinitions.h; sourceTree = ""; }; - 5921D7E19DAD65DBFDC7FF5F4C0037AD /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; 59444F5F124341D5AD914F255E9BFF8F /* FrameSerializer_v1_0.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameSerializer_v1_0.cpp; path = rsocket/framing/FrameSerializer_v1_0.cpp; sourceTree = ""; }; - 5949779F38EA697885C4FE2CA5BF84D9 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; + 5954A915F296FDBAE51B798050C998FB /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 595D8F4E3C8DC70C61DEEE557893DE27 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; + 5962B2E1763F0298920CAE87F9F6365D /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; + 5963C665BE241CBBFBF347C93599A890 /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; + 596AE8F30AA47CA16D08FE5E41198F0B /* 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; }; 597D02897C3C579AA756348F14235739 /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; 597EA40B78393D4EB5A9FCE335545FD9 /* CLSReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSReport.h; path = iOS/Crashlytics.framework/Headers/CLSReport.h; sourceTree = ""; }; - 59A449755E5623E3F3A658CE870D8B15 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; + 59A38D76ECF6D3A2CF7979FB90B2B2E4 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; 59B674B77C96C8B6F4087DDB5CE58ADD /* Flipper-RSocket.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-RSocket.xcconfig"; sourceTree = ""; }; - 59D4C2A89439A00AE1064910F7D0E73C /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; + 59E809009F32F76F6EC89317B89936F2 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; 5A0CD4826E47ADD06ECE185411BB6E03 /* ConnectionContextStore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionContextStore.cpp; path = xplat/Flipper/ConnectionContextStore.cpp; sourceTree = ""; }; - 5A15E6153EC2B2E49A16449F0C735FEB /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; - 5A272D2C380C2A684AD218B6946C09A5 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; - 5A453CEEB4F76F588A7696C94988C9B3 /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; + 5A21B730283D7A49ECA943EC16683056 /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; + 5A3E41456E3005A4422ADF8711F097AF /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; + 5A4F53AB3445FE3C43E2B355A096F6D5 /* RNFirebaseAdMobBannerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobBannerManager.h; sourceTree = ""; }; 5A5DEB2B58509094B3E9E367677E5F22 /* SKMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKMacros.h; path = iOS/FlipperKit/SKMacros.h; sourceTree = ""; }; - 5A6DCD5044E6054D97DE4D6D9F91953F /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; + 5A81C8324F3038F8CCD8CC6BD84FBE51 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; + 5A86E589764F933047B0A925C146591B /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; + 5A8E5DA5F58F53A59DF787F4DBDA183C /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; 5AB07D311516444EA0BAB4263D3B168B /* FirebaseCoreDiagnosticsInterop.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnosticsInterop.xcconfig; sourceTree = ""; }; 5ABEC9560BE067BBE7FBDF9DBE45B2F9 /* UIImage+CropRotate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+CropRotate.h"; path = "Objective-C/TOCropViewController/Categories/UIImage+CropRotate.h"; sourceTree = ""; }; 5ACAACE3DEF9B42B05A7E23CB9EB6DEC /* cpu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu.c; path = src/dsp/cpu.c; sourceTree = ""; }; + 5AE8FFCD5A5113CC66524CC9F466CEB7 /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = ""; }; + 5AEC85FB0ECEB95C270BBC108B611442 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; 5AFE1689B228874B6E1B0D1D4AB2D9BC /* FlipperDiagnosticsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperDiagnosticsViewController.h; path = iOS/FlipperKit/FlipperDiagnosticsViewController.h; sourceTree = ""; }; - 5B041A42D0A700C4788205E2676C57FF /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; - 5B2BA726DFF2CA5AFAFCB606A31E1705 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; + 5B2843009ACC56D555D6CECDF3265A53 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; 5B33486157295DFF710C44DBFAB9E184 /* FlipperClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperClient.h; path = iOS/FlipperKit/FlipperClient.h; sourceTree = ""; }; 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYogaKit.a; path = libYogaKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; 5B4516089BB11FCA44421395E3EC6C69 /* SKHiddenWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKHiddenWindow.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKHiddenWindow.m; sourceTree = ""; }; - 5B4693B820DF65291800F0BB5201F2BC /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; - 5B52090EBAA980BBDDFC4F0036383897 /* ReactNativeKeyboardInput.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardInput.xcconfig; sourceTree = ""; }; 5B5B5E49B3D85486AD01FA8E1934BD85 /* ResumeIdentificationToken.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ResumeIdentificationToken.cpp; path = rsocket/framing/ResumeIdentificationToken.cpp; sourceTree = ""; }; 5B5D09E4561934D0AB01334E07B5EC77 /* rescaler_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips32.c; path = src/dsp/rescaler_mips32.c; sourceTree = ""; }; 5B5EE82E183F598BAD2EEFA16B129B91 /* SKTouch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKTouch.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTouch.m; sourceTree = ""; }; - 5B60E5A617C4376BA7FD9E6EF8C5EB36 /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = ""; }; + 5B6158AB2550CBA102DCA35CC0DC2013 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; + 5B6435866EEF6A5BB90B65DE63BD83B3 /* EXLocalAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXLocalAuthentication-prefix.pch"; sourceTree = ""; }; + 5B64365F2CE08876FF36A80AA1783DA8 /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5B6D80A8766FB5EE8F0249FBC6411379 /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; 5B72F9A54777D6A6FFE5D29E292165D7 /* LifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSemMPMCQueue.h; path = folly/executors/task_queue/LifoSemMPMCQueue.h; sourceTree = ""; }; + 5B7F0E33C1B2FD4761AFBF32AF3615FB /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; 5B8476005BB20BAB7A14348616D03458 /* hmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hmac.h; path = ios/include/openssl/hmac.h; sourceTree = ""; }; 5B9E38976963E0512130EB8028E09BAF /* evutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evutil.h; path = src/evutil.h; sourceTree = ""; }; - 5BF57A39218B9E02559205BD8108171F /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; + 5BC8D48210994F43DAE85577F073A325 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; + 5BED72909D9D39B0BB048E44A539BCCF /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; 5C091FB67164F621B15BB83DF4194BE7 /* TOCropViewController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TOCropViewController-dummy.m"; sourceTree = ""; }; + 5C14E98BA965F968CFF8E6D76B8CD33C /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; + 5C1C3620764CF08A1D6E8EAC6C0012F3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 5C2795AF2B789927A411944CEFE2E4A9 /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = ""; }; + 5C2D2383D87C2AA4BF53D7569872A92E /* RCTRedBoxSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxSetEnabled.h; sourceTree = ""; }; 5C3D20E580F0CADC319B189ECC794295 /* Foreach-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Foreach-inl.h"; path = "folly/container/Foreach-inl.h"; sourceTree = ""; }; + 5C4190CC70591447D20794606785FDE8 /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; 5C5A558ACAC365E4FF1ED7A5F5182363 /* http_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_struct.h; path = src/event2/http_struct.h; sourceTree = ""; }; 5C74E586D5AE077F987D557B3AB770A4 /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/Private/FIRComponentContainerInternal.h; sourceTree = ""; }; - 5C9213CB9BA11B93640DB8311E10DCB0 /* UMAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppLoaderProvider.h; path = UMAppLoader/UMAppLoaderProvider.h; sourceTree = ""; }; - 5CD1B6365369EEA9B680CF4D1924340D /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; - 5CD859C1D7B68AC31771AF0D074966DA /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; + 5C756581AB88D6880122C38CC658BCB0 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; + 5C90F222FC5C01B89F9E67EB26D92DE6 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5CA21ACF7962D1714E14223EB2D8BCDF /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = ""; }; + 5CE3DF498DAECCDBB770650734DEA869 /* RCTImageStoreManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageStoreManager.mm; sourceTree = ""; }; 5D032924FB29978E9F59D492EF7813E6 /* Payload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Payload.h; path = rsocket/Payload.h; sourceTree = ""; }; - 5D0C72EA1C1B71ECCF4254E8B27462CA /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; - 5D0EFD62B842697EABB07903F8065FC0 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; - 5D442FBD4686B89CE6183D846DFA6792 /* RCTScrollEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollEvent.h; sourceTree = ""; }; + 5D23D21EB4044F0DCF536F1F68A0615F /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; + 5D2517773353E46D53822F93FCD03A52 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; + 5D2B02C30C03507A4EC318CD198E032A /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; + 5D43CF61D8784FE6287055564C6F9EB4 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; + 5D5395056415CAF584F742E8375FDA75 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; + 5D7193CF5CA94828C6A59C143EB401FD /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSettings.h; path = React/CoreModules/RCTDevSettings.h; sourceTree = ""; }; 5D82F2C393E23EC158471DF71457891E /* SKViewControllerDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKViewControllerDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewControllerDescriptor.h; sourceTree = ""; }; 5D930C8097F51F6E54956A6D4D9DAA8A /* SKObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKObject.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKObject.mm; sourceTree = ""; }; - 5D9C142FA045994E18AF7EB623943D58 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; - 5DA45948F3B264B4592B83A103D4DB40 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 5DAE76D5E6A4A89DDADCBA7C79C9D2F9 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 5E010882BE98A85E0CD8F121871D0AF5 /* AtomicUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMap.h; path = folly/AtomicUnorderedMap.h; sourceTree = ""; }; - 5E34EF295CCEA2DC2DEA03740A6B6895 /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; - 5E36E388D5D9AED3B87265E9DE468D1B /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = liblibwebp.a; path = liblibwebp.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 5E46A3A8AA873E918E25622F55AB0003 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; 5E61C8595E6BF0B87BDBC62507DE05D8 /* json_patch.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_patch.cpp; path = folly/json_patch.cpp; sourceTree = ""; }; - 5E654BD64EA4CF0D62614F245EBE844D /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = ""; }; 5E70FF84FAD05DBBCAD01E729DAE8311 /* TOCropView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropView.m; path = "Objective-C/TOCropViewController/Views/TOCropView.m"; sourceTree = ""; }; - 5E822BEB2C4FCF710BBDC16671A1AF25 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; + 5E7CB605C99232859478956B9F5666B1 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; 5E82C8E592B07968E3A2267B265BAE21 /* ThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocal.h; path = folly/ThreadLocal.h; sourceTree = ""; }; 5EB737C1B839F683C08D055F496DC54C /* CpuId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CpuId.h; path = folly/CpuId.h; sourceTree = ""; }; 5EB89403ACA9BA2901EA4BB49F78A771 /* blowfish.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blowfish.h; path = ios/include/openssl/blowfish.h; sourceTree = ""; }; - 5EC491942FBCB9E18C4D191EFA0AC2D7 /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; - 5ED74A6AC6550A6F60791194E337B0D9 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; - 5EE38FF38DA559E6478EF3F5E2F17567 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + 5EE0EABCCC36003AE9A066A1311388C6 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; + 5EEBBF2B34ED0914BFAEA5DEDD08585C /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; 5EFE392A6969AF30D2B7B04742DEE6BA /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/memory/Malloc.h; sourceTree = ""; }; + 5F010C588037ABA18A5891B2D87C817B /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = ""; }; 5F0417945AB952A0C44A19AF56A8BCE9 /* GCDAsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncSocket.h; path = Source/GCD/GCDAsyncSocket.h; sourceTree = ""; }; 5F0E4A6A2028ED2E241F2C7F4B7F2627 /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; - 5F11B9B92C0E35FBA7898DE7A2A81B02 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; 5F2C9D4A4102266BF3CBD25EF6756A16 /* Pods-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.debug.xcconfig"; sourceTree = ""; }; 5F49593BAECB2E8DA1B8BA33E680366E /* UIImage+WebP.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+WebP.h"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.h"; sourceTree = ""; }; - 5FBD98780BF1CA197F9E5A39E9957DDF /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; + 5F5E46E13226ECF39A9863F5EC501736 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; + 5FAEB419F66E1976F7843B1EC7F1F451 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; 5FD15DBC020C66E3FA510D822817AE79 /* SDWebImageWebPCoder-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImageWebPCoder-dummy.m"; sourceTree = ""; }; - 5FDC1CE06F0458615CD0B74AB05F0BA7 /* RCTTiming.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTiming.mm; sourceTree = ""; }; + 5FD47A2CFA0C7E037D8822F94D6775F8 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; + 5FF124BFE4789E564508AA5A571693E7 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; 5FF7FFBB3A1C00A5DFABFDDDE2BBEE7F /* TOCropToolbar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropToolbar.h; path = "Objective-C/TOCropViewController/Views/TOCropToolbar.h"; sourceTree = ""; }; + 5FFF96ABF69D0252C424846E63667455 /* UMAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppRecordInterface.h; sourceTree = ""; }; 6004474FF0FF4E8ADF74104D607D5934 /* FlipperCppBridgingConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingConnection.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingConnection.h; sourceTree = ""; }; - 6013707A7FC70BD89A3DC12B7821E9FD /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; - 6051AAC1CBC3DB5534CDD84F5CEB2A26 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 60124DCD1F20F3DFE9902D3F831F0CFA /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; + 6029FFF1B1A0E895DC80EC2F2BD7646E /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; + 60446DD3F09C36183FC3DA8D35698A06 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; 605E9B6EC7A5EF37450BA6FA70F98A66 /* yuv_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips_dsp_r2.c; path = src/dsp/yuv_mips_dsp_r2.c; sourceTree = ""; }; - 60617C7334B7CF0995AEF61961396DE2 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; - 607D801D449C5D7D9B7699C4D36F8C4C /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6060942BEAD2B3B29663F1F50D7605DD /* RCTConvert+UIBackgroundFetchResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+UIBackgroundFetchResult.h"; sourceTree = ""; }; + 6080F667BA4C8DBB344B350BA981E929 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; + 60858CE18B6F41A28DF33F05A605755F /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; 60864668903F87449140FEED016C1B7F /* Fabric.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Fabric.framework; path = iOS/Fabric.framework; sourceTree = ""; }; 609182AADFCFFF5EC31D39948B09EF59 /* YogaKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "YogaKit-dummy.m"; sourceTree = ""; }; + 60B2F43322E7CC4D115FE92140100910 /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = ""; }; + 60BC1B16DBA95BF0B4A0A58D8D19924C /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; 60C7AC777D7686D0B925D58101A27EF7 /* FrameType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameType.cpp; path = rsocket/framing/FrameType.cpp; sourceTree = ""; }; + 60CEF74DE427937C7D1DF1E267410A4C /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; 60F75F85D0E7CDC5F7A2C4E6A07D617C /* FIRErrors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRErrors.m; path = FirebaseCore/Sources/FIRErrors.m; sourceTree = ""; }; 6119ED8AAB4AB85F6BAA8F27EB5C2C2A /* IOThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IOThreadPoolExecutor.cpp; path = folly/executors/IOThreadPoolExecutor.cpp; sourceTree = ""; }; + 61227F156D2BAF36E0807BBD1DBC487C /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; + 612968A96E8A41623D518BAAAAC894B7 /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; + 612BBADAE25F5CC04DCF32929D459F74 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; 613E052C86A7302C7BFEC7FE9FE084AE /* STTimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = STTimerFDTimeoutManager.h; path = folly/experimental/STTimerFDTimeoutManager.h; sourceTree = ""; }; - 614E957D62CC940EA3B4C5C652DBD96E /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; + 61641261A2D33040F051EBEF497D174F /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; 6165E3EDCE7024C4D5FE7EEBEBA2F169 /* bit_writer_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_writer_utils.c; path = src/utils/bit_writer_utils.c; sourceTree = ""; }; - 617434A0C4A963A1C6B626F297EE7A1E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 617926486224D0C074E090159BA81200 /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = ""; }; 618261D3DCB248A7327BF46578D22BCD /* Tearable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Tearable.h; path = folly/synchronization/Tearable.h; sourceTree = ""; }; - 61921553F1EC97895789B8D5FFC8C8E0 /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; - 619239D848DF8831CE4D8E84BE8A5095 /* 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; }; 6196966892C9BE70A8483E42D92929AF /* Random-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Random-inl.h"; path = "folly/Random-inl.h"; sourceTree = ""; }; - 61ADB19C6EE0AA9766F8AE7C7CF953B6 /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; - 61BA10489CCC88CA14A331878E987F36 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; - 61BCFC87F27E2D92FBE9152AD141F7D1 /* UMErrorCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMErrorCodes.h; path = UMCore/UMErrorCodes.h; sourceTree = ""; }; - 61C19957AE3CEED64F8195E49B5CA6C6 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; - 61CD7DFA4D6FA1B5DCD652D7B498AC51 /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; 61D5E721D9C1729F310815E536BD7612 /* upsampling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling.c; path = src/dsp/upsampling.c; sourceTree = ""; }; - 61D6870C67E4DDFD5D2B3D0A4A48852D /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; - 61E745892A7448F89C062DEE4419807D /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; 61F182CDA20E77EAFB69C3206A207326 /* Varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Varint.h; path = folly/Varint.h; sourceTree = ""; }; - 62073CFA22997381940AF92E40CFDE72 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; - 620794FB04094752CA28515CB127A05B /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; 6234151CD15BC62EA675A7907B1AE6C3 /* BitVectorCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitVectorCoding.h; path = folly/experimental/BitVectorCoding.h; sourceTree = ""; }; - 623F626684B21E4B298778247C3A3CFF /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; + 623682EDC77E46A028080B8E884FBEAA /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; + 62381861DE4FD973F0A21B9ACADB2F15 /* EXAppleAuthenticationMappings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationMappings.m; path = EXAppleAuthentication/EXAppleAuthenticationMappings.m; sourceTree = ""; }; 624112E646914E16C271BDFBEBF5372D /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = ""; }; - 62426F2578B3BAEE251AC7AA1B398F54 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; 624A41185B51C7BF36CC977BA267FF6C /* MemoryResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryResource.h; path = folly/memory/MemoryResource.h; sourceTree = ""; }; - 6253978A6B13DE9AF2B49EF14DD9FFBB /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = ""; }; + 6258E6EF9E8CD1193204427CC6AFFC6E /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; 627B5FF7FBF91A6DEA0D71B1A3E12DBF /* Flipper-Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Folly-prefix.pch"; sourceTree = ""; }; - 628A837DBD480E99C79F62E2F09F92DE /* 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; }; + 62846AD2796D14779D9E039E090C56FF /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; 62B6DE4D2D46CFDBBE1E1CE8DD67B7E4 /* SKNamed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNamed.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNamed.h; sourceTree = ""; }; 62B8EF8AF12E78C2AF1A636E291CB5C5 /* AsyncSignalHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSignalHandler.cpp; path = folly/io/async/AsyncSignalHandler.cpp; sourceTree = ""; }; - 62D0D7AE70467C95039ED3A3E7B0CDCE /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; 62DEF63856225090BFBE8B15840B9FAF /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h; sourceTree = ""; }; 62E41265E83423F7653CB43B816218D3 /* ScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledExecutor.h; path = folly/executors/ScheduledExecutor.h; sourceTree = ""; }; 62E800E6D8B687A321154741B20EE305 /* StreamStateMachineBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamStateMachineBase.h; path = rsocket/statemachine/StreamStateMachineBase.h; sourceTree = ""; }; - 62E88D3F5C58EA25138827D6182D31A7 /* RCTConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConstants.m; sourceTree = ""; }; - 62F5DA0068164F0A41F4AEB61BF8D8A3 /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; 62F8ACF7B212F46D44231884C7929C5F /* TcpConnectionAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpConnectionAcceptor.cpp; path = rsocket/transports/tcp/TcpConnectionAcceptor.cpp; sourceTree = ""; }; 630E4D6E25D676B51822CBF1F082FDB8 /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = ""; }; - 631022D61685D08D77DD54C946C65685 /* RCTWebSocketModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketModule.mm; sourceTree = ""; }; 631395FF074A61F59CD06E7617BBDB84 /* FrameTransportImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameTransportImpl.cpp; path = rsocket/framing/FrameTransportImpl.cpp; sourceTree = ""; }; - 6319D387E7FC985E43290533F2D2C188 /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; + 631EE7042AECD78F7ADF02C610C56469 /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; 631F1241AC9687C84BEA7F2B9A6BB421 /* lossless_enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_msa.c; path = src/dsp/lossless_enc_msa.c; sourceTree = ""; }; - 63761C28DFE094BC78D2A70C600EE1BA /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; - 6388C11E37EC7C26229536931F89AB52 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; - 63ADF89DFE17177EEA8B93FFA928D3C0 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; - 63D6DCC9D86537F9D3E9804D2880D0F4 /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; + 63738A7284C8997966EA3B6F6B1C94BE /* ReactNativeKeyboardTrackingView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardTrackingView.xcconfig; sourceTree = ""; }; + 6373D9E4E8F697C98D3DBA57A8DBF2AD /* 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; }; + 63BDBC2D3708BDA03D43E9A7001DDB9D /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; + 63BDC72996A2EA0EC90A0E5F2AA1AF7F /* 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; }; + 63CA347E5BAE58E1D36EB34AFEE1CFB0 /* RCTDataRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDataRequestHandler.mm; sourceTree = ""; }; + 63CC07745CC112A9D0FD8C382B2E4996 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; 63E30E444F516DDBA667711E50C18E59 /* SKDispatchQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDispatchQueue.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKDispatchQueue.h; sourceTree = ""; }; 63F076E7C50525BFB4FB6EEF79614807 /* InlineFunctionRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineFunctionRef.h; path = folly/synchronization/detail/InlineFunctionRef.h; sourceTree = ""; }; - 6400F14B0985BAF839D98DDF669659C3 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; - 64383462462BC346BA81FDCE07437F49 /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; - 64390CB491BCD314AE059ED98D830851 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; + 643C99E95EE10C5CE0A53CA23B7D7076 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; 6443C7E41F5A8260ADC4DBB27F17EBC9 /* ssim_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim_sse2.c; path = src/dsp/ssim_sse2.c; sourceTree = ""; }; - 644CE6E6A02CE714416A726EC48578AD /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; 645A304930AEEC1F7191E3748AA175E3 /* FKTextSearchable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKTextSearchable.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutTextSearchable/FKTextSearchable.h; sourceTree = ""; }; + 6473A1A5035B1F43BB549E01BEF8EB93 /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; 647DE010DF17177D28FF92F6894ACD97 /* whrlpool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = whrlpool.h; path = ios/include/openssl/whrlpool.h; sourceTree = ""; }; - 64C2567BEDF0288D61164E4312B28294 /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; + 648C3C9B39B77082CA8AE80E2173EBD5 /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; + 64BA0011B0C78B7C1CA671E856C9A559 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 64C33B2B0FAA72A88AC1771F62837830 /* OpenSSLUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLUtils.h; path = folly/io/async/ssl/OpenSSLUtils.h; sourceTree = ""; }; 64DD08219E980D9E770DFBC6257F8F08 /* Synchronized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Synchronized.h; path = folly/Synchronized.h; sourceTree = ""; }; + 64E354D0B781F4A56820F61138A82ACF /* RNFirebaseNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseNotifications.m; sourceTree = ""; }; 64E56B2614F5D42FF65FA87F764AD690 /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = ""; }; + 64E7F1F10D01964468F070DE8D4DF3A6 /* RCTScrollEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollEvent.h; sourceTree = ""; }; 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFlipperKit.a; path = libFlipperKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; 652C6468FA0798C97AF94D97EEA5B6DA /* UIView+SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+SKInvalidation.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIView+SKInvalidation.h"; sourceTree = ""; }; - 65344F96C3253F34D11A8BE7E8C06D2D /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 653690A988FDAE65DF8631ABF83513FB /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = ""; }; 654096F18052159CAC94442BFB18309E /* safestack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = safestack.h; path = ios/include/openssl/safestack.h; sourceTree = ""; }; + 65452C3A8D28695AB45DB372121151EA /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; 6549206A02B2CB128166634A1466CF38 /* FIRDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDiagnosticsData.h; path = FirebaseCore/Sources/Private/FIRDiagnosticsData.h; sourceTree = ""; }; - 654982F7690B67462D3B39EA4F1AF5C2 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 654BD82E2D1F44FC0B5EC15518EAADBC /* RCTRefreshableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshableProtocol.h; sourceTree = ""; }; + 65AF201D1A2210CCBBA39FB03570C461 /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; 65B0BB45DB99449B9171F3AE48FF2758 /* Pods-RocketChatRN.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-RocketChatRN.modulemap"; sourceTree = ""; }; 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYoga.a; path = libYoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; 65D3CD29CCCF80F74B831E34B4DB49BC /* ChannelRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChannelRequester.h; path = rsocket/statemachine/ChannelRequester.h; sourceTree = ""; }; - 65F9702220B7B5AF9B597933137C935A /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; - 65F9AE4F2347C36409967A9064055FBA /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; + 65D682C26CA14926B14CC0283B7F7337 /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; + 65DC7EBD28B2C650FBDC9581AB10F889 /* EXAppleAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppleAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 65ED8E6D61F888582FD232F2EF962FE9 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; 66149099245ABA812984423B04B2B2E9 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Private/GULNetworkURLSession.h; sourceTree = ""; }; - 663ED0DD8B063D8BD713087946DCA342 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 6641C46BF58C0584E90F4ED8952CAB43 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; + 663D2FB7BE11E42950372FC16A69A8DE /* RNFastImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.xcconfig; sourceTree = ""; }; + 6648E271EB48C91A24CD30B895D7B530 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; + 664A19866F0F704D6D518F77B73F550F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 664A1E1DEBA57083FD1997F493C51AEB /* Fingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fingerprint.h; path = folly/Fingerprint.h; sourceTree = ""; }; + 664B5DC0915CFC4E8AB867A5708297D9 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; 6660ADC5DF5B3E992EAE0C50FF7B9468 /* pqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pqueue.h; path = ios/include/openssl/pqueue.h; sourceTree = ""; }; 6676BE95A0304CF6A7BEB240331C4C8D /* AsyncSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSocket.cpp; path = folly/io/async/AsyncSocket.cpp; sourceTree = ""; }; - 667CD6E0621A6A22626D17C1FC4193F5 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; - 6686EA9CE579D887304C1A93CCB0B8F0 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 668B5E80E08960E464EB3C163D8D19AC /* SafeAssert.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SafeAssert.cpp; path = folly/lang/SafeAssert.cpp; sourceTree = ""; }; 66A0546317DA4C87DFE514042A8B1530 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; - 66A809627B181D7C7F939337DBF8CB8E /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; 66AD95F396C13CE8EC124AA18BAFA3A6 /* 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 = ""; }; 66B721BD26A928F014758863ABC256CD /* Cursor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cursor.h; path = folly/io/Cursor.h; sourceTree = ""; }; - 66E2D02A94FA2E4D5E82E7C9E3817F85 /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; - 66E53087487877DA1338C28363B6884D /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; - 670FFCA9F4BFB50956ABBE651270B075 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; + 6702D43F6FF76BC785818390BF2715CF /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; + 6709F8F6033B97457E1E19BCF1304EB8 /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = ""; }; 67124FDA9468FB603B07247B6743BB45 /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FIROptions.h; sourceTree = ""; }; - 671AD54C7E97609168CD5CC4DB6E2C3F /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; - 672829A0AB58D4EA43AD1F6F698BB6EE /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; - 673328DBF6C82C9CDA0CA53D26A7C4A0 /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; - 674088A105FF58213544F7538F565151 /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; - 674E63ABDA8BF6B7033B9F3D41F3CC30 /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; + 6741F01CF2C988A856EB20335F1192E4 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; 674EC145D39681FBE369F624154EC4BD /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Subscription.cpp; path = yarpl/observable/Subscription.cpp; sourceTree = ""; }; + 675B2C2AFE90C3AE02FB47A8366ECCD7 /* RCTI18nManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTI18nManager.mm; sourceTree = ""; }; 675B3C63734646BDAEB1A3033BC02E0B /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; 676F49740B7638DB7B74741C75D2C906 /* ThreadedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedExecutor.h; path = folly/executors/ThreadedExecutor.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; }; 6775920A939C775EF8140BAA7F286927 /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = ""; }; - 677691D65DFCD8429843BFF9F273E3F1 /* RCTPerfMonitor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPerfMonitor.mm; sourceTree = ""; }; - 6790B66013DE37DFE05846F3F44CA243 /* react-native-background-timer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.xcconfig"; sourceTree = ""; }; + 67919E9EA3B4D9F98265CA9D9D1E588E /* RNCAsyncStorage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCAsyncStorage-dummy.m"; sourceTree = ""; }; 679C3B0E29078B260151C3AA2C69F65A /* FrameFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameFlags.h; path = rsocket/framing/FrameFlags.h; sourceTree = ""; }; - 67AB383D600CBB69E2C06164AB420E46 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; - 67B72A3E7B49AA3497182A6E61873E60 /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; - 67B8DFFCE4C7CC70F13C349BE6035C8C /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; 67BC50D5F96759CF85CF5669EF447234 /* SingletonRelaxedCounter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonRelaxedCounter.h; path = folly/experimental/SingletonRelaxedCounter.h; sourceTree = ""; }; 67CD612C014867DB8E85484626A95ED3 /* mux_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux_types.h; path = src/webp/mux_types.h; sourceTree = ""; }; - 67E2295DE9C0FC490AC0417A05326292 /* RNFirebaseAdMob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMob.m; sourceTree = ""; }; + 67DE68077134FE64C136C6E93320E3E3 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; + 67F39C23F14E1B6B3DD1CDCE99A24B17 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; 6805DE197591C9AC28E161890AED1AA5 /* pem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pem.h; path = ios/include/openssl/pem.h; sourceTree = ""; }; - 6870DCF7D43BE3A808D451F892C25075 /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; + 68412A060E9246180930483E6972D374 /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; 68858AAD305821B0E28BAA93C995B30C /* QuotientMultiSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuotientMultiSet.h; path = folly/experimental/QuotientMultiSet.h; sourceTree = ""; }; + 688D0ABC174C6A9DB209984CF35D97C7 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; 688F773A73569EE7691493F2EC65617B /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; 6895A751BF74448383933A3B163C1BC0 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; - 689C2EC302CAC200CAA0F3413D0DFC41 /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; 68A2B6B12D5A32210F704BEAC122B28B /* lossless_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_neon.c; path = src/dsp/lossless_neon.c; sourceTree = ""; }; 68B146EB7416457F99A444AAF1974359 /* libwebp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libwebp-prefix.pch"; sourceTree = ""; }; 68E5254C82058DBBEE477F7056BA9159 /* ecdsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdsa.h; path = ios/include/openssl/ecdsa.h; sourceTree = ""; }; - 691B872DB95DC8ACABB816163EE7BF2B /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; - 691FF0282B7E134729F1A5F8A2A5DBFC /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSourceCode.h; path = React/CoreModules/RCTSourceCode.h; sourceTree = ""; }; - 692B3C780583B0CD54F2309AB4155ABF /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; + 68E5C1887F6952E167CC07F80FD866E3 /* 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; }; + 68F052FA093CABB36D1690961D6FAD17 /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = ""; }; + 690389F5E10DA39DE49214507DD19D78 /* RNCSafeAreaViewEdges.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewEdges.h; path = ios/SafeAreaView/RNCSafeAreaViewEdges.h; sourceTree = ""; }; + 693FF7F5A48A54001372327577F4738F /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransportCCTSupport.a; path = libGoogleDataTransportCCTSupport.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6954833138665D07AC2B39F0B5A47B08 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; 6955C48EABE0EBB9C60FBB6187DD382A /* ExecutionObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutionObserver.h; path = folly/experimental/ExecutionObserver.h; sourceTree = ""; }; - 6968E72EA221A652A1E662D6D7EDC15C /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; + 696068ADA8823D325D81CEAB7E79445A /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; 6986A52F049BD7E2BA8F71F30C9127CD /* GoogleAppMeasurement.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.xcconfig; sourceTree = ""; }; + 6986DCB9B08399021A0D79977F8DD2AD /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; + 6988A2C472E936589B7F837072850348 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; 698C0710B8188D80CF6B32152311BB47 /* bn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bn.h; path = ios/include/openssl/bn.h; sourceTree = ""; }; 6995201D39391D5D46F8A69770F753F7 /* VirtualEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualEventBase.h; path = folly/io/async/VirtualEventBase.h; sourceTree = ""; }; 699E3A51920E2B9318649B379A34C156 /* InlineExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineExecutor.h; path = folly/executors/InlineExecutor.h; sourceTree = ""; }; - 699E43E07780DEE6C0C97E2C1F711943 /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; 69A63582A04ADFDDCE6B008A3EB6E211 /* ko.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ko.lproj; path = "Objective-C/TOCropViewController/Resources/ko.lproj"; sourceTree = ""; }; - 69B6D2BB819E460BA9FA4E519D5B54B8 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; + 69AE13D23811D322D270415DA06E5638 /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; 69BD22B376ED5AF2061DF89B1D183BBB /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; 69E6D9CA54094F8E719FDFC96C7C72E6 /* ebcdic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ebcdic.h; path = ios/include/openssl/ebcdic.h; sourceTree = ""; }; 69E84637B197F201A5C192376A7F6D80 /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; 6A10B06A83720999590D42AF776AB280 /* mips_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mips_macro.h; path = src/dsp/mips_macro.h; sourceTree = ""; }; 6A1D97AFF083766F7924AE8E0EFCE04E /* IOBuf.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IOBuf.cpp; path = folly/io/IOBuf.cpp; sourceTree = ""; }; + 6A32CB6BF5B614879CA8331936310E6A /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; + 6A3900AA83F87E3377256675111C8DFD /* RCTView+SafeAreaCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTView+SafeAreaCompat.h"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.h"; sourceTree = ""; }; 6A3A2CDB7464AA942E65D7943827F970 /* SKRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKRequestInfo.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.h; sourceTree = ""; }; - 6A3BFC7E5E6C8E6EEA1460CA6496D339 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; - 6A4C36C1AC8ECB65B803B2BC396193E8 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; + 6A450AD5397BFD2E0D6FDB4F0F6450FE /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; 6A52D76A1966F86A98A1D54378299FD7 /* IPAddressV6.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddressV6.cpp; path = folly/IPAddressV6.cpp; sourceTree = ""; }; - 6A57CC8F5AFFF36AD5FC3BFF71CA40F1 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; - 6A740AB9E84EE7F160C46FA027866F16 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; - 6A786B071574EAEE6EDDAC6A7FCDE73E /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; + 6A5315283474BCB6DFD5D91C8B339DD9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 6A97BA1C32F0EB20E5033FB242187B5D /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; 6AA080C7BD9045A026E2CCFBF9120E84 /* FlipperKitReactPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperKitReactPlugin.m; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.m; sourceTree = ""; }; 6AA60F54022C3D0F0993177724AD76A9 /* SDWebImageWebPCoder.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.xcconfig; sourceTree = ""; }; + 6AAC0C247FEA5320D92290C2AA6F16A1 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; + 6AB6F7A05712378F1F168AF79F14103E /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; + 6ABBF6A6D0FACB32AD2FDE3C593A3775 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; + 6AC3F7E4DAF9A0BCDF52264CFFE374A8 /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; 6AD306A52450FF701DE02555B3745972 /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = folly/json.h; sourceTree = ""; }; - 6AF46407306036FBC1128FC7B5171849 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; 6B0729204974CFA3C66706EA274FBF54 /* PTUSBHub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTUSBHub.m; path = peertalk/PTUSBHub.m; sourceTree = ""; }; 6B1F3CBF46229EF0C0CDF7587977B038 /* opensslconf-armv7s.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-armv7s.h"; path = "ios/include/openssl/opensslconf-armv7s.h"; sourceTree = ""; }; + 6B1F61D96101BF69D9C0A5E74A1BE48B /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6B26DEFDF2E6A80D97F00BBDFE7FF911 /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; 6B2DBE064CD3B929A0F4DEB8762C8BAA /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; - 6B33829DED995B050E99525F11AF293D /* RNCSafeAreaViewEdges.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewEdges.m; path = ios/SafeAreaView/RNCSafeAreaViewEdges.m; sourceTree = ""; }; - 6B34942F065CF734DD9D48428E5B298A /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; - 6B4163820907085299B148411E69DA1D /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; + 6B372B63DDB5329AEF0838FD23034936 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; + 6B41E4FCC74576391ADB7ACBFD2CB539 /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; 6B49F4886F558A20270FB1B28A61A7F2 /* Chrono.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Chrono.h; path = folly/Chrono.h; sourceTree = ""; }; 6B4BC528B33441223AA224532206DC3C /* PublisherBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PublisherBase.h; path = rsocket/statemachine/PublisherBase.h; sourceTree = ""; }; - 6B9AEDDB5F8023CE81EFE66995CDB9D8 /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; - 6B9EECE7FEF87ABC9945DCC76B0242B4 /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; - 6BBC55D0BAE3E0BB33A9C04D97CFAA33 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; - 6BC541DD4BFA297EDE39AE9BA74B11E0 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; - 6BCB3B01A2DB62F391DF3632FEEA5D34 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; + 6B6C97675A37EFAC4203BE9D24797F2D /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; 6BCC25095D2CE9236C0C794B87DB2275 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Sources/Private/FIRComponent.h; sourceTree = ""; }; 6BD12214F5826815CB7FDB5BED2E67ED /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; - 6BE374AE85600D98349DB55D1038CAF7 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; - 6BEB1E302CD049A23057EEA618813119 /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; - 6C10A44E8B12B1A686F6D253C78335FB /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6C1A2D7195A33B28D3E8779C2D1CAD7E /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; + 6BEDA019BC58CBE06110408C4101AA6F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 6C01B0B04ED5559FDBFB6896F2E1CD1B /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; 6C22259A206D11BC58FAD50035C4E804 /* ManualExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ManualExecutor.cpp; path = folly/executors/ManualExecutor.cpp; sourceTree = ""; }; 6C48287496A17E92102556696A3E7006 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; + 6C5289DEFC56ED39BD71D8EC5B4C8A94 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; 6C52B6578B5E021E9BF2AFFF4F6FEF84 /* RSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketResponder.cpp; path = rsocket/RSocketResponder.cpp; sourceTree = ""; }; - 6C5F962BBBE94A973F8814B8639FDB87 /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; + 6C64BF2A1D2437CA52AEE039EF8792AA /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; 6C70B9C83634E05E74CEF35D222403FD /* SanitizeLeak.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeLeak.h; path = folly/memory/SanitizeLeak.h; sourceTree = ""; }; 6CA68C76334A6FC469D61CAF8A391766 /* vp8_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8_dec.c; path = src/dec/vp8_dec.c; sourceTree = ""; }; - 6CA9C1A98FA470D75F01F28C41B4849C /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libCocoaAsyncSocket.a; path = libCocoaAsyncSocket.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6CCE529ABE0E34CAD537F852450CA485 /* Executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Executor.h; path = folly/Executor.h; sourceTree = ""; }; - 6CEB20EF4A3E729799CF70E4E8E074CC /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6CDB31BDF2D8BFC7451FA2DE3DEAEEB8 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; 6CEEF959D7C8245C060ADFCFB07E6931 /* SwappableEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SwappableEventBase.cpp; path = rsocket/internal/SwappableEventBase.cpp; sourceTree = ""; }; - 6CF7FFD0BAAAEFB8FC6EDB218630B39A /* RCTImagePlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImagePlugins.mm; sourceTree = ""; }; - 6D052842F034339DF5D22E941A053F44 /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = ""; }; - 6D20B9EE4008AB263B0E263B64819A22 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = ""; }; - 6D22F25FD48B9F912FC82A4663BA6BE1 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6D2DE99061D0D67202BCD04691C59097 /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; - 6D2E47E5DC5515FFA80025C1D28C5163 /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; - 6D2EC814C1E6B56F2E15D7B2A3949020 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; + 6D1B8F9D5C016E7F3E093EC478D6067B /* EXVideoThumbnails-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXVideoThumbnails-prefix.pch"; sourceTree = ""; }; + 6D24767B02EB893827AF0338BBB8ABFA /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; 6D44D139FA47494C9F2C3FD27FC9C14F /* TOCropScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropScrollView.m; path = "Objective-C/TOCropViewController/Views/TOCropScrollView.m"; sourceTree = ""; }; - 6D4B64785BBB8C4B4AB2DC7E88F7FC56 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; - 6D55422F96B86133BA39796E3E0BFAE1 /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = ""; }; - 6D6AE562690725EE1645C7E18FC8F1FE /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6D4954EAB8F90824EDE56AB510D5EE73 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; + 6D4994A75D45527F7F5930F67C8B5BEB /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; + 6D5D1E85E2F0BC368B16D1F1C550518A /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6D63D68250D517F7A8A6FB42EDD1F2EB /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; 6D6F2220F93AF227C1AE3DD841925360 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; - 6D6F465A07E7B71C8BD64BFBB39709B4 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; - 6D79C1C3353D4D0924BA444AAE425C7A /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; 6D93EFFAB3C9CF568E8586640851F355 /* GDTCORUploadPackage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadPackage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadPackage.m; sourceTree = ""; }; - 6DA5AE4E810F3B738C224A1B58B470F6 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; - 6DBC5EBC6E2BFB4DFF65BD1AA4B5DADB /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; 6DC15B5BDDC4879CFF2CD5A65DAF5B70 /* FIRInstallationsItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsItem.h; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.h; sourceTree = ""; }; - 6DCA8B6C9FD99CA20C25A12FE1C334E2 /* RCTKeyboardObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTKeyboardObserver.mm; sourceTree = ""; }; 6DCAAFCFD9C40302456BE418A600C478 /* nl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = nl.lproj; path = "Objective-C/TOCropViewController/Resources/nl.lproj"; sourceTree = ""; }; - 6DD5D80D7ADF5C069B80C7F7074695F7 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; 6DD62CAAA7E16DC81FADB221C0579481 /* F14Map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Map.h; path = folly/container/F14Map.h; sourceTree = ""; }; + 6DEB40674BC3CEF1213783E57BD533DA /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 6DF471E434E4FFF4F5E34CFB225CD970 /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; - 6E0578404880DEA4B41E04A03DDF80D8 /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; - 6E2BECC4F92F31362EA0443D291CE88B /* 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; }; - 6E4EB8D3277207699835BC2F7C5DE938 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; + 6DF84C4AC2FF0FD8AF3C923CCBCA3EEB /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; + 6E1662013842AD470983BDAD74E96EAE /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; + 6E1C039B9169CD68726A5B2C2A4FE067 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; + 6E484E6752AFB0619F0ED1AD505354CF /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6E498CD5CA0351C79B920D298531B9D9 /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; 6E53C61D4E9B25D6FBD32598566EAF38 /* Lazy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lazy.h; path = folly/Lazy.h; sourceTree = ""; }; 6E5A77E2B1D23553F1FCFEAE09A389B8 /* SKResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKResponseInfo.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.h; sourceTree = ""; }; - 6E6E0F10C86207CB38336C65B85A89C5 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; - 6E761FABBF5226B09C636381833E9B22 /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; - 6E79585604F8EEF8602D5D08CC2F22ED /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = ""; }; - 6EAC3A1E336464E750674F250E41896A /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = ""; }; - 6EB856FA7C6C6417ABD9B03F599C7003 /* react-native-appearance.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.xcconfig"; sourceTree = ""; }; + 6EB757A79FF3B69AD6B9E4791A7020F0 /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; 6EDDB0BF77E0162298A4164C90A4F5EB /* Pods-RocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RocketChatRN-dummy.m"; sourceTree = ""; }; 6EF5403BF740F93C1CDC1335EB3741F9 /* Align.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Align.h; path = folly/lang/Align.h; sourceTree = ""; }; - 6EFF9011FA81CBCFE129F5940006063E /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; - 6F195162827AEBC3CFE8A90F7196A628 /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; + 6F0EF6046A20A68989C5B5B8DD839E33 /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; 6F1ECE604E7ADB398D87DEC9A211AF72 /* TOCropView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropView.h; path = "Objective-C/TOCropViewController/Views/TOCropView.h"; sourceTree = ""; }; - 6F29C01F0F038B5B6E246B15665C0C07 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; 6F40837B384672DDFC34288BFFD5EC34 /* AsyncTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTransportCertificate.h; path = folly/io/async/AsyncTransportCertificate.h; sourceTree = ""; }; 6F4B439546DBD40F0CF6F481CF0EB4DE /* ssl3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl3.h; path = ios/include/openssl/ssl3.h; sourceTree = ""; }; + 6F5684FFDE03F8CF2C40486769C419CF /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; + 6F5705092A7E5EC01EFB09386E8FAEEF /* MessageQueueThreadCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MessageQueueThreadCallInvoker.h; path = callinvoker/ReactCommon/MessageQueueThreadCallInvoker.h; sourceTree = ""; }; + 6F6EAD38009DDEBD60F96F13B1500506 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; 6F75B49F38575EBEFE4DAC7ED4CC9EF1 /* lossless.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless.c; path = src/dsp/lossless.c; sourceTree = ""; }; + 6F77194E54C6A747E949B4AAA15A0675 /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; + 6F8655AEBCB33048C58824700009949B /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; 6F944579685D689DAE1733447AB752E5 /* yuv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = yuv.h; path = src/dsp/yuv.h; sourceTree = ""; }; - 6F9C73D726BA76260B12ED6961C738B3 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; - 6FD49F49277AD33DABE22B10F1031894 /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; - 6FD71D4C28DBB037140B3D5A8CB499BC /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = ""; }; + 6FA0DAC29FA8635BEA326384C7007408 /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; + 6FA1BE721DD739533ED82AD189404F48 /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; 6FF0842F9EA78D9EDC9F435A8D686211 /* BaselinesAsyncSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BaselinesAsyncSocket.cpp; path = rsocket/benchmarks/BaselinesAsyncSocket.cpp; sourceTree = ""; }; 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6FFBCD0B7DE6F43541E299E6CFEBEDEB /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; - 6FFEB8364E3DE91E8646D1B7BAB23EAD /* RNFirebaseUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebaseUtil.m; path = RNFirebase/RNFirebaseUtil.m; sourceTree = ""; }; - 700D2AA0E6364287805AB811D53093FC /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; 70197CC7571ACA78C92A18304930BE97 /* ThreadId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadId.h; path = folly/system/ThreadId.h; sourceTree = ""; }; 7033DB819E816E3EB425094FB4A1EE45 /* FlipperConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnection.h; path = iOS/FlipperKit/FlipperConnection.h; sourceTree = ""; }; + 7034C52AF5A115A04C42690DE056D075 /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; + 703A7C3217E38DACDBE6920B34456205 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 704B64BA0F1BDDF94DFCB7B5179EB319 /* ScheduledSingleSubscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledSingleSubscription.cpp; path = rsocket/internal/ScheduledSingleSubscription.cpp; sourceTree = ""; }; 704C5E5BC0BAABAC4C0DC243FD8FFA9A /* DefaultKeepAliveExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DefaultKeepAliveExecutor.h; path = folly/DefaultKeepAliveExecutor.h; sourceTree = ""; }; 705E70EBC191BE220E183969103DA2E1 /* cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cast.h; path = ios/include/openssl/cast.h; sourceTree = ""; }; - 708047505D149B936C021E2B459E36C3 /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; - 70B52738C1534D681595A58D730353B8 /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; + 708760842867F929E52FEE8EF9CB114F /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; + 70AB7F4C521B0B8F336CC49326F2D305 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; + 70B3C3AE5C2CDC52BD74F7C527EF126E /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; + 70BA231528C44BD9AB5D994D37520985 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; + 70BBF9B79ED5994105858E2CF4EFF638 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; + 70D2F1DE32D8D83ED283D13D70AE9546 /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; + 70E0E86D8435F505B9026D6968E02EC0 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 70F2829EA3E8A5283521C663CBF9D616 /* YogaKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YogaKit.xcconfig; sourceTree = ""; }; 70F31B995F9074BFE8C5A64966B80CF4 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; 70F368B9704E829BF6802BDBB1AD5E26 /* RSocketServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServer.h; path = rsocket/RSocketServer.h; sourceTree = ""; }; + 70FE932D7EE0A2E6E295FF0F651AC85F /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; 710044891D8284841001A9ECCB448E7D /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/init/Init.h; sourceTree = ""; }; - 71172134774813FF7BE46C29E82A360E /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = ""; }; + 7106EEAFBE6BAE4A506A5118B384AB1F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 711E5A29559B0895B88DC7DA2EC244D8 /* AsyncServerSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncServerSocket.h; path = folly/io/async/AsyncServerSocket.h; sourceTree = ""; }; - 712049F52355C5FECA8281099BB75DF3 /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; + 713882D8685596882A1DA0DCAC5ACF8C /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; 713A81815B3885B08757A419B2659FE6 /* Codel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Codel.h; path = folly/executors/Codel.h; sourceTree = ""; }; + 71531F4D01A58061478E016FA6E16A8B /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; 715D59D39D1D872A96E44177A511E929 /* SocketOptionMap.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SocketOptionMap.cpp; path = folly/io/SocketOptionMap.cpp; sourceTree = ""; }; - 7170A1DF984D20FE16FF2452F4687EF1 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; + 719CB1BCA06AACF1CB60A6CA66317BF6 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; 719DDB7B841C4CBCCF38804EA3ADD44E /* AtomicLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicLinkedList.h; path = folly/AtomicLinkedList.h; sourceTree = ""; }; - 71B9A4E956BFBD9065F0061A3F007F70 /* 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; }; - 71F8C7D1FCE51B747B4284DFC5A37EC2 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; + 71A81006D808932FC42B12786BECA152 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; + 71AE41B49320B7D195F1396292016E9B /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; + 71FC861FA342057264415C3E6A5BF805 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; 71FF1E72B4DB0A20E351EA7918EC7F95 /* YogaKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = YogaKit.modulemap; sourceTree = ""; }; - 7243AA4FC9367C46F0CCB5200FE83641 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 721AB46BD809C2987EF958E95073BFF2 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXLocalAuthentication.a; path = libEXLocalAuthentication.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 7258E8B44BC3D72B157DF7DEC7335C9D /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; 725E287E607D785B413443F8A05E955E /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; 727836E33EA310B521A1EE17C0D2670E /* ecdh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdh.h; path = ios/include/openssl/ecdh.h; sourceTree = ""; }; - 7284D61D8A640676F2D6EB15027CAF80 /* EXKeepAwake-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXKeepAwake-prefix.pch"; sourceTree = ""; }; - 7288210CAECF12E039CD64A2C78D6019 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; 7289C53A79FF425CB53C7FDFBC11E2A3 /* TimeoutQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimeoutQueue.cpp; path = folly/TimeoutQueue.cpp; sourceTree = ""; }; - 7291A11E4E697A55C450DCC63CB30A4E /* ARTShadow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShadow.h; path = ios/ARTShadow.h; sourceTree = ""; }; 72AAC3CFCD9D5F65A049D400362D9B50 /* ru.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ru.lproj; path = "Objective-C/TOCropViewController/Resources/ru.lproj"; sourceTree = ""; }; 72BF1AAEF5436D10A0081BBBEC48C39F /* GDTCCTPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTPrioritizer.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTPrioritizer.h; sourceTree = ""; }; - 72D3E0A25B23EE863ED72FB6A6BC343B /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; - 72D4CE121E219DF0C4968BFB37CA5D8C /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.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; }; 72EE23C58260255B1D192AE09CDFFD44 /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/File.h; sourceTree = ""; }; - 72F85FE6B7A3576DA1307366EC84716E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 72F06AEF19767243AF081CAA23DC7E00 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 72F93B35E7840328A0BE89C021462A46 /* FIRInstallationsAPIService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAPIService.m; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m; sourceTree = ""; }; 730E4E0BC41E24A628932A3852D22DD5 /* FlipperCppBridgingResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingResponder.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.h; sourceTree = ""; }; 734D1B63F33711F47A4D575E64F45DE7 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; 735A6137D06816E5C6E0C1C09CDD1049 /* FlipperConnectionManagerImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperConnectionManagerImpl.cpp; path = xplat/Flipper/FlipperConnectionManagerImpl.cpp; sourceTree = ""; }; - 73844297063A4D124E465C14347C59A0 /* EXImageLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXImageLoader-dummy.m"; sourceTree = ""; }; 7390BB632CEEE118C7CA4E8B403F656C /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = ""; }; - 73A81D69BBA83AA8F9567A52654496CB /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; - 73B76E5FD97B79666C2860E073DB45DF /* RCTNetworkPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkPlugins.h; path = Libraries/Network/RCTNetworkPlugins.h; sourceTree = ""; }; - 73C15243C53B413C4D535D02B154D994 /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = ""; }; - 73C2342444562F5C84331C25526B734F /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; + 739CC36EF22AB6A559FB5581FD5EC465 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; + 73AA7F6FDD0109D9B53978B88A0903BA /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; 73C7E748D6247016CD225AF20049FBC9 /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; - 73D273219A3783A3C38DF3D5FC37D684 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 73EDE3EEF45AE2EABE6B40C4440BC958 /* GULKeychainStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainStorage.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m; sourceTree = ""; }; 73F99FDDD043F3C123FD799F02E251D2 /* EventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBase.h; path = folly/io/async/EventBase.h; sourceTree = ""; }; - 73FCE3CF78B994013BDB437BC073586B /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; - 73FE11771844837CD61CD8216DE2E1C7 /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = ""; }; - 74054676BA9C8D1B26EACF72E7B7879C /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; - 74238653779A6C8999BE09AA6E793150 /* RNCAsyncStorageDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorageDelegate.h; path = ios/RNCAsyncStorageDelegate.h; sourceTree = ""; }; + 73FDEBC4D7AB872C43D0B328CA04F2C4 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; + 741C3A3B5625053E83FF3307CC09A3DC /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = ""; }; + 7427F37FF19E195E55A9669219AD60B2 /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; 742D61A515E6226E5978F5D3AAFAFE59 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; - 7433DD22EBF954B9D6FE46CBB533A55A /* BannerComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BannerComponent.m; sourceTree = ""; }; 744FDBFE85D90D5ECFA859B3F358AA90 /* Uri.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Uri.h; path = folly/Uri.h; sourceTree = ""; }; 745220E98E7B8E0EC647E582DC596550 /* RequestResponseResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RequestResponseResponder.h; path = rsocket/statemachine/RequestResponseResponder.h; sourceTree = ""; }; - 74602BD56845E9CE29AC7CBC8C1762E7 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 7462E6A88C35E7538B62875DBBCA35B8 /* OpenSSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSL.h; path = folly/portability/OpenSSL.h; sourceTree = ""; }; 7475678D43B3FABE4C3E6E70042FA89A /* FlipperStep.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperStep.cpp; path = xplat/Flipper/FlipperStep.cpp; sourceTree = ""; }; - 7475D055991525FC0CAB8F685BEA149D /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; - 74C12544EC8AA7B7B2EC601C042BC447 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; + 74B387B68F9239F26E4E1D3379EC1140 /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; 74C310DC3306E164BCE850AA3DB4439C /* PTPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTPrivate.h; path = peertalk/PTPrivate.h; sourceTree = ""; }; 74C64DDDEFB40B6871EB652DD0F6E122 /* stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stack.h; path = ios/include/openssl/stack.h; sourceTree = ""; }; 74C8B993323AAE9A4C15E7FF18321A4C /* SparseByteSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SparseByteSet.h; path = folly/container/SparseByteSet.h; sourceTree = ""; }; - 74CA5548EB7484D5BC5B01F58002F1ED /* RCTDataRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDataRequestHandler.mm; sourceTree = ""; }; + 74CB6B32052B4980712DC85AF207A391 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; 74D4F22992D39B59471B05C6F51C9354 /* GoogleDataTransport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.xcconfig; sourceTree = ""; }; + 74DE5ECD6B64E6F47DF433971EAD8225 /* EXKeepAwake.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXKeepAwake.h; path = EXKeepAwake/EXKeepAwake.h; sourceTree = ""; }; 74EF1999A7D5F0448AF21369F6367731 /* FrameSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameSerializer.h; path = rsocket/framing/FrameSerializer.h; sourceTree = ""; }; + 74F235836617F870DA81A96E2071E3F9 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; 74F33A435A3CB7082ECC0809627A0A01 /* HardwareConcurrency.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = HardwareConcurrency.cpp; path = folly/system/HardwareConcurrency.cpp; sourceTree = ""; }; 74FE0A6812B600DE9F54562F0F69D2DE /* Pods-ShareRocketChatRN-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ShareRocketChatRN-umbrella.h"; sourceTree = ""; }; + 750EE3CC561AB7E2DC7055E64BC1C283 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; + 750F7D35BE6E5845F73D68C57008522E /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; 751628458EF5455CEE796DAA2D6CA590 /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = ""; }; 7525F34A4048B96EA3ACFF6B2285FEF9 /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = ""; }; + 752EBEF4EC71B1AA44A5C0D90110F58E /* RCTLogBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBox.h; path = React/CoreModules/RCTLogBox.h; sourceTree = ""; }; 753BDE10DDED75830C20C2C67239AFB6 /* FIRCoreDiagnosticsConnector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsConnector.m; path = FirebaseCore/Sources/FIRCoreDiagnosticsConnector.m; sourceTree = ""; }; - 75497E5890A05EC1C27367D4A88685F7 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; - 754E1308A17DB39BF6A2E15E689FE2A9 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; + 754BADBA4BFF71A5E54EF704A1ECF345 /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; 7553ED96421EBDED21160EA3D14231C7 /* F14MapFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14MapFallback.h; path = folly/container/detail/F14MapFallback.h; sourceTree = ""; }; + 755B3090F7C748B785591640685B7DD1 /* RNFirebase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFirebase.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 75632BE4B358E18FB1BAE8DFBFA50A19 /* alphai_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alphai_dec.h; path = src/dec/alphai_dec.h; sourceTree = ""; }; + 756DB69AC60ABE66C85FA7A50F750FED /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; + 756E6084FBDF051F9DC7F4553649C4B0 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; 757AC54CDF7539E8394457D47402CCE9 /* Benchmarks.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Benchmarks.cpp; path = rsocket/benchmarks/Benchmarks.cpp; sourceTree = ""; }; - 758017C7185FB18C013423C4A04248AD /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = ""; }; - 75AFF57E477C64127F71A0DCE3C8F1B8 /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; - 75B1D0F517B8A7EBEF839B508F1D0AB3 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; - 75B6E19A8A683EC329483F9DC5E3D866 /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; + 757B5E8A67E8D556A6A4A5C8AE81BD35 /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; + 75837F0DE68E61DE16C1B5C9520E90BF /* RNCSafeAreaProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProviderManager.h; path = ios/SafeAreaView/RNCSafeAreaProviderManager.h; sourceTree = ""; }; + 759214E0404777E80647BBF378BB40EA /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; + 759ADEA0F49999ED003E12B3140CEA1C /* ReactNativeKeyboardInput-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardInput-dummy.m"; sourceTree = ""; }; 75C2E673BC4C602DC4840634FAA6E617 /* Log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Log.cpp; path = xplat/Flipper/Log.cpp; sourceTree = ""; }; - 75CAF7581560F9B82217BAE19818DA5B /* EXLocalAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocalAuthentication.h; path = EXLocalAuthentication/EXLocalAuthentication.h; sourceTree = ""; }; + 75C81C87FF4DB6BF91F3159D1B5ECF78 /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; 75CAF893E56A3E68A2D0CE06985393DF /* lossless_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless_common.h; path = src/dsp/lossless_common.h; sourceTree = ""; }; - 75D42886A8D8EE19739010B6AE86A9C4 /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; + 75D557C23935A8E80A7188A1DCF5E3BE /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; 75D8EC75098C775B0B1ED266E0A8BD12 /* FIRInstallationsStoredItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredItem.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h; sourceTree = ""; }; 75DA4BB71C1326F66B176CCA5A426509 /* GlobalShutdownSocketSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalShutdownSocketSet.h; path = folly/io/GlobalShutdownSocketSet.h; sourceTree = ""; }; 761200C677DC6FC1D4743B8A10AC55B3 /* ThreadName.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadName.cpp; path = folly/system/ThreadName.cpp; sourceTree = ""; }; - 762660FFC0E4FE182E1FFE0CD372E250 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; + 761EAF3FCA2645F60BC33C873CD2F36A /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; + 762BEEE67A6C2BA66BC01DC9BDDEBEE5 /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; 76328581CF6F60674D9292C4EC0DCE3F /* SysUio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysUio.h; path = folly/portability/SysUio.h; sourceTree = ""; }; 76421776D82B4D7F763F40B43681EE6B /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; - 7650710798CC06A03542A2EC3C4AA111 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; - 765866D9CBF9A79B34EA674AD03022CD /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = React/CoreModules/RCTWebSocketModule.h; sourceTree = ""; }; - 7660A9FD29E726852043D35BA11C2A65 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; + 76562F5F8706D4210AA85753CB3215FA /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; + 766D25EE8AC06E2F849B9A4EF23CD32F /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; 768582E960B57142E27773A93762C7E9 /* vp8i_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_enc.h; path = src/enc/vp8i_enc.h; sourceTree = ""; }; - 769C0D49445A3B7FAF11861746C922B3 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; - 76A64D0BAA62182C4D052DCD145ECE3E /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = ""; }; - 76AFF6E2528C7563EF86DA0035297F06 /* 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; }; 76B0BC6BAA4672419D0A1BF6F4FB7767 /* SpookyHashV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV1.h; path = folly/hash/SpookyHashV1.h; sourceTree = ""; }; - 76C453A0922214A7FEBB03A02B38B6B5 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; - 77669A1A60D5F27D47BE8A4011BAEC4A /* REAUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAUtils.h; path = ios/REAUtils.h; sourceTree = ""; }; + 77371F5FF68EF2101F411997A7F2A3DA /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; + 77551D21D017ED844EB6B8D74A5B0FEC /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; 77692170F57E638B54A46AFF5E0F2101 /* OpenSSL-Universal.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "OpenSSL-Universal.xcconfig"; sourceTree = ""; }; - 777302FBC51C7FB15E88AC25C43D17B5 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; + 777059C692B7C55601D372692929E4C5 /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; 778184D74EB27A6374B6CDB0C567EF3D /* VirtualEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = VirtualEventBase.cpp; path = folly/io/async/VirtualEventBase.cpp; sourceTree = ""; }; - 778CBF152932CBF275F1EF51184F3EE1 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; 77972F8869294C4A4D5DD271E126CABC /* Flowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowable.h; path = yarpl/flowable/Flowable.h; sourceTree = ""; }; 779B35080D2D897A6362F2DBF4957751 /* evdns.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evdns.h; path = src/evdns.h; sourceTree = ""; }; - 77B5C81528971AB0B5CB133BEE0E38CD /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; - 77B714027C51489C37C0ECE1950450CF /* EXLocalAuthentication.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.xcconfig; sourceTree = ""; }; - 77B74BFAC97BB50C9BAAD83849B1F1D3 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; + 77B684152044F95724A69EDE979113A0 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; + 77B9E249C98CA27B5638458542B2F44E /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; 77C278422DC579B6055C42FC6492DFDD /* PasswordInFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PasswordInFile.h; path = folly/io/async/PasswordInFile.h; sourceTree = ""; }; - 77D20E2E14B478DA5AF1AFB02D181B21 /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; + 77CA1053BDB2B72809CA94CC2AD8CC5F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 77E53093581EE1B8FB2BC260A53B5387 /* rescaler_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_utils.c; path = src/utils/rescaler_utils.c; sourceTree = ""; }; - 77EBC371CE7BB4992C1E30829A5DFAFB /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; 77FE10D1824E65E82C3519974520DF77 /* Hazptr.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Hazptr.cpp; path = folly/synchronization/Hazptr.cpp; sourceTree = ""; }; 78123FF997D6AA4CC2BFABF1F0A93100 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/Bits.h; sourceTree = ""; }; 781386408A834FB314B5B80336788C98 /* SysSyscall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysSyscall.h; path = folly/portability/SysSyscall.h; sourceTree = ""; }; - 7817EF52C29B1D0252EE06D16D36F9AB /* RNFirebaseUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseUtil.h; path = RNFirebase/RNFirebaseUtil.h; sourceTree = ""; }; - 781E988E0CB8EFE95F712A6D15D687DA /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; + 78292FDA999C9C32726C8A5E4C3A1CE8 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; + 7849699F5D9238F474EA192DBE3B1BD3 /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; + 78545C54F7F735A7E71AC86B01AB3CD3 /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; 7862C607B7BE0510C2D65193F9B4B4F9 /* libTOCropViewController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libTOCropViewController.a; path = libTOCropViewController.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 7878193DAA3EC52A6C7D59A1FFCFF437 /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = ""; }; - 788248476225073802F6DDD8C52E6EB2 /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; - 7883AAFEB26215326CC0898BCEBACE5D /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; - 7883C05ED00ABDCC8429FA9E3FD9A7CE /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; - 7887C82F0C5FEB79528A607A9AF4FDEF /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; - 7891744027814EB6F7BBB3EEA8244492 /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; - 78B460BFD2D95F243722708D53AF7C15 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; - 78E079F329E2EA05ADB7D20605DC4251 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; + 786509F4FA686BA87CF7D9D1756FE1E3 /* RCTLocalAssetImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLocalAssetImageLoader.mm; sourceTree = ""; }; + 78912319CEF3413E7D31B12DDCF6E9D0 /* RCTSettingsPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsPlugins.h; path = Libraries/Settings/RCTSettingsPlugins.h; sourceTree = ""; }; 78EA4FAF835F44E1DF805704CAFA9D89 /* predictor_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = predictor_enc.c; path = src/enc/predictor_enc.c; sourceTree = ""; }; 78F1AEF54D5F3A4102B848FA30901EA1 /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.m; sourceTree = ""; }; 78F46322A0AE7EB0D6FA7E55B04DDF78 /* TestObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestObserver.h; path = yarpl/observable/TestObserver.h; sourceTree = ""; }; - 78F9004D8744F424F748C9A7EFB1D2AA /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; - 7904B9501586BA2896F3C1BC3E1B2E44 /* 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; }; - 7913982620E849A94716CA7242FFA815 /* RNCSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewManager.m; path = ios/SafeAreaView/RNCSafeAreaViewManager.m; sourceTree = ""; }; 791F9B8D660CCC66392DF7B3E7A1CC8E /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = ""; }; + 792E8146D665B9BE40716A7239F38CB7 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; 79402E701A69C8DF3E730013CE270EE8 /* RequestResponseThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RequestResponseThroughputTcp.cpp; path = rsocket/benchmarks/RequestResponseThroughputTcp.cpp; sourceTree = ""; }; - 7945D6FE3AD2068CCD887818DCF8E3D4 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; - 7950D5F8D42922169511C70BC8A76A9E /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; 7957D5180559E76A9D30C43440B199E0 /* NetworkSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetworkSocket.h; path = folly/net/NetworkSocket.h; sourceTree = ""; }; - 795E438BF19E4722C92E047A204889FD /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; + 795879AD145A8FC49CE63D2F23335CD9 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; 7975F4555AD3757824FA4466A2497A85 /* fa.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fa.lproj; path = "Objective-C/TOCropViewController/Resources/fa.lproj"; sourceTree = ""; }; - 79BC87C3410FF8B3408B0216427248B7 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; - 79C9D72B3BF7D52B8E6B78801BBBCE55 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; - 79CB65457B5A9912C3FAF90803E9E420 /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; - 79D877874616F616FD9B90D000C2EE5C /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = apple/RNCWKProcessPoolManager.m; sourceTree = ""; }; + 79815458817C4C36E6AD52E9F494CCCD /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; + 799C66ABBD581DDD88595D23EE45D9DD /* RNCSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewManager.m; path = ios/SafeAreaView/RNCSafeAreaViewManager.m; sourceTree = ""; }; + 79F313B36542D7D26580C516EABE6289 /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7A2F23E4B697DCF260B94A6A4A8E1A8A /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; + 7A37CA79C6B36FB48C96D5E545155E9C /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; 7A5E39873A6677F27B80EDDAA5E8AC81 /* F14Map-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Map-fwd.h"; path = "folly/container/F14Map-fwd.h"; sourceTree = ""; }; 7A67725609E5F803B60526CF2258D59F /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; 7A775134BE2BBC43B646F99B9D67150B /* FIRInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallations.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallations.h; sourceTree = ""; }; + 7A7AD95B78F3A4DF14DA2B010AF9E31F /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; 7A7C6D8E16697B9813BEB8DE1975BA7E /* dec_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse41.c; path = src/dsp/dec_sse41.c; sourceTree = ""; }; - 7A853EFEC2EDF5845BF738E8A03490A2 /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; + 7AA39110DD8D8834D95E5D61309C0695 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; 7AB19467D5F96E09E702AF0A3DB76FD2 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/hash/Hash.h; sourceTree = ""; }; 7AC126BC129D538B800F33EC28D5D75A /* cost_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips32.c; path = src/dsp/cost_mips32.c; sourceTree = ""; }; + 7AC151F4ACB07F1042E6F75F7183386D /* RNFirebaseAdMobNativeExpressManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobNativeExpressManager.h; sourceTree = ""; }; + 7AD03E484778128BB377B052A004064B /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; 7ADC07E6F8AB8508C61B7727E03C3273 /* Futex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Futex-inl.h"; path = "folly/detail/Futex-inl.h"; sourceTree = ""; }; 7AE2F69002D726C18C6E21B84BAD19E0 /* FIRInstallationsItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsItem.m; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.m; sourceTree = ""; }; - 7AF0458FB69E290DDAB01749EB48097F /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; - 7AF1BD557B5652D5FF683C4F402BFB07 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; - 7B0A302C1C770E1D2AC505A1CC17CC88 /* RCTRedBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTRedBox.mm; sourceTree = ""; }; - 7B146B293C998566D39D24B2C5EE51B8 /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; - 7B1AFAFD053657E0139E2976E1B03C55 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; - 7B1C46779D3ED8853D25DB9345D05CA1 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; + 7AFD68A83DDE516F3EC744376B026DC2 /* RCTWebSocketExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketExecutor.mm; sourceTree = ""; }; + 7B070620454ABD843CBAC84F6D6C3662 /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = ""; }; + 7B0B8D92CD92DD9D473C5D6444E69D53 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; + 7B1D9EE485F3205646C5051B7F089AFA /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; 7B317CE30266E849D3ABDC2CBF602601 /* DuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DuplexConnection.h; path = rsocket/DuplexConnection.h; sourceTree = ""; }; + 7B6D26A831CE82E291EBDB3E08181A0B /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; 7B755882455E18414CD2AF4E615548B3 /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = SDWebImage/Core/SDImageHEICCoder.m; sourceTree = ""; }; 7B7B73865CCB3765817B24DF3D68838F /* SocketAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketAddress.h; path = folly/SocketAddress.h; sourceTree = ""; }; + 7B819EFA3A99D5AFE206DDF40E01CCE0 /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = ""; }; 7B8B862A2BB8DD3C2F5379C018818357 /* AsyncSSLSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSSLSocket.h; path = folly/io/async/AsyncSSLSocket.h; sourceTree = ""; }; 7B95F5390A986683EFD138AD4BE0C152 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; 7B9C0630545B5C5225B4A190127D0C68 /* x509_vfy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509_vfy.h; path = ios/include/openssl/x509_vfy.h; sourceTree = ""; }; 7BA9A89DD0043C79CC3773D2A576B47E /* upsampling_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse2.c; path = src/dsp/upsampling_sse2.c; sourceTree = ""; }; 7BBC3B23E8EE049BC21430020FE0977C /* alpha_processing_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse41.c; path = src/dsp/alpha_processing_sse41.c; sourceTree = ""; }; - 7BC8CFA5BFEE5BAD9F3B2BD997723C0A /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; 7BEE7C2366CEEFD94681B02B93483CFF /* CustomizationPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CustomizationPoint.h; path = folly/lang/CustomizationPoint.h; sourceTree = ""; }; 7BF3144925C79D25A7C2564D0DE6E7E9 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; 7BFB63298D093460F7276CE628FD93AC /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; + 7BFD2EF897B8C56DCB198B1BAB5FC9E7 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; 7C0E589628171911A1111FDFEA643A78 /* AtFork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtFork.h; path = folly/detail/AtFork.h; sourceTree = ""; }; + 7C30C30074F4C0A197B79ED68957C6ED /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; + 7C389B355B317DAF3433694C53E04F99 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; + 7C5BF9AA9C782B87608E0F4E3255B3AA /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; + 7C618878BFD5F90425C57D631F36882B /* RNFirebase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFirebase-dummy.m"; sourceTree = ""; }; + 7C62E93D5388B7592EDAB0D07709AE40 /* RNFirebaseAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAnalytics.m; sourceTree = ""; }; + 7C6406852A37DF0AEA527CEAEB1001E0 /* EXRemoteNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXRemoteNotificationPermissionRequester.h; sourceTree = ""; }; + 7C654678F23645C68953FBF5656D65B5 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; 7C65F5B0700270E45B94C5E35FFBD4D8 /* PropagateConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropagateConst.h; path = folly/lang/PropagateConst.h; sourceTree = ""; }; 7C6B620F69BC5A02DD5A704A86A2A9DB /* FLEXNetworkTransaction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkTransaction.m; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkTransaction.m; sourceTree = ""; }; 7C745A79AF19F774C0B130D70815EC58 /* filters_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_sse2.c; path = src/dsp/filters_sse2.c; sourceTree = ""; }; 7C75FA0FD7A1F3608E0F85A2055ED66B /* buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = src/event2/buffer.h; sourceTree = ""; }; - 7C782DEE90C5CE37713B612FA60063C7 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; 7C7F0E0ABB3CCAD83667042C8771E973 /* token_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = token_enc.c; path = src/enc/token_enc.c; sourceTree = ""; }; 7C825ED21B535E55F3D0EEE80B078549 /* FrameHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameHeader.h; path = rsocket/framing/FrameHeader.h; sourceTree = ""; }; - 7C9103B4E1E1189CB5618B559EACE888 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; 7C98A071646EAE29F19D01679B12360B /* SSLSessionImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLSessionImpl.cpp; path = folly/ssl/detail/SSLSessionImpl.cpp; sourceTree = ""; }; - 7C98C17532E2B34D7124DF2F7AA808D8 /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; - 7CA01656599DEAD68E4062D94403CCBD /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; - 7CA92141421806ADF713C093F7CF71D2 /* EXVideoThumbnails.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXVideoThumbnails.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7CB13247273DA1EDC15E72E4B74C2E1C /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; + 7C9A64743CE64AB168ABC1325EEA9023 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppState.h; path = React/CoreModules/RCTAppState.h; sourceTree = ""; }; + 7C9BCECBF660D3275D3D5A4996817653 /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; + 7CA58CB6C1F0627723A8061FDB5F32DA /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; + 7CB50B1B70E1F32BA1A0D0477F868DBE /* rn-fetch-blob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.xcconfig"; sourceTree = ""; }; 7CB5C667C1590F39BD2834E9BC051BD2 /* ShutdownSocketSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ShutdownSocketSet.h; path = folly/io/ShutdownSocketSet.h; sourceTree = ""; }; + 7CBD602AD6DCD7613DB5467CED953E8F /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; 7CD0C39047A1B7B83CFC0981F4638A13 /* RSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocket.cpp; path = rsocket/RSocket.cpp; sourceTree = ""; }; 7CD3DAF8C6706B52472DB896820BA9F4 /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; 7CE8CFE93F065B5AE69EE4458DB278F7 /* md5.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md5.h; path = ios/include/openssl/md5.h; sourceTree = ""; }; 7CF6865EB0BF3A192313356A078FEF06 /* GDTCORUploadPackage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadPackage_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadPackage_Private.h; sourceTree = ""; }; 7CFC5F812F532B846C760DB22721ADF9 /* Pods-ShareRocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ShareRocketChatRN-acknowledgements.plist"; sourceTree = ""; }; - 7D0348860E2DCDF89CFDCBB47AE6638F /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; - 7D15E6C15A7316E075DE1480693E3EC3 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; - 7D1701087B20DC5B9A8EB0325671F231 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; - 7D22AA44235C44FBD8317D1BAFC531C5 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; + 7D0B357A176559069BF4F07A11BD76F2 /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; 7D2A072D667BE41643EDC97BAC2D32FF /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/utils/utils.h; sourceTree = ""; }; 7D608428DD410ED2575A7BE646697BE3 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Private/GULMutableDictionary.h; sourceTree = ""; }; + 7D762E43B438E1B0A696CE4CF33E1D2F /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = ""; }; 7D8A8FD62F6DD9E281B25AD6DCEFA865 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = "Objective-C/TOCropViewController/Resources/es.lproj"; sourceTree = ""; }; 7D9B2787E581ABE1196173416CD9CF93 /* TOCropOverlayView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropOverlayView.h; path = "Objective-C/TOCropViewController/Views/TOCropOverlayView.h"; sourceTree = ""; }; 7DA0A76583DF71D03B06B268C8E1BD8E /* JSONSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSONSchema.h; path = folly/experimental/JSONSchema.h; sourceTree = ""; }; - 7DA2BEF8DCD132D261291E354D9E01F6 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; 7DBB41E2265A85A4A5A23B38A7B6E88E /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; - 7E0881BC6EFECE3262DA82753F8F5341 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; + 7E0E27B24E2B25BC67038E12CDDC0EBD /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + 7E124D38A17FD4250EBC351A8C9F437C /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; 7E40F2D58A72308F8A10C0603682646F /* lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc.c; path = src/dsp/lossless_enc.c; sourceTree = ""; }; + 7E4E7A3A90D98C8D9583F48BA556A809 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; 7E5138C96BF9E64D500B447348CB329D /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; 7E62C990994B163B1E63FABB01328E5E /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = ""; }; - 7E756124372A4E7FA694676683FA1589 /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; - 7E92A008EB759EBCB9FEAA6F7838ABD1 /* 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; }; + 7E7E46B76D0AFE3DFC477DC55C5DB326 /* libEXAppleAuthentication.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAppleAuthentication.a; path = libEXAppleAuthentication.a; sourceTree = BUILT_PRODUCTS_DIR; }; 7E9752BC689397DC85C1EB924545728A /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; 7EA9C28C027D146D8046B627AEC38B10 /* SKNodeDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKNodeDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNodeDescriptor.mm; sourceTree = ""; }; 7EA9E7E0A8E853CA0F94059F56F6E222 /* ScheduledFrameTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledFrameTransport.h; path = rsocket/framing/ScheduledFrameTransport.h; sourceTree = ""; }; - 7EAA37A2A4911AD73687B72C8D0F5311 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; - 7EBD9A7B592CFA429F02C49F03CF346F /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; - 7ED8D693913D9C26AC53AC1FAD8D56BE /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7EDDBD66CBFF6B1708122EE42C2FB9C5 /* 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; }; + 7EEF847DAF7DFCB10B8D9F2F6AD2C9AB /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; 7EF180FCE27D736A47301B0BD8F72177 /* ScheduledSingleSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSingleSubscription.h; path = rsocket/internal/ScheduledSingleSubscription.h; sourceTree = ""; }; - 7F5B13FF4E57C544291150EFD89A36F6 /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; + 7F0600C755BC4C06B2F73F1604FE74D4 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; + 7F0A7446707EA1C6ED5A30A9CC9AEDD4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 7F28FCD5E18CE510ADEDC2288AF4189C /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; 7F6D72CF3105B4E6E2B3311514B7C10B /* StringKeyedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedSet.h; path = folly/experimental/StringKeyedSet.h; sourceTree = ""; }; 7F8A10F0233DA3B3CBEE27074EBFC203 /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; - 7FB6659D78CDBEDF7792CC526BE5B252 /* EXImageLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXImageLoader-prefix.pch"; sourceTree = ""; }; + 7FB0C95DF7E2E303FFFE3017E48AF553 /* react-native-safe-area-context-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-safe-area-context-dummy.m"; sourceTree = ""; }; + 7FBBBFE618BCE4C5D50EB9810A6637CD /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; + 7FDA191D4CCF1F4510BEEA4F4E9F2B67 /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; 7FF01D60E0DE1198837993559A8B2889 /* idea.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idea.h; path = ios/include/openssl/idea.h; sourceTree = ""; }; + 8006576A15E920884603E8789CAB9F3C /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTLinking.a"; path = "libReact-RCTLinking.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 80268938CD89348C2550E423A921845F /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; - 8034F6B895325E52AD211E870AF7344D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 8047AAD4980D8D52D9E71B867281B50F /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; - 804B80B024847B85E875989E81FC8A68 /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; + 8027FF476E99F0262910226C469925AA /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; + 80448D56DD2B463BCDBFBB3E5763237E /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + 8054C319CDF752742F2FD0C739ED8E1E /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; 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; }; - 8076B39C0DF1D1B8546428FA63CB850A /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; - 80831920B0F94217F86C1F661C6EF6F5 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; - 80836B25B6B98EE8A8695874D5CFC00D /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; - 80958931E5FA592699C3A969DDFF51FC /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; 8095BB8053756018C2AEBCCA3464114B /* enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips32.c; path = src/dsp/enc_mips32.c; sourceTree = ""; }; 809EC9165948C2BAF546C95AD86A48B6 /* Cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cast.h; path = folly/lang/Cast.h; sourceTree = ""; }; 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; 80B52EAF8F2F8CB6936A987840B87648 /* SysMembarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysMembarrier.cpp; path = folly/portability/SysMembarrier.cpp; sourceTree = ""; }; - 80D238AA7EC7C5899E5E561AA17369C4 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; - 80D4810D33665522C8172471CD6F0912 /* RNFirebaseAdMobBannerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobBannerManager.m; sourceTree = ""; }; + 80B980A2DC985D47E5B4F3CF526DFD78 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; + 80B9C566904D39AD05752A435EC43878 /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; + 80CF828602B6DB507E88F991AE246BED /* RCTActionSheetManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTActionSheetManager.mm; sourceTree = ""; }; 80FEC1FF4A7FBCE76FD9814523AC0CA6 /* Folly.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Folly.xcconfig; sourceTree = ""; }; - 810368266CDC54C4FD184409A0100C33 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; 81113C05310AA610F499A9D3D80DCDF2 /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = xplat/Flipper/FlipperResponder.h; sourceTree = ""; }; 81147D7932B8A1B042539ACFC2A3BE4D /* Enumerate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Enumerate.h; path = folly/container/Enumerate.h; sourceTree = ""; }; + 811549BA5884DCB69CBD81DD7841462B /* RCTUtilsUIOverride.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtilsUIOverride.h; sourceTree = ""; }; + 8115FE918D09220F2DE70FDF0B87A2E1 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; 812075657E590B5CDDA368DC0ABDE940 /* NetOps.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = NetOps.cpp; path = folly/net/NetOps.cpp; sourceTree = ""; }; - 814D0A2257FDA7280D125A21A9FF57D7 /* UMModuleRegistryHolderReactModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryHolderReactModule.h; sourceTree = ""; }; + 813969899FF7A97B2580ECA23BEF72A2 /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = apple/RNCWebView.h; sourceTree = ""; }; 81554050354D000790D952969A22BEFD /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; - 817834EBD7CC1B69068254D93D17F76F /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = ""; }; 817CB6DF4BFCD9AF081CDEEB072C48C4 /* F14IntrinsicsAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14IntrinsicsAvailability.h; path = folly/container/detail/F14IntrinsicsAvailability.h; sourceTree = ""; }; - 817EA3D9E4075E22C8E1D7E5FB63F5D9 /* CallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallInvoker.h; path = callinvoker/ReactCommon/CallInvoker.h; sourceTree = ""; }; 818C77783BD22EAC8309ADF4787BA66F /* mux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux.h; path = src/webp/mux.h; sourceTree = ""; }; - 81B175DB517E21D3E7D3D04D53D407A5 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; + 81A037AD65496FFC1B100F0F22692DEC /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; + 81AD6C487CCEAA0F5DAFF49CC9DDD9F9 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; + 81F5C2EF37CF8CEA19EE31033EF82125 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 820116149E7F0B0D49DD0A6E6984027D /* WarmResumeManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = WarmResumeManager.cpp; path = rsocket/internal/WarmResumeManager.cpp; sourceTree = ""; }; - 820F8842B24170991B1792B2091775EB /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; - 8211C849B0BB27D35A0F6DE827D32200 /* RNFirebaseCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseCrashlytics.m; sourceTree = ""; }; - 8223153CA67171EE8985EB32DB277F5B /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; - 822B68D5798FAF66B06FDEFA1A122687 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = React/CoreModules/RCTWebSocketExecutor.h; sourceTree = ""; }; 822D4EB1CE679526E7E91CB7FB31A3CD /* rescaler_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_neon.c; path = src/dsp/rescaler_neon.c; sourceTree = ""; }; 823CDE1E20E25209A991C64E100926EF /* Fcntl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Fcntl.cpp; path = folly/portability/Fcntl.cpp; sourceTree = ""; }; - 824826292AF68DC62ACAB4F9E1F8EDD9 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; - 8260B0F23481C9CD023F0941B574C39D /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; - 828283E7EC88A696A69446E108DA4F42 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 82534E17B8C568B7A4B034494BFCFCDA /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8281F16DD5F0C7D51335DF5FCD121D39 /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = ""; }; + 828FBD145761D75B0E31ABC077DB5116 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; + 82B4266BB676B66E2D74AD3DDE2289B0 /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; 82BB41D75E00673F2C570791310E59A2 /* GDTCORAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORAssert.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORAssert.h; sourceTree = ""; }; 82C01AE34B43424EA0DE03555983062D /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; - 82C89CDE844236EA18A85AC998F20C01 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; 82CFE6817EEABE26D5D408F9D8C06852 /* TOCropViewController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TOCropViewController.xcconfig; sourceTree = ""; }; + 82FFF75FB306AB23B867834650F67403 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; 8306941218A27B7FAB0F5F24FDA091E0 /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = ""; }; 830FD88C94F259C1A38BAE2C9E877464 /* demux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = demux.c; path = src/demux/demux.c; sourceTree = ""; }; - 832BFBD5B4D8F5A6474A1205C9A5F781 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; + 8314C783AAAD40DF3EC8B2AB3571FDCD /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; 8331554D3A413E7FCEE06A54CBD9353B /* ConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionFactory.h; path = rsocket/ConnectionFactory.h; sourceTree = ""; }; 833332B1E0595783A9D2377B0749EAC3 /* 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 = ""; }; - 83490E4CFA06A68F3D77C88D18926441 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + 8349C1ED2875E354054E1A1C6D0DCAB1 /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; 834CA45B23BDAEA96E6F41D0C48F49EE /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; - 834FF4DE768628BEB59D5C710482E567 /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; 83583FC1B109C80FBCC8A68E68DF2276 /* PriorityUnboundedQueueSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedQueueSet.h; path = folly/concurrency/PriorityUnboundedQueueSet.h; sourceTree = ""; }; + 835EC2AB03939CB3829F05F29BF62A32 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; 8374BECF9023BBF87F380775FA231776 /* UTF8String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UTF8String.h; path = folly/UTF8String.h; sourceTree = ""; }; - 838B0E00132CBB87EE347175D86573F0 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; - 83B8CA6C9AFC665C3A24D768AEA995AD /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; - 83CC034CE44E984FDE544845227AA356 /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; + 83A50FFDF1FBD07F4FD73E119C3704D2 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; 83CFF644F37AB474C65E4D5EB0CD86FE /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; 83E57D81AC9B27761CE40C566F67EB80 /* GULKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainUtils.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m; sourceTree = ""; }; - 83ED5419D765BF8786FEE8E3BC0ACD92 /* 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; }; 83F11EE95BDA3D4C8755C4D66D0B74D6 /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/ssl/Init.h; sourceTree = ""; }; + 83FBC58A4E8CE4DD3045967787AC7A8A /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; 84019186F066F8D813942800C2E415BC /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = ""; }; - 84261ADE14135309915CABC032892D89 /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; - 8432996E1A83786BF3950A9216943A28 /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; + 842878067937A44B227D66C01C43030D /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; 8449A83B76B6D20EA14E5B02BF02BD30 /* SKDescriptorMapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKDescriptorMapper.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.mm; sourceTree = ""; }; + 8455501E57C734BAE091778D44D2E199 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; 845577FEF371C2976581AA6142746A7E /* ThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadPoolExecutor.h; path = folly/executors/ThreadPoolExecutor.h; sourceTree = ""; }; 845E6849A4D3BBECFCA6E87156A91290 /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = ""; }; - 846E289778E9CB2CF36CA55865F975F2 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; - 8471AF838A55535824F22BA8A9FA0969 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; 84887842153D8E6D48F397114335F4A0 /* Shell.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Shell.cpp; path = folly/system/Shell.cpp; sourceTree = ""; }; - 84A6CCE3AE239A289124E91828AA0248 /* RNFirebaseInstanceId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseInstanceId.h; sourceTree = ""; }; + 84B6CA5103C86DFBDF45453A429A0B28 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; 8507EE48E0C9C50B5318C5CF50122148 /* TimeoutQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutQueue.h; path = folly/TimeoutQueue.h; sourceTree = ""; }; - 8511196A00D9F17F33EECD75EE612D1D /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = ""; }; + 85155F53DD15AAF844D7921324350B39 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; 852DC564997734F4D539E66A2B03F20B /* Pods-ShareRocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.release.xcconfig"; sourceTree = ""; }; + 852FE4D4C630CDD04A0F67358C135738 /* RNFirebaseFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFunctions.m; sourceTree = ""; }; + 8531146500933BC6E506E180A61DEEB1 /* EXAppleAuthenticationMappings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationMappings.h; path = EXAppleAuthentication/EXAppleAuthenticationMappings.h; sourceTree = ""; }; 8531CB0EA12A95CB820F14BEF2D836D9 /* pkcs12.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs12.h; path = ios/include/openssl/pkcs12.h; sourceTree = ""; }; 85387473295C9E38C32880334B230F74 /* ManualTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ManualTimekeeper.cpp; path = folly/futures/ManualTimekeeper.cpp; sourceTree = ""; }; + 85402553C855BA51F1055005117A39FF /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; 8543FE630989B4DB0AFAF777BE0ABA77 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; - 85653A67F4DAFE72CB27698A0137506B /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; + 854D1744DD389D5D8C1ACE4FA1387DE9 /* REAUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAUtils.h; path = ios/REAUtils.h; sourceTree = ""; }; + 85684341D05B09C596F5F3B29156D604 /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransport.a; path = libGoogleDataTransport.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8573BA2D023860A9F6D970B57450563C /* PriorityUnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedBlockingQueue.h; path = folly/executors/task_queue/PriorityUnboundedBlockingQueue.h; sourceTree = ""; }; - 857582D8A41ACD94446254C89ED2C945 /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; 85817BE98ECD2825C99892444497E8B6 /* EventBaseLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseLocal.h; path = folly/io/async/EventBaseLocal.h; 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; }; 858E89073FD01DA1518836643725F960 /* FIRInstallationsIIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDTokenStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m; sourceTree = ""; }; 85AC1326A0F55B702F31FCB4E29C0D18 /* bit_reader_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_reader_utils.c; path = src/utils/bit_reader_utils.c; sourceTree = ""; }; + 85AC90391ADECD53E3556D7003D3A23F /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; 85C9BABF3B59E5A42C45C1499E076A58 /* json_patch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_patch.h; path = folly/json_patch.h; sourceTree = ""; }; + 85CC15D655072A7A9895561BE72AD16C /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; + 85D7EA372D091B41050D682B16FBD362 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; 85F7C760A276EBFC7EA9BBA94C4EA357 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; 85F8F0AB972F155D2DB653D0022B587F /* alpha_processing_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse2.c; path = src/dsp/alpha_processing_sse2.c; sourceTree = ""; }; - 85FDFFB455E68FB0A3DCC7A7CBB47158 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; 8603EA0586A87A1E806232F196E86E81 /* rc2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rc2.h; path = ios/include/openssl/rc2.h; sourceTree = ""; }; - 861D71A5C1704ACAA69E03C6E34AFC71 /* UMPermissionsInterface-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMPermissionsInterface-dummy.m"; sourceTree = ""; }; + 86063991790753F559A821BD48B65DF7 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyboardObserver.h; path = React/CoreModules/RCTKeyboardObserver.h; sourceTree = ""; }; + 86159C8534820A22070AD2CBF12AF275 /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; 861E52E0F513A697B05B52BAB1712F11 /* UICollectionView+SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionView+SKInvalidation.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UICollectionView+SKInvalidation.h"; sourceTree = ""; }; - 86279D6F840FCC2B4D1F9372E3DF2DD5 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; 863FE9B5F77248181613FA2BDB5ED4FA /* AsyncTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTrace.h; path = folly/detail/AsyncTrace.h; sourceTree = ""; }; - 864BE71E829E73221991F5BC988DC085 /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; - 864CF5DDB5CF30FBF99B6687CAFAE43D /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; - 8674838230E26E5E95763F4CF0FB79F0 /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; 86779627046C38D9E5C553C1856D3971 /* Stdio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Stdio.cpp; path = folly/portability/Stdio.cpp; sourceTree = ""; }; 867927D4402F4B8C40812057FCAF3150 /* iterator_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator_enc.c; path = src/enc/iterator_enc.c; sourceTree = ""; }; + 867CAF5B22EC96C7FAF2D9FEBDE794F8 /* UMPermissionsInterface-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMPermissionsInterface-prefix.pch"; sourceTree = ""; }; + 86A09AE5C83D80F26243E9C6A3BC235E /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; + 86AC22B4BB409F1E101B286CF2109DB4 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; 86AC27475EFFAFF90ED461FD8F0DEC1F /* DecoratedAsyncTransportWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DecoratedAsyncTransportWrapper.h; path = folly/io/async/DecoratedAsyncTransportWrapper.h; sourceTree = ""; }; - 86B07A1B0238522BD0E8D77766F78D5A /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; - 86BEE8A41433AAEDC75A9C8F9334E12C /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; + 86B6EA59C8167D6CAF1A59391D82DA84 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; + 86BCF8918FA45AE14CB04B6ADA4D6627 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; 86CC666650265ECF3DD15EDCF8418BA2 /* FIRInstallationsAPIService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAPIService.h; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h; sourceTree = ""; }; 86CD7480166E478F25F1C37B316E3B56 /* GDTCORTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h; sourceTree = ""; }; + 86CF0BC0CA68A46963CF070AD7302459 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; 86DA897FDF9E8F354124B4AB5C9D7D74 /* rpc_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_compat.h; path = src/event2/rpc_compat.h; sourceTree = ""; }; 86DE475B8C6CB8C7E6355AEEC42F2E1C /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; + 86E393A367FE82ABC7B17ECBE2B0B1E2 /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = ""; }; + 86E7A2742CDDAC5A74CEFA4B2A333DE2 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; + 8703D2055FA62C7E75DC2CEC5F8A8D2A /* RCTTiming.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTiming.mm; sourceTree = ""; }; 87214272F27375D3F241FF271FEDB77A /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = ""; }; 874519DA12D7FAC072DD95515A159F03 /* ScopedEventBaseThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopedEventBaseThread.h; path = folly/io/async/ScopedEventBaseThread.h; sourceTree = ""; }; 874DD879EBBA0887150F2F86F07E12C7 /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = SDWebImage/Core/SDWebImageOperation.m; sourceTree = ""; }; 874E66AD127D6AABA1479A242A5DF47A /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = ""; }; 8757D947022B1CD57422EF439A200556 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/experimental/Bits.h; sourceTree = ""; }; - 8761C23869921628249F9F2A1491B422 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; + 876083BCCE2D2CC8E94DE4899EB6ADAD /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; + 87652A5B57CFCE1AE72BF7CAE1484B6F /* react-native-background-timer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.xcconfig"; sourceTree = ""; }; + 877ECD691ABB300A0857DC2D3F38502D /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; 8783AFFE02885B74233095A928454D3C /* IOThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOThreadPoolExecutor.h; path = folly/executors/IOThreadPoolExecutor.h; sourceTree = ""; }; - 878F95DD6D824A4B657EFC0C29CEBE6C /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; + 87879C5F90E0BF186BD7EB7751024664 /* RCTNetworkPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkPlugins.h; path = Libraries/Network/RCTNetworkPlugins.h; sourceTree = ""; }; + 878DC5AA91F3DFEE8A5FCE23CDF9F154 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; + 8794386314BC0C939B3CB5F62BEF3F43 /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; + 879C4675A42A906C9C1BAC3DFB52488A /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = ""; }; + 87A15D379D5A6FF0CA7347DCFDE9F8DD /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; 87AAB06C49E8BA84719378BA9A839301 /* Time.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Time.cpp; path = folly/portability/Time.cpp; sourceTree = ""; }; - 87B295827CD3B913A62B08E3CD47EFBA /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; 87B68BAE628A2A8CA9917371672FCF56 /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = ""; }; - 87EC72DB8312E12EA5686A7E6ADB07F3 /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; + 87B71FD51EA1572EA6A630BDD7648867 /* ReactNativeKeyboardTrackingView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardTrackingView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 87BC5392A15D33DF52E1EA10F18A8449 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; 87EF947C2BC99F143419A619075D6445 /* AsyncSignalHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSignalHandler.h; path = folly/io/async/AsyncSignalHandler.h; sourceTree = ""; }; 87F1EBB941B35CC24467F4DC20EF659B /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = ""; }; 87F2F02BFE3253834E0979DE76815444 /* bufferevent_ssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent_ssl.h; path = src/event2/bufferevent_ssl.h; sourceTree = ""; }; - 87F971C373C859EE022A86BD8E262928 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; + 87F5B9141D7DADA8D05A9CFFBDE907C6 /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; 87FB6F51543C5D49366322E741CBF6E6 /* Futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Futex.h; path = folly/detail/Futex.h; sourceTree = ""; }; - 87FCF0839B80C4606A45ABEECCF40575 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; 87FEC7BDD5CE85B69C06F132CB3BE556 /* RSocketClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketClient.h; path = rsocket/RSocketClient.h; sourceTree = ""; }; 87FF38169DC4F726915F343D04342F3A /* WebRTC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebRTC.framework; path = Frameworks/WebRTC.framework; sourceTree = ""; }; 881F444B09AAEEE836F18BB0EE44916A /* SKHighlightOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKHighlightOverlay.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitHighlightOverlay/SKHighlightOverlay.h; sourceTree = ""; }; 882DEC08C6332CC1D2DB9FE03ACB481D /* OpenSSLHash.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLHash.cpp; path = folly/ssl/OpenSSLHash.cpp; sourceTree = ""; }; - 88321BB6A521C719898D84C70174371E /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; 883DAC6C7BEFCDBE955F00F5AB4B00AC /* FunctionScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FunctionScheduler.h; path = folly/experimental/FunctionScheduler.h; sourceTree = ""; }; - 88438842749627D7FE5120410D9D9F8C /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = ""; }; - 884963FFF7286D1F95FF395295AE946E /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; - 884CB87E57BD25F20F59B6060E7A44D3 /* RCTImageEditingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageEditingManager.mm; sourceTree = ""; }; + 884E3962C61598FE083992ECDA7986DF /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; + 887C85C30BFFB73C5ACCE12EB42C4735 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + 88956C81AA4B077BC4788F5BD4D3B66D /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; 88971119938DB233CA8D9C3F4B661533 /* UIColor+SKSonarValueCoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UIColor+SKSonarValueCoder.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIColor+SKSonarValueCoder.mm"; sourceTree = ""; }; 88AE1DDDCF2704E074DA97D4881CCB17 /* LifoSem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSem.h; path = folly/synchronization/LifoSem.h; sourceTree = ""; }; - 88AE2466CE9D3EE389C1998564A9D1E0 /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = ""; }; - 88BB66B7FBB43DB09249D407D844F08F /* UMPermissionsMethodsDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMPermissionsMethodsDelegate.m; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.m; sourceTree = ""; }; 88BB7BA6E4C7D37135B581C10BA17555 /* GDTCOREventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDataObject.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventDataObject.h; sourceTree = ""; }; - 88E857D0E4B228497060896BAADC4309 /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 88F577B012AF7393F7179A8A5A123DAF /* ProxyLockable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProxyLockable.h; path = folly/synchronization/detail/ProxyLockable.h; sourceTree = ""; }; - 89176D7625D1F30283283C735D37A49C /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; 8919BF37BBF0ED23EB9EF0C3029F1AA1 /* EventCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventCount.h; path = folly/experimental/EventCount.h; sourceTree = ""; }; 8924A173226D2B10DDD893B3319E05A5 /* SKSearchResultNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKSearchResultNode.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKSearchResultNode.m; sourceTree = ""; }; 892713889486EA2800AA0E9C659FEF2C /* FlipperStateUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStateUpdateListener.h; path = xplat/Flipper/FlipperStateUpdateListener.h; sourceTree = ""; }; 8933F929FA40BDE07338D3050D54C5CD /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; 893DF5C07750AECEFC175DB35A86CC77 /* F14Defaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Defaults.h; path = folly/container/detail/F14Defaults.h; sourceTree = ""; }; - 8945C5CE17048D9A807B3B863A826CAE /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; - 895AFF7485D12E025A20A45963852D6C /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; - 896E3405123D8222C02B5AF250E310BD /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; - 8990CA564DA7E586F347724564AF1F7F /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; + 896C4FB5CBD85DE33F5DCC0E34C9FC89 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; + 89720CB68A82B2FF5B98EE4FA09BF861 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; + 8972D5894EA23710DC85AAD79723BCC6 /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNVectorIcons.a; path = libRNVectorIcons.a; sourceTree = BUILT_PRODUCTS_DIR; }; 89AB6E474FACC815694CD925415864A5 /* EventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventHandler.h; path = folly/io/async/EventHandler.h; sourceTree = ""; }; + 89AC205EF8525776E545D30976209280 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; + 89B66AA65776D5D011CDADCFCB4F1093 /* RNCSafeAreaViewMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewMode.h; path = ios/SafeAreaView/RNCSafeAreaViewMode.h; sourceTree = ""; }; 89BF11E56AFF3B7B285F3EB179397794 /* GDTCORUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadCoordinator.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h; sourceTree = ""; }; 89D545D00ADB0D177CAAD36AE25FD7A8 /* Subscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscription.h; path = yarpl/observable/Subscription.h; sourceTree = ""; }; 89E3A7F92AB0ABBA446EB760B9FDA242 /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = ""; }; 89E808B4A9703BA1DCFE85A9396470FB /* SKBufferingPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKBufferingPlugin.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.h; sourceTree = ""; }; + 8A1DBB81EFCFB6432AC159B9FB62D2FF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 8A21DF5AF76A2B8062D40CB737C1DADA /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; 8A27E7CCF0BE3E67CAAEB68881FE3132 /* DiscriminatedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtr.h; path = folly/DiscriminatedPtr.h; sourceTree = ""; }; + 8A4DEC464191F28F0E9ADFCAF7A6F699 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; 8A4E7BBCA6F5507E82249086A6ED9455 /* HazptrObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObj.h; path = folly/synchronization/HazptrObj.h; sourceTree = ""; }; 8A6B3A9C0BA27C92014529507E9122A9 /* FIRInstallationsStoredItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredItem.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m; sourceTree = ""; }; - 8A7D1BFE521D2C993AB256BE01D2D998 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; - 8A8483349E35D9DCA566CD160A24FC4F /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; 8A9577B62669DE44C9220B05B75BA13E /* buffer_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_dec.c; path = src/dec/buffer_dec.c; sourceTree = ""; }; - 8AA97DDF312021A67A66C576CBF31CF1 /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; 8AB61E70D6808E0040F3B13CD7755458 /* SysTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTypes.h; path = folly/portability/SysTypes.h; sourceTree = ""; }; - 8AB80FA6621336280CCFF2D26D927887 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; - 8ACFEE7F35A7FDA56187C4913ED971B6 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; - 8AD88D369AE5FCBBDAEA3A65A1242340 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + 8ABCD543DFDA4EF993833E21A010BD22 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; 8AE41E7F1254E66C3663DDF781E9762A /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; - 8AF5C046C9FEA5644E462470FB169CF8 /* RNRootView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.xcconfig; sourceTree = ""; }; - 8AF741FBFD4302AB4CC76070ADB906C9 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; 8AFFC7D83D1CF31BC68FD50AC904CF94 /* Fabric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fabric.h; path = iOS/Fabric.framework/Headers/Fabric.h; sourceTree = ""; }; 8B091310AD634FF79967BBCB2BEB5DC0 /* PackedSyncPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PackedSyncPtr.h; path = folly/PackedSyncPtr.h; sourceTree = ""; }; + 8B5B25E03A4B03627DAF31A4398E5009 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; + 8B630653DF2C7D123BDAACC2154B1C69 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; + 8B6A582F34B9B493FF15016EE89BE48F /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; 8B6AF205362728DCEA85500386C83D19 /* EventBaseBackendBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseBackendBase.cpp; path = folly/io/async/EventBaseBackendBase.cpp; sourceTree = ""; }; - 8B6F81B3B0CD61E1951D55B1ABC4C31C /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = ""; }; - 8B70A44246ABB7757F1F1344C2E65CAD /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; 8B73DC24758111564F1097BFA9B9134E /* event-config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "event-config.h"; path = "src/event2/event-config.h"; sourceTree = ""; }; - 8B79FC781979D53C3D281BD06EC26E06 /* RCTNetworkTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkTask.mm; sourceTree = ""; }; - 8B8D7C247710F589A7D5C33233C3917F /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; 8B92BDD940F925497B067CEF1DAE04BC /* PolyException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyException.h; path = folly/PolyException.h; sourceTree = ""; }; - 8BBDC55592B966BC42FA09853201E349 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; - 8BBF60887E51831BA17F9FCC006CE447 /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; + 8BF0077A70654BAC3859123D7D2207EA /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; 8BF3FE3E84F42D1F8138AC883498CA26 /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; 8BFE48D458DA92D142AE0F0EA6281A13 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = src/webp/encode.h; sourceTree = ""; }; - 8C052C1FB343F7F0A9BF08D183CFD4EC /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; 8C0BBC13610A1FC0E0DEFCC8F79316D3 /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; 8C1460D9084CFBCE271CE70F15C7785F /* SysMman.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysMman.cpp; path = folly/portability/SysMman.cpp; sourceTree = ""; }; - 8C1880B513634EA016258921EE8E14A8 /* RNFirebaseMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseMessaging.m; sourceTree = ""; }; + 8C15AF75882E5BE815D73705B6F34817 /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; 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; }; 8C4A42E529DA8C82241503BA7483D779 /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = SDWebImage/Private/SDDeviceHelper.m; sourceTree = ""; }; 8C5AC01B5CB0AFBDACB3D1426B969A4C /* ConstexprMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstexprMath.h; path = folly/ConstexprMath.h; sourceTree = ""; }; 8CA1DB30E7928B709C6A3E2B5874112D /* 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; }; 8CF18D8C1B78F52A805A7F48A5B171AC /* event_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_compat.h; path = src/event2/event_compat.h; sourceTree = ""; }; + 8CF69344B3E34A32C259EDE32B6D68C1 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; 8D01AA4AAB14EE732D7B5D7F545D5AED /* huffman_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_utils.c; path = src/utils/huffman_utils.c; sourceTree = ""; }; - 8D01F4AD6506AD0945625F47438F57EE /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; 8D117A13E94F82321D8B4159140BC45B /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; - 8D2700DF3CF92D5D0959C6DECB90A629 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; + 8D12E7F5CECBA2EC6D11887658B661A2 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; + 8D33DE116D0794F9ECB3257024ACF204 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; 8D47A14870CDE9E0FCF0FCEA6367E86F /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; 8D4C87CD983A96E736323386CF3F2224 /* DynamicParser-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DynamicParser-inl.h"; path = "folly/experimental/DynamicParser-inl.h"; sourceTree = ""; }; 8D4CDCA061F91341EAB5C84F1240915D /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = ""; }; - 8D94744C5D6317657409A956D035A95A /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; - 8DB055F2F0A57992EDE9F57B8090C83A /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; - 8DB39230D42F7725C5D4198A6BC2C8FE /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; - 8DB5F0EB4AC10D3E3FE671D078D2EF6B /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; - 8DE5A822AFCD779DC8D1B4D7E970EA5E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 8D520DB62B2AA74B6834DC2104F6A540 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; + 8D5E73822210E38DB75755A0BBD9557B /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; 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; }; - 8E11A137B30F437BBAD3C171706E893F /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; - 8E3305844444A129D964A1C780DBA683 /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; - 8E3978DF7ED57361A352828DF9842EB9 /* RCTVibration.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibration.mm; sourceTree = ""; }; + 8E2F48AAC45A184290900EF2E16526FA /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; + 8E5089BAFB07659F6E7AC0E0316AC029 /* 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; }; 8E6373AA654AB7C0358CCE7BFE827109 /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Public/GULKeychainUtils.h; sourceTree = ""; }; - 8E68EB32E11F89353AF2156EF1A22C38 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; - 8EA23C3BB3D64F8EB47A6FE06269D2B4 /* RCTTVNavigationEventEmitter.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTVNavigationEventEmitter.mm; sourceTree = ""; }; - 8EA6243FC59AB7F33560E5E648406E38 /* RNUserDefaults.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.xcconfig; sourceTree = ""; }; + 8E738DA767C7CE949F8736ECD117A1FC /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = ""; }; + 8E76D6C44A81A38F97B20CB129A923D3 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = ""; }; + 8E77041415D1CD541F3146A37A299F94 /* RCTNetworkPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkPlugins.mm; sourceTree = ""; }; + 8E787D7856136E44A7AEABFC6D199618 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDeviceInfo.h; path = React/CoreModules/RCTDeviceInfo.h; sourceTree = ""; }; + 8E9324CC0326A8408FF7A078995E113D /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; 8EAD4BBB6D5884B50C6D971DDBA77804 /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Frameworks/GoogleAppMeasurement.framework; sourceTree = ""; }; - 8EF5EB1DDA2F8F59AD377272F050B005 /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = ""; }; - 8F121A69CA8A6886D40D5A86ADA16E5A /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; - 8F2E5A60687B26ECCDAEB921308A2BD5 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; + 8ED94D8BE07D4006C71DDCE06EF299BA /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; + 8F20EA7B3F5905572DE6CF16610A8A2C /* RNCAsyncStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorage.h; path = ios/RNCAsyncStorage.h; sourceTree = ""; }; + 8F365C38338057419C36E893C210572D /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; + 8F3A9328D29018CCFA541797D682CE25 /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; 8F3B48A53788928257D4F770E7F7A634 /* HazptrThrLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThrLocal.h; path = folly/synchronization/HazptrThrLocal.h; sourceTree = ""; }; + 8F4541A76FB78D77FA3A964755798242 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; + 8F4AF770831C42771BFF441F32A06190 /* EXAppleAuthenticationButtonViewManagers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButtonViewManagers.m; path = EXAppleAuthentication/EXAppleAuthenticationButtonViewManagers.m; sourceTree = ""; }; 8F4DA0875D68CB8A50573C368E61F8BC /* PicoSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSpinLock.h; path = folly/synchronization/PicoSpinLock.h; sourceTree = ""; }; + 8F5772719D832396BF64A57BE9B84093 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNGestureHandler.a; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F6B28E8C430670ACF08A4C1285BC00F /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; + 8F7080514B2DC132D8D9E4F8F6B307F3 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; 8F70F5609DAE1FD9A6DEDD382E67A1B5 /* SKTouch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTouch.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTouch.h; sourceTree = ""; }; + 8F720EC32BC0BA1F12D5E70A9617F5BC /* RNFirebasePerformance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebasePerformance.m; sourceTree = ""; }; 8F7387949E542BBA6DC178190C86EC38 /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = ""; }; - 8FA0759551B0F3AA16FA22A8A183E46D /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; + 8FA7B030CA0FC5FE7424D5B176BCC195 /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; + 8FA90F039328C541D138AE86D8DC0093 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; 8FC616C8356C77BB569FB79454D32E2D /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; 8FC66D100BF1D2161354D1C02DA0C2B9 /* Checksum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Checksum.h; path = folly/hash/Checksum.h; sourceTree = ""; }; - 8FE213B1E1A18786AD8062BD7D12E915 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; - 8FEB764BE874A607248376B9352CB04A /* RCTImageViewManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageViewManager.mm; sourceTree = ""; }; + 8FC9625141225307F54CA8F7D5C31D65 /* RNNotificationCenterMulticast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterMulticast.h; path = RNNotifications/RNNotificationCenterMulticast.h; sourceTree = ""; }; + 8FE5E457B8AA0BA085359B0443A137B2 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; + 902655D099DB95E0ABE2787457DD2742 /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; 902BE925D4C1D506F5B5171C0B9A13AF /* SKHighlightOverlay.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKHighlightOverlay.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitHighlightOverlay/SKHighlightOverlay.mm; sourceTree = ""; }; - 905BE1915496B1423FD7448814AEA70F /* 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; }; + 902C59283CA9D5897D96DC5A6A036B75 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; + 903382244D64A1D81775D162DD79F692 /* RCTScrollEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollEvent.m; sourceTree = ""; }; + 904A4896430B13B9E0ED745E2F64C6AC /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; + 906EAEFB0C5A8EE1E65224A170387B98 /* EXAppleAuthenticationButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationButton.h; path = EXAppleAuthentication/EXAppleAuthenticationButton.h; sourceTree = ""; }; 90788879F7C6B4130EC1B3217B6EA624 /* Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Folly-prefix.pch"; sourceTree = ""; }; - 90A2F6F0290C0306B85E822A39552736 /* RCTLocalAssetImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLocalAssetImageLoader.mm; sourceTree = ""; }; - 90B37B107B18843F906626722F0D460C /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; - 90BC77683308DA62A6B096858082B1AD /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; + 90B17DBDA0609D754ECFFCA38F7E5BDD /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; + 90B5D4FA2839C90675EB5D0AAA62BFF8 /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = ""; }; + 90C9BF5355CE3D22296D117057869FA9 /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = ""; }; + 90D34DFF04C9FC93FBC548E5C5BC1EC1 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; 90D697BCC42557ED8D742F74757AC54F /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Public/GULKeychainStorage.h; sourceTree = ""; }; - 912CBB2BABD0EDA3B9EBCA30EFEAB6D0 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; + 90F5D0DCF5243D92714915E6A47EC69A /* 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; }; + 91031C2D142B91C4659188043CFBB59E /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; + 911B53B91157F66224EA02E8A8FA0B7F /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; + 912327CD24447113DCBE5E0204334FC2 /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; 912F3C0FEF4C832DC9C981D4E763C614 /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; + 916C8D170D3596242144EB807F11113B /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; 91741A8C0473252C0B3C652A5EDF7A50 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; - 918A7741E230976F34225A5AD202BEAD /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; - 91B1AE33881EB075C0F149DE8EB47EEF /* RCTAlertManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAlertManager.mm; sourceTree = ""; }; - 91BADEE03DFF5F7C3B83BB655A83BCD3 /* RNFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebase.m; path = RNFirebase/RNFirebase.m; sourceTree = ""; }; - 91BAF91C77005E5A5BF8EB37B17CB1CC /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; + 91937954EC3D19154FBDF69F9966BDCD /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; + 91A3294E0CAE80277F6BA9F07BE963ED /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; + 91C9001DC2995C2676B8F6DFFC44F09A /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; + 91D367B3158E8031400E77558EF77B03 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; + 91D62D79BF728D7D47458B94EDD49343 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; 920319A488C3EE7D3A4B0C7195B6A0C0 /* MemoryMapping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryMapping.h; path = folly/system/MemoryMapping.h; sourceTree = ""; }; + 920FAF2B438559869A6D0190293E50AC /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; 921A2A1CD838E0B983FC091BB327E94B /* lhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lhash.h; path = ios/include/openssl/lhash.h; sourceTree = ""; }; 9222696D078C54E7767955037B7E493F /* FLEXNetworkRecorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkRecorder.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkRecorder.h; sourceTree = ""; }; - 923E3BEC24E03E8214779AEE66755BA0 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; - 925BE885B1BF4BBCEE831EDCC702C665 /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; - 926107E274E6A73190B88493226E1CAF /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; - 928373C7AF34A18BD06E6D9D8FCDD4E1 /* RNFirebase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFirebase.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 928B1A7A6B1D73CFA1E39326700EE9B2 /* evp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evp.h; path = ios/include/openssl/evp.h; sourceTree = ""; }; - 9293FEC03A243E75C03156FF0BB9EDD0 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXAV/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; - 929C256FD97B9112F7FEE2BA26618099 /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; 929F7FD86388B379182BAB11CDF3D7E7 /* RSocketParameters.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketParameters.cpp; path = rsocket/RSocketParameters.cpp; sourceTree = ""; }; - 92CEE13991A2CE7894691032BB099CF6 /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = ""; }; - 92CEF276BD4AE7CABDE715A120DD5392 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; + 92B4938E17DE6E0F57D621D9A0B535B6 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; + 92BC26C6959C651149076B70977E6A2D /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; + 92CD58808BEC1B77743DB330D006FE17 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; + 92D5EA8127BD486680F99368655E6E32 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; 930B64E9A37A12B0B46B8A195AE76A2C /* Observables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observables.h; path = yarpl/observable/Observables.h; sourceTree = ""; }; + 931FE198A25C9BC87758418B8F903556 /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; 9346E24A80AF7765A8BE8B33BAE93F5C /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Subscription.cpp; path = yarpl/flowable/Subscription.cpp; sourceTree = ""; }; - 936B379768BFE692579CEB953C6E4BFA /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; + 934A92F5F919E8F07588C83383514BDA /* RCTPerfMonitor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPerfMonitor.mm; sourceTree = ""; }; 9370A3A3860C554622DA5C821883ABF1 /* ThreadLocalDetail.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadLocalDetail.cpp; path = folly/detail/ThreadLocalDetail.cpp; sourceTree = ""; }; 93778A3F3CA3D98E90562F56F9D95611 /* Payload.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Payload.cpp; path = rsocket/Payload.cpp; sourceTree = ""; }; + 938A92659A2B571EE3FA5B905DDD2A1B /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; + 9394189BEBBF07FF4D1B068C8F7250C2 /* 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; }; 93A97AF91CB068344041DEDFC987F6B7 /* GCDAsyncUdpSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncUdpSocket.m; path = Source/GCD/GCDAsyncUdpSocket.m; sourceTree = ""; }; - 93B25E3146AE03F63BCDD5F8EF24E9E3 /* EXImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXImageLoader.h; path = EXImageLoader/EXImageLoader.h; sourceTree = ""; }; + 93B71F85D013AD75E8796FA20E4D523C /* RNCSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewManager.h; path = ios/SafeAreaView/RNCSafeAreaViewManager.h; sourceTree = ""; }; 93B9597F7995A41AAC6ECA2534F274D2 /* comp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = comp.h; path = ios/include/openssl/comp.h; sourceTree = ""; }; 93BBD2DCE145C7DACA7A580FA1AC0F60 /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = src/webp/types.h; sourceTree = ""; }; 93C4D9135868E958AD1A54280FA2B248 /* AtomicHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashMap.h; path = folly/AtomicHashMap.h; sourceTree = ""; }; + 93D5D1140E791F42067DC156835CA7B0 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; + 93E8E380CB23AE9CCFCB94F089475E53 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; 93F12EF4B42E7A70C9D5CEE10F03CBDC /* SKIOSNetworkAdapter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKIOSNetworkAdapter.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.mm; sourceTree = ""; }; 940927AF80BB56C30EFE4B1F381620E4 /* color_cache_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = color_cache_utils.c; path = src/utils/color_cache_utils.c; sourceTree = ""; }; - 940929DAA269A4C4ACB67A9A2337AA01 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; 94096471176B5A63422BD7DDAC6122E6 /* AtomicUnorderedMapUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMapUtils.h; path = folly/detail/AtomicUnorderedMapUtils.h; sourceTree = ""; }; 941D82A7D647586A28F6DB4755B80869 /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = ""; }; 9420282DA92F21A459E07B57C79802C5 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; 942C04CD3160AE3DFED89E1A2E902892 /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; - 9435A5F651CDFF2713C7933FB58BF0BE /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = ""; }; - 94446C8C4D927F1CFA1EF749AD691827 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; - 94517CD85F6C0CB5786A3FE34C5DDB31 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; - 945E2FE17CD93180418682D517F48A18 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; - 9473CFDA5453C71E6ACCD1EFEFBA8291 /* RNCSafeAreaViewMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewMode.m; path = ios/SafeAreaView/RNCSafeAreaViewMode.m; sourceTree = ""; }; - 9474CC013D4697CDBD52788FB775552B /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; - 949B1AC69E29D86673D25F0A39823AA1 /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; + 9470C0122B1CEFE0E5EB0E44CB510B68 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; + 94AF4CF0A65C8AB152607484CCCA5A2C /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; + 94B1495E7AC6173D77EE9923CB0C47DD /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; + 94B935719C753F605BEFC3442F21321C /* ARTShadow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShadow.h; path = ios/ARTShadow.h; sourceTree = ""; }; + 94C0242D134E88E6F06939B09DB92DE1 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; 94DC221720C39FEF83E7E829A7AFB235 /* Semaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Semaphore.h; path = folly/portability/Semaphore.h; sourceTree = ""; }; - 950A2656476330B7598DF07A0F6A7E93 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; - 950CFD46F0F8E50BD36073718C8AF851 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = ""; }; - 952A3BC9205F6FD09AE396E20B9AF967 /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; + 951BC93835E6D048000E726EC9375F42 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; 9530D384A7DC23895A1EDC9FCE7D0EEF /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; - 95689EA557684CC591A3707AB727EE2E /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; - 956A735CFDA4202C8A959EBDB7B2FF59 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; + 95549270A926FC4112B9DB87B1B81B07 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; + 956FA2E8F3CB9BCD8C901DE0C9995E5F /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; + 9583CF8EFBACFAE010E25C678AF3E5BF /* RNFirebaseFirestore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestore.m; sourceTree = ""; }; 95863CF5020F6DBEE7687DD1B985A9DB /* lossless_enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_neon.c; path = src/dsp/lossless_enc_neon.c; sourceTree = ""; }; - 959B2DCF4104925C477EAE6D0C93A71C /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 95B6DCE2C3D8FA240DB90EA5D4505BA9 /* EXVideoThumbnails.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXVideoThumbnails.xcconfig; sourceTree = ""; }; - 95C9B134F47BA1EED962479CB30D2EE3 /* RNFirebaseAdMobRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobRewardedVideo.h; sourceTree = ""; }; - 95C9C61861B277A5292579FA2A307C6F /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 95D339445817B79D848F5AD6B2AA6F61 /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = ""; }; + 9587AC33DF69DBB7AC794A5FFF90F085 /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; + 95DEEB975C251DC0DD518B4F697B113D /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; 95E32B303715252400E8F8151E2127BE /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.h; sourceTree = ""; }; + 95F07232DD6C43A691C9B7768164DA05 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; 95FEEE73FE294BCF172DF9D75458CD19 /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; 95FEFCEA5CDE59957CE63036C9EB4957 /* dns_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_struct.h; path = src/event2/dns_struct.h; sourceTree = ""; }; 961CADB0E5CD518E42C75D299D86FE46 /* it.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = it.lproj; path = "Objective-C/TOCropViewController/Resources/it.lproj"; sourceTree = ""; }; - 9640473061AFF5CE841BEAFA0AAA690C /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; - 965334195410C45ED40C12C361B2EBB7 /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; + 9629E23ED9D547986D588B68E344F095 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 9640D0649B16529059D96E55D217B937 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; + 96425385B1223999EC8995BC6E3AFA06 /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; + 9652CB5F5744FD7E236307D575339A15 /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; 9657C6D381F17DE4F5A6F3996C8AFBEF /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; - 96617C36F05D41CC081BEFC02F9359C6 /* RNFirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAuth.h; sourceTree = ""; }; - 966DC2802D4A295E40B4A1D7BDAD580E /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTClipboard.h; path = React/CoreModules/RCTClipboard.h; sourceTree = ""; }; + 966F02B48C3446EE8A1C530C620F08CE /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; 9670ACB4681120F7A7AC533E13305D1C /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Public/GULSecureCoding.h; sourceTree = ""; }; 9689F3034C185CB7E5387959B7B7CFAE /* txt_db.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = txt_db.h; path = ios/include/openssl/txt_db.h; sourceTree = ""; }; 969742EA463838E22D79466329ED84EA /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/lang/Exception.h; sourceTree = ""; }; + 96989709EBA4251565F487F8F55924DA /* RCTTVNavigationEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTVNavigationEventEmitter.h; path = React/CoreModules/RCTTVNavigationEventEmitter.h; sourceTree = ""; }; + 969B6F69D32F2EB84CFA0A410BDA47DF /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; 969F431AB9363BAE3B22BAD82DB788BF /* Sched.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sched.h; path = folly/portability/Sched.h; sourceTree = ""; }; - 96B561AF4F25EF93227A811EE49EB5C1 /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = ""; }; + 96AA26E861DA5B0E29D148F918CC770E /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; 96C64DD2767B07BC03C0ADB071CBADFC /* DeferFlowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeferFlowable.h; path = yarpl/flowable/DeferFlowable.h; sourceTree = ""; }; 96DFA5E6B7BD7B64B68398EF8B746DB5 /* picture_psnr_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_psnr_enc.c; path = src/enc/picture_psnr_enc.c; sourceTree = ""; }; - 96EC42893AFEDCD3C773C7D9B8D2C506 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; 96EE6A9F812A3C115B660CA48025BE38 /* RSocketErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketErrors.h; path = rsocket/RSocketErrors.h; sourceTree = ""; }; - 970077479703C97353DFB7557864FEA9 /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; 9701A78261BEDC2C84BE15AC12B2DF21 /* NamedThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NamedThreadFactory.h; path = folly/executors/thread_factory/NamedThreadFactory.h; sourceTree = ""; }; - 97202E31DFB9D2A4A85FE4E09EDF51E0 /* RNFirebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFirebase.xcconfig; sourceTree = ""; }; 972A15EE45159FA2E3249D6135C2E209 /* FABAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FABAttributes.h; path = iOS/Fabric.framework/Headers/FABAttributes.h; sourceTree = ""; }; 9743CAC8A3D833F16EAF621477B8F637 /* SysResource.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysResource.cpp; path = folly/portability/SysResource.cpp; sourceTree = ""; }; 975543F4DF1A3254A9BE804D71DF9D25 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; 97585F8A5E4DEBAF019D75DB9014E70A /* libcrypto.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libcrypto.a; path = ios/lib/libcrypto.a; sourceTree = ""; }; - 979A89974EA11CC2F7307DC24AE485A6 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; 97A4EA46F14A54B737026EC7D1B2CCAE /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = ""; }; 97B0FDEFE0A3A767AD67F8F29CDCCD91 /* JemallocNodumpAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocNodumpAllocator.h; path = folly/experimental/JemallocNodumpAllocator.h; sourceTree = ""; }; 97D5B3A87EDE5E5EE3B834F94B26B292 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/Hash.h; sourceTree = ""; }; - 97FD1A550F6685B9E0B687215D385E68 /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; - 9816BD7EC824AFD30066D0241E412B38 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; - 98227A55A726EDD844059C5D468D934D /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; 9833422D7143F6C729DB2838AD7933BF /* TestUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestUtil.h; path = folly/experimental/TestUtil.h; sourceTree = ""; }; + 983C8D4D1F255DEB3F4CD2C3EA0D1AD8 /* EXLocalAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocalAuthentication.h; path = EXLocalAuthentication/EXLocalAuthentication.h; sourceTree = ""; }; 983D32ADFA0F12582AC7AEF1116188AA /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; - 98651E01D9A1FDA8C80914C4796A3CD9 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAsyncLocalStorage.h; path = React/CoreModules/RCTAsyncLocalStorage.h; sourceTree = ""; }; - 988B83D5C4E72194AE3C172467333A1C /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; - 98B8E95BC68A4DC2A4F499E3C087CAB1 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; + 985D6DB3D9A4AE44DF523A65D604550F /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; + 9882D646B43B77E05AD92A8392005D1F /* EXAppleAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthentication.h; path = EXAppleAuthentication/EXAppleAuthentication.h; sourceTree = ""; }; 98BC1CE48D98190B5806B7BEF30C8ED3 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = "Objective-C/TOCropViewController/Resources/ja.lproj"; sourceTree = ""; }; 98D8AE44D543B348F9F61DF20FAEDBAF /* dns_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_compat.h; path = src/event2/dns_compat.h; sourceTree = ""; }; - 98E44F61DE862C2B2FB375A641709F6B /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; + 98E83548474CF2527CD74F317FE6A0D3 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; 98F3BE2618A790DD0537B38C7D8A4152 /* ssim.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim.c; path = src/dsp/ssim.c; sourceTree = ""; }; - 9929E6284F7820395CD5D64BE7CF593D /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = ""; }; + 98F4C41C33A646AB98C7D298B382D8D2 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; + 98FC2A234D724546E17110F349418D27 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 9916466C8411EAC9AAC96756257A4EBE /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; 992F4F987626FAFDBBA02A885495042D /* TOCropViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropViewController.h; path = "Objective-C/TOCropViewController/TOCropViewController.h"; sourceTree = ""; }; - 99594423459EEB42A29AF610F6983A9A /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; + 995AC1B7D0FFC307FBDE42396BEC7495 /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; 995E20B019FCA48F1AA5D5A22B876F40 /* SSLOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLOptions.cpp; path = folly/io/async/SSLOptions.cpp; sourceTree = ""; }; - 996D63CD578638730C1A5D64EF6D4645 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDeviceInfo.h; path = React/CoreModules/RCTDeviceInfo.h; sourceTree = ""; }; 9981989CAA6381239BB715D0BA46262A /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; - 99894C9CDF8EFFBB5927074BA3BDB226 /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; 998A272CA1A379AE00E812D0FC64BBA5 /* x509.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509.h; path = ios/include/openssl/x509.h; sourceTree = ""; }; + 998AF8A34DBB39420D04028C3FFCBF77 /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; 999D010364128751CC3731B3050F4617 /* Assume.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Assume.h; path = folly/lang/Assume.h; sourceTree = ""; }; - 99AC7C72CBC41B73D2CE21846CE83564 /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = callinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = ""; }; + 99B30853C542D2115F98448315C2D52D /* RNCAsyncStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAsyncStorage.m; path = ios/RNCAsyncStorage.m; sourceTree = ""; }; + 99D5C8C0B6B045FFA224BAC71C1C3860 /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; 99D5CD245388DC76AAEF6E1E351A90ED /* libFlipper-Folly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Folly.a"; path = "libFlipper-Folly.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 99E9ADEA7690EC668ABE1197E379480E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 99FA4E2FD25FDCD45F05F85489366E7E /* neon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = neon.h; path = src/dsp/neon.h; sourceTree = ""; }; 9A01115DDCB89F5DB53C547F949CDE10 /* lossless_enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse41.c; path = src/dsp/lossless_enc_sse41.c; sourceTree = ""; }; - 9A04A4A96919D130F7EC9F19E79E9BD5 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = ""; }; - 9A083A0A26F9BDF36FE634C9868B7C02 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; - 9A100DDD23DE5A0E30CA63531F243807 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; - 9A19DA83C15C897A7408690D694E37FE /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; - 9A1CEDAE70739A6A092AA8160D68D06B /* RNFirebase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFirebase-prefix.pch"; sourceTree = ""; }; + 9A07EB1BB471CCBD3DDB3373E225CFD6 /* RNFirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabase.h; sourceTree = ""; }; 9A39F9E5B195BC622F6CDFA3E9B5E15E /* AsyncTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncTrace.cpp; path = folly/detail/AsyncTrace.cpp; sourceTree = ""; }; 9A3FC0C9D81433252C2F08F2B3C9CB52 /* GLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GLog.h; path = folly/GLog.h; sourceTree = ""; }; - 9A462BAC6D7E6BE09F4DEFE618FEF797 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; - 9A4FA7696475A97587BC6C360739DD59 /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = ""; }; - 9A62CDA9C04EC5C2F3BCB26BA4924A70 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; + 9A8D977AFC2C5F8CB3A5F09188EB520E /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; 9A95DD3EB3F6CB78E76B32197DA83AD4 /* PasswordInFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PasswordInFile.cpp; path = folly/io/async/PasswordInFile.cpp; sourceTree = ""; }; + 9A9969B4DCAEDA5FDE7CC095E40E1F88 /* Yoga-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-umbrella.h"; sourceTree = ""; }; 9AA7F46614DE4962D1B776D0893B3684 /* SKBufferingPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKBufferingPlugin.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.mm; sourceTree = ""; }; - 9AD858430194257ED9865ACF31CA62CE /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; + 9AE3E53F317299930F0492639EF01984 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; 9AEE6076F5BF5AECC6C41B7DD7149A05 /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = ""; }; - 9AF2718A7C2117A0EEEA5E94848C61BB /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; - 9AF413FA899EC75DA85DAD882CC3D76C /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; + 9AF0129EA8B4E8F540AA07097DCCEED4 /* RCTAccessibilityManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAccessibilityManager.mm; sourceTree = ""; }; 9AF79998E78893179131B1D456AD4AB5 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = "Objective-C/TOCropViewController/Resources/fr.lproj"; sourceTree = ""; }; + 9AFFEDDE7CFB2C5E2CA5311D2F76B264 /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = ""; }; 9B0B2A2470ADB5772F4AB8C99FFF4076 /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/futures/Portability.h; sourceTree = ""; }; - 9B27C54D93CA023C0958039F32F6AEDD /* 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; }; - 9B2849A8CD608136332B1AAD3514E469 /* Yoga.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Yoga.modulemap; sourceTree = ""; }; - 9B2ED3D0AF41433010628FE726856577 /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; - 9B318843A578BDB8143B81E602A3BD8A /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; - 9B5838302607289F60F41DB4D8FDE194 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; + 9B0CD0417F916A41DD2426DD4B7A9391 /* RNFirebaseFirestoreDocumentReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreDocumentReference.m; sourceTree = ""; }; + 9B11399D7D9C0CC421366F0B70405608 /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; + 9B1EF8C47031ED85B03BA1723CCA998B /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; + 9B1F98A9F2248FB8361C4DE18FFAF51F /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; + 9B210DEA7F13EE96BA6DA8B363A2EFD3 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; 9B5FF22642EC02DAD95385F97DE51F8C /* Dirent.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Dirent.cpp; path = folly/portability/Dirent.cpp; sourceTree = ""; }; - 9B717635B144BE7E1E113229D729CAC6 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; - 9B7577941CB65451A9F414FD6E86A21C /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; + 9BA5A3B1BE1BC7C2F0000E120ACE8D69 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 9BB1B2939F9907FFAD48E3DD565AEE10 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; + 9BB37923E297A754832080958B8B5FEC /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; + 9BB449E0F6493A29C62B20ED4EB2BF00 /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; + 9BB894F231018CC975693BDF8F83262E /* RNFirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseMessaging.h; sourceTree = ""; }; + 9BBA45778A6D490CC1EDD321DF57F656 /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = ""; }; + 9BBC53C72E4690F1F9660AA072BFBCD0 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; 9BD2EBF29EBE11649609A1D87D670C80 /* Unit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unit.h; path = folly/Unit.h; sourceTree = ""; }; 9BE213EAF1BED4F9EA35340D536E52DE /* Futex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Futex.cpp; path = folly/detail/Futex.cpp; sourceTree = ""; }; 9BF0A5227479C231AA36262A1AE5569A /* StaticConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticConst.h; path = folly/lang/StaticConst.h; sourceTree = ""; }; + 9BF31BBF6F96CABF7114F9C5DABEBDCD /* UMModuleRegistryHolderReactModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryHolderReactModule.h; sourceTree = ""; }; 9C059CB14AB6A27102E06C7874764793 /* ExecutorWithPriority.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorWithPriority.h; path = folly/executors/ExecutorWithPriority.h; sourceTree = ""; }; + 9C1792EAAB3134FE54B51A82E9C58BBE /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 9C1813374D737500AAC69A3BBDF7400E /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = ""; }; 9C251BDD668A0833CABC259C54C08DB3 /* Pods-RocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; 9C33CA0AD7B1BEE00F781E293352D69B /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/portability/Memory.h; sourceTree = ""; }; + 9C3F9D9A17FA6EF6E6CDE166CF171727 /* UIImage+Extension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Extension.m"; path = "ios/src/UIImage+Extension.m"; sourceTree = ""; }; 9C3FD4AE0C7D7460F1D8CABAF16FF714 /* F14SetFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14SetFallback.h; path = folly/container/detail/F14SetFallback.h; sourceTree = ""; }; 9C44288E4F9D989101F85D6BC24EA9B5 /* Pods-ShareRocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ShareRocketChatRN-dummy.m"; sourceTree = ""; }; - 9C684CFA3C36CAF10DC81C506460AEDA /* UMAppLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMAppLoader-dummy.m"; sourceTree = ""; }; 9C6C0395078634D7C1B9E8CF716DE049 /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = ""; }; - 9C6D08ED23005FE63E709D7D5FDFBF69 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; 9C700F1330E291AE35A7D46C13C06364 /* GULSecureCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSecureCoding.m; path = GoogleUtilities/Environment/GULSecureCoding.m; sourceTree = ""; }; + 9C99C09197F47A717D2D6F03FDACA5EA /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; 9CA31DE23B4CAAA7AF2B1CA408293B3B /* CocoaAsyncSocket.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaAsyncSocket.xcconfig; sourceTree = ""; }; 9CA5351483F2E3988401565F07C342CE /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/Singleton.h; sourceTree = ""; }; 9CA65634937D623281544E5A6F9CDD6D /* 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 = ""; }; - 9CDCEFEB0F8EB7AB3332416CE86E41AC /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; + 9CBBE1E99E32DCF4AAAA2E6EE13B85B3 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; + 9CBDA1D4944626DCD719D472BAD21DAD /* ReactNativeKeyboardTrackingView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardTrackingView-dummy.m"; sourceTree = ""; }; 9CE30C981AFECA8F5C7649212D790153 /* RequestResponseRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RequestResponseRequester.h; path = rsocket/statemachine/RequestResponseRequester.h; sourceTree = ""; }; - 9CE4E74BB784F95503D0BC24576FA113 /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; - 9CFCC00BE7585C289372FD36D3938414 /* RNFirebaseEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseEvents.h; path = RNFirebase/RNFirebaseEvents.h; sourceTree = ""; }; + 9CF2193318F09D8D55E14A40590398F6 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; 9D0D62EBA38E1AF2F71F055E9DDC77A9 /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = ""; }; - 9D0F44893AD3E0A4239D6FDF012DF0A0 /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; - 9D0F45C320E4E26BDBE55273EE1E1EC9 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; 9D106A0437D13965C3CDA586B2DF097B /* dec_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_msa.c; path = src/dsp/dec_msa.c; sourceTree = ""; }; 9D122ABD895F3D0DD67C634D2BC3AC88 /* cost_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_sse2.c; path = src/dsp/cost_sse2.c; sourceTree = ""; }; + 9D21E7EF7232E7B2F07E97553A3BA5CE /* 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; }; + 9D261CBE9D3D62109B6D4E8FA46F0BCD /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; 9D28BC83B2BD12060727669AC9861AFF /* Event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Event.h; path = folly/portability/Event.h; sourceTree = ""; }; - 9D35157E450C8834E3BA9CCAA4AC641C /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; 9D3F042F12358CA20535695129D757E0 /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = ""; }; - 9D41A92F6CCFAC36752871F468C42914 /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = ""; }; - 9D4B55864F909DEDFA9762CA8700F4DB /* UMAppLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMAppLoader-prefix.pch"; sourceTree = ""; }; - 9D6B806B0C24218829AD1891707AAB87 /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; - 9D8551A70D7C7711E79188E2D0317FDA /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; + 9D82889CC21A3DDC1621A270CDF87004 /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.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; }; 9D9830840C80FE492AE46EEB8E178D46 /* Foreach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Foreach.h; path = folly/container/Foreach.h; sourceTree = ""; }; + 9DB214EB8B00630F1D5159C416C5A867 /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; + 9DD6B4AD935BF557920D22C91DE77005 /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = ""; }; + 9DDEACF6D9F9C551705FE0806A63C8A8 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; 9DE4C9AF78A0FDEAEAC5F4679666933F /* ObservableOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableOperator.h; path = yarpl/observable/ObservableOperator.h; sourceTree = ""; }; - 9DF528330DCE2264552F4634E1A3FE2C /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; - 9E08A421A26D63189FBA431E767E1228 /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; + 9DF547BCD14061CD62E58880D6A92DB5 /* ReactNativeART.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.xcconfig; sourceTree = ""; }; 9E28A07190E1AE72714AD7F02C6B71C2 /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = FirebaseCore/Sources/FIROptions.m; sourceTree = ""; }; 9E296A829E3A7823F8E2B5E6FDEA9C7C /* Throughput.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Throughput.h; path = rsocket/benchmarks/Throughput.h; sourceTree = ""; }; - 9E43BFBCC1924828AFD25D36B713CBF0 /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; + 9E2B8CD84A97A366FCD6F728A31C3CE4 /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; 9E57E533E30A43A5232CD36E33390556 /* MacAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MacAddress.h; path = folly/MacAddress.h; sourceTree = ""; }; - 9E58B16CFFD0CB4343BF11B6C61194AA /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; 9E5F817AABF49567F3399B48908C5949 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = FirebaseCore/Sources/FIRDependency.m; sourceTree = ""; }; - 9E6BB2A68339DF6C48E9AAF7FE47C4C9 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; - 9E7A5F6E8E45697D6F63CB9F6DFCD3C2 /* RCTAppState.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppState.mm; sourceTree = ""; }; + 9E7721F7CEB4EB662B6BCEA76FD28E5C /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; 9E85A19C773A4016CCFBA95A003F7AE7 /* QueuedImmediateExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = QueuedImmediateExecutor.cpp; path = folly/executors/QueuedImmediateExecutor.cpp; sourceTree = ""; }; - 9E87EF4B76BB5675D1ADB5E8F4ADDCDA /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = ""; }; - 9E8962F09A716B354B9D11C3AD2285DC /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; - 9EA14D97FB3AC533F53FDE8DA09D3E8C /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; 9EA4C48C4AD14F4DC80C97F8432ED85C /* SKTapListenerImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTapListenerImpl.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListenerImpl.h; sourceTree = ""; }; 9EA7089CD95B48AEAED021DE29C3C09D /* ThreadCachedLists.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedLists.h; path = folly/synchronization/detail/ThreadCachedLists.h; sourceTree = ""; }; 9EC254473080E0BC5D720E02694BCD9B /* animi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = animi.h; path = src/mux/animi.h; sourceTree = ""; }; 9ECFA9D5D7BB61AD5F9595852FD24E18 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; 9ED4561357600270D36518FF1E8B923E /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = ""; }; 9EDAEB7D91BA29518EE5F8AD1DC515B9 /* FBDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBDefines.h; path = iOS/FBDefines/FBDefines.h; sourceTree = ""; }; + 9EDE8B04F6E09D2755963245B947C89B /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; 9EE6F55A26F335B4AEEF8BDE4DFBB658 /* tag_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tag_compat.h; path = src/event2/tag_compat.h; sourceTree = ""; }; + 9EEDA8D0F3FF14A8194A586EB92E3B3D /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; + 9EFBCED0F028458C60D260A2443070DE /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; + 9EFD597556152014E460AB59EA35433F /* EXImageLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.xcconfig; sourceTree = ""; }; 9F1926343DE14EA02341958BDCED80F2 /* SharedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedMutex.h; path = folly/SharedMutex.h; sourceTree = ""; }; - 9F4936DDB7CCA87862B4A6728C5B8932 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; + 9F21288D0DC16C988FA9A185036BDFAA /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; + 9F28B4595538423795CA3120E3354615 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; + 9F629F100430310341B2F399E260D8E6 /* RNFirebaseAdMob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMob.h; sourceTree = ""; }; 9F67E3B28CF2EB033B8DF3FB2E30B46B /* ConnectionContextStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionContextStore.h; path = xplat/Flipper/ConnectionContextStore.h; sourceTree = ""; }; - 9F8259B1F92298E671F6B07308C7E1C3 /* RCTFileReaderModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileReaderModule.mm; sourceTree = ""; }; + 9F7A0FE0D72F2FD6789A27F3F0257FB5 /* RNCMaskedView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCMaskedView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9F805C09F19ACC63F9DA6181B3059F82 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; 9FA67547DCC819A4DB64B67C31C230D8 /* crypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crypto.h; path = ios/include/openssl/crypto.h; sourceTree = ""; }; - 9FA89CBEC2D3F43DE735B1B41BF1E577 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; - 9FCA835E28F73B4EAE829581A6D6964D /* ReactNativeART.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.xcconfig; sourceTree = ""; }; 9FCAF078C3CB21E5E988A1FA178661F2 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; 9FCE117B9000CC7F18A99493B9FD2771 /* FlipperClient.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperClient.mm; path = iOS/FlipperKit/FlipperClient.mm; sourceTree = ""; }; - 9FD22FAE125FA335CEE173E903DB98EB /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; + 9FD63B7A2E08464D5A03789191955423 /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; + 9FDF17D3E268D3800790669D4706ECD0 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; 9FED0083D687480639A7A9208F697C4B /* SerialExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SerialExecutor.cpp; path = folly/executors/SerialExecutor.cpp; sourceTree = ""; }; - 9FF4BD9CD4E1C59F8CCA9F2DFAA234CA /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; - 9FFDFD5627E8F443A5C394A522D97255 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; - A007BA3600A0D60E10E561A3B31B181B /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; A00A1F7DBCE854801805786CF75FE432 /* NetOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetOps.h; path = folly/net/NetOps.h; sourceTree = ""; }; A00B8B5206B4C4433473B0434BC36A23 /* FirebaseAnalytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.xcconfig; sourceTree = ""; }; - A0212D4FA7674BAA2C48990DEFED4059 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSettings.h; path = React/CoreModules/RCTDevSettings.h; sourceTree = ""; }; + A013810CEF6D83C459DDA3977033960D /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; A02A478EDE74E1D5ACF0D2CCB22CB4E7 /* conf_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf_api.h; path = ios/include/openssl/conf_api.h; sourceTree = ""; }; A03115BE36C4F5C208933C287E5C0CAE /* bufferevent_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent_struct.h; path = src/event2/bufferevent_struct.h; sourceTree = ""; }; + A038D71AFF5935A62E96279F15FB1CA9 /* RNFirebaseAdMobInterstitial.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobInterstitial.m; sourceTree = ""; }; A03C51391E5DCC85F63CF0BB0B9149F5 /* Promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Promise.h; path = folly/futures/Promise.h; sourceTree = ""; }; - A0554BCE5634A9AE3D00F74D15EF8A3A /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A057974702A7BD2918EA4AFB43389B0A /* RNFirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabase.h; sourceTree = ""; }; - A05AE19536392AABB7ABBE60ACC487A2 /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = ""; }; - A068C60548B3929A9BBDE30C56222B1A /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; A06DA5A6AC0A8948FDFC4B13C43D8CF9 /* File-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "File-inl.h"; path = "folly/gen/File-inl.h"; sourceTree = ""; }; A08107B4566B1C3F3F66FE49898E538F /* Flowables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowables.h; path = yarpl/flowable/Flowables.h; sourceTree = ""; }; - A0AF3001AC2B881EC1F32AD005471915 /* RNCSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaView.h; path = ios/SafeAreaView/RNCSafeAreaView.h; sourceTree = ""; }; + A090CF9C0A7BD1841F9ABBB8AEBDA75F /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; + A0A5BC613C561149D537888AC2E00F65 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; A0B920059A5D77DD1CEDBC45E2B1867A /* GDTCORFlatFileStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORFlatFileStorage.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage.h; sourceTree = ""; }; A0D3291B6110B268D394A23BB9189970 /* StaticTracepoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticTracepoint.h; path = folly/tracing/StaticTracepoint.h; sourceTree = ""; }; A0DF227EC04A4C40F7B84D88C1068EAD /* msa_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msa_macro.h; path = src/dsp/msa_macro.h; sourceTree = ""; }; A0EB370BC8D910142108738127F81AEB /* cmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cmac.h; path = ios/include/openssl/cmac.h; sourceTree = ""; }; - A1076F242435BC17F228427F5A7393D8 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; - A111BF72E62C135E8A32E92280B57856 /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; + A0FEBA98F4D9A822A665C76B34936BF8 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; A11250059B012F3F12F7779B77BDD89E /* HHWheelTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HHWheelTimer.h; path = folly/io/async/HHWheelTimer.h; sourceTree = ""; }; - A16FA912EF54257986B57147AF617E33 /* RCTActionSheetManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTActionSheetManager.mm; sourceTree = ""; }; - A17988463059BCDD1EAFD0A400371DB8 /* RNCMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedView.h; path = ios/RNCMaskedView.h; sourceTree = ""; }; + A1361018C52F1CE31D87BA70147752DA /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; + A163430C5570F89037762F4E9A150712 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; A186F3FC4D7CD50D00298D3EFDD4165E /* FBString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBString.h; path = folly/FBString.h; sourceTree = ""; }; + A1C749454E7A224BF2E84D8812788E93 /* RNFirebaseDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabaseReference.m; sourceTree = ""; }; A1E188A1A4DBBD9FE915F731789207D3 /* shim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = shim.h; path = ios/include/openssl/shim.h; sourceTree = ""; }; + A20E0FF6E32A8014393A252BE69DCB70 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; A216542337674A0A89AA2C9BEE379528 /* AtomicUtil-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicUtil-inl.h"; path = "folly/synchronization/AtomicUtil-inl.h"; sourceTree = ""; }; + A22087B248A717DD8210B86F366BCBA8 /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; + A222D2976B2D979BDC00DB9FC9C41331 /* EXAppleAuthentication.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppleAuthentication.xcconfig; sourceTree = ""; }; A22F5E839A95C087BA61B4F175D21FA0 /* GroupVarint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GroupVarint.cpp; path = folly/GroupVarint.cpp; sourceTree = ""; }; - A248C549D661E6A17DD0BEAF6ED72EE5 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; A25A52CD12189FE3A4F7F4CA22582AF6 /* 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 = ""; }; - A25B648764C88A992F7997E1061171A1 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; - A266A310E438F6D6275F6951C789F666 /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; + A26A7EF563377345BE162F627EAD070F /* RCTSettingsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsManager.mm; sourceTree = ""; }; + A277DF5B66397F66164BD142D7155F5E /* RCTSettingsPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsPlugins.mm; sourceTree = ""; }; A27CB91DABE5DA552B926FF662C52DD2 /* webp_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_dec.c; path = src/dec/webp_dec.c; sourceTree = ""; }; A284806B87249CF6A17186B58F2CDDA7 /* rpc_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_struct.h; path = src/event2/rpc_struct.h; sourceTree = ""; }; - A284F247262CABD5166CD914EFA5FDCE /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; - A28827BF9180CFBAEE15B996E90B6370 /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; - A28F4BCFA07BFCD1FBB3A8988D1341D9 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; A290C036AC4B6583D27A54150D182839 /* GDTCCTCompressionHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTCompressionHelper.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTCompressionHelper.m; sourceTree = ""; }; - A293F70B190C15DA5D589C12F2F4DF71 /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; - A2A3D3A937FBC55FBC290581E655CF24 /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; - A2C6CB41654BA05C6A611A04DFD81CFF /* RCTLogBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLogBox.mm; sourceTree = ""; }; - A2E0E0FBE3BE420F40E9F34D63E43093 /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; + A2C604A5CBE7F32526D81258BAF2A7CE /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; + A2DA013639549EE873CF7EE0CD0D4B78 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; + A2E4A8E1BBA2C9D7FA64DD67F7403DD0 /* RCTView+SafeAreaCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTView+SafeAreaCompat.m"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.m"; sourceTree = ""; }; A2FA88289F51C3EDDE7D9319C5B10200 /* AtomicUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtils.h; path = folly/synchronization/detail/AtomicUtils.h; sourceTree = ""; }; - A314309FA2DFA9D8A7995B90C1DD59F8 /* RNFirebase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFirebase-dummy.m"; sourceTree = ""; }; - A321BC88D535F1BAF7B345609D9EDB70 /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = ""; }; - A35C702B991BD84D970E4366E95038AD /* RNCMaskedView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCMaskedView-dummy.m"; sourceTree = ""; }; + A32DD059BD65EAF034E7A33D7CE1B88C /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; A364F0AF0437389BC6A853C1D2E5C929 /* Future-pre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-pre.h"; path = "folly/futures/Future-pre.h"; sourceTree = ""; }; A3655DA0C714FD3F0A52EAB3408EA589 /* HardwareConcurrency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HardwareConcurrency.h; path = folly/system/HardwareConcurrency.h; sourceTree = ""; }; - A36A728598495F81A65543D130D1002D /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; + A37715BF54D25621CFB1E49A366C553C /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; + A38031CF428F811D52F5E8700628EF3E /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; A39A26BA33C5E32A2591D22BC6F9B47F /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; + A3A2A3F1F5208C1B538ADD5DFDB74382 /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; A3CB03B43186E240E4CADCA45981997C /* GDTCOREvent+NetworkConnectionInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCOREvent+NetworkConnectionInfo.h"; path = "GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCOREvent+NetworkConnectionInfo.h"; sourceTree = ""; }; - A3D85591BCF381152165FF4EA43C2DC0 /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; - A3E8E1BCDFF6FAE4E66CDC2970F384AD /* RNFirebaseRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseRemoteConfig.m; sourceTree = ""; }; - A470EF2D1D522D79860078096BFDAAFB /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = ""; }; + A3EB9FAAF052112714D0C5942EFF1010 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; + A3FC3367489FCDCEAAFAC08B10599EC1 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; + A401BFC2002B1F9F6DAFF5F0A3777E03 /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; + A40454307D55504010728E2F84CC410A /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTStatusBarManager.h; path = React/CoreModules/RCTStatusBarManager.h; sourceTree = ""; }; A479982B751B1B1D8BFCC5B1EB3F085A /* SKRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKRequestInfo.m; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.m; sourceTree = ""; }; A483E9CBDE0930880E6851AC0CBD8B79 /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; A4A38F32B082EE0D0EA4116F164EDFCA /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; A4A6152E441BA892D3155E0A5B3C5736 /* SKResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKResponseInfo.m; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.m; sourceTree = ""; }; A4B5070833A7F94E1B5619CA28E46F11 /* thread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread.h; path = src/event2/thread.h; sourceTree = ""; }; A4B54DB3D9E006EB704E1D1E39532C22 /* RequestResponseRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RequestResponseRequester.cpp; path = rsocket/statemachine/RequestResponseRequester.cpp; sourceTree = ""; }; - A4BC56FF6FFDACFE4B24DE4555356F2B /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; - A4D5E68CF3BB3186A5C0B714487C9D4A /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; A4EA72A930B146D8E06004CA5968769F /* ObservableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableConcatOperators.h; path = yarpl/observable/ObservableConcatOperators.h; sourceTree = ""; }; - A517FB8CAF4B8334D6617577A534CEAC /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = ""; }; + A53DBE7B1126235D0DFB30AD452911FA /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; A5465A0CACF72BF7759D145CF9FDB9F5 /* yuv_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips32.c; path = src/dsp/yuv_mips32.c; sourceTree = ""; }; + A546E06EEC18CC5AB5459E96314B48FF /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; A55529A02D9F5950F616EA52CC95D4A8 /* FlipperKitLayoutPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperKitLayoutPlugin.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.mm; sourceTree = ""; }; + A59E89BC17764FD67238AFCB3714E538 /* RCTImageLoaderWithAttributionProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderWithAttributionProtocol.h; path = Libraries/Image/RCTImageLoaderWithAttributionProtocol.h; sourceTree = ""; }; + A5B1AD30F29FFCA73FADF2C224811D06 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; A5B7013E4DAFADF0380625AF4FB5EDF9 /* Fcntl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fcntl.h; path = folly/portability/Fcntl.h; sourceTree = ""; }; A5C6D3699A999B12143722BB44BF273F /* symhacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = symhacks.h; path = ios/include/openssl/symhacks.h; sourceTree = ""; }; + A5D5568A07B4779107F09DCBA5369C8E /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; A6247BFFD6345418184A0A399334C902 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; A624B6E2C6A10911DD280873B241BCA2 /* utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = utils.c; path = src/utils/utils.c; sourceTree = ""; }; - A6406D1EDBF70CA4DEC57908F01CF67E /* RCTDeviceInfo.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDeviceInfo.mm; sourceTree = ""; }; + A657A818C7D66B71AF1E3C4B05C4962C /* RCTRedBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTRedBox.mm; sourceTree = ""; }; A660E3609C26A84984902A21A8F5F053 /* FIRInstallationsHTTPError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsHTTPError.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h; sourceTree = ""; }; + A6635C4C480B1A9D8C117CA1FCC87D13 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; A663E5F2A25FF966FAAE28EB64263EE5 /* SKDescriptorMapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDescriptorMapper.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.h; sourceTree = ""; }; - A683A59BA86B8C72B3D3F79DB23C5458 /* RCTImageLoaderWithAttributionProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderWithAttributionProtocol.h; path = Libraries/Image/RCTImageLoaderWithAttributionProtocol.h; sourceTree = ""; }; + A66DACA6A2BC66D2AD2A1C50D43D9D59 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; A686518110E3EF511C07B43C54066949 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = ""; }; - A68DB5CA0A99508DCB1E2CBBD5D98521 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; + A68E398CE32D7ADB78DE83D46C0163BD /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTNetwork.a"; path = "libReact-RCTNetwork.a"; sourceTree = BUILT_PRODUCTS_DIR; }; A6A364F1EAA61FBF4BCF095078841037 /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; + A6B6585247FA2579ED5CCC001FF52D48 /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = ""; }; + A6CB24B50A72644E27C2B50F6A4FD641 /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = ""; }; + A6D61A98BE3838A974047F5F353B5506 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; A6E160FB766104FB176D30B9193996EF /* Iterators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterators.h; path = folly/detail/Iterators.h; sourceTree = ""; }; - A6E221352DAC18D65D9D0334F3806602 /* EXVideoThumbnailsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXVideoThumbnailsModule.h; path = EXVideoThumbnails/EXVideoThumbnailsModule.h; sourceTree = ""; }; A6F20E6C826970B299408713259A5FAB /* AtomicNotification-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicNotification-inl.h"; path = "folly/synchronization/AtomicNotification-inl.h"; sourceTree = ""; }; - A6FB26E8B106BDA09D54A8ADC23EC6B8 /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; - A7121AC45158A096B75EF8997C6BD83E /* UMAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppRecordInterface.h; sourceTree = ""; }; + A70BC19B9CE70FBC2F3A251A3BCC2C56 /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; + A71753D566CA5BDA4BF18B727FAA5C67 /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; A720EAE100FC5497152E570CB00FF846 /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; + A724BD0C25F5146F814C94E6A142AE77 /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = ""; }; A732941A0590D1ACD917CC88996CD93E /* IOObjectCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOObjectCache.h; path = folly/executors/IOObjectCache.h; sourceTree = ""; }; - A733777449DF2F8811A31FC086E540BB /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; A73B460A4E4079028F132038E26F86C6 /* SDWebImageWebPCoder-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImageWebPCoder-prefix.pch"; sourceTree = ""; }; - A77771380B034725731C6ED12A47FB68 /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = ""; }; + A7798071B7755EBB888C05B185A09583 /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; A78443DC2C1D09753457C97723AAC416 /* Constexpr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Constexpr.h; path = folly/portability/Constexpr.h; sourceTree = ""; }; + A78DE93255125EB0D55025FCE381012D /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A7933DE23E2E94AB414A61ADF5BF0B52 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; A7B6C083F3FBB943D1EE24157A1F8E5D /* SysResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysResource.h; path = folly/portability/SysResource.h; sourceTree = ""; }; - A7BA46CE21B71062894134D5B6EB2C03 /* ReactNativeKeyboardInput-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardInput-dummy.m"; sourceTree = ""; }; + A7C9923AFC25F79D1EE735484960E4C2 /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = ""; }; A7D831E76894EA3AC47480A98214CEF4 /* FIRInstallationsHTTPError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsHTTPError.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m; sourceTree = ""; }; A7F6197D13E90F383CF5855CEAE4E528 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; A80277C8113E75C2E96371380BE4F8DA /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; A810AEA1B09EFAD2784CE0CB999EBC89 /* TOCropScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropScrollView.h; path = "Objective-C/TOCropViewController/Views/TOCropScrollView.h"; sourceTree = ""; }; - A820B573155CF4A018C7D554BF31DE76 /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; + A8161AF7903D5BD9636CBDBFD812B802 /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = ""; }; + A836149B7ADFE67BA66D94796213734B /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; + A844ABFB86195E29719BE7A3A70722D8 /* RCTTVNavigationEventEmitter.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTVNavigationEventEmitter.mm; sourceTree = ""; }; + A8496B7000568ED2B46217716ECFC5D8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; A87DE3CF8DDFDB1D63FA6F3678C624F8 /* GDTCCTCompressionHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTCompressionHelper.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h; sourceTree = ""; }; - A89DAEAD06BB665FDD5549EAB3A62EDA /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A8CBE9BA702F9353DB44F29C05C20508 /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; + A8D8282349A5EE2BA6014CDD4B5CB405 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A8F3ABC40B91A396D7EE15FF8E0B8786 /* FlipperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlugin.h; path = xplat/Flipper/FlipperPlugin.h; sourceTree = ""; }; A8FC42D4FC5B5C609C187742BBAEBA82 /* Pods-RocketChatRN-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-frameworks.sh"; sourceTree = ""; }; - A8FDC50C0A49E9CFF9A6B5B6012AA2C4 /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; - A94F4E5A120213DFCCBC4CF89D839456 /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; + A93A9E7A65732180621ADEFAE3CDD08A /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; + A94BEBCFD78E12A3722A2AA65B282DA0 /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = ""; }; A969579433C9A90BAA8A78856842E154 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/lang/Bits.h; sourceTree = ""; }; A96C888C80D9DA21FF6DF2F4A7BFFD81 /* ScheduledSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSubscription.h; path = rsocket/internal/ScheduledSubscription.h; sourceTree = ""; }; - A974BB8B7E4DDD0415948DCD0A15BCFB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; A976C24D3A149D5463B2AC6009B2DEA9 /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/Conv.h; sourceTree = ""; }; - A990BAE7D466511110AB4D9393EEA548 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; - A9A14BC73F7C002FBCFE67B418D37145 /* RNFirebaseAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAnalytics.h; sourceTree = ""; }; + A97B54AF94D69E660EA7DC1739BA3584 /* RCTAnimationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationPlugins.h; path = Libraries/NativeAnimation/RCTAnimationPlugins.h; sourceTree = ""; }; + A98B1CDB4B1984AFE972010457F0498B /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A9D14EDE01F8E280A8F8150227B7F7A6 /* Fingerprint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Fingerprint.cpp; path = folly/Fingerprint.cpp; sourceTree = ""; }; - A9D92C71BFFF155AC377A1AEC924FAF9 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; - AA1DE0B2DD8D09365C0A96B826CEFF8C /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; AA21E5249C04715DB601081A3584269E /* GDTCORUploadPackage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadPackage.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploadPackage.h; sourceTree = ""; }; - AA2DBC921F3029395CE2F0C0D3BAAB8F /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; + AA531003DDE8FDDEBA57CA4EAB5089AD /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; + AA59683EAE2D4F30A185132700EC4A23 /* UMAppLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMAppLoader-prefix.pch"; sourceTree = ""; }; + AA61A310B696E563645519817B84CD91 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; AA7CF873064A7554B34BAC6A3F9E7DEB /* UnboundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedQueue.h; path = folly/concurrency/UnboundedQueue.h; sourceTree = ""; }; AA8B5FDB85C551C1FA351B3A70116816 /* GDTCORTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h; sourceTree = ""; }; + AA8CD82969CCBF7E27116E4DF0040E1E /* 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; }; AA9187713B9511D1223F602D2181B213 /* Hazptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hazptr.h; path = folly/synchronization/Hazptr.h; sourceTree = ""; }; - AA9C402FF8D48DC7DCEC716FD0EB6C50 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; AAC48D7F1751CB19AA0F6FF5619610CA /* RSocketServiceHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketServiceHandler.cpp; path = rsocket/RSocketServiceHandler.cpp; sourceTree = ""; }; - AACD8E5CBF6C8A9D707708D67FB0776A /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = ""; }; + AAD40C0280E8F25C4C55F966D4D1DC33 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; AADF4AD8D1389D4DD8D6E871DC5EC1DD /* FIRInstallationsIIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h; sourceTree = ""; }; - AAE8DCB30B0EA6E94F01D081407ED786 /* UMAppLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMAppLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - AAF4F7E292D175AF8DA769D4055866E0 /* RCTUtilsUIOverride.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtilsUIOverride.h; sourceTree = ""; }; - AB0B91B89C348E1C5FDAA47CD5F30C9D /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; + AB19388EE5EB2981E1C9A9DF67E6FF9C /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; AB40D15C63CB2250B9DF830DCA6A7A79 /* GDTCORConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORConsoleLogger.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m; sourceTree = ""; }; - AB4715C75F28CAED93F7D95C6CD20D35 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; + AB48E873BEAA1DD110680782677F158D /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; AB4A4DDA6222D4EF7D2A50ECEF6532D5 /* buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = ios/include/openssl/buffer.h; sourceTree = ""; }; AB62F1932D4F21CA1B738E66C407D3A5 /* FutureSplitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureSplitter.h; path = folly/futures/FutureSplitter.h; sourceTree = ""; }; AB65728D71BBEAE5B472C8895E06E6C6 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; AB6FD7FA8A7CF99124B42EAE0348214D /* FlipperDiagnosticsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperDiagnosticsViewController.m; path = iOS/FlipperKit/FlipperDiagnosticsViewController.m; sourceTree = ""; }; - AB8A67274FA5E93D1BF01ED22075126C /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; - ABA57A7A58CE312EFAB1323D9291E144 /* RCTClipboard.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTClipboard.mm; sourceTree = ""; }; ABAB5A64E39FD3A82EEDA09B578377C8 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; - ABBF6EC0DF678369E9D6019CCFCAD659 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; ABC03988040C1E00B3432A7FE1422C53 /* Barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Barrier.h; path = folly/futures/Barrier.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; }; - ABE2162F3D7925EF60E7F3E538B3ED68 /* EXKeepAwake.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXKeepAwake.h; path = EXKeepAwake/EXKeepAwake.h; sourceTree = ""; }; + ABF3E02DF86394EF28191B22D5FB3F12 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; ABF655AFE18A01D4FDEDEFA6627CC4A9 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; - ABFB481D86C371E0274CBB9001895F73 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFBReactNativeSpec.a; path = libFBReactNativeSpec.a; sourceTree = BUILT_PRODUCTS_DIR; }; ABFF9C7A054206F034417F827D639CD3 /* ThreadedExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadedExecutor.cpp; path = folly/executors/ThreadedExecutor.cpp; sourceTree = ""; }; - AC035A824477CCE1D8F381072FC3974F /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = ""; }; - AC0E9D5F8489BD6C505350744F94A35A /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; + AC06E8BB8CABAFF99B9F61176E5F56DA /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; + AC0BB14BEB73A57DC8B734160F84C2FF /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.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; }; AC147D64E4CB195E28D96464BB18ACD6 /* SysMman.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMman.h; path = folly/portability/SysMman.h; sourceTree = ""; }; - AC14E1C64D4AA6BDFBCB354FEC0D3624 /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; AC3558B8BE5C9B4D23936F49886E35E9 /* upsampling_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse41.c; path = src/dsp/upsampling_sse41.c; sourceTree = ""; }; AC35D70B9B8153E83D58B8D70C3DA9EC /* vp8l_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_dec.c; path = src/dec/vp8l_dec.c; sourceTree = ""; }; - AC3C0AF66923CD6AA182BCD2B3B77A1F /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = ""; }; AC3CD90F37CA219F8D166586CE751D6A /* alpha_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_enc.c; path = src/enc/alpha_enc.c; sourceTree = ""; }; AC42E8A852293278C6758BA9966495F7 /* GDTCORUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadCoordinator.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m; sourceTree = ""; }; AC4EB289D6F2CCA5B3D2B476B9D57A49 /* ThreadCachedArena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedArena.h; path = folly/memory/ThreadCachedArena.h; sourceTree = ""; }; - AC673122B986549D070C9F17702D6C35 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; - AC753D8FD29951B39F59B1FF8F7221AE /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; + AC7AD2E3DC6B86D1E8C1603D810A6621 /* EXKeepAwake.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.xcconfig; sourceTree = ""; }; AC810F6424D64F2673FB3991806617EC /* 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 = ""; }; AC846AEF3261BACC05944DB052148106 /* Singleton.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Singleton.cpp; path = folly/Singleton.cpp; sourceTree = ""; }; + AC9588F1D3452A95C29AADEAE2654DAC /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; + ACAF80EA5DCDD687AEC7BBCB213D0F14 /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; + ACB4201D7961B401EC845571B7E1E960 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; ACBB7F62B267CC7C9BBBAE41DE94743B /* libFlipper-PeerTalk.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-PeerTalk.a"; path = "libFlipper-PeerTalk.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + ACBC6B28CBAE195DCE491C2C0BF291BA /* UMAppLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMAppLoader-dummy.m"; sourceTree = ""; }; ACBD3572953CE53D9D5E8B091182B56F /* md4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md4.h; path = ios/include/openssl/md4.h; sourceTree = ""; }; + ACC10530C3FEADFF050AA7DD6DDEADDA /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; ACD1FDBC8E42B68C95770F5595AC9591 /* libevent.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent.a; path = lib/libevent.a; sourceTree = ""; }; - ACE4701B05DA5126866FE17304CBD0C4 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; AD093D7CD3B222CC7E443BBA1C797ACC /* WarmResumeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WarmResumeManager.h; path = rsocket/internal/WarmResumeManager.h; sourceTree = ""; }; AD1783DEF94BD003B7142CE78AEC498B /* DestructorCheck.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DestructorCheck.h; path = folly/io/async/DestructorCheck.h; sourceTree = ""; }; - AD21C48C0E69A04B917E8EF1224C8383 /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; AD220AA276D5E0A82C411E0A45B1435A /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/portability/Math.h; sourceTree = ""; }; + AD296C57DB3D2B54D892B4F48C13E137 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAsyncLocalStorage.h; path = React/CoreModules/RCTAsyncLocalStorage.h; sourceTree = ""; }; + AD3342661710A1005E85BC5965CB60F6 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAV.a; path = libEXAV.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AD6688EC2CE33D6B45E08DE00102B8DA /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; - AD76A6B6CBC241E7C5E8E24BF5EB1795 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; - AD80B6E773902F36BD6C9760017E9F2D /* UMAppLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.xcconfig; sourceTree = ""; }; + AD6619459190D5772FFED9BDD939E82D /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; AD9B104B3FCAD3FE5DB05E65638A8A0D /* StaticTracepoint-ELFx86.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "StaticTracepoint-ELFx86.h"; path = "folly/tracing/StaticTracepoint-ELFx86.h"; sourceTree = ""; }; ADC0B004CF882C26B697349490222BF1 /* FireAndForgetBasedFlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FireAndForgetBasedFlipperResponder.h; path = xplat/Flipper/FireAndForgetBasedFlipperResponder.h; sourceTree = ""; }; ADD771E2FE3930338DC7788402F4361A /* conf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf.h; path = ios/include/openssl/conf.h; sourceTree = ""; }; ADD867981938A544D7253B6A062EA2D9 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; + ADE10929ECA897064616AF907B1E46F7 /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; ADE57F6DEE2F506A738387E8BB3FCB5A /* FlipperCppWrapperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppWrapperPlugin.h; path = iOS/FlipperKit/CppBridge/FlipperCppWrapperPlugin.h; sourceTree = ""; }; ADF9A92B9FAAABEF226F528138829B02 /* HazptrThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = HazptrThreadPoolExecutor.cpp; path = folly/synchronization/HazptrThreadPoolExecutor.cpp; sourceTree = ""; }; AE1DDA6462CAE7ECA09C1514C6480BDB /* FrameType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameType.h; path = rsocket/framing/FrameType.h; sourceTree = ""; }; - AE294F557701166FCB35B4D09E55C838 /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; AE2B51D72A10BBBF6FEAAA9CD98C67A5 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "Objective-C/TOCropViewController/Resources/zh-Hans.lproj"; sourceTree = ""; }; AE369C5E433C27D42FD6CD3C3066D454 /* RelaxedConcurrentPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RelaxedConcurrentPriorityQueue.h; path = folly/experimental/RelaxedConcurrentPriorityQueue.h; sourceTree = ""; }; - AE37BEE29245D1F694B7B7742DD10A94 /* UIImage+Extension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Extension.m"; path = "ios/src/UIImage+Extension.m"; sourceTree = ""; }; AE389898517E134B6C210F47469C4FDC /* StreamsWriter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamsWriter.cpp; path = rsocket/statemachine/StreamsWriter.cpp; sourceTree = ""; }; - AE42FD475B3F941CBA622D74A5C66418 /* RCTAppearance.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppearance.mm; sourceTree = ""; }; AE4F90352A568E900EA80925A70D0247 /* common_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_dec.h; path = src/dec/common_dec.h; sourceTree = ""; }; + AE644E26D8F04368E378F7B19A941786 /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; + AE8ED7807A76E21DB0AB58FBD57A8F9F /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; + AEA925593969061E24617E29F3435905 /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; AEABDE2E04ED6688F5850A93F9B58F01 /* Iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterator.h; path = folly/container/Iterator.h; sourceTree = ""; }; AEACA277E79E36A282E3096230EDE338 /* NSBezierPath+SDRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+SDRoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.h"; sourceTree = ""; }; AECBEE636EB2D64798479F9B3CD4FA9B /* ScheduledSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSubscriber.h; path = rsocket/internal/ScheduledSubscriber.h; sourceTree = ""; }; AEE163705C89AC21A131F39B79D0F63B /* UIView+SKInvalidation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UIView+SKInvalidation.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIView+SKInvalidation.mm"; sourceTree = ""; }; - AEF64B8DAEBD007EDF874E01EC76C39D /* UMModuleRegistryHolderReactModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryHolderReactModule.m; sourceTree = ""; }; - AF11CF67143B8E836CE6310BC6958121 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; - AF11E03D5B5336362E177A24DBF7096F /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = ""; }; + AEF05B137E6222CA20F7C962A1AE1E34 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + AEF51B0C250F3801E5F3D379897E6638 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; AF1A52C998D8171D541BEDA5F06D24AA /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Private/GULNetwork.h; sourceTree = ""; }; + AF1F6FD35CBC3BA539E068BB68FA6300 /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = ""; }; AF2B8CA91FAF518D816F9D608C6514A4 /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.h"; sourceTree = ""; }; + AF46CB11B96AE2F376EA3DBCCE72CE3A /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = ""; }; AF5CE5148857621B9A277B87101F41BF /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AF74D6C245FDC2CF2884B2AD59B8252F /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; - AF9E3DCB824D3FE11DD933520FD25A36 /* RNFirebaseStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseStorage.h; sourceTree = ""; }; - AFA11A4B03E0F898AC5E5B422EF99D41 /* RNFirebaseAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAuth.m; sourceTree = ""; }; + AF9BBCCCA38CF3024A8E55E70FC480AC /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; + AF9C9C70D76802E90418693DC909EBB5 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; AFB017F3173CA155D67E4F2D5C68D4E9 /* GlobalExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GlobalExecutor.cpp; path = folly/executors/GlobalExecutor.cpp; sourceTree = ""; }; - AFB4E917FDA63E6F71E5BCC8A1A41675 /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; - AFDF9C0B02DD6A422B9F94F209D82B2C /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; + AFB2F99EB1D0F838AAD992D65571C7EB /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; + AFD37B29F35DDD37893B7883D8662A56 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; AFFBFACE5060F34C7DE183AB5C26E5F0 /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; - B024D3A8606822EAD98FDEC3D7972849 /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; + B01F3DAB08F37744FF6F8C05B00B9C18 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; + B0308D260F31194A500BE1434E9FC9BF /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; B03237A69FDB914071F0EDDB6CD9C6F9 /* util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = util.h; path = src/event2/util.h; sourceTree = ""; }; - B0396BECE7B46A50278AC9710C82935D /* MessageQueueThreadCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MessageQueueThreadCallInvoker.h; path = callinvoker/ReactCommon/MessageQueueThreadCallInvoker.h; sourceTree = ""; }; B03AF04A4A9658C483148005DEDAE80C /* rescaler.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler.c; path = src/dsp/rescaler.c; sourceTree = ""; }; - B07ACDDE256221F6C7F1568D6C163BF9 /* RNFirebaseFirestoreDocumentReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreDocumentReference.m; sourceTree = ""; }; B080691EA6FC112ED447AAC85925371F /* TokenBucket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TokenBucket.h; path = folly/TokenBucket.h; sourceTree = ""; }; B082F6023D863668CCEB187F071F3F4F /* ConnectionSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionSet.h; path = rsocket/internal/ConnectionSet.h; sourceTree = ""; }; - B08E0FD4224D3E61C8C95FFF48F334F7 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; + B09BEB8BF8B9A86ECDA18517AA7D8677 /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImage.a; path = libSDWebImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; + B0C3213F266EE3934FC3A0D35E47A08D /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; B0DDECC3239ECBBFF542E3D3767B77B5 /* Fabric.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Fabric.xcconfig; sourceTree = ""; }; - B10A4839E235754AFB78BA656B501336 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; + B0F818123E207CD4DD66F14D8EE99606 /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = ""; }; B10A80804D7B5437EBCF0938D2DFD31B /* TcpConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionFactory.h; path = rsocket/transports/tcp/TcpConnectionFactory.h; sourceTree = ""; }; - B10C27689490B563415BE53719EDF706 /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; B11776B7517CC0AFDF6D99E1526ACDB1 /* Flowable_FromObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowable_FromObservable.h; path = yarpl/flowable/Flowable_FromObservable.h; sourceTree = ""; }; B13F3CC7402172EA1283D8E1704C45E6 /* 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 = ""; }; - B15677836E5397891055B57F0F56CB1A /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; + B15C487F4DC80F8BE99777A46A89376A /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; B15F68A62E7CA9CF78F4A1D8A499A4CF /* Util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Util.h; path = folly/container/detail/Util.h; sourceTree = ""; }; + B16549F7FED2D0ACB373B44ACA8AC112 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; B16642936BFFA1575F0F8B1C60743341 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; - B16A11EFE75C65900856BB3DF8EB7C00 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; + B17F6AAE182AF3E3A8FD25F42D0C1C87 /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; + B181DF32FCFDFC18F9571FF848A2232D /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; + B1897F8260B9D094F9D17905153180F8 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; B198F49D093D4120C0EFEA102F189FE1 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; B19A1640FAD31E75BB1B93700D7F0729 /* GDTCORLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLifecycle.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORLifecycle.h; sourceTree = ""; }; B1B1AF16CD4A23CC6DEBDE47B6B3B949 /* SysUio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysUio.cpp; path = folly/portability/SysUio.cpp; sourceTree = ""; }; - B1EFE76640888E1541786E9A667A8B81 /* RCTTVNavigationEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTVNavigationEventEmitter.h; path = React/CoreModules/RCTTVNavigationEventEmitter.h; sourceTree = ""; }; + B1B61F997B01F01E1EB62509328A65C4 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; + B1EA30D9FCBC11603609FA51E1FC4CD4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; B1F9E9B39A6162E368EC9D781D0680D8 /* DistributedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutex.h; path = folly/synchronization/DistributedMutex.h; sourceTree = ""; }; + B1FB70333B2D1B428F8E37FB5295B612 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B20198EFA4160D60463C44CAC66050AB /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; B211C99E29500E6BCAA544C6D3CBCBA2 /* Flipper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-prefix.pch"; sourceTree = ""; }; - B2158890B81D6B1DB2B12B0A04E2159F /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; - B218FEA1EEE285B60FFA63E09C29E7D5 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; - B21B19C2FBF0A1E6E64AA4E87F29E2F7 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; - B21E1F639E1D07C5BE2DBAD0D6A7AA47 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; - B22B1FCA440606BDC621C87A505EA7DE /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; - B26A5CD70C5B2AD2B50E546B29A49624 /* RNCAsyncStorage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.xcconfig; sourceTree = ""; }; - B26F94F4AA80C9973CABFF08A3570CAA /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - B2EA33EA5ED3107C712A11D9A91F10B8 /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; + B2801CE3D0AA03D69A9078311329EAF6 /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; + B2A5B2891ADB13F1C0DE555A9C630A6F /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + B2A65FAA3A125CE2669673364E022301 /* RNFirebaseFirestoreDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreDocumentReference.h; sourceTree = ""; }; + B2AAE58A26E1DF2320BB3B2AD7277A1E /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = ""; }; + B2D4DDB8592A5368609B572269B0F1D2 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; B309AE09E6BEE094D1B4E8170C4894A9 /* IOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBuf.h; path = folly/io/IOBuf.h; sourceTree = ""; }; - B309B4E79E23D7B86447953A5B6F5CC4 /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = ""; }; - B31120ECF4100E36158AEE0982AD2906 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; B33AAB90E79B725D52CF1853C2FFE5C9 /* FireAndForgetResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FireAndForgetResponder.cpp; path = rsocket/statemachine/FireAndForgetResponder.cpp; sourceTree = ""; }; - B34A213E2EE08069E9FE06B08DB9A960 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; + B345A3B464A66FC1F84CD8C067A5243E /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; + B349A54F4D2FD519D2D0B5F20BE0EC7E /* RNCMaskedView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.xcconfig; sourceTree = ""; }; + B34A9F6EDA96558160E687E2DDA559D2 /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; + B3622350A596E3E5F6990B705F2C4E34 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; + B3648D2D15D59DC311C3D5148E86B72A /* RNCSafeAreaProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProvider.m; path = ios/SafeAreaView/RNCSafeAreaProvider.m; sourceTree = ""; }; + B36E7575D09CE06B36B64262E56AD7A1 /* RNFirebaseAdMobNativeExpressManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobNativeExpressManager.m; sourceTree = ""; }; B3734B6DEF352FA194A23D8BF4EB7C2B /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; - B3783E3B4DA426535AD140A0330F95AD /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; - B3AAB5138A7F354A051FCBC5DE02A06A /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; + B393A8351F43494FB8EE8EEAADD868EF /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; + B3AC8C4510805B6693BC08157D72D931 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; B3B7A14B0CD3520FAB6E3F14C46070CC /* IPAddressSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressSource.h; path = folly/detail/IPAddressSource.h; sourceTree = ""; }; - B3C4FFB58E0149D4582F336D3F3A93DE /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; B3ECD8473F4F6935F6753CC01AFD9B20 /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = ""; }; B40E16E4E7EE49A482B38CA021F3E602 /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = ""; }; - B41DBB54CB5BC29C9F2DD4AC442948CA /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B456F787CDAD8E9FBC971E3589135E4B /* RCTAnimationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAnimationPlugins.mm; sourceTree = ""; }; + B4423D352B299A86B76B33FB2B911D68 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; + B458A529C776F13CD9070EB18C8504A3 /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; B46F3DC8D803A6ABEDBB0D57180B5093 /* CancelingSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancelingSubscriber.h; path = yarpl/flowable/CancelingSubscriber.h; sourceTree = ""; }; + B4709D727E040593EF466742C728E8C8 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTiming.h; path = React/CoreModules/RCTTiming.h; sourceTree = ""; }; B473A7ADF0E19BB8A0272C25026C4DE5 /* SKYogaKitHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKYogaKitHelper.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKYogaKitHelper.h; sourceTree = ""; }; + B4825CFEDB0585F0E10F2E8B16198D66 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; B482669D4D588E55B3057A7601BD6840 /* FIRInstallationsIIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m; sourceTree = ""; }; B486B15520686D88CF9A960BBE1BB153 /* Flowables.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Flowables.cpp; path = yarpl/flowable/Flowables.cpp; sourceTree = ""; }; B49412CDE6DE2E211035FF09F182783B /* BasicTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BasicTransportCertificate.h; path = folly/io/async/ssl/BasicTransportCertificate.h; sourceTree = ""; }; - B4BBABE66C8774602DBF6B4F7D49B876 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; - B4E8FB698BF67019DBD91A191D87BAC9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - B50C536872CDEC69C71B3C8565C6119A /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; + B4DB9002992F6C1F1B0D7325578F65D8 /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; + B5156710EF4D21CBABD4FB4802D33794 /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = ""; }; B523F4277C8B2D610E8E1299460A3CF9 /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/synchronization/Baton.h; sourceTree = ""; }; - B52505446B5C9841EEA2363C17ABF163 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; - B547E723A978FEAEE283A2BC0B0E35F1 /* RNFirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseMessaging.h; sourceTree = ""; }; - B54F151E8051C4AA9C2C1F94A5E728C4 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; + B53AA8B5C803FAFC7AB1D0090127D684 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; B550147615851379CE21691A77B5B21D /* dynamic-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "dynamic-inl.h"; path = "folly/dynamic-inl.h"; sourceTree = ""; }; B5641DA0FB52220D4E7D32DD81D26817 /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FIRApp.h; sourceTree = ""; }; B57D37C575823917BF4EBEC2EE7DFD55 /* aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aes.h; path = ios/include/openssl/aes.h; sourceTree = ""; }; @@ -8476,19 +8549,24 @@ B58E61992108763157F0715297852B84 /* Framer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Framer.h; path = rsocket/framing/Framer.h; sourceTree = ""; }; B590FADFAE58C8461150A0542F547B12 /* Sleeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sleeper.h; path = folly/synchronization/detail/Sleeper.h; sourceTree = ""; }; B591A431C729998F00CA050097C3BFE9 /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; - B5BA57AA8E50708A529CC3964645C06C /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; + B592100B4B0203A70764DFDE23FCAD33 /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = ""; }; + B5B719F0E723B85512C67960D063CAFF /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; B5CEA0705F243B9019FBE93AEEE71BC9 /* des.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = des.h; path = ios/include/openssl/des.h; sourceTree = ""; }; B5D873AC862E6783398AD8670416FD94 /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/futures/detail/Core.h; sourceTree = ""; }; B5E4040453D8C7A7AD4D19C06C47AF6B /* WaitOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = WaitOptions.cpp; path = folly/synchronization/WaitOptions.cpp; sourceTree = ""; }; B5E8CFFCDC8FD47203CE9765D7EAC259 /* RSocketException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketException.h; path = rsocket/RSocketException.h; sourceTree = ""; }; - B61A241B25DA0F2A7746F4D578280EF9 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; - B61E5C9B6EE01109D7A689CCB834B6C4 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + B61566486D10B9EFC3DC1FD535454F71 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; + B618191C488469517862C07BD8B81C74 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + B61ECFB3E9BAFBC3D9925A972D6B2E97 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; B63947E2B5A38C4724077A19011B71D3 /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; B65582303CA5F442057542B5A3E6C957 /* Unicode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unicode.h; path = folly/Unicode.h; sourceTree = ""; }; - B672245AD793F1274302C0FE517E6B43 /* MessageQueueThreadCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MessageQueueThreadCallInvoker.cpp; path = callinvoker/ReactCommon/MessageQueueThreadCallInvoker.cpp; sourceTree = ""; }; - B6776F5DFBCEC5F6CA6F705C4B7F6558 /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; + B6650A0AD796D6E7B79B515E7D756EF7 /* RCTRedBoxSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxSetEnabled.m; sourceTree = ""; }; + B6704FC3280FC62B58879C7FD72A1BB7 /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; + B672C2FF341C2CBC84CE7C181369DAED /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + B6758DD46ADA704C20414E9814387441 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; + B68538A195431A933EA46D81A51FBC48 /* RNCMaskedView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCMaskedView-prefix.pch"; sourceTree = ""; }; B6925D6E11BCBC1BF08A08FFC08C2DEB /* Atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Atomic.h; path = folly/portability/Atomic.h; sourceTree = ""; }; - B6A3FAF59C0CFB7BD0712CAFEDF02C55 /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; + B6AD0FF33C5C0376F2D1F42D1945EF20 /* RNCMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedViewManager.h; path = ios/RNCMaskedViewManager.h; sourceTree = ""; }; B6B49746D7B4C1049D33AFCA620292EF /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; B6BD92CCE2F579A471531D8AC359A8E6 /* FirebaseInstallations.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.xcconfig; sourceTree = ""; }; B6D818FE0EC9E528C9CF992FD6BED764 /* event_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_struct.h; path = src/event2/event_struct.h; sourceTree = ""; }; @@ -8499,153 +8577,167 @@ B6F485C63D0E6C4AD0BFBD1FF878458B /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = ""; }; B6FA701B21708A73117560B03415D018 /* CacheLocality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CacheLocality.h; path = folly/concurrency/CacheLocality.h; sourceTree = ""; }; B700075CEFBD7C91C681713CD53AEA4C /* rsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rsa.h; path = ios/include/openssl/rsa.h; sourceTree = ""; }; - B731DBCD2B080AF81E6B23701B99D9FB /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; + B71CC676F795E509843A7A323A901A01 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; + B72142B3DCD694D56D81DDC466849790 /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; B735C9F34C8311507D047A8CFB61DC62 /* ScopedEventBaseThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopedEventBaseThread.cpp; path = folly/io/async/ScopedEventBaseThread.cpp; sourceTree = ""; }; - B7360D2B463CE6CA010B5AF2028E78D4 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; B744243DDD3E90CBDBBEE7F8B7F2B4BB /* idec_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = idec_dec.c; path = src/dec/idec_dec.c; sourceTree = ""; }; - B747CD606F27862FD94FCABDFBF46CD3 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; - B757E08DABF9ED2D5DA2332EE709A28E /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; - B75908B81A2737C5DE368FF3CE484910 /* BugsnagReactNative.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.xcconfig; sourceTree = ""; }; + B74B3D0393A1DA20C2CFA6536BD32337 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; 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; }; B76EB25240F6DF11F9866520FD1C8839 /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; B7791E8B79D3AF3B69AF7CECAD3CF3D3 /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/chrono/Conv.h; sourceTree = ""; }; - B7895CFB93C7B5F81EBA1447DD0077D4 /* EXImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXImageLoader.m; path = EXImageLoader/EXImageLoader.m; sourceTree = ""; }; - B78CD0F6D5A3002EC7BD3682D558D0C2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - B792152A334862B990C9A456897A9E3B /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; - B7A19770A1C51A5E185ADFF13D1011CB /* RNCAsyncStorage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCAsyncStorage-prefix.pch"; sourceTree = ""; }; - B7BE348A4BE2F57CA5704C782D041C83 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; + B7931EC6A86AD2739772BCE8C2756096 /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; + B79690820F853D09C764DCD73376DDA2 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; + B7A1BE671777394FB2197CB0F8D38DDF /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B7A321B55CC1F2DCA106C34A4E57F86E /* 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; }; B7D2FB2E7B87B3AF58AFC61B2ECC6CB4 /* DeferObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeferObservable.h; path = yarpl/observable/DeferObservable.h; sourceTree = ""; }; B7D9BBA475ECEB5469F8DB398EA2EBE2 /* FlipperState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperState.h; path = xplat/Flipper/FlipperState.h; sourceTree = ""; }; B81FD2C473D887F59427BE78B558C91C /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; B82323AB272218CE115A7186AA94D3B7 /* UIView+Yoga.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+Yoga.m"; path = "YogaKit/Source/UIView+Yoga.m"; sourceTree = ""; }; + B8236816F9EF6C835ADEF7EBD8A51FEE /* RCTUtilsUIOverride.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtilsUIOverride.m; sourceTree = ""; }; + B83F19BE55D1F77902A11954FA99A98B /* RNCMaskedView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCMaskedView-dummy.m"; sourceTree = ""; }; B8440B56243829CB710E5A438AC1A9CF /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; + B85F14B1A3321F67D57FB3E5D50DEF80 /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; + B86E9D751996B3935492481335FA6C60 /* RNCSafeAreaViewEdges.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewEdges.m; path = ios/SafeAreaView/RNCSafeAreaViewEdges.m; sourceTree = ""; }; B873736FEBF203C4811DE9024673CA18 /* FrameHeader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameHeader.cpp; path = rsocket/framing/FrameHeader.cpp; sourceTree = ""; }; - B88941F26D4EAEDC366AC47BE26EFEC5 /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; + B873DE6CCB46CA30C83644140F52C62B /* 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; }; B88BF0F6E8E0D9231FE0B18A655A9D4C /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; - B898F32D38B541EDFFEFD3AD54E87200 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - B89FBE68534027D71FA51453AF01C170 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - B8B23E2DCFF2CEDF5DA4F6D1A9A791B0 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; + B88FACE80867F4D89F910D7379D7C891 /* RNFirebasePerformance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebasePerformance.h; sourceTree = ""; }; + B8CA43372B9273DDF55F3E98AD3F76ED /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; + B8CAC0F1215C8A25A9642BA111595AAD /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; B8CD4B9B578CE9FA38114B638C9CAA78 /* libRNCMaskedView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNCMaskedView.a; path = libRNCMaskedView.a; sourceTree = BUILT_PRODUCTS_DIR; }; B8E4CC3E9E146017C706F7F1BB8AE183 /* RSocketServiceHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServiceHandler.h; path = rsocket/RSocketServiceHandler.h; sourceTree = ""; }; - B8F314BF2984990FA063A03D6CFC9EDB /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; - B8F54589F8E464A861654B6BA8D4331D /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; - B90B2170F097409F6BC3604706972EC6 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; + B8FF9CD3EB5A10C3E96DCF23DE830F73 /* RCTLogBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLogBox.mm; sourceTree = ""; }; B90D4EB47DA9DA57A8D265D53BB0FC7A /* SanitizeThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SanitizeThread.cpp; path = folly/synchronization/SanitizeThread.cpp; sourceTree = ""; }; - B923EA2312B2BB180A784C9E1D5644DD /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; + B9101611D1081DAA8646B34923008FE7 /* RNFirebaseAdMobInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobInterstitial.h; sourceTree = ""; }; + B913B0DE28EC59A4F79F6DB78A261708 /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; B92C2FEF3E68EBA0C79B2D9403F591DD /* TOActivityCroppedImageProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOActivityCroppedImageProvider.h; path = "Objective-C/TOCropViewController/Models/TOActivityCroppedImageProvider.h"; sourceTree = ""; }; - B93E9FA86E3780D3E6653301AA02704F /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; + B93E931A811386F363040FE7E7792B66 /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; + B97BDA6F53DC963FFDAB0486599E7CE5 /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; + B982F2A245C062D03E9D0007425EFD88 /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; B9940970BDE50BD21BE9ABF71AFB8E2A /* FixedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FixedString.h; path = folly/FixedString.h; sourceTree = ""; }; + B99C9BB3EF243DDDCB218744CD0C9125 /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; B9C0C1A7183EF88CCC354BB8A1419EFC /* StringKeyedUnorderedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedSet.h; path = folly/experimental/StringKeyedUnorderedSet.h; sourceTree = ""; }; - B9D8831B8C7A05F631A441D513C9FE58 /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = ""; }; + B9C741BBFDA15841A9940FD832CA71D0 /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; B9E53FE8489DBF30F8C05AFC8DC96FF7 /* WTCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WTCallback.h; path = folly/futures/WTCallback.h; sourceTree = ""; }; B9EA65F8D084036C2753D98F4C662779 /* Asm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Asm.h; path = folly/portability/Asm.h; sourceTree = ""; }; + B9EAE944D077E66FA8DEE13865B489B0 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; + B9F916A9CD68EB11468EC27D469A2F29 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; + B9FB1155EF84D6AC90960986987D4C56 /* EXKeepAwake.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXKeepAwake.m; path = EXKeepAwake/EXKeepAwake.m; sourceTree = ""; }; B9FCB17AE5093B5061C9494E6D16BAFD /* Base-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Base-inl.h"; path = "folly/gen/Base-inl.h"; sourceTree = ""; }; + B9FEEC4F1C841ACAA260B57643E7C1DC /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; BA027A67DF4BB230F036E25BAFB8F2C7 /* Flipper.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flipper.xcconfig; sourceTree = ""; }; - BA03A3C1BE47AB14B488D08C97240739 /* RNCSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaView.m; path = ios/SafeAreaView/RNCSafeAreaView.m; sourceTree = ""; }; BA0C002C7BB5AB0659612B13B3F68B59 /* Init.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Init.cpp; path = folly/ssl/Init.cpp; sourceTree = ""; }; - BA5C8C27B1A70FF09C0A1399433E8219 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; + BA32D40EBE0AFE838FD881CE4EE07058 /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; + BA402C1554FE2BDBAB76A90DFB51A5C1 /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; + BA4660B8FF0C9BCA3CE3504D7C65E022 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; BA6A2D8828FE7F15C161DF91C6F515C3 /* SKTapListenerImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKTapListenerImpl.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListenerImpl.m; sourceTree = ""; }; - BA70A66223D2DA58B700B4B982C1F2CD /* RCTScrollEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollEvent.m; sourceTree = ""; }; + BA82F24AE9818ECFBAAC74D9D13B0DC1 /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; BA90470BACE453BC61F5A465707585F4 /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = ""; }; - BAAB4C0E063D404B75B16D827C72E47F /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; - BAADF67C2659DA3D7FBB0D06D51FE509 /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; - BABF1453638674E3E2F7C08B23127985 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; + BAA3C129648E585E934FD903D1C96652 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + BAB32DAC1CCB947DB9B0F1CACD9FFADE /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; BAD1C571D64BB9D0FAC96D240044C4CB /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/Portability.h; sourceTree = ""; }; - BAD38D2AD9D27FD4554AF3D66C9A9991 /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; - BAD73BD5778173836BF37DB3E81D1893 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; + BAEAFDD188CD0F7613AD9D7734ADFC80 /* RNCSafeAreaViewMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewMode.m; path = ios/SafeAreaView/RNCSafeAreaViewMode.m; sourceTree = ""; }; + BAEB73E466BB265D89EE1E33D6DA3E00 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; BAED703E7AA2427C8BB0AE4748AC34C7 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = ""; }; - BAF2BF7D3F103A8DE76360EA80DE38B2 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - BAFD0ECB19C5ABDD6DCF5CEC5348BA25 /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; - BB0CC49417FFC7DF376BAC17A7926B3A /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertManager.h; path = React/CoreModules/RCTAlertManager.h; sourceTree = ""; }; - BB20DEF11E50A083AF8BBC9B8B265A16 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; + BB2D3C3460F8F63518DD4E289F7D0265 /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = ""; }; + BB307728748153F595011FB99B180AD5 /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; BB45A219ED8EC0A299CA36811D99FF2B /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; + BB6917060CD8E3BCC7BAC43AAF2FDFEE /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; + BB759F07AA4F96184B483DA4D5D1044A /* RNFirebaseLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseLinks.m; sourceTree = ""; }; BB7F42A922D4DCFF8096E3C184E06556 /* TimekeeperScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimekeeperScheduledExecutor.h; path = folly/executors/TimekeeperScheduledExecutor.h; sourceTree = ""; }; - BB8AB3616CFD2142F8046F8BDD1B760A /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; - BBC5B564D4E222135FE8ED1976E3CFEE /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; + BB81AFF45CB95797F486992B1E8100EA /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; + BB828946A49B6FEAB8FB73999205B6A0 /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; BBE5EFCABEB336804CDA1C119FB28B51 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Private/GULReachabilityChecker.h; sourceTree = ""; }; BBF677FBDA8C4140131823DF762F3B63 /* ThreadWheelTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeper.h; path = folly/futures/ThreadWheelTimekeeper.h; sourceTree = ""; }; + BC0B68D6DE8ED8D2C98B906BF4672B2F /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; BC34FC3BC5FBC0454E09F0942A1E2962 /* yuv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv.c; path = src/dsp/yuv.c; sourceTree = ""; }; BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMPermissionsInterface.a; path = libUMPermissionsInterface.a; sourceTree = BUILT_PRODUCTS_DIR; }; BC4A4DFD5C2B5E942C4C4F8D60E0C9FE /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/synchronization/MicroSpinLock.h; sourceTree = ""; }; - BC53DDF1ECA0F532D1A81F71AB1A69FC /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; - BC5A69BE5A136CFCBA030C7348047FAF /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; BC641C3536C6D80CEBDE234F1229F43E /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; - BC8AFDC2D28A94A4DBA016A94752A911 /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; - BC9CF095234EAD63B5212461C7F34C3C /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; - BCA39EA70FE3B97470E11828406F4768 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; - BCC3839F4CB33F4464C762E8EAA62FE6 /* RNFastImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.xcconfig; sourceTree = ""; }; - BCC4FCA814ED1A0EB6FD44AC80CFB537 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; + BC6BF1D7ED08F18910811808E32D7B8E /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; BCC8BFB1CF351BF5C6EF84BA049AE607 /* HeterogeneousAccess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeterogeneousAccess.h; path = folly/container/HeterogeneousAccess.h; sourceTree = ""; }; - BD0667D541A8082EF88CA14960BAF74A /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; + BCC9E8E36491D208809DBABC0A43343D /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = ""; }; BD21A41F3FC35E0DFC33DF605CE33EEE /* YogaKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YogaKit-umbrella.h"; sourceTree = ""; }; - BD51C70EDC724958D2208066FF323929 /* RNFirebaseFirestoreCollectionReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreCollectionReference.m; sourceTree = ""; }; - BD56167A610A2BAE73BE6C8C6502DB56 /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; - BD6094EAE9E1FD35871E0EEF9C2B5E55 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; - BD68EDAD47CB6EE1355CC2150B429E4F /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; + BD3966D75FB07B1018792CD8943F35A1 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; + BD4ECE5FE09353799C30DF0C2A06044D /* RNFirebaseInstanceId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseInstanceId.h; sourceTree = ""; }; + BD5F3EF6EB0059568C5D5E1ACE4D16DF /* RCTAlertManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAlertManager.mm; sourceTree = ""; }; + BD696F1412B23F77ADFF152EF3F0A69D /* react-native-slider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.xcconfig"; sourceTree = ""; }; BD6E1BB5617BB3C9B9EF365E5F0203B4 /* ChannelResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChannelResponder.h; path = rsocket/statemachine/ChannelResponder.h; sourceTree = ""; }; BD6F1B58837C3E18538051C80DBA60F1 /* FIRAppAssociationRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAppAssociationRegistration.m; path = FirebaseCore/Sources/FIRAppAssociationRegistration.m; sourceTree = ""; }; + BD70DEA8AEFD95E482D660919D2119E1 /* 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; }; BD71E2539823621820F84384064C253A /* libReact-Core.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-Core.a"; path = "libReact-Core.a"; sourceTree = BUILT_PRODUCTS_DIR; }; BD7D6AE70B01DD0DDBC246F0184D8560 /* huffman_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_utils.h; path = src/utils/huffman_utils.h; sourceTree = ""; }; - BD8E462DF6A71905487EE19E3BE23B02 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; BD915A7D91A75FD6552B9FEB4C051B45 /* ShutdownSocketSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ShutdownSocketSet.cpp; path = folly/io/ShutdownSocketSet.cpp; sourceTree = ""; }; - BDC04558F9FF3CDAB1C4CE6F8493591E /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; + BD9BD89BC0C5C60E9EAD7A81AEF71D12 /* EXImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXImageLoader.m; path = EXImageLoader/EXImageLoader.m; sourceTree = ""; }; + BDB692241C92CA225252AEABAEC15D9F /* RCTRefreshableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshableProtocol.h; sourceTree = ""; }; BDC43C756C3C42122F1233A36382BFD4 /* FIRCoreDiagnostics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnostics.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m; sourceTree = ""; }; - BDF2FF995645E381FCB060220D610084 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; - BDF5626E398AC416DFEF4D293F9220F5 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; - BDFF81F9DE62DBA42323C8BFE40CEE08 /* RNFirebasePerformance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebasePerformance.h; sourceTree = ""; }; - BE1F41BEBC8C3AF6F2D54276A85B7B0E /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; - BE29D0312D2BFE31EFB8A2DB111675BE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - BE363E764077427D016691742517A4D4 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; + BE02C0418CF8EE6054A6B6631E06DCDA /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + BE0C45CE0B456AF7B20E80160D87113A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + BE2A853BA7F9A576904BEA2F920D162A /* RNCAsyncStorageDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorageDelegate.h; path = ios/RNCAsyncStorageDelegate.h; sourceTree = ""; }; + BE326A8BBAF4AE76275FB5B30C2D2869 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; + BE479547392B4094703EFDBC6509C671 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + BE4AC730FBA061A5322A81174F81411B /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; BE535D39BB5BF6825CB208F2AAB9C249 /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = ""; }; + BE5EBF9B9E5EF12CBD5AD12B3E6B42B2 /* RCTStatusBarManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTStatusBarManager.mm; sourceTree = ""; }; BE791718BEDB633EFE7FC81BEE765382 /* AsyncServerSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncServerSocket.cpp; path = folly/io/async/AsyncServerSocket.cpp; sourceTree = ""; }; - BE7EB5E6069674E49DBA684A1ACF3FE2 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; BE84F26DA698B446FF77833AEF40D482 /* FBCxxFollyDynamicConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBCxxFollyDynamicConvert.h; path = iOS/FlipperKit/FBCxxFollyDynamicConvert/FBCxxFollyDynamicConvert.h; sourceTree = ""; }; + BE91CEE35AB92D55B46F5AE10BF32F0C /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; BE9300230844BA7A2D03F3BAE5DC8BDE /* ScheduledFrameProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledFrameProcessor.h; path = rsocket/framing/ScheduledFrameProcessor.h; sourceTree = ""; }; - BE95B25CC742C1479D59951E1A79870E /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; - BEA76C48FC50984E4F9E6E0CF3DA4101 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; - BEADA4B0B24CC11705CD225A9B31F056 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; BEB772AE2895A7AE60AEE2B71F800759 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; - BECB0C184EC58C92F82472FC752114F2 /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = ""; }; BED4D12B7CB1907D3DD20AD65D6968DF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = rsocket/benchmarks/README.md; sourceTree = ""; }; + BEDD8EF93D0127ED2A373DF630F9E051 /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; + BEE2BAEED37A6A2D75DE4F8C9C7D1970 /* RNFirebaseInstanceId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseInstanceId.m; sourceTree = ""; }; BEEB210428EF1A8A83AEEDCA25D4C1D1 /* FIRInstallationsVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsVersion.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsVersion.h; sourceTree = ""; }; BEEC5B627C27430789D52F34CC40A3D1 /* AtomicRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicRef.h; path = folly/synchronization/AtomicRef.h; sourceTree = ""; }; - BEF1AF86C4CA22839409EAFA0F5A2362 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; + BF0174832FA170F6A181A9B8FD01957F /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; + BF02A4360C993EA209F4841480D7BFCC /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; BF0C8319C7932A1BA4AE4B9C93D231B4 /* PTUSBHub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTUSBHub.h; path = peertalk/PTUSBHub.h; sourceTree = ""; }; - BF32DA60165813B0B946ADA23D419902 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; - BF533A7F650FB87F22D890DE1ECAF559 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; - BF8476CA10BDD78496BF6B5FE11FA585 /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; - BF920D45EDD10AC6F145314BCCFA1F82 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; - BF92E0205AFBC3A8C190909EF2828F9E /* RNFirebaseFirestore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestore.m; sourceTree = ""; }; + BF1A51A3817F94FE9F6D656316439DF9 /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; + BF71B6B50AE0EA0C42E1995CB3D90984 /* EXVideoThumbnailsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXVideoThumbnailsModule.h; path = EXVideoThumbnails/EXVideoThumbnailsModule.h; sourceTree = ""; }; + BF7626FC6716B8FFD496BE502D49929E /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + BF7875275D133A28394FE406760DC9CE /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; BFA07440A8E55C4863268CEC6E8C645C /* SDImageHEICCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoderInternal.h; path = SDWebImage/Private/SDImageHEICCoderInternal.h; sourceTree = ""; }; BFB653590FB299B61B9D0198545B5D53 /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; BFC7C2CDFD20C9563CC341F59F84CCAC /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; BFCE4058442BFB8DEB89BA3F261A76BA /* libRNUserDefaults.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNUserDefaults.a; path = libRNUserDefaults.a; sourceTree = BUILT_PRODUCTS_DIR; }; BFDB400359D9801EC7F5B043C1BE7FB5 /* StreamFragmentAccumulator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamFragmentAccumulator.h; path = rsocket/statemachine/StreamFragmentAccumulator.h; sourceTree = ""; }; - BFECE6384E03B74BBDCD64E8B15A7BAE /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; - C01677F298780E9A8D60D5281B060257 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; + BFDC408389CB2C71CCB52D6A88B529F1 /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; + BFF25A5890088FE3163334A7ED4D8814 /* RCTWebSocketModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketModule.mm; sourceTree = ""; }; + BFF73D90E1EB134A59A319885D6799A2 /* 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; }; + C019C5E38C06F44F4D7C9B8CA3265E20 /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = ""; }; C023522D07E565D0B8BEE38CD1DC59D4 /* dns.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns.h; path = src/event2/dns.h; sourceTree = ""; }; + C0270F97695905D849A9C64C389F5E31 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; + C04903A37365E963E54413DF6FD9FD6A /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; + C04CAF1C9D2A557190D23C05A5E1215A /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; C05BD4154F1F65CD1FF9EF9570D1C3FA /* GlobalShutdownSocketSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GlobalShutdownSocketSet.cpp; path = folly/io/GlobalShutdownSocketSet.cpp; sourceTree = ""; }; - C062C81E288BE7F7C964C37229959E1F /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; C0665594DBA861A8A5EA0DC000489878 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = src/webp/decode.h; sourceTree = ""; }; - C081E766A0AE388CBA3494056F0B22BB /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; + C08CA5F5FD4835B128CFCF8A10302E56 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C0A320184E361CD4261DBE4243AFAC31 /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; + C0A3B1DB40C9E348BFB3FE22BA06305C /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; + C0BF5F99115EE471188E590055260764 /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; C0C7F5B506A4CC32E2F13CD387EEFE0D /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; + C0C8628D3ECA2DC14F6E5DAFEF019A26 /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; + C0CDD00DDFA68C0DF72E3957B9D462CF /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; + C0DD9DF6859C411D62FA7DB0B4ADAB70 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; + C0F313FB5F1E7F6BF4108813F8D2502F /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; C108660121E046B1BDEF96A2F71B2A5E /* EventBaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseManager.h; path = folly/io/async/EventBaseManager.h; sourceTree = ""; }; - C11F3018A56727FCC1AB3BC7301B5506 /* RNCMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedView.m; path = ios/RNCMaskedView.m; sourceTree = ""; }; C1301194D0488C68D7DC6B14F8311148 /* des_old.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = des_old.h; path = ios/include/openssl/des_old.h; sourceTree = ""; }; - C1339D81158046A4381EEC75CB217634 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; - C1528A95D502CDF7F46BB86FB8692CFB /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = ""; }; + C14E45FD9623CC58C10518AD113563CE /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; + C18252439B490C91FC5F74CCC76918A3 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; C189539BA2A4A2E7C6039B950C1B63FC /* SKNetworkReporter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNetworkReporter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKNetworkReporter.h; sourceTree = ""; }; - C194615FA8C7CCD34E5BE0CBD3606870 /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; - C1958EEDA679949596D34264F875312C /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; + C1A63DDB109BA4203505D76411BFC8F3 /* RCTAnimationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAnimationPlugins.mm; sourceTree = ""; }; C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTVibration.a"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; C1AF7046F4295200DA1091E98F1B557F /* F14Policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Policy.h; path = folly/container/detail/F14Policy.h; sourceTree = ""; }; - C1B49077B4BCE1602288DC8DF114A95F /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; + C1BC8CA70E28EA5EF4D34F254C9D63C3 /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = ""; }; C1D0F4B53FBE07F21047EA61D5D9F50E /* asn1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1.h; path = ios/include/openssl/asn1.h; sourceTree = ""; }; + C1D5A570574B92F76B7BD7A8A1BDF5A3 /* RCTSourceCode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSourceCode.mm; sourceTree = ""; }; C2003381948AFF7CBC11D32CF2F11C33 /* IPAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddress.cpp; path = folly/detail/IPAddress.cpp; sourceTree = ""; }; C204812C2A6F2B7CBAE9D33EB9F64750 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; - C206DEDDBA96BCFD776E124C461B2239 /* RCTAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppearance.h; path = React/CoreModules/RCTAppearance.h; sourceTree = ""; }; C20AF5E435127DBA67BC1E57B6561AD6 /* OpenSSLLockTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLLockTypes.h; path = folly/ssl/OpenSSLLockTypes.h; sourceTree = ""; }; C21CCDB4AB9E50DE25A182A1A5788054 /* ThreadWheelTimekeeperHighRes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeperHighRes.h; path = folly/experimental/ThreadWheelTimekeeperHighRes.h; sourceTree = ""; }; + C227F4B7992430DBAC04276C2B6014C1 /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; + C229DD1D2670A9D83AB53E37B472BE4C /* RNFirebaseStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseStorage.h; sourceTree = ""; }; + C23CD0A21EBD2999A882F84B9F233AD5 /* RNCAsyncStorage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.xcconfig; sourceTree = ""; }; C2456B070C41806D7B609717DA4AE773 /* ProducerConsumerQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProducerConsumerQueue.h; path = folly/ProducerConsumerQueue.h; sourceTree = ""; }; C254A8332C4E39AD6D3516D71FFD32A7 /* StaticSingletonManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticSingletonManager.h; path = folly/detail/StaticSingletonManager.h; sourceTree = ""; }; C2556B078588E78F3AEEC4FFA1F34A01 /* Invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Invoke.h; path = folly/functional/Invoke.h; sourceTree = ""; }; @@ -8653,258 +8745,258 @@ C28867F59EBDB868E877DA0C1C5D37F5 /* RSocketParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketParameters.h; path = rsocket/RSocketParameters.h; sourceTree = ""; }; C2AC929E8A0A14F84960B40BC04E3EDF /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/chrono/Hardware.h; sourceTree = ""; }; C2ACAFF2EC9798E22920AFC52340CFA5 /* Flipper-Folly.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Folly.xcconfig"; sourceTree = ""; }; - C2B557DD09C4EC88B415B5050CC85ABA /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; C2C3BA5452DF3C79CF3586FD7F42D79F /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; C2D12D9CB52D0A5C33E123C91F9F277C /* BaselinesTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BaselinesTcp.cpp; path = rsocket/benchmarks/BaselinesTcp.cpp; sourceTree = ""; }; - C2E74A5FA6A9D9512B8F7F9511B777E3 /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; - C2E94B6D13B60B6F5054461F826B4219 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; + C3093E8DB076B814FC199B208E9B3C15 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; C3109FCC2F4243964C3D83291577711F /* TimedDrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedDrivableExecutor.h; path = folly/executors/TimedDrivableExecutor.h; sourceTree = ""; }; C3142A503B8B70FC802BBF2FB75CCC8E /* ThreadCachedInt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInt.h; path = folly/ThreadCachedInt.h; sourceTree = ""; }; + C33745890C9F91ADF6EB4AB0EB5ECE70 /* RCTKeyboardObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTKeyboardObserver.mm; sourceTree = ""; }; C347EB43BDE636D5C412551BC1BF3133 /* Builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Builtins.h; path = folly/portability/Builtins.h; sourceTree = ""; }; C349907DDF23F683261B00548458E2B7 /* RecordIO-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RecordIO-inl.h"; path = "folly/io/RecordIO-inl.h"; sourceTree = ""; }; - C38446787239FC2BA2FCCAC06FF5ED3E /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; + C3601DDF73E4E0C163E9C1038E282EC0 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; + C38F2DF546EC0B7401DD3FD817DF5A7A /* EXImageLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXImageLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; C394BE36DFD48F07854E942BCB01261D /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; C3A93A7C5F6A0F2C1EEDC9EDE3C12E12 /* GDTCORTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransformer.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m; sourceTree = ""; }; C3AC3A6D43F8FF8D287E383DDC8A9A4D /* ec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ec.h; path = ios/include/openssl/ec.h; sourceTree = ""; }; - C40A0ADB1BAEB501AF0189643B9C6872 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = ""; }; - C416C41A74FED4CB533D8AD84CA11923 /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; - C428ED2EF4E3284A25BE7C348B0CEEFE /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; + C4056A95B9082E2CB7A6161D92837DDB /* RNFirebaseNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseNotifications.h; sourceTree = ""; }; + C42295A853EA3272C33CC1007B5EA749 /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; C438EEE3355895D23EA3E76753FF02C6 /* SSLErrors.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLErrors.cpp; path = folly/io/async/ssl/SSLErrors.cpp; sourceTree = ""; }; - C43D53D1AA069BBB72E8F5CFDE1160CB /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; C44304169C35B4A7A519B1A1DCBDA0AB /* Windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Windows.h; path = folly/portability/Windows.h; sourceTree = ""; }; C447054D2A8D18FFD482EBF39CCD4073 /* Flipper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-dummy.m"; sourceTree = ""; }; + C44725A1EC6B0D7042E990E8FFAD2EBC /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; C44764391C07D33D533DEADD5BA5590C /* HazptrDomain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrDomain.h; path = folly/synchronization/HazptrDomain.h; sourceTree = ""; }; + C447C2F56F60AB7FBB7B476E7BE16CF5 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; C45340E1BD37FF39D4D1428478240EFF /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; + C45617988D2E356E57BF3F7A0FE0E174 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = ""; }; + C4819B006A4CB7BDE21A5A4D9D1239BF /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; C482C4730A3D930704DB1E78CED3AA3E /* RSocketStats.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketStats.cpp; path = rsocket/RSocketStats.cpp; sourceTree = ""; }; C49C77B14C7A4ED1DE03E4400210D47C /* Merge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Merge.h; path = folly/container/Merge.h; sourceTree = ""; }; C4A8F789C199D44C73E456AC70D39B21 /* Replaceable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Replaceable.h; path = folly/Replaceable.h; sourceTree = ""; }; - C4B0898909B2F346934BDAB0195A0865 /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; - C4B13AABF5C01816B1F1888F8C02D596 /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; - C4C96490A25F9C2F97BA3419589767EE /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = ""; }; + C4BEA3F947F7BCB04367E48FD3A8CEAB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; C4CA6DE0516D51CDB6B6CDE905DA3D78 /* Format-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Format-inl.h"; path = "folly/Format-inl.h"; sourceTree = ""; }; C4D02AD3FB4B53CDBE474C4BCC0F2D7E /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; + C4D42313D4DAF406D2817B141A119FA9 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; C4D8C35912F68FCA0375BED2E0356D22 /* cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_enc.c; path = src/enc/cost_enc.c; sourceTree = ""; }; + C4F1DF0D45EFB894C49030EFCEC3E5C1 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; + C4F76CE918BDF24D3B02B9768F7BCB3B /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; + C5079FCBD5EEF4C3D19A4559DF39DA35 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; C51CD3D9B24F6D593397AB166CCEA9DB /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; + C51E3248075DA87730F8569F1ABA1D10 /* RNFirebaseAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAuth.m; sourceTree = ""; }; C52761B7DA3EA39F7288C036525CB927 /* StreamRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamRequester.h; path = rsocket/statemachine/StreamRequester.h; sourceTree = ""; }; C52F8C39642878EE119EB3371F5D3E53 /* PriorityThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityThreadFactory.h; path = folly/executors/thread_factory/PriorityThreadFactory.h; sourceTree = ""; }; + C5363E2E18C3E2582BC14D74EF29FEAD /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; C53FBAFE6757A0CC37B98D6A097FBFD0 /* CPortability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPortability.h; path = folly/CPortability.h; sourceTree = ""; }; - C56B74B0A8D4393BF56F060DF429EFB4 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; + C56C1693BDC084EDD80C7D26ADD67C9E /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; C5702E4D9BEDFB43F6AA03BCC523ABAB /* FIRInstallations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallations.m; path = FirebaseInstallations/Source/Library/FIRInstallations.m; sourceTree = ""; }; C594763EE856BA417805AA977CDF305E /* ManualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualExecutor.h; path = folly/executors/ManualExecutor.h; sourceTree = ""; }; C597DD708F8111E3F8A0C470DFC62F00 /* FIRInstallationsSingleOperationPromiseCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsSingleOperationPromiseCache.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h; sourceTree = ""; }; C5BBCD54998E8FB091B5DCBC5FD34392 /* SKApplicationDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKApplicationDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKApplicationDescriptor.m; sourceTree = ""; }; C5C1FACAB4E7399CF7E9DA5FA30E0758 /* FrameProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameProcessor.h; path = rsocket/framing/FrameProcessor.h; sourceTree = ""; }; - C5D469DF24AAB3A60D4D2DC73D7157DC /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; + C5CA0AEF5EA89992EB0B35EE86E02AA7 /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; C5E2630D0D65D057206B8901A4535D5C /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = ""; }; + C5F49D1EC24C9C8AD979AEF0E0EFFCA9 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; C5FBF2C655BDF50FBE56FB922C3EDC64 /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; - C60DB03A1BEB387AD1E4E205D611D769 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; - C60EAE0A54FF212B714AF0FF77374FC9 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; + C600E0C9557D33A1A03EDF81C56E1C6D /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; C611ECDB782023017C5311E0E1882107 /* AsyncUDPServerSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncUDPServerSocket.h; path = folly/io/async/AsyncUDPServerSocket.h; sourceTree = ""; }; - C6133E09F8DBF18DA5F2D9D1F9A67EC5 /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; C617BD7A6A238D72724BEC1D456C125E /* EventBaseLocal.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseLocal.cpp; path = folly/io/async/EventBaseLocal.cpp; sourceTree = ""; }; C618383C9180ABFE3C78D4CD29ECA29B /* SequencedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SequencedExecutor.h; path = folly/executors/SequencedExecutor.h; sourceTree = ""; }; C6187BEC3C0923BA104D84C23B91E01C /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/Utility.h; sourceTree = ""; }; - C62FED310E09A30A66C26D17632271F4 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; + C6276349EE478C396F4BC9158E31AE4F /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; C63A6A47981F29DEF5709746C0FEB1A3 /* IOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOExecutor.h; path = folly/executors/IOExecutor.h; sourceTree = ""; }; + C64946AD6C95C8CC4F360037CB623723 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; C64F1ABE0A71785564EFEB70DA843B6A /* Pods-ShareRocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ShareRocketChatRN-resources.sh"; sourceTree = ""; }; C654FE08831C0CF715C21934C7CABA0F /* boost-for-react-native.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.xcconfig"; sourceTree = ""; }; + C65DE3A05F1889FCBA86E8368027A1AD /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; C67BE21BEF53E4B88BD7BD67C69D8CB6 /* GDTCORReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORReachability.h; sourceTree = ""; }; C686E607286AB7E08B8E8B083E7C3B51 /* SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKInvalidation.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKInvalidation.h; sourceTree = ""; }; C6A3C5875C4FA522C69652AFDFA30B60 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; - C6A8B65A67CE8BF70D0C94161CDA35D4 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; C6BF76A651423C1B5D83A11E5FC23681 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = YogaKit/Source/YGLayout.h; sourceTree = ""; }; C6C22D1FEE3B00F2917C4C24433E46B6 /* FlipperConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnection.h; path = xplat/Flipper/FlipperConnection.h; sourceTree = ""; }; - C6D05C339CAFF93449D9207342890752 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; - C6E373AA48E6E329BF7EE8C448DDEA2C /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; + C6C36B4CF0EFE6B9FBE55B0E968F387A /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; + C6F1748B403E6E5764097A0DFD44854C /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; + C702028BE0E9F17B34F2C20BC017AD83 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; C7022D39F0131D8DE5EE4852EFFE46A5 /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; - C7625BD2DCE02BA140E2D2EF63E9E68C /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; - C76313739107795E9AE762AFAC05B0AB /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; - C76F717D6AB5581F9DF8FEC3A698DF88 /* RNCAsyncStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAsyncStorage.m; path = ios/RNCAsyncStorage.m; sourceTree = ""; }; + C72EFF39F9845C65ECAFF95FFC67AED7 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; + C73F242C04336D7FF6A7E8E1A751127D /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; + C75D22E6E9E3499FEE0A3861088D7C3F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNReanimated.a; path = libRNReanimated.a; sourceTree = BUILT_PRODUCTS_DIR; }; - C7858E4C09D6D3679159D6A6549030A8 /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; C78AC8F8193767D450E7E8B4E33C3393 /* SerialExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SerialExecutor.h; path = folly/executors/SerialExecutor.h; sourceTree = ""; }; - C78D38C5B1A867D3B3A98904C5222D22 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; - C7929EE383C27E6C8346E2C07F343142 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - C7A15DCFFDA1ADCAE8DBC816C381F9F8 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; - C7B1E9B6C607C38328E1997549330E11 /* RCTSettingsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsManager.mm; sourceTree = ""; }; - C7D50E8970AD79B27DF87DBF1760F03A /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; + C7B7295CBF6EF405A44F84AAE4205705 /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; C7DA7DB2E6ED912A350DA15A567DCA3B /* Flipper-RSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-RSocket-prefix.pch"; sourceTree = ""; }; C7DC09936FA681FD6534B67D460E6377 /* GTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTest.h; path = folly/portability/GTest.h; sourceTree = ""; }; - C7E2B87C68912B4D0C360E7131D40C7D /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; - C818EB36F01E79DDBCD64734BB197383 /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; - C845E76CEB1738E14C6F4ECFE2F38156 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; - C84F32F9099BEBC7F2D27568864D160D /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; - C8521E86AD33BB0048AABF1AEF30C058 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = ""; }; + C80F0E598D55849543372327E7C3B29C /* EXKeepAwake-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXKeepAwake-prefix.pch"; sourceTree = ""; }; C85B32CE09C0680D191A596247D33DBE /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; C861EC7F1643CD0F174E5FCE7F99FF56 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; C86410DA5B635FCD1418EACF241E3676 /* ErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ErrorCode.h; path = rsocket/framing/ErrorCode.h; sourceTree = ""; }; - C8721D1A0233F31995963A9A3DF84D9E /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; - C882CAC562072778936CF9E773BC4EE7 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; C8896265D038C4A8BC58E1851B938227 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; C892F6E29BEFAA900F4D34736A3A395D /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = ""; }; - C89A10E5A2F973FC16FE5EA6BF54102E /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; + C898C23FFB4EA1B7C6820BB604B3C061 /* 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; }; C8A26A69F3EF4F2DE018599DA2868F89 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; - C8AC77AFFBFD52A772536E5AE2009BC7 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; C8C8F2005685BA0606C2E4D9A04FA8D0 /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; + C8D1B31BC5FDE2E2292F2D47E7079016 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRedBox.h; path = React/CoreModules/RCTRedBox.h; sourceTree = ""; }; + C8D4187F04A5CB8410455373AE01BFCC /* RNFirebaseFirestoreCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreCollectionReference.h; sourceTree = ""; }; C8DD038465A9BEFEA0B2B73AB0D535AA /* EventUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventUtil.h; path = folly/io/async/EventUtil.h; sourceTree = ""; }; C8E57C46428DDC0632FE24C7BF610613 /* UIColor+SDHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SDHexString.h"; path = "SDWebImage/Private/UIColor+SDHexString.h"; sourceTree = ""; }; + C90E0C7B1D9E78D0B532D1E356CCD82E /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; C9107F956D575ABB532F70D331DA2C31 /* Random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Random.h; path = folly/Random.h; sourceTree = ""; }; C921A77EEC440C08EE0B98D5D8EC1CFF /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; - C932A04CA8776155060B099D4D68C381 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; C9449BD91D95C25D43F9181CA3577DA4 /* EnableSharedFromThis.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnableSharedFromThis.h; path = folly/memory/EnableSharedFromThis.h; sourceTree = ""; }; + C94E090C7AA8B2A12C7852C77FF192F2 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; + C955267DE061468D6AEE4D05FE950850 /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; C9561D2C0C8BB162D69476064062DDAF /* EnvUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnvUtil.h; path = folly/experimental/EnvUtil.h; sourceTree = ""; }; - C966154D3A6D1F45C2A1D4A43DFCC7D3 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - C968B68E93DC69FC68020D26721951A4 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; C995004C50B3E13137FD7EC58C6EB255 /* ChannelRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ChannelRequester.cpp; path = rsocket/statemachine/ChannelRequester.cpp; sourceTree = ""; }; - C9B73CA9D99311A9DA5B2131CBE847A2 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; + C9C73D7D00469115D46057DBC13A85F7 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; C9E37D0A7EF15030428AF98EAE0601B9 /* GDTCOREventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventTransformer.h; sourceTree = ""; }; - C9EED251D0562B9AC03A005055380663 /* RNFirebaseLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseLinks.m; sourceTree = ""; }; + C9F5249E7488AC68C5C1BF0BC0810D36 /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = ""; }; + CA0BE73E7B2154150E2F4CEAB088D002 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; + CA16BF55FDA9DBC46F00C4AF3230C6D5 /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; CA1BDA86D0A8653DBA14BB9384509296 /* FKUserDefaultsPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKUserDefaultsPlugin.h; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h; sourceTree = ""; }; CA23BBA18B09DFADF204605037FA6989 /* HazptrRec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrRec.h; path = folly/synchronization/HazptrRec.h; sourceTree = ""; }; - CA3015C34E6DA6E89AE27E0E510E2DC3 /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; CA3941A14A20F28719058AA8F389EEDC /* EventBaseThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseThread.h; path = folly/io/async/EventBaseThread.h; sourceTree = ""; }; + CA714758B676185C739362094E502FA4 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; CA73F5963360C0AA13E2C4B6B8163309 /* Flipper-RSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-RSocket-dummy.m"; sourceTree = ""; }; - CA86921710499BD076EACF2DB4E51E2A /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; CA9B9A0F952298A17AEB73A87F18C7DA /* ExecutorWithPriority-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExecutorWithPriority-inl.h"; path = "folly/executors/ExecutorWithPriority-inl.h"; sourceTree = ""; }; CAA4AADB1DAB0DCA0397F9D410A72638 /* FIRInstallationsIIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDTokenStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h; sourceTree = ""; }; CAA843AAD8263F323CF147222124FAEE /* SingletonStackTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SingletonStackTrace.cpp; path = folly/detail/SingletonStackTrace.cpp; sourceTree = ""; }; - CAAB0B6DC1FD159902E0EB5AE6A23A51 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; CAAF2F5D82AACC7F5CFD8A399BF072DF /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/Traits.h; sourceTree = ""; }; + CAAFE38A769152050B34DD379E1655FC /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; CABFBEA32CA29594155D5329465B93FB /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; - CAE775CD76200692B8C410236206F4E2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + CACF2B685B649906EB9892ADAC750941 /* RCTLinkingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingManager.mm; sourceTree = ""; }; + CB0136873C962E55A307219684FD01DA /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; CB1D02E2B3AB38BE201FCABAAEF17446 /* Request.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Request.cpp; path = folly/io/async/Request.cpp; sourceTree = ""; }; - CB3303AC9DC418ED10F91C0A1885D770 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; + CB247F3BE4B697A22587F15676F850EA /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; + CB369CFCAECE6DD313C9B476C0BE97F6 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; + CB37AA76C764D977AF9EA4B1FA538F9D /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; + CB4578475007A74E070102107138CF00 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; CB53773BBF77C128A533EB2861B17953 /* TOCropToolbar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropToolbar.m; path = "Objective-C/TOCropViewController/Views/TOCropToolbar.m"; sourceTree = ""; }; - CB584FC2A20F9CDF0558E2EC2ACEBD57 /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; - CB64A782AAA28CAD578D9FBA2E4463F5 /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; + CB60C8A4B544F593510DB187DC0A069B /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; CB74B18282B8339F5CAA7D7FE7101893 /* thread_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_utils.c; path = src/utils/thread_utils.c; sourceTree = ""; }; - CB88B79C919878F1B5CD996CF6B8E240 /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = ""; }; - CB910BBAA7F056C8ACF556BE38DBF0F5 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; CB93992DBA1F6CEB65DEDA0CD40D6318 /* huffman_encode_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_encode_utils.c; path = src/utils/huffman_encode_utils.c; sourceTree = ""; }; + CB96AF637F193EB9518FE01E94128B9C /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; CBA203410526E873FD2BA6EA31CAC0CF /* RequestResponseResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RequestResponseResponder.cpp; path = rsocket/statemachine/RequestResponseResponder.cpp; sourceTree = ""; }; + CBAB0F47CDDDF4B890096A8A31547545 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; + CBBC38F9624D3BDEC7BF597C25BABD18 /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = ""; }; CBDC3ABDE410DD0CCD5E9C1C8EF6BD1C /* GFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GFlags.h; path = folly/portability/GFlags.h; sourceTree = ""; }; CBEF13AC75AD67DF97B5EA50ED4DF5E5 /* FIRAppAssociationRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppAssociationRegistration.h; path = FirebaseCore/Sources/Private/FIRAppAssociationRegistration.h; sourceTree = ""; }; - CBF38D0EDCD2BAE9F7E0DFC3EB793EAA /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; CC19DEFC6439BD6658EB9C08F118CBAD /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = "Objective-C/TOCropViewController/Resources/pl.lproj"; sourceTree = ""; }; CC1E481741951845683239C4A7DA9CE3 /* FileUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtil.h; path = folly/FileUtil.h; sourceTree = ""; }; - CC1FE9306F0644A4806134F950CB3EC8 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; + CC268622DF95F0EB5FF95B5D1027B2AD /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; CC35A5EC43692ECB5D2C1791683358DA /* CppAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CppAttributes.h; path = folly/CppAttributes.h; sourceTree = ""; }; CC685F7EE31C2D674B7F7C2FA09D3C1C /* Cursor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Cursor.cpp; path = folly/io/Cursor.cpp; sourceTree = ""; }; CC6FEE0F9ACB98303C87C35D1F1395CA /* cost_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips_dsp_r2.c; path = src/dsp/cost_mips_dsp_r2.c; sourceTree = ""; }; - CC769B15377863F8BF8D0D9BC25A307D /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; + CC8B8994A39160475530121E7891B407 /* react-native-cameraroll.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.xcconfig"; sourceTree = ""; }; CC8DACAEB11E7FF7CC1604A33EE5D54C /* RSocketClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketClient.cpp; path = rsocket/RSocketClient.cpp; sourceTree = ""; }; + CC8F9EEB184C73EAF0EDBFFB9A9448F2 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; + CC9296090CAECF07215252DE287A9C3A /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = ""; }; CCBE188E6D63D2509FD75176889897BD /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; + CCD0F420A8164C8556D141806692A281 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; CCD31D2478D8ED31D3995A308550CD8E /* Likely.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Likely.h; path = folly/Likely.h; sourceTree = ""; }; - CCEB2A76A1AD83AD183398B35E887461 /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; CCF4D0A31596C7ACCD7B68399DBE7374 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; CCFE30DC291A9D63B08F1394853162E3 /* DiscriminatedPtrDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtrDetail.h; path = folly/detail/DiscriminatedPtrDetail.h; sourceTree = ""; }; CD130C92244E30DD5B03966D954ABBA4 /* OpenSSLPtrTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLPtrTypes.h; path = folly/ssl/OpenSSLPtrTypes.h; sourceTree = ""; }; - CD1DA0D94E413CABB836471C0DCFEC2D /* ReactNativeKeyboardTrackingView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardTrackingView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; CD35DEE35B20109018E8DAA45E5264E7 /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; CD451FAF7D1425FB8F7DC7D6C1EB7DE6 /* dsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsp.h; path = src/dsp/dsp.h; sourceTree = ""; }; + CD54189EB54FEDC36E9CEB99FAE74F47 /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; CD62D51A9B5534C7BFE6863D088B08FC /* Common.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Common.cpp; path = rsocket/internal/Common.cpp; sourceTree = ""; }; CD69B1BA273ECED47476DB724711B422 /* FIRHeartbeatInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatInfo.m; path = FirebaseCore/Sources/FIRHeartbeatInfo.m; sourceTree = ""; }; - CD6C1DF1DFFC9E4E503D905CDC596B8C /* 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; }; - CD6D85F38091AD9D0F53507CF1F9B615 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; - CD82F2671948DC1907B3DF01C331072B /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; + CD70D2AA3F9709DFA32D80C23A668901 /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; CD8946FED6F5245C8C8B92D24FE2EDCF /* Framer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Framer.cpp; path = rsocket/framing/Framer.cpp; sourceTree = ""; }; - CD8B535DC636A2F8344F95F9BF077873 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; + CD89CF5BA6AB187F237B8A20B4CFA470 /* UMAppLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.xcconfig; sourceTree = ""; }; CD9B56B3AE03BAFCDD4CC21C2991FF4D /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; + CDBD8119ABE1F1E9D8EC59A46B8188D7 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; + CDC6EBF6C7FAA54E8C3C87677CF4A20B /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; + CDD98338FF52785F209DFBB76641F9F9 /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; + CDE35C2B2F1E4560292F5C3E61E299BD /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; CDFF1BCD3977B0B17731B5CBD3F6C5E1 /* SharedPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedPromise.h; path = folly/futures/SharedPromise.h; sourceTree = ""; }; - CE51992B18782F5420C05D7F43A1DC36 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; CE60317C58AFC60DCD0B604500EE9586 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; + CE6120ADA01F94B73B9EC7AB04DE0BE4 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; + CE77A43CB054B9B1F4219449FA68BD3D /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = ""; }; + CE82D196E79A1F0F729CFA3631A98AF1 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; CE89012333BC726EDF5F257C32C6E23C /* SSLOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLOptions.h; path = folly/io/async/SSLOptions.h; sourceTree = ""; }; + CEAB7B1C6528C25F32EC288834418C84 /* KeyCommands.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.xcconfig; sourceTree = ""; }; CEB8AEED78C1A8EDC8CE62AB73EBFCB9 /* FormatTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatTraits.h; path = folly/FormatTraits.h; sourceTree = ""; }; - CEEB012EA206F50BF1AC357FCA4B1075 /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = ""; }; - CF3B9B48F158E7271EDCB245B43E64D3 /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; CF4795D41510A5087986EB85A78E93A9 /* Allowance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Allowance.h; path = rsocket/internal/Allowance.h; sourceTree = ""; }; - CF4C8905C8FDE1862761861AABE7F880 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; CF4E34DDFF9D97702ED9739067447CC8 /* FingerprintPolynomial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FingerprintPolynomial.h; path = folly/detail/FingerprintPolynomial.h; sourceTree = ""; }; - CF6F06D1D70A1A6CC315B45EFF51E30F /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; + CF6E7C96EC29BA645245BB12B05D8BBD /* EXUserNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXUserNotificationPermissionRequester.h; sourceTree = ""; }; CF73B714894B60C06E72E372750D3331 /* OpenSSLVersionFinder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLVersionFinder.h; path = folly/ssl/OpenSSLVersionFinder.h; sourceTree = ""; }; - CF8936B6C622E00367F2FDD5A7D3A080 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - CF9248AAEE858B7E3EE90E4F7D2E29D7 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; CF92919B59F5604713F163B30ACF5A7F /* libwebp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libwebp-dummy.m"; sourceTree = ""; }; CFA0A7F0958E5927766B69BC0F318661 /* SKViewDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKViewDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewDescriptor.mm; sourceTree = ""; }; + CFA2603FABAEAAB495CB1DA0BB90CBF2 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; CFB3FCA2C67521AB182CFE9EFF633396 /* picture_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_enc.c; path = src/enc/picture_enc.c; sourceTree = ""; }; CFB58441CA996147D98F64EF8DD1482E /* F14Mask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Mask.h; path = folly/container/detail/F14Mask.h; sourceTree = ""; }; + CFBC723AEB7D761951B2444283230789 /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; CFBE33C6DE3AED52E50119C3A4223A23 /* YGLayout+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "YGLayout+Private.h"; path = "YogaKit/Source/YGLayout+Private.h"; sourceTree = ""; }; + CFC9523B63CD897F2AB2DCE4C52B265E /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; + CFDE95EB166389A17BCDB994E0C3BE14 /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = ""; }; + CFE7BFE58F1EC912851ACA188960FAA9 /* UMPermissionsInterface-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMPermissionsInterface-dummy.m"; sourceTree = ""; }; + CFEFBEA04FA99AD9C4C0CCF8E7EC85FF /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; + CFF32CC3D0FB184C73F3C51E065F5D86 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; D0015689AC1ACED5608C4686630747EC /* GDTCORRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORRegistrar.h; sourceTree = ""; }; - D02A1B3E1F6EDF27F7E7EE61856E48A5 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; D02D05DFF66D5FB7319CA280942F9426 /* RSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketResponder.h; path = rsocket/RSocketResponder.h; sourceTree = ""; }; + D032D6FEA72FCE92B1AC6AAF34468012 /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; D03B39B6700DD31B3083BB12D6064E63 /* Uri-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Uri-inl.h"; path = "folly/Uri-inl.h"; sourceTree = ""; }; D0494757B3C1C765F02ABA217A56E0DF /* F14Set-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Set-fwd.h"; path = "folly/container/F14Set-fwd.h"; sourceTree = ""; }; D05179FA4AE4D78D8729A6771C06FE31 /* TOActivityCroppedImageProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOActivityCroppedImageProvider.m; path = "Objective-C/TOCropViewController/Models/TOActivityCroppedImageProvider.m"; sourceTree = ""; }; D0788E90FE9CCC58D3C63AF5F144EE74 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = ""; }; + D0AB169A9A57CF2E1200E72299D75C26 /* RNUserDefaults.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.xcconfig; sourceTree = ""; }; D0BB7E5B597F81C13326CDB06D9B74C7 /* pt-BR.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "pt-BR.lproj"; path = "Objective-C/TOCropViewController/Resources/pt-BR.lproj"; sourceTree = ""; }; D0C2BF3F5C45A731E60EC8AFB9F98F12 /* Sse.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Sse.cpp; path = folly/detail/Sse.cpp; sourceTree = ""; }; - D0D1ABF3B89914EBBBDF00360294DDAC /* EXImageLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.xcconfig; sourceTree = ""; }; + D0D3A712CE905DA36F783872BBCC9C90 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; D0E746D98ECFB576C1CDE133CDE4A748 /* FIRInstallationsStoredAuthToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredAuthToken.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m; sourceTree = ""; }; - D103B62C40D65B708853EC41BC334FB2 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; + D10621A800B7B97AA6F5E01BCDFACEA6 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; D11D6FBDB64F3E56C9FBE59F31698518 /* Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Async.h; path = folly/executors/Async.h; sourceTree = ""; }; - D129EE55B0AB5F819C224A05A8ACF06A /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTiming.h; path = React/CoreModules/RCTTiming.h; sourceTree = ""; }; - D13841282F071474EE044B063C61089F /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; - D1471842601607D30C75EA729FF0081C /* 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; }; D14DC96327A1C1B943C69538D8D33BF1 /* Future.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Future.h; path = folly/futures/Future.h; sourceTree = ""; }; D155128010AF261FE95DC95C89602D5C /* ParallelMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ParallelMap-inl.h"; path = "folly/gen/ParallelMap-inl.h"; sourceTree = ""; }; - D1631F949868D66C882423D4B658AF3D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + D16CF1F5F589134A5AD03CAAF6FF4E3A /* RCTImageView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageView.mm; sourceTree = ""; }; D175DEB9DCB303F9ECF104A3CCA72AE1 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; - D181A2A2F034CDB8578D6DD005EA1974 /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; - D18AA3A97528190531050ED0CD0872DD /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; - D197676C94A4BE52BDB34A5981A507D5 /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; - D1B9224C509C038CF4DD5F6D20691367 /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D18F95E7F3C8C615CDFB0C61CE2BA37D /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; + D194CD066A6620297A9ABEF104160B18 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; + D1C1E335ECAE091937087AEF551B8518 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; D1D081B8E8C632A44F45A426E3345E74 /* EmitterFlowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EmitterFlowable.h; path = yarpl/flowable/EmitterFlowable.h; sourceTree = ""; }; + D1D70E1B0FB4018A3A748137894CFA0F /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; D1DA016AD9C4ABE9530E299EE9495FD8 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; D1DCA9A13E7EA96FDE59AB8F6D79ABA3 /* CLSAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSAttributes.h; path = iOS/Crashlytics.framework/Headers/CLSAttributes.h; sourceTree = ""; }; D1E401A3FE7BA4435A1FE2ADDAD115B6 /* Parallel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Parallel.h; path = folly/gen/Parallel.h; sourceTree = ""; }; - D2073CD7E7818AA59EBB2F655AA624BA /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; D20E73799E6FA24169DD964E9C5688F4 /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; - D21D2F9B533C89B39131B7034FF68BC8 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; + D2153814AB3E52F623233D1B9A1C5DF7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; D225FDC6130767EEC967DD4409EA7219 /* TcpConnectionFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpConnectionFactory.cpp; path = rsocket/transports/tcp/TcpConnectionFactory.cpp; sourceTree = ""; }; - D23365A895C40B971B40B8F58C974B53 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; - D23CFD7163F9C8B745569916E88DF8BA /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; - D244D15B04878FE0B7B9C01DCA5DEA0B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - D252FCD51CAD79E8CE3940176F0BD73F /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; + D24D871466449AFC51109827456C4216 /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D2546F5A27DAACFE9A10A9538869FCFD /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; + D25D1E1BBC70B6001EA6BA3DC4F722CA /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = ""; }; D262E98E9B660146EE69681B508C5A32 /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = ""; }; - D274132B9B76A2FCCA9E7BBE49E3F06F /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = ""; }; - D274D775B4DD4A1A139EF425C33D2B03 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; D281DAF4DC50DA1C18025F627BAF319D /* ResumeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ResumeManager.h; path = rsocket/ResumeManager.h; sourceTree = ""; }; - D28287FD55284D13DCF366850B6C6B3A /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; D2A120CA34815BB3A1C46C26AA00E5BC /* upsampling_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_msa.c; path = src/dsp/upsampling_msa.c; sourceTree = ""; }; - D2B11E8BDA69D119BD7C66CAC7F3DDFD /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; + D2B198303EEB7951EA6825BD8F0F5C7C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; D2D404CA10C2CEAD6387E107DD9E948C /* 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 = ""; }; - D2E4DB7C7D91ACCBD9A78DFF12B194D2 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; - D2EE2F1FC5DBB130C6DAAEDC66A45312 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; - D33A37653C30A71F7C6A2E26D52CDB07 /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; - D354AFF84D9B0477F197A34EFA56A3FC /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; + D356A7A9F6E88F519F68C48AC58E7029 /* 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; }; D35AA32383740911279CBEFB0A7CED01 /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; - D3AF7EE60D514CE7E7F47CEB81130DF6 /* RCTDevMenu.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevMenu.mm; sourceTree = ""; }; + D388AAA7C7F5EDA01A9A47721D674723 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = React/CoreModules/RCTWebSocketModule.h; sourceTree = ""; }; D3B758A31DB1B688B14C39079DD67BE6 /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = ""; }; D3BF8E7BE4C441AA3E3539BE285C0A7F /* FlipperClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperClient.cpp; path = xplat/Flipper/FlipperClient.cpp; sourceTree = ""; }; D3C35135DABCBA394FBD2D197842A07A /* TimerFD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFD.h; path = folly/experimental/TimerFD.h; sourceTree = ""; }; D3C9CA86A9E13737F97618EBACC89C2E /* dec_clip_tables.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_clip_tables.c; path = src/dsp/dec_clip_tables.c; sourceTree = ""; }; - D3CB7593538589D725451D196525C08D /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; D3D5F57863D6E4968D27A62227156915 /* UninitializedMemoryHacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UninitializedMemoryHacks.h; path = folly/memory/UninitializedMemoryHacks.h; sourceTree = ""; }; - D3DB106B54E595AA69BA58A90616528C /* react-native-jitsi-meet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.xcconfig"; sourceTree = ""; }; - D402C610EC05744076650804CE14382D /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; - D437D2083801556E3685A8D9231B1072 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; + D3E09970D79DFEC086D95A80EEF6D680 /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; + D3F91A5AC125245092B53FBCC0CFA84F /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; + D406E3712049C5BE639C6990990E7FEF /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; + D40BCDA9810F056BB68B0CE6A9A38580 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; + D41D779CF58921FD4B98EDD73A15EF24 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; + D43403F0933FFC1A5067920E9A1085A0 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; + D442A7464ADD235A918A775E8F1FE747 /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; D4647D7862AFDBDD9D0EC8025146828B /* GDTCORClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORClock.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORClock.m; sourceTree = ""; }; - D48AAEE3B7A82C36CE218CA0D4ABA3C8 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; - D4934942035146D5FC835596F207EFE1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - D494C8BC75A68D579762CB0BB903EB1D /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; + D464809C3C3854D1F9775A805FC36A2C /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; + D466A4F271A3AC7DCC2FF8D781077753 /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; + D47EB0EB7BBF5533FCDA0908164CB63F /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; + D4991175000D7060B41FF0388F84CD7B /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; + D4A7990730C79B33E94B1BD3679B751B /* RCTImagePlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImagePlugins.mm; sourceTree = ""; }; D4F0F8AE60A7F903304667D6C24687EF /* RValueReferenceWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RValueReferenceWrapper.h; path = folly/lang/RValueReferenceWrapper.h; sourceTree = ""; }; D4F46B602F0430A1FBBB1734A3404C7F /* hu.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = hu.lproj; path = "Objective-C/TOCropViewController/Resources/hu.lproj"; sourceTree = ""; }; - D505434B9FFC228850ABD4D2DB8B3E8A /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; D50F4782B72EB86BC5530080AB5E192C /* CheckedMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CheckedMath.h; path = folly/lang/CheckedMath.h; sourceTree = ""; }; D51AA8328DE651178A701B6506F9169F /* FLEXUtility.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXUtility.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXUtility.mm; sourceTree = ""; }; - D53828826E4AC107E693903B244C7418 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; - D54A5DBCE23CA2C1288506043F78F31A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - D56375C635A3D360AC5CCEF384DBE882 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + D539CB3FCDAB4B52C26A6288C51EFEC0 /* EXKeepAwake.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXKeepAwake.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D57A8C137F69CDB10C4A5FF42A17582D /* OpenSSLCertUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLCertUtils.cpp; path = folly/ssl/OpenSSLCertUtils.cpp; sourceTree = ""; }; - D57BEB2166AD018B6575D3085446368D /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D593C8EE3EC0B10A8FC5FB03B1C6A558 /* RNCAsyncStorage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCAsyncStorage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D5AB6C21D7AB113125EDF1CA73380A64 /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; - D5AF5604A394A4E31355F0EA0DFD48E6 /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = ""; }; + D5A70010BFF9BA939B57367CD2398C01 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = ""; }; + D5B352B7AC0F23E844B39268237DF74C /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; D5C22CF5859E6E41DFE710CAB7666427 /* SKInvalidation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKInvalidation.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKInvalidation.m; sourceTree = ""; }; D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactCommon.a; path = libReactCommon.a; sourceTree = BUILT_PRODUCTS_DIR; }; D5F7BCB867E244067BE6D14F9FAFFAB1 /* FlipperConnectionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionManager.h; path = xplat/Flipper/FlipperConnectionManager.h; sourceTree = ""; }; @@ -8914,49 +9006,40 @@ D633C6BF035437D71F6FB57994AC25E7 /* FlipperStateUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStateUpdateListener.h; path = iOS/FlipperKit/FlipperStateUpdateListener.h; sourceTree = ""; }; D647297D553EC57B4A4D190486B9EE5E /* BlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlockingQueue.h; path = folly/executors/task_queue/BlockingQueue.h; sourceTree = ""; }; D65D4E79DCD9838F91437CD602771ADD /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; - D66D02A8E19CDDD673763161F8DED12A /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; - D68B80AB4689550963779757C4C2BF15 /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; - D68D93423326ADB4888DD7891E8170ED /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; + D66BC7D0B852BE873C1CC9FC4836A3F7 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; + D66CC6911658BDC0840E34D562559037 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D674B7043399AE923A8080EB3E0DD7B3 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; D6900D86A4145822B97D5B8BE8BC3265 /* DynamicBoundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicBoundedQueue.h; path = folly/concurrency/DynamicBoundedQueue.h; sourceTree = ""; }; - D6902FAFF61CDB772CD2B9E2EB0FE5DD /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; + D6A54E68A069603C40EB24A3073DD1FA /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = ""; }; D6B54BC0573F5256560D14D4C6B500A4 /* MoveWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MoveWrapper.h; path = folly/MoveWrapper.h; sourceTree = ""; }; + D6C4E57C2A32AB291E71C5C57F0003C6 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; D6CBA639BC0A106017274FB55FAA013A /* quant_levels_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_utils.c; path = src/utils/quant_levels_utils.c; sourceTree = ""; }; + D6E511CDA073D7085B98A69C0BF9E92B /* BitUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitUtils.h; path = yoga/BitUtils.h; sourceTree = ""; }; D6E76BD34BD133654C1DF2A26282C0FF /* JitsiMeetSDK.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JitsiMeetSDK.xcconfig; sourceTree = ""; }; D6EEC3EE71DE1B866B0F12A7B9BA3943 /* QueuedImmediateExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QueuedImmediateExecutor.h; path = folly/executors/QueuedImmediateExecutor.h; sourceTree = ""; }; + D6F3946CB852E1E2D18BE5EB7F732CB5 /* UMModuleRegistryHolderReactModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryHolderReactModule.m; sourceTree = ""; }; D6F878FA8C5D2A52CCFE1BE0A4E05FAE /* GoogleUtilities.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.xcconfig; sourceTree = ""; }; D70D9EBB5B766C22C2364940119C9F1B /* Pods-RocketChatRN-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-RocketChatRN-umbrella.h"; sourceTree = ""; }; D726DC19455D2E4EFCD7FE942BA02580 /* Types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Types.h; path = folly/futures/detail/Types.h; sourceTree = ""; }; - D73EA1F13714137B5168EE848EB8541B /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; - D75EE709C4F5348137D7EEE7E2A78E96 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; D7603F1BAF85E5C25B87E41D2D5AC5D1 /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; D77E534BE1CD173935AFB52C39C8707E /* RSocketConnectionEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketConnectionEvents.h; path = rsocket/RSocketConnectionEvents.h; sourceTree = ""; }; - D78507D8D37EB274556A7A81F5448024 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; - D78C4A6F8CB137212800F09AE3CA2E0B /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; D7971971246FE9195A5102CBE10BCDA3 /* lossless_enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips32.c; path = src/dsp/lossless_enc_mips32.c; sourceTree = ""; }; D7ACEA4E132D42CE98697B34DC036A3F /* SDWebImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageWebPCoder.h; path = SDWebImageWebPCoder/Module/SDWebImageWebPCoder.h; sourceTree = ""; }; D7C3F73B76E40B5F99E8BBE01A0F88FD /* Flipper-PeerTalk-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-PeerTalk-prefix.pch"; sourceTree = ""; }; - D7CE5CE84F8D09CD32E3E8BC4BB9D526 /* 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; }; - D7DB0C5FE6A3D654667F3AFB62743A2D /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; D7ECAAE8A2CCA4ADE5B901E16909C5E4 /* Pods-ShareRocketChatRN.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ShareRocketChatRN.modulemap"; sourceTree = ""; }; D7FF45630AF1D4E6C1BBF01347A7435C /* FKPortForwardingServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKPortForwardingServer.m; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingServer.m; sourceTree = ""; }; - D808A499E327FA4C917ADA665522A8D7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; D80B707F80D383336E128EF112233BA6 /* UnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedBlockingQueue.h; path = folly/executors/task_queue/UnboundedBlockingQueue.h; sourceTree = ""; }; D81C2D6AAB73DE4B91831859669C32E4 /* Libgen.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Libgen.cpp; path = folly/portability/Libgen.cpp; sourceTree = ""; }; - D81CA9D8189010CC1FE9FB3F2B0F925C /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; - D81E1612834A84D6B03A94D54645119C /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; - D82808C7DF9925E623D51A6883938EAB /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; - D82CBFAAE17C94BAAA05E29955DF5CE1 /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; - D83973C3B4969CD818CB99DE305EB2FA /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + D81CAB99456950B46A500274DF8DBFAF /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; + D82087B9CDF9C978097ED1884BCFEBF5 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; D83A0EF7A0565FE92CFDCBD14BB075BE /* AtomicReadMostlyMainPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicReadMostlyMainPtr.h; path = folly/experimental/AtomicReadMostlyMainPtr.h; sourceTree = ""; }; - D85F93BA0C1F91F82E872303AC967FE5 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; + D83CB939607381669FBAA5BC805FFD91 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; + D85ACF279A6EAE02EC6B4ABCFF66207E /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; D866E5075429812D8968F4684E582C69 /* opensslconf-armv7.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-armv7.h"; path = "ios/include/openssl/opensslconf-armv7.h"; sourceTree = ""; }; - D87C64931687093AF105F019CC2C96DC /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D887432A65993784DD1B767F28B5190D /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; D887C9588B3363B0692499FB3E771513 /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = ""; }; - D8B25E315BDB9C305A6177EE534CEB89 /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; + D88A67B31EF4DDFDB2555341940D783D /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; D8B731924D7E9A3A0E303495DAB9B40A /* Instructions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Instructions.h; path = folly/experimental/Instructions.h; sourceTree = ""; }; - D8C24E2E075EE060FE9733722C3C2512 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; - D8C8C63A331598BB439DDEFDE18370F6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + D8C74FA13B259036623D80DFFD327CA9 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; D8CF38A9D65D586F07E4D1801E49DEF4 /* GDTCORDataFuture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORDataFuture.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORDataFuture.h; sourceTree = ""; }; D8E6A9062F6922C1F19C0FE487B5C685 /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = ""; }; D90AB6AB994606159C7BA599E9488FFD /* FormatArg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatArg.h; path = folly/FormatArg.h; sourceTree = ""; }; @@ -8964,322 +9047,320 @@ D91B29BF814BA82AA00D7CF512DC6069 /* DelayedDestruction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestruction.h; path = folly/io/async/DelayedDestruction.h; sourceTree = ""; }; D925282B7F947BB672A38DA74BF07041 /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = ""; }; D9274FD89581B52AE591700F394D0E7A /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; - D92AB73FA85C2EFD5BAF51DDF0BA5466 /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; - D92F00F2A06C66F7B6EEFFE5770E26A9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + D9279E8DCDD76912B395B18D4F8F102A /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; + D93AB3281682C4922FEE2F3E42D74976 /* NativeExpressComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = NativeExpressComponent.m; sourceTree = ""; }; + D93AE0391E8B04BF035C5947E9A419FE /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; D93DD89F6DEFF2301FFFDCD8B263150D /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; + D94271F55B4B4578FBF5D306CDE13760 /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; D950CA442FCE71D20BAC91A8491BF8BF /* yuv_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_neon.c; path = src/dsp/yuv_neon.c; sourceTree = ""; }; - D970E34B228FAECA5A706C8B698E0031 /* RCTRedBoxSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxSetEnabled.m; sourceTree = ""; }; - D9754B6838118A3DED915C2546CA93CE /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; - D980AADB05D8875AA1B9F488E44A54E4 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; - D99477B7E43B77E721F647603C5D9561 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; - D99499A944AD88FF8F41E2098CF634DA /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; + D97E945EAB5262C724CF49D188714044 /* RCTDeviceInfo.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDeviceInfo.mm; sourceTree = ""; }; D9AF91F511D1527EA8D0048D84814E9F /* StreamsWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamsWriter.h; path = rsocket/statemachine/StreamsWriter.h; sourceTree = ""; }; D9BBC063CBF188E2AD7CFC22794FFCCA /* AsyncTimeout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncTimeout.cpp; path = folly/io/async/AsyncTimeout.cpp; sourceTree = ""; }; D9C32FFCE8E6B44134C55AE1C104F22A /* ripemd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ripemd.h; path = ios/include/openssl/ripemd.h; sourceTree = ""; }; - D9D1F89F3486D41C70E3DE7D21569D28 /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D9D902ABD851156DF10A01DEC00F0123 /* 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; }; D9DF94F8184F30F0A18D3CB48F2E6E98 /* ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist"; sourceTree = ""; }; + D9E75B890724EA1F30A7C8E719D2E280 /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; D9EFE463C43910C54A890ADAC0086996 /* Future.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Future.cpp; path = folly/futures/Future.cpp; sourceTree = ""; }; D9F226710D2D92BC84B6A5765349E167 /* 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 = ""; }; D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsi.a"; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; }; D9F554735D420A7C658BD4827DFA4C4B /* libevent_core.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent_core.a; path = lib/libevent_core.a; sourceTree = ""; }; - D9FD0FC7CB7998DF02AD942B6A276DC1 /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = ""; }; DA0B7541A49C2650D4598D443197E8C8 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; - DA0BA0D211D92DDD710347FCE69B06FC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - DA21EB215CBA12D421296269FD826F2D /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; - DA26ECBAB6E22E26913F1CB258A12791 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; + DA113318C6CB1B615002F1D963BF9086 /* EXLocalAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXLocalAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; DA2BF1C1B987C3DE8074663DD5C69C64 /* FlipperKitNetworkPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperKitNetworkPlugin.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.mm; sourceTree = ""; }; + DA3AA52165A726BA9E523EDA3D56A8F6 /* RNFirebase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFirebase-prefix.pch"; sourceTree = ""; }; DA41E96E699A7134DBAC6CB3C1D4635A /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/FIRVersion.h; sourceTree = ""; }; - DA70B4DCF41CBF382730E796B3FD3315 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; - DA7E1A86E4720B28EFA881ABD8B38DEA /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; - DAA03BFCAAA3F1A970DBA3F65D04417D /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = ""; }; - DAC4DE851CC31B2CEA097900F722DBE2 /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; - DAC6C5075251C028E3B56DD1420E8DD9 /* RNCSafeAreaViewEdges.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewEdges.h; path = ios/SafeAreaView/RNCSafeAreaViewEdges.h; sourceTree = ""; }; + DA5D0AA93E7BE6BC076BCC751014EF46 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; + DA85E657E1A04BF36A3D6719725246AA /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; + DA8A3EE127539AED404FDA1002228B72 /* RNFirebaseEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseEvents.h; path = RNFirebase/RNFirebaseEvents.h; sourceTree = ""; }; + DAAFD3BEED2FCC9A7E213213A3D52304 /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; DADC31C9BC5C1E83908E3894CD1ABB20 /* UniqueInstance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UniqueInstance.h; path = folly/detail/UniqueInstance.h; sourceTree = ""; }; - DB04F2A6B47D0BC68C8E9643FD41C33D /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; + DAF9878961E52E9EEA3D247C43084864 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; + DB086192F7C5B024A9119AECE8ADE1D7 /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; DB3029A06A7EE04F47FD16BC1EF44748 /* KeepaliveTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = KeepaliveTimer.cpp; path = rsocket/internal/KeepaliveTimer.cpp; sourceTree = ""; }; DB39F9CF2B97369F70DE7538C2026439 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; DB3E6CDDFD013761E504645ACB4550AC /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; - DB464BF08C80F086A79A4B094295F4AD /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; - DB53E4FF1C728AC66238D25582F67411 /* RNCSafeAreaProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProvider.h; path = ios/SafeAreaView/RNCSafeAreaProvider.h; sourceTree = ""; }; - DB597466A20F0FC5B06343B7DCCBE233 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; + DB3FACCE62965BA349C71B1CE35C403A /* ReactNativeKeyboardTrackingView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardTrackingView-prefix.pch"; sourceTree = ""; }; + DB4C55ACA9CBDCF6D9EC77EA48215B9D /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; + DB64B1122545BBAF21C429CE6B63462E /* RNCMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedView.h; path = ios/RNCMaskedView.h; sourceTree = ""; }; DB6D26EBDD86843CF9618C4518830999 /* SKNamed.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKNamed.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNamed.mm; sourceTree = ""; }; DB7324CC6440821330D5AB267227CF47 /* FramedReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FramedReader.h; path = rsocket/framing/FramedReader.h; sourceTree = ""; }; - DB737943823C0C0979F96B831D7F1A6E /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; + DBA6C305890D75EAECC073B075616CC6 /* RCTLinkingPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingPlugins.mm; sourceTree = ""; }; DBB0FD75A20E2729FDCDCD93D991BD55 /* IntrusiveList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntrusiveList.h; path = folly/IntrusiveList.h; sourceTree = ""; }; + DBB7788A06D05618E07B0B1B9644E3F0 /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = ""; }; DBC153CADA88D1B0EDF1F9180048460C /* FIRInstallationsItem+RegisterInstallationAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstallationsItem+RegisterInstallationAPI.m"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m"; sourceTree = ""; }; DBD5194ABAD450816C36C5AB50F85835 /* SaturatingSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SaturatingSemaphore.h; path = folly/synchronization/SaturatingSemaphore.h; sourceTree = ""; }; - DBD668FA503318593178E4546569639B /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; DBE87F1B7E9A22D42FD7738B6F546D44 /* ConcurrentHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentHashMap.h; path = folly/concurrency/ConcurrentHashMap.h; sourceTree = ""; }; - DBE8D77A02F8401126842A093F4E317C /* RNFirebaseStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseStorage.m; sourceTree = ""; }; + DBEF8150E3FFC9506A7843EDB9AFD1BD /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; DC07F7F25F7586236F6C78AE12515F9F /* SpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpinLock.h; path = folly/SpinLock.h; sourceTree = ""; }; DC20B874C6A68011CB27B5F88D53F250 /* FIRInstallationsAuthTokenResultInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResultInternal.h; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h; sourceTree = ""; }; DC45F7A3D4A7E67D6A6C04602CF64F57 /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = SDWebImage/Private/SDDisplayLink.h; sourceTree = ""; }; - DC72F08E9E9C745BBD906C0AD75D11AF /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = ""; }; - DC78EF6E015F7F1CCDCF3B310B0F2FDE /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; - DC85E8E4F779397AABEA666B25C24C1A /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DC507D39669E4B322D76C50178A05CC5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; DC8DDA75D168B91F80255E52FE9015C3 /* GDTCOREvent+NetworkConnectionInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCOREvent+NetworkConnectionInfo.m"; path = "GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCOREvent+NetworkConnectionInfo.m"; sourceTree = ""; }; DC984D11F480F93BF6505E6A2FE9E073 /* lossless_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_mips_dsp_r2.c; path = src/dsp/lossless_mips_dsp_r2.c; sourceTree = ""; }; DCA8E435EF07B58FECF3BF2DE95D69B6 /* Phase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Phase.h; path = folly/init/Phase.h; sourceTree = ""; }; - DCB05304DF3D2687D859975C865AF6CE /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; - DCC589DA00C01A163E318C72EB67B785 /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = ""; }; - DCC97EC97FBD04FF4EFA55A517103EF6 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; DCCFD8434CA50603862B2768CC4A129A /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; + DCE394A0E0B69B37E3C5223460D02999 /* RNFirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseRemoteConfig.h; sourceTree = ""; }; DCE9904090A911013AD90075AB8884C2 /* FKUserDefaultsPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKUserDefaultsPlugin.m; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.m; sourceTree = ""; }; DCF9C0F901ECE09B6D592C8AC869357F /* FlipperResponderImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponderImpl.h; path = xplat/Flipper/FlipperResponderImpl.h; sourceTree = ""; }; DD29E6E8E8CB4743522F65BD6C3DDCB2 /* FrameTransportImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameTransportImpl.h; path = rsocket/framing/FrameTransportImpl.h; sourceTree = ""; }; - DD2C91842F8AA4B0DF95934449D72C7B /* RNFirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestore.h; sourceTree = ""; }; DD334D5E8416D4A54BBB26548C42B522 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; DD36D25F8C6D8BBED0DF6C0F0607CB4E /* SanitizeLeak.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SanitizeLeak.cpp; path = folly/memory/SanitizeLeak.cpp; sourceTree = ""; }; DD3DACC72CC97E3AC947BE53B8DB5D12 /* Format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Format.h; path = folly/Format.h; sourceTree = ""; }; DD501F169A7952CB4CC3B224447AB103 /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; DD6197C2FBEE1F35E615BC1FB9BC436A /* HHWheelTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = HHWheelTimer.cpp; path = folly/io/async/HHWheelTimer.cpp; sourceTree = ""; }; - DD7B73D7FEC435308A3D05DA19880F93 /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; DDA545E47C3E2E70652EB209994B7618 /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = ""; }; - DDC153135A8664CE2D76E9E60D5E2631 /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; - DDF04D2D8F4BD930D1872F471FB53E8E /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; - DE137337B8AB426D526DB7D610D0B6BF /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; + DDBB08E3D181710D8A5354CE16AA64E3 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTClipboard.h; path = React/CoreModules/RCTClipboard.h; sourceTree = ""; }; DE1A03993F221E91A060D8EF328972C0 /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; + DE1A9DCFA71D2A144B640AFE2807BA7F /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; DE27226AD935AC533B0B64711C769CE5 /* RangeSse42.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RangeSse42.cpp; path = folly/detail/RangeSse42.cpp; sourceTree = ""; }; + DE30E8B82C1AD9F0CD3F2D5D4CD5A950 /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = ""; }; DE363B43B15D99CB6921593B3870A813 /* SysMembarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMembarrier.h; path = folly/portability/SysMembarrier.h; sourceTree = ""; }; - DE3BC96E6F1E474481D09553639C6CB4 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; + DE381473802F29281EA11A762D3463A0 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; DE467359CEF73C5F9015551BB2196F55 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/portability/String.h; sourceTree = ""; }; + DE47BFDAFC0E663561F7E81427C0C6FD /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = apple/RNCWKProcessPoolManager.h; sourceTree = ""; }; DE57CEC42019514FE641BAD853C5C7B3 /* FutureExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureExecutor.h; path = folly/executors/FutureExecutor.h; sourceTree = ""; }; - DE5C940EFE41E1C1AF83582732C954FB /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; DE643715043E724596EFD68C71AEC4C9 /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/SceneDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = ""; }; DE65E4C5199AB765432132DFD5B72525 /* FrameFlags.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameFlags.cpp; path = rsocket/framing/FrameFlags.cpp; sourceTree = ""; }; - DE77825A983F0E4D1D4F349822DBFD96 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; + DE6F9E64C16924524823CD9584DAF35A /* EXAppleAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppleAuthentication-dummy.m"; sourceTree = ""; }; DE7E37E9E3C94914A6B940F786C071BB /* ar.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ar.lproj; path = "Objective-C/TOCropViewController/Resources/ar.lproj"; sourceTree = ""; }; - DE8D7E28331419444025B830F64B1548 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; DE99BB1443E28E0AB813383FDDAB4BB7 /* filters_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_utils.c; path = src/utils/filters_utils.c; sourceTree = ""; }; - DE9FA24E0448EDBCB927E3A2EA991B44 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; DEAE00B727BDBF5870E0E3C7EBEA34F3 /* RSocketStats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketStats.h; path = rsocket/RSocketStats.h; sourceTree = ""; }; - DEB3AF46C8D97467F7608524BDDC07B1 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; - DECF35407758CF49A4E429D1542EFC11 /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; + DEB1C53ABC82E6C91B3D561E55026863 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; DED6AD875BC4C446ED34B3ABFBEF4B0D /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = ""; }; - DF07C711C21BB3F8D7DD7662ECAF5161 /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; + DF22B26A42CCFCCA352128CBD25F0A45 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; DF3769950C7FA25FE17811F6ABFE5CE3 /* small_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = small_vector.h; path = folly/small_vector.h; sourceTree = ""; }; + DF467F947B74376C96C9A29D47C69BD8 /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; DF671BAA08D1EA42C0975602D70C3688 /* Future-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-inl.h"; path = "folly/futures/Future-inl.h"; sourceTree = ""; }; + DF6C3C2A27E578BC883D91EFB730AD7F /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; + DF7167F2BF896C12BBCF5BD8C375A50C /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; + DF7B0433CB697E740BA7B259FE091C76 /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; DF88A96F763DC2A25912748ED11D25A2 /* MicroLock.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MicroLock.cpp; path = folly/MicroLock.cpp; sourceTree = ""; }; DFA4192411246D351FC3CB38327AFF97 /* obj_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj_mac.h; path = ios/include/openssl/obj_mac.h; sourceTree = ""; }; - DFD4713F0522DE61DB7A3C9AE0A069A6 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; DFD951B4A6BEB2BEF8B43E5F401C7D90 /* Codel.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Codel.cpp; path = folly/executors/Codel.cpp; sourceTree = ""; }; + DFE199A94F260A920AA2102D8E7655CF /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; + DFEA7C535EEB73060DBCDC1CBE5D3D9E /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; DFFF05D864AB8F9323BAE7B6AB515893 /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = ""; }; E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Glog.a"; path = "libFlipper-Glog.a"; sourceTree = BUILT_PRODUCTS_DIR; }; E020A900A1ACF98213A0161DC618761B /* PriorityLifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityLifoSemMPMCQueue.h; path = folly/executors/task_queue/PriorityLifoSemMPMCQueue.h; sourceTree = ""; }; E023960F905CAC763C2EFD745F313EC4 /* Partial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Partial.h; path = folly/functional/Partial.h; sourceTree = ""; }; E03322878A67943BE822E153E5246303 /* Poly.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Poly.h; path = folly/Poly.h; sourceTree = ""; }; - E0355B86395EC51BEAE33CDA925E34F2 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; E035E898A59C9D73ABE126EA4651AB0E /* err.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = err.h; path = ios/include/openssl/err.h; sourceTree = ""; }; E042208C2048F997332FF45C2670A035 /* stop_watch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stop_watch.h; path = folly/stop_watch.h; sourceTree = ""; }; - E06F518B230FA65E6F5216AF15600058 /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; - E08CEB019AE9D1F64B99BF43B1421CE7 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; + E0495102CDC8237B6AC8990EE9CE248D /* react-native-jitsi-meet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.xcconfig"; sourceTree = ""; }; + E090ED2ECA03CB8C46EB494202C518DA /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; E096B85EA81BD0F719205C885724C82B /* Promise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Promise-inl.h"; path = "folly/futures/Promise-inl.h"; sourceTree = ""; }; + E099E92E0B7F38EA63EE0169305F4CF8 /* EXImageLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXImageLoader-prefix.pch"; sourceTree = ""; }; E0A9D47244485B5903EFF0076DF73288 /* listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.h; path = src/event2/listener.h; sourceTree = ""; }; - E0B16B296EEC12B40F25184707097A87 /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; + E0AD1427763970DC8ED1AC36E05D631A /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; E0B5CB5EA94227AB5B770D2BBEDB2A15 /* 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 = ""; }; E0EC7AA68FB61CD52889F9C776977CCA /* Common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Common.h; path = rsocket/internal/Common.h; sourceTree = ""; }; - E0F93B07CA6A177B020501B813AF73FE /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; + E0F9503131ACB8C4FD70E76CA14C2EF5 /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E102AAC7A0DF3B55DFCCE338224DD7E7 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; - E1052AE1EBD954C5CFB4FDF8DE1EB425 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; + E104B46A43DFAA4D5F590037BBD1B791 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + E1050B17E10A8FA20BBE522DF1CDE9C5 /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; E11431493CDFEC7F972E8599788F793D /* Retrying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Retrying.h; path = folly/futures/Retrying.h; sourceTree = ""; }; E114F2487F6B542B8C7B77556081D3AC /* Answers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Answers.h; path = iOS/Crashlytics.framework/Headers/Answers.h; sourceTree = ""; }; - E11917D25C233EF2C370315C25703C6E /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; + E1302BA0F105DBBB6C1DD6892800572C /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; E13643F75BB289AFC9F56E8FF8185514 /* Frame.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Frame.cpp; path = rsocket/framing/Frame.cpp; sourceTree = ""; }; E147F2A4A349620376F53D8C73DE0B06 /* FirebaseCoreDiagnostics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.xcconfig; sourceTree = ""; }; - E15558B9219D94CF1F5657740ACDE9C5 /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; E179F2A5B71E45A8909EB9C9A0471081 /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; + E17B60C58DF1CD7EBC60C27183ECCBB2 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; + E183097BAB8F512043C9880F96EC7BE3 /* RCTDevMenu.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevMenu.mm; sourceTree = ""; }; + E190A81436A1E6A3B90BE76CDA87269B /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; + E198EDF62D4D911560F20BC10B47319D /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; + E1A6DDD38250927F90533C1838189EAE /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; + E1B0203EEAA6794298B1232415B345A3 /* react-native-appearance.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.xcconfig"; sourceTree = ""; }; E1CC60A2FB7B5410595A8B401C47F344 /* rpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc.h; path = src/event2/rpc.h; sourceTree = ""; }; - E1EEB9FDBCFA3C9413CC61CC77917F72 /* 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; }; - E21CEE6E01E04D3D223F526D028A9EC8 /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = ""; }; - E231F1F7210F4CD348D5E9F2D0104EE1 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTStatusBarManager.h; path = React/CoreModules/RCTStatusBarManager.h; sourceTree = ""; }; + E1F9BCA1437F86681BEEFD0484AFC0F0 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + E20B1B67C0A60279B2E2E8D87D79E25B /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; E23A8B7A5F1AACF75628382B60FDC727 /* SmallLocks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SmallLocks.h; path = folly/synchronization/SmallLocks.h; sourceTree = ""; }; - E24EFE20F1762D2D036845A640ADD32E /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; - E25C7892696C7C07A200D8F5822EBB70 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; - E2734511CCA2D3A8075B4395BEC90893 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; + E24952E40FC2451E5EF180170FA299D5 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; + E26EAC0D5FFC97756CB264A63EE8C6AD /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; E27704A270699223EBC354F812A0956A /* quant_levels_dec_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_dec_utils.c; path = src/utils/quant_levels_dec_utils.c; sourceTree = ""; }; + E282F321953E292EEE8FEE03D7E56028 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = apple/RNCWKProcessPoolManager.m; sourceTree = ""; }; + E2A2C3E229486D9A05F7BD609DCC9FF1 /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; + E2AED86520903893606E05C7A2D91A43 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXAV/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E2CB38D8C97E32A3F4DCD3D043F9798C /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; + E2DDA6DC942834BBBE14643AF830A50A /* MessageQueueThreadCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MessageQueueThreadCallInvoker.cpp; path = callinvoker/ReactCommon/MessageQueueThreadCallInvoker.cpp; sourceTree = ""; }; E2F9F534D5A3C56C6BA871F6BFFD139D /* visibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = visibility.h; path = src/event2/visibility.h; sourceTree = ""; }; + E30318F688F0094C6830361CADB31299 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; E31ED6E905AFD8BECDCF60354335DC24 /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; - E3247465BCC6955B408BFF4EC092D33D /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; - E33C9F3BC242232E4254BB4A190875F4 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; - E36E0079D005F8451F01A9B25A8F8D54 /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; - E381D2F8590F15AB81188961FC855C36 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; - E38202EC2BE757781663714C2E94A7F1 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; + E3289749F213D3A834E919489BE3C09C /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTI18nManager.h; path = React/CoreModules/RCTI18nManager.h; sourceTree = ""; }; + E35AC1E2768077668B60A8ED1902042C /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = ""; }; + E37AF67FCF09E4158EF00B66B07F22C3 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; + E38BAD38A31B5ED29F98169234AC11AF /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + E38BCF23A3F366BF569AA51ED7A07FD0 /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; + E38F69EED7E21E41AD71AFA75F839F10 /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; E3B06AFF3EC775A827456A27ED736220 /* GDTCORAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORAssert.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m; sourceTree = ""; }; - E407C008808A40F70B6473A6CBE3F57E /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; + E3E3D986F55303FD249D648C662FC6A5 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; + E3FD50FC8643C8B1FDABAEB11FCC55B5 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; E407E78CE1F9669988D1BBC2C9EFEF6B /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; + E416310D18DD3D674787588A75E53E4D /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; E4278F47054CB9E002306CA4A1032C6C /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/IPAddress.h; sourceTree = ""; }; - E44685111519665E846CACA1020BC749 /* RNFirebaseAdMob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMob.h; sourceTree = ""; }; - E44F841DC9DF78E1B86554A60A81A457 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; - E4516ED18B46059F908E125B5657004B /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; - E474FB33AFD5A2EA3EBB99AB25648F49 /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; + E4715A68BDF3486D832920D916ECA375 /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; + E4717C28EB9B27DF783198B758A4CF07 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; E47E6EAC5683C505E27D3E812F06FF0A /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/synchronization/Utility.h; sourceTree = ""; }; - E48604F48DAC94E3DDE700AF98F56FE2 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E481E4C8F8218D44428C1C7ED1AF79F3 /* RNCSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaView.h; path = ios/SafeAreaView/RNCSafeAreaView.h; sourceTree = ""; }; E48B59569F94F2DB402094237B30567E /* FIRInstallationsVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsVersion.m; path = FirebaseInstallations/Source/Library/FIRInstallationsVersion.m; sourceTree = ""; }; + E48FF155CEACF2D353DD9A1988CA19C6 /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNRootView.a; path = libRNRootView.a; sourceTree = BUILT_PRODUCTS_DIR; }; E49BDF8511EA64309A578D4B1B2DEE45 /* ThreadCachedArena.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadCachedArena.cpp; path = folly/memory/ThreadCachedArena.cpp; sourceTree = ""; }; - E4C589314FD6A8D0ED5BC79549896F1E /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; + E4B85E9CA9529BA3CA89A024EF880435 /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; E4D66E1F0C0812B3142D37E9D4700232 /* TypedIOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypedIOBuf.h; path = folly/io/TypedIOBuf.h; sourceTree = ""; }; - E4E310DD1351BF79C1D5477D3DFA62B4 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; E4E9C8BD567B1C618E1FAE93C53629C8 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event.h; path = src/event.h; sourceTree = ""; }; E4EB2A16DD94B5CDABFF811E330D2FC8 /* ConcurrentSkipList-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ConcurrentSkipList-inl.h"; path = "folly/ConcurrentSkipList-inl.h"; sourceTree = ""; }; + E4F0FF6714F5FE177E51FB3A81A96F1F /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; E4F5BAF1BDD07BC9213845EA158ED176 /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; E5003F41F544CB231A516A7F623B3AE6 /* RSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocket.h; path = rsocket/RSocket.h; sourceTree = ""; }; - E55BE8314FE62C3F798D69B2788D3C70 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; + E5230453CA59337317E8DD208589185E /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E53AEEF65E5EA757BE3F9EE86AD64F87 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; + E555307E8E5A077248C236B23FD72B3D /* RNCSafeAreaProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProviderManager.m; path = ios/SafeAreaView/RNCSafeAreaProviderManager.m; sourceTree = ""; }; E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFastImage.a; path = libRNFastImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; + E57A68CDEEEECB747100BA81E12450CE /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; E58ABE3A117EE7B01E6E6D36BE5510F2 /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; - E5A6172D2E254824D8A49D6DCA6F94A7 /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; - E5A6E855025F359B2C6F15CB891373E0 /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E59AAFF2863D30569902D759C7E4886B /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; E5B7EC14977E161F9A256842E077D32D /* TLRefCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLRefCount.h; path = folly/experimental/TLRefCount.h; sourceTree = ""; }; - E6049D333E0CB5EEFF80BD18073331AB /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + E5D173BDA9C7CE1F83CBB562AED745EC /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; E6086A72DC6A3CCB544C74155D5EACBF /* MacAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MacAddress.cpp; path = folly/MacAddress.cpp; sourceTree = ""; }; - E61D0DA89EFD795E2B6CBD71FE017407 /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; - E627D82208C709A675EC05836823B550 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; + E613C10854AA0E97A10A1F81C1CE65B1 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + E61CF60153E47AD3BE61F120E5496976 /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; E6401BB5120D214F07F0A4AFD853413E /* filters_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filters_utils.h; path = src/utils/filters_utils.h; sourceTree = ""; }; E64E9F7719E13384D85E4D083EB8992A /* opensslconf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslconf.h; path = ios/include/openssl/opensslconf.h; sourceTree = ""; }; E65122D506BBE3FAFF52042089A13191 /* FlipperCppBridgingConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperCppBridgingConnection.mm; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingConnection.mm; sourceTree = ""; }; E656F2916FF54534E4646F7D2B1C5400 /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; + E65CACEB67E1652527A2057E33BD3A9A /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; E6746AFA25280F0F2986D8BF94897CF5 /* TOCropViewControllerTransitioning.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropViewControllerTransitioning.h; path = "Objective-C/TOCropViewController/Models/TOCropViewControllerTransitioning.h"; sourceTree = ""; }; - E686DEE7B538D96958303C568BE91EBD /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; + E68CC1DF95728CD766E101D0963B0270 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; E68E3AA99661470FE7492C51A520B6E9 /* opensslconf-i386.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-i386.h"; path = "ios/include/openssl/opensslconf-i386.h"; sourceTree = ""; }; + E69C5BF678C8C6208B7F3FABB874E845 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTText.a"; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - E6AF293B2145F6AFBA2CC16BCA37F41C /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; - E6D3A5A64B6A649599713F3ED1785CBE /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; - E6DCA9FED6C5C89616D46DAA362B5171 /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; E6DF44FB4D4D204EDF10E6845C6C59D9 /* FlipperRSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperRSocketResponder.h; path = xplat/Flipper/FlipperRSocketResponder.h; sourceTree = ""; }; + E6E736646CFBF4EBA7384B1E486EE94E /* RCTAppState.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppState.mm; sourceTree = ""; }; + E6EEFCFD363248FF906BA5F5B0A32E75 /* RNFirebaseAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAnalytics.h; sourceTree = ""; }; + E6F633DA233010259078C80B210B8CB0 /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; E703D4D7A31D6F024E7661E778E709E3 /* FramedReader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FramedReader.cpp; path = rsocket/framing/FramedReader.cpp; sourceTree = ""; }; - E715E1B8FD064130CF7B8A3C3A754F4F /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; - E71A285B6E54E2E7954A6ED16E689A84 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; - E7229A6C8E02DA1D07A9ED6E82D84169 /* RNFirebaseLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseLinks.h; sourceTree = ""; }; + E707EF4A9F0B2CF92BFFC42E09E49239 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; + E721562F74F04D176D6F843613186636 /* EXImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXImageLoader.h; path = EXImageLoader/EXImageLoader.h; sourceTree = ""; }; E739943F032BF69F9E739DAE065FFD27 /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; E7485A4C3FA956F38E1437E1DAD7CB1A /* keyvalq_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = keyvalq_struct.h; path = src/event2/keyvalq_struct.h; sourceTree = ""; }; - E75A726D38AFEF0BEBC7E43DC881A636 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; + E75FF60B158B1B011137F71422617F65 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; E790B8EA7C4CAC702EAFB5FC27534D19 /* ColdResumeHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdResumeHandler.cpp; path = rsocket/ColdResumeHandler.cpp; sourceTree = ""; }; - E7A5732B36B340BB83F8BDFDC3556478 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; - E7B56BB01334BED5F74C070D50E63B17 /* RNFirebaseFirestoreCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreCollectionReference.h; sourceTree = ""; }; E7B58BFF90AEA33D39DC2306C3D51C0B /* SKApplicationDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKApplicationDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKApplicationDescriptor.h; sourceTree = ""; }; - E7C018B37CA0571A66AF691C602CF3E9 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; E7C5136987B75A558800AA09668F379D /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; E7C7864BAEE54C69674AD01F6A74B8CB /* IOVec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOVec.h; path = folly/portability/IOVec.h; sourceTree = ""; }; E7DE151FDBF6BE2826DC87D2617C7B5D /* OpenSSLCertUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLCertUtils.h; path = folly/ssl/OpenSSLCertUtils.h; sourceTree = ""; }; E80ADB1E43F05B829F2D1AB9967D3EA4 /* LockTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockTraits.h; path = folly/LockTraits.h; sourceTree = ""; }; E8182F724D11E8A5321A5333A8531239 /* Observables.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Observables.cpp; path = yarpl/observable/Observables.cpp; sourceTree = ""; }; - E82F2B869C7FD0698FFA7A1F9E5ACFAF /* RCTLinkingPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingPlugins.mm; sourceTree = ""; }; E834EC534E31B1E93EE000507BF09A87 /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = ""; }; + E84D0FB226B76CEC903DA2F88387ADFE /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; E865E5F7D3DCA436B02BC22EA8D2291B /* rescaler_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_sse2.c; path = src/dsp/rescaler_sse2.c; sourceTree = ""; }; - E885728BDC4A8C2993A7BB23F35C3C36 /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; - E895CCA4FDC4BDCD1ACEA84305D9A7E6 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; + E86A3DEE59098AEA0F18200A1B624959 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSourceCode.h; path = React/CoreModules/RCTSourceCode.h; sourceTree = ""; }; E8999353FF8CAC00061ED4E7C00D1E52 /* AutoTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AutoTimer.h; path = folly/experimental/AutoTimer.h; sourceTree = ""; }; - E8CC976D41A74619CB0ABB2532626EEB /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; - E8D6A4BABB59CC73FA2DA3B0A230C3DE /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; - E90E3140D155B876D90FF7EA8AAC142C /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; - E936B08EAEB98611A2F4235623253091 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; - E937077FED402F7F909DA0259E3F8ED8 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; + E8A93A2F6D99EEE18CCA27D6486437B7 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; + E8B20DC75F836A5E02E9E2ECB20ABDED /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; + E8DB26D72064B358DEF28E118D4717F5 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; + E9102DC33F063D111268F43954462C5F /* EXKeepAwake-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXKeepAwake-dummy.m"; sourceTree = ""; }; + E91AD6284DD4AB7F771C29815C3A0022 /* EXLocalAuthentication.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.xcconfig; sourceTree = ""; }; E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFlipper.a; path = libFlipper.a; sourceTree = BUILT_PRODUCTS_DIR; }; E95676B1FDD263DC3DF63C40CB66210C /* Range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Range.h; path = folly/Range.h; sourceTree = ""; }; - E994B959E37C0F18C04F59661A626018 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; + E970F038C92A074F5CDFDFED75311D5C /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; + E974C64B2F6DDAA335304461A064BA87 /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; E9A57C7D5BCADD30378DD824EB5551C2 /* FireAndForgetResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FireAndForgetResponder.h; path = rsocket/statemachine/FireAndForgetResponder.h; sourceTree = ""; }; - E9B4CC3ABAFE80A77B59E5D3D8031B4C /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; - E9BD133792AD192FC5788F6929A30EEC /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = ""; }; - E9C827B15B24319EC4FD840BA889AAF0 /* EXKeepAwake.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXKeepAwake.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E9CB0FF20BC5770F5B661AE9BD63A55E /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; E9D6678BAD6B949AC3107BB4F1F2F20E /* AsyncUDPSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncUDPSocket.cpp; path = folly/io/async/AsyncUDPSocket.cpp; sourceTree = ""; }; - E9D76C1D8BC68701342F30DD272C6FD9 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E9D7BBEE4380591D1FE584D6FBDEE88A /* 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; }; E9EC0706590ECF7C9BB06ADB9A20367F /* UIView+Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+Yoga.h"; path = "YogaKit/Source/UIView+Yoga.h"; sourceTree = ""; }; + EA00899B601D90EE6586A95E2062D486 /* RCTFileReaderModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileReaderModule.mm; sourceTree = ""; }; EA0396D3F432432F9B9F518FCADFBED3 /* SKScrollViewDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKScrollViewDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKScrollViewDescriptor.h; sourceTree = ""; }; - EA184D451F00520F850B9280736A0C0A /* EXKeepAwake-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXKeepAwake-dummy.m"; sourceTree = ""; }; - EA1DF787EC4E0D5B279B321E210A10F7 /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = ""; }; EA2C72548656DE300CAE0BDF0ADFC8A6 /* JitsiMeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JitsiMeet.framework; path = Frameworks/JitsiMeet.framework; sourceTree = ""; }; EA4D0250CBC2EC2C46D159B60763884B /* SSLSessionImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSessionImpl.h; path = folly/ssl/detail/SSLSessionImpl.h; sourceTree = ""; }; - EA58EA4D547EE32CC093428D5178FBC8 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; - EA6EEB4FF4F44556520BEB0B65A85A20 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; - EA73BD9A0670CEBBF8B1FFE8023CF4E0 /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; + EA772201825DCD0D0BD240A7017BAF9F /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; EA7A0F4054315D2EBCF6698136B606FD /* TcpDuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpDuplexConnection.h; path = rsocket/transports/tcp/TcpDuplexConnection.h; sourceTree = ""; }; EAA90E02DE3D4BEDAA81145ECB6D010E /* SocketOptionMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketOptionMap.h; path = folly/io/SocketOptionMap.h; sourceTree = ""; }; EAB24F913164B156B7F211F6F33D9B23 /* ConnectionSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionSet.cpp; path = rsocket/internal/ConnectionSet.cpp; sourceTree = ""; }; + EAC5057FC760FBFD55BC580C40F920CE /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; EACE8166DEDE36756EA776A9DF2C54B3 /* http_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_compat.h; path = src/event2/http_compat.h; sourceTree = ""; }; EAE8249B059213ECC026BA4C8FDD79AC /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; EAE9CBAD1DF75CF11E2E207CF501AC34 /* opensslconf-x86_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-x86_64.h"; path = "ios/include/openssl/opensslconf-x86_64.h"; sourceTree = ""; }; EAEF300CF4467F2E2E3B0C0D3A4D115F /* cost.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost.c; path = src/dsp/cost.c; sourceTree = ""; }; EAF99815E09678135013C1BE2BF5D9C9 /* GDTCORFlatFileStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORFlatFileStorage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage.m; sourceTree = ""; }; + EB0503C4040CB6D5AB321E65307863ED /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; EB14F126E96758354800E2285FA57A06 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; EB1A0821F5F5EBBBD3BBE6D1A66BDCD6 /* TupleOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TupleOps.h; path = folly/experimental/TupleOps.h; sourceTree = ""; }; + EB1E2EDE818FF878E59B569B3AEE6CEC /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; EB30AF4296B7DF688702EF6329B3212C /* filters_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_neon.c; path = src/dsp/filters_neon.c; sourceTree = ""; }; EB460ADDC1F5569961983DF5B4ACF701 /* MallocImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallocImpl.h; path = folly/memory/detail/MallocImpl.h; sourceTree = ""; }; - EB688E0AF071C036441B95809DA13B81 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - EB71CBD16759D50EA2846AC4CA88FC4D /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; + EB7AC2F1B7531D26A22F4D278FE0599D /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; EB835C734E0847EB78BFCD6A0DFBE3F2 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event.h; path = src/event2/event.h; sourceTree = ""; }; EB8616166244CC3EEF891C531B942EBA /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = ""; }; + EB8FADF2D99C656B2A39992CC07D3C26 /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = ""; }; EB93BE6AFAF1BC480D0C2B0600E21070 /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; EB99404986864F2D05D2FC2B60B4B753 /* HHWheelTimer-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HHWheelTimer-fwd.h"; path = "folly/io/async/HHWheelTimer-fwd.h"; sourceTree = ""; }; - EBA37C542872C43350A3E560ADD7274F /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; - EBB1D93FBCA2C56BFFB1255F6A5B589E /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; + EB9D4B812F643F74A25D57EA9EB4B7C5 /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; EBC04109110EA540685138F05EF15D94 /* Rcu-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Rcu-inl.h"; path = "folly/synchronization/Rcu-inl.h"; sourceTree = ""; }; - EBC5D969F3C301F83593A4E880F7D9F0 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; - EBC7C02BEC41F548E27C8153F50B6614 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; - EBE3DF045B2BFF4F9EE0CE7EFBACB13E /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; - EC2EBA67F22FE8D87320EF8DE4937BA8 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; - EC320C7B511A6BB77B4F812D50F5BA02 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + EC0296D9829486EAB25598C847B99257 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; EC4413815440FA626EF27F8EFC09DB3F /* TcpConnectionAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionAcceptor.h; path = rsocket/transports/tcp/TcpConnectionAcceptor.h; sourceTree = ""; }; EC45961C9D25EB434DFCFC9F4A481FDA /* muxread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxread.c; path = src/mux/muxread.c; sourceTree = ""; }; - EC5D37BC5F9383C4051C5CC05D3BB2D7 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; + EC4A6E943C7DAEEA950D96EE96271C15 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; EC5E84BFDB9AAF8206A9A237A394252E /* Observer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observer.h; path = yarpl/observable/Observer.h; sourceTree = ""; }; - EC5F1C6EF04364C25D1ACDBFD97CB381 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; - EC8637804CA80155163BB6D884E701C5 /* RCTImageStoreManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageStoreManager.mm; sourceTree = ""; }; - EC9EAF5DA4E2A4D2B73A0202D615121E /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = ""; }; - EC9F5FFE1CE0F251F84E8C6D1D083724 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; + EC8C4041B73C5CB3A45BA4332D46F52A /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; + EC9D4A28059892E242284CB4F0ABA042 /* RNFirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAuth.h; sourceTree = ""; }; + EC9F9FB50FE02D6165060C3BB45997DD /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = ""; }; ECA1B40348C9BBE28F7C3E9A1A7C5931 /* Benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Benchmark.h; path = folly/Benchmark.h; sourceTree = ""; }; ECE4810BC3C59E5A850326AF4F5FB19C /* Syslog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Syslog.h; path = folly/portability/Syslog.h; sourceTree = ""; }; + ECE9D044A0D0A72C4ABBDE19C8C41E14 /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; + ECF4AFAE13A35FFC1A16CE050FFC238B /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; - ED28CEE4903470D9B88CE566F49DD8AA /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; ED5427AC4AEEA60B09838FFA6064678E /* FlipperKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FlipperKit.modulemap; sourceTree = ""; }; - ED55E50BE639C12549AAC281D82AA3FA /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; - ED5663CCF67A8ADC4205F4006E899D54 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; - ED68EE2DB2AD306AA5B428EAB629183D /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; + ED55C10A7DA7EE91F2EF2FBF40E36ED5 /* EXLocalAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXLocalAuthentication-dummy.m"; sourceTree = ""; }; + ED5B0B99E28BEFBAA178E44EB85B60FE /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; + ED5BC9D96294FFB993377139D192A7E2 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; ED85978DBD2A2A4FCC68CC490BE3CE4D /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; ED89F458A2CA581F83FA7C1B223BFF63 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = ""; }; - EDC17792673B4E74A85240A093A34E23 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + EDB961063E6B91D50C655FB6D99E7937 /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; + EDCA066DC697E9BEF2EEF64778751C22 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; EDD81CB684516A2C3CE6651B54126EB0 /* PolyDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyDetail.h; path = folly/detail/PolyDetail.h; sourceTree = ""; }; EDD90116CC8A889E97D909D6A37CE4C1 /* FlipperKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FlipperKit-dummy.m"; sourceTree = ""; }; EDDB70FF4ADF28EA822826C03211B12D /* dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec.c; path = src/dsp/dec.c; sourceTree = ""; }; EDDDE55E72AB79A1A0AE8C4A4B348544 /* ssl23.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl23.h; path = ios/include/openssl/ssl23.h; sourceTree = ""; }; EDE501DB07D92629B99BFC74828DDE8D /* SysFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysFile.cpp; path = folly/portability/SysFile.cpp; sourceTree = ""; }; - EDEE3C93966A5F017F71513355D2C5CA /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; + EDEFE166DD7CD1DDB8170EB2EDC5647C /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; EDF48209BEECDFA54A01C5955F0BFBB4 /* UncaughtExceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UncaughtExceptions.h; path = folly/lang/UncaughtExceptions.h; sourceTree = ""; }; - EE0379762B0BDD090CB06B5599A24A34 /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; EE096B4998A0498C28CB86AE0C6BE58F /* ScheduledSingleObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSingleObserver.h; path = rsocket/internal/ScheduledSingleObserver.h; sourceTree = ""; }; - EE0BF6FC12BA57C8EEE71ED32FB237CB /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; + EE149B93DC504931B021DFE29EBC4CF1 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFPSGraph.h; path = React/CoreModules/RCTFPSGraph.h; sourceTree = ""; }; EE20E3C158D7A157487A592380C8AEB3 /* TestSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestSubscriber.h; path = yarpl/flowable/TestSubscriber.h; sourceTree = ""; }; EE2991BE8BD32C230B39899B8AAB4CA9 /* Cursor-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Cursor-inl.h"; path = "folly/io/Cursor-inl.h"; sourceTree = ""; }; EE36919341A524F6869FDFFF1B326CC3 /* ScheduledFrameTransport.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledFrameTransport.cpp; path = rsocket/framing/ScheduledFrameTransport.cpp; sourceTree = ""; }; EE3C6DE2E2ECDF1BCC8D1859E6DB5F76 /* Crashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Crashlytics.h; path = iOS/Crashlytics.framework/Headers/Crashlytics.h; sourceTree = ""; }; - EE41C8F59E52D48F972F13E201B0CF7D /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = ""; }; - EE56228989A8169DB5FB65C20BB551EE /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; - EEA4E814B1B194EB9B05590348340156 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; EEB33EDDF13C4B81FF081BC41152CE31 /* ThreadWheelTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadWheelTimekeeper.cpp; path = folly/futures/ThreadWheelTimekeeper.cpp; sourceTree = ""; }; EEB506DC9174101E862BE53F349EEE1B /* rescaler_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_msa.c; path = src/dsp/rescaler_msa.c; sourceTree = ""; }; + EEB527A333FF5A4AEF63DF312B770FA7 /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = ""; }; EEB541FDC2BF4361A988EAF2F2A186FA /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/String-inl.h"; sourceTree = ""; }; EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTImage.a"; path = "libReact-RCTImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; EEE3248F0F7589500C47384F04CAE609 /* common_sse41.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse41.h; path = src/dsp/common_sse41.h; sourceTree = ""; }; EF20A6B7673DC9EDF7334088F699E2C0 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; EF2624022163DF8547EBDEA01D8173FF /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; + EF3CF074EFB514AB39C2972DA32E2ABA /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; EF4E4DE2415A64664FF173A23F04A49B /* Request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Request.h; path = folly/io/async/Request.h; sourceTree = ""; }; + EF5486049EDC1824356D857F5C0F6915 /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; EF816D90F70DF67C69E47BF0B325AF38 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; EF85D2C72A3C34E909C3195AC4283D33 /* alpha_processing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing.c; path = src/dsp/alpha_processing.c; sourceTree = ""; }; EF87BCE72094E70086C6A87E257D97D9 /* IPAddressV4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV4.h; path = folly/IPAddressV4.h; sourceTree = ""; }; EFA3675606B15D277BA608131C2B6151 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; EFBD4A456ED89497B04A66A5DFD19923 /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; EFE361B26106E6F84706D937E4E2CC66 /* FarmHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FarmHash.h; path = folly/hash/FarmHash.h; sourceTree = ""; }; + F01F18AEA282CB9E34DD14D19C2D63A1 /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; + F04329074D27EAB622ADF38E5694313D /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; F04330A728C2393452F55C41156CD42A /* evrpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evrpc.h; path = src/evrpc.h; sourceTree = ""; }; - F0607E5A6E3338DFCBCC07997E08D209 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; - F065C44BE36C5DF55B20032E78356FBB /* RCTConvert+UIBackgroundFetchResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+UIBackgroundFetchResult.h"; sourceTree = ""; }; + F04F96BD284F3D632696C76096959613 /* BugsnagReactNative.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.xcconfig; sourceTree = ""; }; F06CE60C9D286F1F3036A2362259489A /* RangeSse42.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeSse42.h; path = folly/detail/RangeSse42.h; sourceTree = ""; }; F093CCFA514D482A086778DEBBB51F33 /* format_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_constants.h; path = src/webp/format_constants.h; sourceTree = ""; }; - F09B7CF487480F8BCCC2250BDDD0024A /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; F09F1807E45B0D81EF2C3805D8F0CC04 /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; + F0AEA7B0AFBBC79FE0CA376439E2A09B /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; F0CB75F2570E2B32699A77004E0331CA /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/detail/Singleton.h; sourceTree = ""; }; + F0CC2A5C60683A04E50F08667B3742AC /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; F0E56CB6ACE5471DE50B60FA21BF1E29 /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Private/GULNetworkMessageCode.h; sourceTree = ""; }; + F0F0CA4750B2846C91E0E6F8CC2F958B /* RNFirebaseStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseStorage.m; sourceTree = ""; }; F0FB281C37D44B7516BBDC39FE85AF57 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; F105840ABB86138B7A45331444829B5E /* CPUThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPUThreadPoolExecutor.h; path = folly/executors/CPUThreadPoolExecutor.h; sourceTree = ""; }; F10FC9C1FB7665A7F8F40D284DD89B21 /* dsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsa.h; path = ios/include/openssl/dsa.h; sourceTree = ""; }; @@ -9288,249 +9369,213 @@ F1300F6438D6713BC5B1068611D50052 /* MPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCQueue.h; path = folly/MPMCQueue.h; sourceTree = ""; }; F13C587249E9D10A20EDB69E61DBF834 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = ""; }; F13F38BB52C539680BCA97C0440C4E15 /* CLSLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSLogging.h; path = iOS/Crashlytics.framework/Headers/CLSLogging.h; sourceTree = ""; }; + F14592AC28964F7719B2E418774F7A9B /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; F14B6E873AB6F10E262C6D46E36D2BA1 /* KeepaliveTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeepaliveTimer.h; path = rsocket/internal/KeepaliveTimer.h; sourceTree = ""; }; + F162F61E596682F0B5B70E78B59DA9D3 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; F16FB127DE5B1DF19AA57A28FC72C1F6 /* anim_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_decode.c; path = src/demux/anim_decode.c; sourceTree = ""; }; F17EAB6EC5ABDB09AAC7D5AE5ED78FFD /* ExecutorWithPriority.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ExecutorWithPriority.cpp; path = folly/executors/ExecutorWithPriority.cpp; sourceTree = ""; }; F1912D79F479F748F47918A3423B88C0 /* webpi_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = webpi_dec.h; path = src/dec/webpi_dec.h; sourceTree = ""; }; F19B841F7DA21EA94D9EF149EDAF3178 /* Checksum.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Checksum.cpp; path = folly/hash/Checksum.cpp; sourceTree = ""; }; - F1A107DBC13DA48B593EB2CB9CC6EAC5 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTI18nManager.h; path = React/CoreModules/RCTI18nManager.h; sourceTree = ""; }; + F1A053F801616ED4AD79D36175CDEF89 /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; F1A9580C819BC6B80BEA8F9EB5C50B6F /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; - F1B6B155C1362423F030CED4E3879362 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; - F20181471778C07CFADEE98BA8D45FDC /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; - F2461FBB9497DB2296DC171E44A6C374 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; - F24B3959EC928E4010A4555AA52C546F /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; + F1E839D3BA68E28756EAAC8A5913028E /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; F24F6CF589AAEA086940626C57E92799 /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = ""; }; F28C5979359BF6FA62F63507E2E9E14D /* ui.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ui.h; path = ios/include/openssl/ui.h; sourceTree = ""; }; F28F650D8D9AD88285C4A89116F9DB5B /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Public/GULHeartbeatDateStorage.h; sourceTree = ""; }; F2A3C274279BE96B58A5DE58D474AE16 /* MicroLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroLock.h; path = folly/MicroLock.h; sourceTree = ""; }; - F2AE3533049A9026DE6276D3A85C60E9 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; + F2C3E67B7EB1144D81752B5938C9B7DC /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; F2CBE8588AEC619EF1058D5143DDDEBE /* Pods-RocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-resources.sh"; sourceTree = ""; }; F2CDF4230B4B34095A302F4F2B0B66A0 /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; F2D18FD92E5C02179335114DA146D002 /* ClockGettimeWrappers.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ClockGettimeWrappers.cpp; path = folly/ClockGettimeWrappers.cpp; sourceTree = ""; }; F2E76887F71660FFCDC6651E1CEB12AC /* firebasecore.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = firebasecore.nanopb.c; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c; sourceTree = ""; }; F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsiexecutor.a"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; F2F408CA55F852A4D3F12B11AF6E1B74 /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventHandler.cpp; path = folly/io/async/EventHandler.cpp; sourceTree = ""; }; + F2FC7D21C4F7A9EFE1B819387B07DCF2 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F300B2D3E7E50E8150F6ACF8E3324950 /* TypeList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeList.h; path = folly/detail/TypeList.h; sourceTree = ""; }; - F30AF17564906D1A6005AFC0ABF10B35 /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; + F30CA48894CE9AB7992D762A62BEEB5D /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F315CF8B919693216DB3F453348507C8 /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; + F31B10DD59C3075F35A0B2716A3B6DFB /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; F32368D34EB64A99B694CE8986112617 /* FlipperState.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperState.cpp; path = xplat/Flipper/FlipperState.cpp; sourceTree = ""; }; - F328C8DCCC1F139440AF2C1AFCEA66CA /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; F3311BA7E4CF1072F845E0CB477D51D5 /* SonarKitNetworkPlugin+CPPInitialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SonarKitNetworkPlugin+CPPInitialization.h"; path = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SonarKitNetworkPlugin+CPPInitialization.h"; sourceTree = ""; }; - F33B79E0E950C27327E8712493E25964 /* RNCSafeAreaProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProvider.m; path = ios/SafeAreaView/RNCSafeAreaProvider.m; sourceTree = ""; }; - F340F9C2AED63055FA30805181544952 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; + F3367CCC04776A1175C5A45EFB6529C8 /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; F358BACB84136E28A17E34D7C15F5AB1 /* GDTCORLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLifecycle.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m; sourceTree = ""; }; - F36236811E003A337EF6CAEEC8FC9311 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - F36EFD190D824B1AA3C9D168D5A91F6D /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; - F399B9AD5BD896AD6C74ED682AA7C653 /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; - F3A68A2F358F66B3CD2380B5540FF9FB /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; + F39A5404AA239D0E75CB950CF411FE80 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + F3A088F5E94959F5608F4899D57DA206 /* EXVideoThumbnailsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXVideoThumbnailsModule.m; path = EXVideoThumbnails/EXVideoThumbnailsModule.m; sourceTree = ""; }; + F3A0A2FEF9B77CEC928875C842D41586 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; F3AADB7DA7995E8E50D583A2F2D41DFB /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = ""; }; - F40DAA725D323E04DFE810AE8FC32213 /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; + F413EB8549ECEB611157781FBA189FF5 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; + F420C626CAFF3E6735E6F77B8167E9C5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; F43A60CFC55D10B7A676CF564B1E4408 /* Spin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Spin.h; path = folly/synchronization/detail/Spin.h; sourceTree = ""; }; F43EF1693B9096B253592907C9C4B687 /* AsyncTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTransport.h; path = folly/io/async/AsyncTransport.h; sourceTree = ""; }; - F44A0CD19357F15C7C00725A8D33E20D /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; F45C7EFA0D2C146F8C8BE384EE03B7CF /* StaticSingletonManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StaticSingletonManager.cpp; path = folly/detail/StaticSingletonManager.cpp; sourceTree = ""; }; F46F0D000E791175C14D642397F9E427 /* SpookyHashV1.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV1.cpp; path = folly/hash/SpookyHashV1.cpp; sourceTree = ""; }; F477B5419FE383BCD36D78C7D2DEA362 /* SynchronizedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynchronizedPtr.h; path = folly/SynchronizedPtr.h; sourceTree = ""; }; - F47CECCB9C254BB8CCA26A017B111BBB /* NativeExpressComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeExpressComponent.h; sourceTree = ""; }; - F4A312455E99C0D9E47AE43182E7BC16 /* ReactNativeKeyboardTrackingView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardTrackingView-prefix.pch"; sourceTree = ""; }; - F4AD6A08A55422659C377BD3708DE52F /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; + F48F0353F4F7EE6357B920EF17DCE593 /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; + F49072E3106022C4325A6F7AC7A47024 /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; F4C456EFAF93A0A1D60547394235DAA4 /* GoogleDataTransportCCTSupport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransportCCTSupport-dummy.m"; sourceTree = ""; }; - F4D44217F164E43678965F751CC6119C /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; + F4D44A24E665E939DDBC6BAB72EAC6BC /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = React/CoreModules/RCTActionSheetManager.h; sourceTree = ""; }; F4DB2D4FEA0D4D5F688A3E11A90F2F72 /* ScopedTraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopedTraceSection.h; path = folly/tracing/ScopedTraceSection.h; sourceTree = ""; }; F4E2E67AA46EC78C7A9CB72800AEEC2B /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; - F4EE6D7DAD6DC79060122FC1C638C467 /* RCTView+SafeAreaCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTView+SafeAreaCompat.h"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.h"; sourceTree = ""; }; - F51AB3B9E6D4177AE31FE7343F6FC5C4 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; + F52F69A8A78568067E27D7CA98BE4C69 /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; + F5389A68C398F18674C3B6301B3D9BE9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; F53A6E69750806523F38D485292B973C /* F14Table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Table.h; path = folly/container/detail/F14Table.h; sourceTree = ""; }; - F54912BA0DF7BFB83D79B47F083DB054 /* KeyCommands.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.xcconfig; sourceTree = ""; }; F56B5CF5EB9A68ABE832746E0B370670 /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; F56E6BCC902E5A6906931A4FEDCB7224 /* Stdio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdio.h; path = folly/portability/Stdio.h; sourceTree = ""; }; - F56F1329EFE157CF8424509C7B0469F1 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; - F56F5FD8157251878F55A2C6C6756BF9 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; - F5764DD8D3511BD9AF70A14B3CC7BAEC /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; F57A9E352A753038A63CD62B43664F1F /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = ""; }; - F58D6BF0A6621914DEA7D362035767A6 /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = ""; }; - F590FE03FF7424B45E768C3BB84B8D3E /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; F59E426C20672DB4A39D2D32BC4D53FB /* GDTCCTPrioritizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTPrioritizer.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTPrioritizer.m; sourceTree = ""; }; + F5A35DF865955D1D0F752C21439DD2BB /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; + F5AD7442235FB6BDB4ED75B9F5F8A9DB /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; + F5ADEEE062EADEFBE896922E862E906F /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; F5AE5ACA4257806B3925AD54D3C082CB /* AsymmetricMemoryBarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsymmetricMemoryBarrier.cpp; path = folly/synchronization/AsymmetricMemoryBarrier.cpp; sourceTree = ""; }; - F5B7817A42B4D6D475B945CE893A2C8D /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; F5B9A005C14FA62387D3BB415960382A /* Fixture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fixture.h; path = rsocket/benchmarks/Fixture.h; sourceTree = ""; }; F5BD9AF99893C4D79295748F53C95578 /* AsyncSSLSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSSLSocket.cpp; path = folly/io/async/AsyncSSLSocket.cpp; sourceTree = ""; }; + F5DBA3F2E8CDCBEF00EBF286758F73E4 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; + F5E0495E51B25D3727E20E65FAC40054 /* RCTNativeAnimatedModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeAnimatedModule.mm; sourceTree = ""; }; F605404C83D4809573DBE2B341C7A3F0 /* VirtualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualExecutor.h; path = folly/VirtualExecutor.h; sourceTree = ""; }; + F6093427BE39449CF4B7B503DE60F1CA /* RCTBlobPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobPlugins.mm; sourceTree = ""; }; + F626CA309CF77982C5504E2DAD7F257D /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; F62789A845A410353364C9043AA03482 /* vp8l_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_enc.c; path = src/enc/vp8l_enc.c; sourceTree = ""; }; F628CC7BE0AEEA83942594EE661FCFFE /* JemallocHugePageAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocHugePageAllocator.h; path = folly/experimental/JemallocHugePageAllocator.h; sourceTree = ""; }; - F62EF4ACB422422947F7AE2E10B72B6A /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; - F637BCDB775FCB93C477528433F01104 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; - F642EA15A2275B13FEFED3820D09E3B7 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; - F64962F0D25E0AA9ABB2F4300E47F623 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; F64A2236E01682D2970A235FBA9C2DAF /* Padded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Padded.h; path = folly/Padded.h; sourceTree = ""; }; - F655D6B7595A5C60A15A421084FFE186 /* 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; }; - F65EA3DE2F2099329D2ADA67D0E7F9D1 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; - F68B4A2346A20F499A15E6541DB0515D /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; - F69BA290B8131479B24DB1059F8CDFAF /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = ""; }; F6C25CC3E1A0256F28D558834D01ED90 /* RSocketServerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServerState.h; path = rsocket/RSocketServerState.h; sourceTree = ""; }; + F6C46D21BE0A2441A6384EEFB91F7ACA /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; F6CE2FC04ED6483FE6A99948553E7C25 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; - F6DA3EF2777ECA866ABCDF65F4968613 /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = ""; }; - F6E31255807343DA5B79C6064CCB3698 /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; + F6D9633881EF5E6D8E4F89C510C6968F /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; + F6E605DA6AFD3BC9439BAE111882C82E /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; F6F1532B40383A3DB8C604FF6B96655F /* FLEXUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXUtility.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXUtility.h; sourceTree = ""; }; F6F359208C18FDEF52F528F96F110D6F /* quant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant.h; path = src/dsp/quant.h; sourceTree = ""; }; - F70BDF844B02084D7E021F49AB36109A /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTBlob.a"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + F71FB544BCBA56AEDEF822FD83066F59 /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevMenu.h; path = React/CoreModules/RCTDevMenu.h; sourceTree = ""; }; F7336868B351AF1E8FF5EE75A11694A0 /* AtomicIntrusiveLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicIntrusiveLinkedList.h; path = folly/AtomicIntrusiveLinkedList.h; sourceTree = ""; }; - F75FFFB4A60327E536707F5E073BBF4E /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; + F74F51402CA616F76A43BEE74FFBA664 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; F7678F697CCE24251E2DEEB64D3E414A /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; - F77C8987370E646D1FE60087AC86D072 /* react-native-notifications.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.xcconfig"; sourceTree = ""; }; - F77F7871E0D93F4938C41A3CACF11F74 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; - F784D210DABA667B77C7FDFDDBE86325 /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; F785BAF95304001F5E6B0B6185D7BB7E /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; F794A50F04C838621170BC15768D7CD7 /* InlineExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = InlineExecutor.cpp; path = folly/executors/InlineExecutor.cpp; sourceTree = ""; }; - F7A8AAAB915D220A3760C7C015893EA0 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; + F7A0FBDCCD90814E8084C90BA1BAA2AB /* RNCSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewLocalData.h; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.h; sourceTree = ""; }; + F7AE66658B6D58193498536A962DE0A1 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; F7B741A0FE2C31556C7176BDAB4BD8FD /* ProgramOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProgramOptions.h; path = folly/experimental/ProgramOptions.h; sourceTree = ""; }; - F7DC0361EA8FE2A0F02B48ED863B5DA6 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; + F7CB6BF66BCA18F01B9CF33D6B04566E /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; + F7D1D36337ECA72485D5817D13522685 /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; F7EDC18F664B0FDA4C2400EB74F4144F /* AtomicHashUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashUtils.h; path = folly/detail/AtomicHashUtils.h; sourceTree = ""; }; F7FA9C670FDACA6DAD2C7B0BC088A8CB /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; F805A5F2A3FB56443D3089F8902B3ECF /* ProxyLockable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ProxyLockable-inl.h"; path = "folly/synchronization/detail/ProxyLockable-inl.h"; sourceTree = ""; }; - F81EC68EEFDD0FE1C1C97EA765FDED19 /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; - F8357D4267F0B7850BA442638A9095BE /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; - F841028276DE9C8EB754EEB93EA15CED /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; - F84A0A70D8C8A459E9B6E4E5CDC53C5C /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; - F84C9DCA5279A3667D6257DCCBF5E5C9 /* RCTLinkingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingManager.mm; sourceTree = ""; }; + F8103D0961FA2AD9D3D3475D5F5BB421 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; + F8198A7A6C2B189CB145A78371FA8AA4 /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; + F82298BC5DBE46DE8B924039E3EB09D6 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; + F8498E65BBEA1AC78421FD1CD28DD3C1 /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; F85897453E0E73C94F5F641AF96E26FA /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/portability/String.cpp; sourceTree = ""; }; - F860760280FC4E58205ACB717DCAEF1F /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; + F86499206B3CCEFEDBF06F69F36D7B91 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; F8756FDD4A52758E94E0B28BBC4574A7 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h; sourceTree = ""; }; F88A3985D747C9830996E834577B7AB3 /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; F88C0A630ABCAA36EAE04217BF12D102 /* TOCropViewConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropViewConstants.h; path = "Objective-C/TOCropViewController/Constants/TOCropViewConstants.h"; sourceTree = ""; }; F8960E9B87F3A55518983A3C7A995408 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; - F89B0811B63126971AC55FE11379F658 /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; F8A31A8DA974B49272E80FBD49044CBB /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; - F8BFC2873678765632F624D52144BBA2 /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; - F8C19B245B025664E7F15066425AC15A /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; - F8CE013B9C53E37CCC0233A7D43F027B /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; - F8D4C288124F351C8ACC90F7B1B6EDB6 /* EXUserNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXUserNotificationPermissionRequester.h; sourceTree = ""; }; - F8D99D9D8C74A860CFC6848B8D6194C9 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; + F8D8807D2F9F38A8B1D0137B955713B0 /* 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; }; F8E0F8EAFEF34E092F06B406FE9E3B18 /* muxi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = muxi.h; path = src/mux/muxi.h; sourceTree = ""; }; F8EE74F6C35A0C39BFFFD4CB906346B8 /* ssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl.h; path = ios/include/openssl/ssl.h; sourceTree = ""; }; - F8FFFBE4222FE774F650412487F4845C /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; - F906A24A447302757CF4C1DDD5A2CEC8 /* RNFirebaseFirestoreDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreDocumentReference.h; sourceTree = ""; }; F9082505E190BD8F8AC684C2AF87E5F0 /* PublishProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PublishProcessor.h; path = yarpl/flowable/PublishProcessor.h; sourceTree = ""; }; - F90F0F691CE420518ECEF0B1E4C56925 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; - F92544970C948867510C6AFE22273CF6 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; - F92A4A615D9303E8F7019A445D3B7EAB /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; - F9394D1C5B9A8CD72D175A2ACB8FD5C1 /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; + F91B915CE87D11F1EC02D7B6AE542EC5 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + F9490B778417DFE2B630B576B8871191 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRCTTypeSafety.a; path = libRCTTypeSafety.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F958A10A38BE359890553D59E9F2D4C5 /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; + F95EDB6F891DB33312838AF3CFEBCE5D /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; F96B80676FE63E0D028F1460709D6B88 /* BitIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIterator.h; path = folly/container/BitIterator.h; sourceTree = ""; }; F96D58AFECF46661AD69F7873285F7D6 /* FlipperConnectionImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionImpl.h; path = xplat/Flipper/FlipperConnectionImpl.h; sourceTree = ""; }; F99642E3214AE166E5B20250966902D4 /* StreamRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamRequester.cpp; path = rsocket/statemachine/StreamRequester.cpp; sourceTree = ""; }; + F99A0A68F1381494A19F623FB3B97C43 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; F9AC5E09B6219F4FAECA474AD5900E6A /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; F9B49BDB2903B8C029C685B367994EEE /* ConcurrentSkipList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentSkipList.h; path = folly/ConcurrentSkipList.h; sourceTree = ""; }; F9BA8C020E8A45274DCBB957FFA3E1BC /* ChecksumDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChecksumDetail.h; path = folly/hash/detail/ChecksumDetail.h; sourceTree = ""; }; - F9C923B2DE2580BF065AC26AF57C071D /* UMPermissionsMethodsDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsMethodsDelegate.h; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.h; sourceTree = ""; }; F9D06E8021AD975CEFC1410588A0EDBF /* e_os2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = e_os2.h; path = ios/include/openssl/e_os2.h; sourceTree = ""; }; F9DA532F1B119E3069F870EED104B2FB /* SysFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysFile.h; path = folly/portability/SysFile.h; sourceTree = ""; }; + F9E2008C989F4237835E3833036DF057 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; F9EA10CB86F545303F91BF46197EE7D6 /* Crashlytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Crashlytics.xcconfig; sourceTree = ""; }; F9EAC10DE40C6EB5700CA74AAC9E03FA /* SSLContext.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLContext.cpp; path = folly/io/async/SSLContext.cpp; sourceTree = ""; }; - F9FA3D4ED8D7DB9B45419661B73FBFAD /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; - FA05A81B6B93648F197FBC4600021D44 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; - FA092B07C4244B0C8376091844C8C9D5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + FA1617111E51F830287C52C9066B2E55 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; FA17742F16077F42413F16F266817EAC /* RangeCommon.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RangeCommon.cpp; path = folly/detail/RangeCommon.cpp; sourceTree = ""; }; - FA2280BF1EBC3A71E7E0A58002543F49 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; - FA3AB3914573DD5348414461938C9AFC /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; - FA441F05395DC267F32E07B4232124CC /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; - FA4A6B28577D1DC2BC0889F1C9316C34 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + FA26F5CD6039D854B695DE1B9100EB5E /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; FA584A9A692794837A7D5B9895F4B148 /* common_sse2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse2.h; path = src/dsp/common_sse2.h; sourceTree = ""; }; - FA7CB6620E78F55861DAC14448B01FEA /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; - FA8813AF8196B7EA7BB351CFF7D6D740 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; + FA69A99024BDCBE4333176094838F08B /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; + FA9DD52D3ED759F100B2EDAFDF5E699C /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; FAA104852192F9F2689C07B555B3293D /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; FAA8F78A3513D80C50FF65E18B5F8F0A /* GDTCOREvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h; sourceTree = ""; }; - FABF410FC5DEAC331E83F4C41574FBE5 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; + FABD8E76822F5C6BF39C74CB704D5A8B /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; + FAE1EDA8C27D4883EC4479E376EDA087 /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; + FAE48DC6CFAB94B34462D824F058AFCB /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; FAE8D97D54BF3960347DC80964A857B4 /* dec_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips_dsp_r2.c; path = src/dsp/dec_mips_dsp_r2.c; sourceTree = ""; }; - FB18BE26F612F2CD0FA155922D40231C /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; - FB21DD46609D824435480EBBB6DC51FE /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; + FAFD364A32A0320AB9E8550CAC48CB22 /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; FB2595A08EDC1CF5D9498A7D0C39F163 /* DynamicParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicParser.h; path = folly/experimental/DynamicParser.h; sourceTree = ""; }; FB37D546EB0080A6541C5BD705C2E52F /* FKPortForwardingServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKPortForwardingServer.h; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingServer.h; sourceTree = ""; }; - FB42D30DE455E3AA936111C8833208BD /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; - FB4823943E5AD110DFCFA865AF9A2D22 /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; - FB63269530E988E3B070B317F950B1FF /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; - FB68E0127B353641B19807A9875D913C /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; - FB93889EE44F1D09E60F8608E9E52799 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; + FB7AD6B3ADA10DF50D786C20607F7CB7 /* 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; }; FB9ACCB262979045248720B56036D60E /* StringKeyedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedMap.h; path = folly/experimental/StringKeyedMap.h; sourceTree = ""; }; FBA0837C03BCC9FE4E8F7AB2C57E4B23 /* Sched.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Sched.cpp; path = folly/portability/Sched.cpp; sourceTree = ""; }; FBA85ACF43FF0FAEF4C6707191AD5DE6 /* SKBufferingPlugin+CPPInitialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SKBufferingPlugin+CPPInitialization.h"; path = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin+CPPInitialization.h"; sourceTree = ""; }; FBCD2C9820EF885E9D7871FE7CCEF998 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; FBD14A3280D3F0EAC56BEE624043B955 /* MallctlHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallctlHelper.h; path = folly/memory/MallctlHelper.h; sourceTree = ""; }; - FBD6925E4BD9FDD5FF5C63F8BEA821F0 /* 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; }; - FC13F7C79D892A62F91C9E560F9D0D2B /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; - FC1DD0400651CE82B03C80EA91136957 /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; + FC0FBCEDAA524F547423E330109EF828 /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; + FC13892E86EE8C031817B89F4C794345 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; + FC173FDB05B7BEFFF5A3A8234F36C097 /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; FC29260E3B6C1C5EBC8743347383E8F6 /* da-DK.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "da-DK.lproj"; path = "Objective-C/TOCropViewController/Resources/da-DK.lproj"; sourceTree = ""; }; - FC2E9188A71752C9529309F0C9D52F3F /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; FC3C5BF456C03582D51729D8F77A34D9 /* RecordIO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RecordIO.h; path = folly/io/RecordIO.h; sourceTree = ""; }; FC532428432E804195A4FCFA849F055A /* Flipper-DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-DoubleConversion-dummy.m"; sourceTree = ""; }; FC5A3E541C208102CA0FA2FE082E6974 /* IndexedMemPool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IndexedMemPool.h; path = folly/IndexedMemPool.h; sourceTree = ""; }; FC6047C7715AC0C09653607C8FEC3E33 /* Singleton-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Singleton-inl.h"; path = "folly/Singleton-inl.h"; sourceTree = ""; }; + FC60657ABF083F4E205C72EFD4A89ED6 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; FC645CA549A188CF71F5B24852F61F73 /* RSocketRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketRequester.h; path = rsocket/RSocketRequester.h; sourceTree = ""; }; + FC67C6BDDEAF5A2442364063DE94D1BB /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + FC68D9162CBA36911F5898E1AEAA0A3B /* RNCSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaView.m; path = ios/SafeAreaView/RNCSafeAreaView.m; sourceTree = ""; }; FC68EA81DFB6AFC80791473DFEFA648E /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/detail/IPAddress.h; sourceTree = ""; }; - FC6AADDE6E0BF94617EDAB11BCFEB1E1 /* RNFirebaseAdMobRewardedVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobRewardedVideo.m; sourceTree = ""; }; + FC6F87B7F612DF3143D29D6AE4896240 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; FC8A23409DD44B5F9F4C09C9F1739D71 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; FC934A18A4378BE16D1C1A8EB50DA6FE /* tls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls1.h; path = ios/include/openssl/tls1.h; sourceTree = ""; }; FC9BCDA28BEB23EC13E2DC0BD9A1CD6E /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = ""; }; - FC9F526B388676BF9A6E4B720D850578 /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; + FCA944816518E50AC3DD696784739696 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; FCBB5CDE0891A424562D3C9DCB1D606E /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; FCC1E7218B355A770625F3479BA534A8 /* http.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.h; path = src/event2/http.h; sourceTree = ""; }; FCE8F09C178656DBDAFDA0B025C9066A /* ReentrantAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReentrantAllocator.h; path = folly/memory/ReentrantAllocator.h; sourceTree = ""; }; + FCF1E186581D4AB90F54D0F475088693 /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImageWebPCoder.a; path = libSDWebImageWebPCoder.a; sourceTree = BUILT_PRODUCTS_DIR; }; - FCFCEDC08449593B9FB0E57605CA2344 /* RCTVibrationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibrationPlugins.h; path = Libraries/Vibration/RCTVibrationPlugins.h; sourceTree = ""; }; - FCFDC9373B4BCEB0CD9BE9370793CD7E /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; FD101156B2BC06522BA75AE5CBC21471 /* ConsumerBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConsumerBase.cpp; path = rsocket/statemachine/ConsumerBase.cpp; sourceTree = ""; }; FD21676449E7EEF83007E2106E0355B9 /* StringKeyedUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedMap.h; path = folly/experimental/StringKeyedUnorderedMap.h; sourceTree = ""; }; - FD263E2AEE4F6B150F6D1440DE23059C /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; - FD2FC124BB9B7CBC155CA9E0A2447336 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; - FD340A681087E5EDF44BFE8125F94E33 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; + FD2915E38674C2C900EFA33041163379 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; FD37D9DB352ACC3730DA54F00CAF1728 /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = ""; }; FD427A3E7446688D2E946889E162EF7C /* Combine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Combine.h; path = folly/gen/Combine.h; sourceTree = ""; }; FD4CBEB374B0D3ABC89AA41A573F7D51 /* FirebaseCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.xcconfig; sourceTree = ""; }; - FD536FA8CE7E4CF9FD689C9CFEA9B5EF /* RNBootSplash.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.xcconfig; sourceTree = ""; }; - FD65EB61DD90B8550179AA6BD6B09D11 /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = ""; }; + FD61AA0240C1699452A5688EF562C34A /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; FD6708B675C2F8B1F60BD6569F43FE01 /* muxedit.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxedit.c; path = src/mux/muxedit.c; sourceTree = ""; }; - FD71ADB87D8940445C6E93C982C110DC /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; - FD83D6F380CD41F473F3B59B403BC5D4 /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; + FD6B34FC6E26776DA0EBE08258EAB0FF /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = ""; }; + FDA2307EF278D12863DA802831D9EA81 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; FDB002D534600214F4271BBA8E723272 /* backward_references_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_enc.c; path = src/enc/backward_references_enc.c; sourceTree = ""; }; - FDD551671D8B9B950EC901DF038BD847 /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; + FDB87EC9C7DA726F66E1568B61EB1DCE /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + FDC5BC8B851B9E5FF7B416AB1BDD8C10 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; + FDD46653AD02B0C0FB80E8DD6D577764 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; FDDE42B7E3BA3D737A67D830BA7CB2F5 /* SKButtonDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKButtonDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKButtonDescriptor.h; sourceTree = ""; }; - FDE4203A4049DAF1831E9AEA71CB10B8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; FDF3EB101141ED2880B209625EBD273C /* AsyncGeneratorShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncGeneratorShim.h; path = yarpl/flowable/AsyncGeneratorShim.h; sourceTree = ""; }; + FDF5377FFC3A9BA9CC53D6C97ADD2E4E /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; FDFEC8B96013B1DE8EFFE4967BC17D42 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; FE081383A92435653EE42E2C8C4EAB5D /* FlipperStep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStep.h; path = xplat/Flipper/FlipperStep.h; sourceTree = ""; }; FE14511732DF9092162809773043F4D5 /* 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 = ""; }; + FE19B7DAAB2672D88B1F5E74DE62B517 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; FE1E812071397E31AE21DFF368B781B1 /* TOCropViewControllerBundle.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = TOCropViewControllerBundle.bundle; path = "TOCropViewController-TOCropViewControllerBundle.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; - FE2C273A537F44B03F0647F1BDB900E1 /* 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; }; FE2D7DF4575D500D9A9592204018B389 /* SSLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSession.h; path = folly/ssl/SSLSession.h; sourceTree = ""; }; - FE3AC1673D41D15C7C6718BA6182BB6D /* RCTVibrationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibrationPlugins.mm; sourceTree = ""; }; - FE59FFDE1C441A32AEBDBCBA0BCF6270 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; - FE5E7102CC2EAE4463148A18B8E646EF /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyboardObserver.h; path = React/CoreModules/RCTKeyboardObserver.h; sourceTree = ""; }; - FE5E796B79C0061E67CF9C648ED2371A /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; + FE2D90C34D9C0A9A6644DEAEDC0436CB /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; + FE33B6D87F46148EA40455A33D94BA39 /* RNFirebaseAdMob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMob.m; sourceTree = ""; }; + FE46EB0DFA751BDEFDEC9AAB2626A64D /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; + FE7137F593DB4D74102C04004E6ECE76 /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTAnimation.a"; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; FE820CDC63138126A93DFA9D1289691C /* FlipperRSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperRSocketResponder.cpp; path = xplat/Flipper/FlipperRSocketResponder.cpp; sourceTree = ""; }; - FE8ABBB32147E196B4A62E4E10BB5F37 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; + FE86AD7E797D9914BE9A74EC7BC13ADF /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; + FE96DC8BB3D1E56398BB5DC38C611909 /* RNFirebaseDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabase.m; sourceTree = ""; }; FE9B33B992732EE00524ABA85B7829D1 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; FEB3E3A918DA80435DD0BC14CF927F1F /* Frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Frame.h; path = rsocket/framing/Frame.h; sourceTree = ""; }; - FEF6EB89B8CFDCBF5B6EEA7364E59782 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; - FF054FBC4F1290AE1B95DDB9CF320F05 /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; + FEF078F0F06D226117C9B44CCF7A934A /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; FF0C368240181DC19A047556A75A06A1 /* EventBaseThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseThread.cpp; path = folly/io/async/EventBaseThread.cpp; sourceTree = ""; }; - FF143363146A1A676B6090C46F850DE1 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; - FF199BE0FB6C35F104C18D87B66C644C /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; - FF20E0E867446DD64D310ADC5198B062 /* RCTAccessibilityManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAccessibilityManager.mm; sourceTree = ""; }; - FF28FEBCA1A214BC679C2A3CEC9D88AE /* EXAV.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.xcconfig; sourceTree = ""; }; - FF2E3B6071E642C960A305BD24112969 /* RNFirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseCrashlytics.h; sourceTree = ""; }; FF399EC9637444DDFFBABC8692C8FA70 /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = ""; }; - FF45BAC34B8B59C677362E89BB9FAF29 /* BugsnagPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagPlugin.h; sourceTree = ""; }; - FF4D0177051F3C8574727C95777EB117 /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; - FF6E2E1FF7F6BC264EC46C22E249C437 /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; - FF798471BCEAD019E573DC6EA756217A /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; + FF4202637A81AEA50739266A3B02FCCA /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; + FF797AFF7642211A0E1F523358E1D58F /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; + FF7A46FBAAA619DA4120EFA07966DA0E /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = ""; }; FF91004CA8D43870E149DF688938A87C /* SocketFileDescriptorMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFileDescriptorMap.h; path = folly/net/detail/SocketFileDescriptorMap.h; sourceTree = ""; }; - FF9CBB565089003157B36DC0BB0175D7 /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = ""; }; - FFAF390021B4E9A6E4177FFC9AF3203F /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = ""; }; FFB6A79C2797E4E6E8D7E12A68887DBA /* Base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Base.h; path = folly/gen/Base.h; sourceTree = ""; }; FFBD976BE791AD9DDF1BC7B789CF0041 /* AtFork.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AtFork.cpp; path = folly/detail/AtFork.cpp; sourceTree = ""; }; - FFD38E86AFE44CB2D996B795AE7BD68D /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; FFD4D97C2F3F13F89A50B8B6C6E52B07 /* StreamFragmentAccumulator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamFragmentAccumulator.cpp; path = rsocket/statemachine/StreamFragmentAccumulator.cpp; sourceTree = ""; }; FFDC7746794AB17CFB7150820479DF40 /* libFlipper-RSocket.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-RSocket.a"; path = "libFlipper-RSocket.a"; sourceTree = BUILT_PRODUCTS_DIR; }; /* End PBXFileReference section */ @@ -9683,13 +9728,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3DEABC4F374DEC737213E004079BB599 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 42FDC1C893B0D6A6ACC12855A72A7035 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -9865,13 +9903,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 9112B2FA6FBD5F34050AEFD07777349C /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 93D55B3707CA4616896C291F6E39B27F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -9914,6 +9945,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 9E2477DE970409A306ED4294FF4EB008 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; A3044A76BB7DB25B126B27CEC50DC142 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -10075,6 +10113,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + D563EB3270259541A1E8EC0EAB7C3771 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; D752D103DB89DC1C93E3166EA88C9AA5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -10096,6 +10141,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + E452B408AA12069A6A63B01BE53E43D4 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; E6ACA2580415D0A3812325F71ED14C49 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -10183,15 +10235,6 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 006B6067055ABF9A8F7A0079EF0932DC /* fabric */ = { - isa = PBXGroup; - children = ( - A1703292CF8304F090F24C0A05A87DBF /* crashlytics */, - ); - name = fabric; - path = RNFirebase/fabric; - sourceTree = ""; - }; 007690908822C7F67A366D388CC51B73 /* Firebase */ = { isa = PBXGroup; children = ( @@ -10202,89 +10245,64 @@ path = Firebase; sourceTree = ""; }; - 008BF400C33F7EEC6260A235029A7676 /* vendor */ = { + 00A079864AD33771F2A53BCE5E0B145F /* Pod */ = { isa = PBXGroup; children = ( - EE59B10A87112CE90DC474A3DA182FFA /* bugsnag-cocoa */, - ); - name = vendor; - path = cocoa/vendor; - sourceTree = ""; - }; - 012FC69BE3EE39BA699E14877377CE35 /* UMNativeModulesProxy */ = { - isa = PBXGroup; - children = ( - E7A5732B36B340BB83F8BDFDC3556478 /* UMNativeModulesProxy.h */, - 2FA9557D126ABF05071EA793543C18C6 /* UMNativeModulesProxy.m */, - ); - name = UMNativeModulesProxy; - path = UMReactNativeAdapter/UMNativeModulesProxy; - sourceTree = ""; - }; - 0197CB8DC838C3BDFFA862776A0F36C7 /* Pod */ = { - isa = PBXGroup; - children = ( - FA4A6B28577D1DC2BC0889F1C9316C34 /* LICENSE */, - 57399FBE270C76AC3CEA2B00EB0352C8 /* README.md */, - D9D1F89F3486D41C70E3DE7D21569D28 /* RNBootSplash.podspec */, + FDB87EC9C7DA726F66E1568B61EB1DCE /* UMCameraInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 01A6DB90B7281A9537FC1A61142320C0 /* Pod */ = { + 00B176A437B84AD0E5FF29B7160CFAC4 /* Pod */ = { isa = PBXGroup; children = ( - FE2C273A537F44B03F0647F1BDB900E1 /* React-RCTVibration.podspec */, + 755B3090F7C748B785591640685B7DD1 /* RNFirebase.podspec */, ); name = Pod; sourceTree = ""; }; - 01BCA552A31CF147EF265F68ABACF2BF /* React-RCTSettings */ = { + 0195942E39A8F0E0C975DC2EF4643C08 /* TextInput */ = { isa = PBXGroup; children = ( - C7B1E9B6C607C38328E1997549330E11 /* RCTSettingsManager.mm */, - 450FD5EDCCC149768DA8ED279D843C96 /* RCTSettingsPlugins.mm */, - 495F7078126BFBF9D79C9B462E09EF2E /* Pod */, - DA268E4A6C27FD7B52722FE86248D94D /* Support Files */, + 08ABEBB9725655CC6ED26B3DEDB4CA00 /* RCTBackedTextInputDelegate.h */, + EDEFE166DD7CD1DDB8170EB2EDC5647C /* RCTBackedTextInputDelegateAdapter.h */, + D674B7043399AE923A8080EB3E0DD7B3 /* RCTBackedTextInputViewProtocol.h */, + CC268622DF95F0EB5FF95B5D1027B2AD /* RCTBaseTextInputShadowView.h */, + AD3342661710A1005E85BC5965CB60F6 /* RCTBaseTextInputView.h */, + 3636F14631625280E28D82BACF327AEB /* RCTBaseTextInputViewManager.h */, + D93AE0391E8B04BF035C5947E9A419FE /* RCTInputAccessoryShadowView.h */, + 02EACCEF85C6401CE759EC23BFD20E25 /* RCTInputAccessoryView.h */, + 71531F4D01A58061478E016FA6E16A8B /* RCTInputAccessoryViewContent.h */, + B16549F7FED2D0ACB373B44ACA8AC112 /* RCTInputAccessoryViewManager.h */, + C64946AD6C95C8CC4F360037CB623723 /* RCTTextSelection.h */, + 9DA30316620B5362601D5BD1EF70BF5D /* Multiline */, + A78D1B9F33705E69D8CE3AE6B6568F34 /* Singleline */, ); - name = "React-RCTSettings"; - path = "../../node_modules/react-native/Libraries/Settings"; + name = TextInput; + path = Libraries/Text/TextInput; sourceTree = ""; }; - 01C2321C27F4FFA72F24B11159387B29 /* Support Files */ = { + 022CDCB55D54F00EBD4BB6B240C8815E /* React-jsinspector */ = { isa = PBXGroup; children = ( - 61ADB19C6EE0AA9766F8AE7C7CF953B6 /* React-RCTLinking.xcconfig */, - E90E3140D155B876D90FF7EA8AAC142C /* React-RCTLinking-dummy.m */, - F09B7CF487480F8BCCC2250BDDD0024A /* React-RCTLinking-prefix.pch */, + 32D8F496A70588E5E81E35795E7BD3EB /* InspectorInterfaces.cpp */, + D5B352B7AC0F23E844B39268237DF74C /* InspectorInterfaces.h */, + 8F297E5EB29BF8AFD4F647BDF4BA0188 /* Pod */, + 02B5FE0E6EA60F77EAF971E472504A0A /* Support Files */, + ); + name = "React-jsinspector"; + path = "../../node_modules/react-native/ReactCommon/jsinspector"; + sourceTree = ""; + }; + 02B5FE0E6EA60F77EAF971E472504A0A /* Support Files */ = { + isa = PBXGroup; + children = ( + 0E4627AF647F69A0666BB332B99DFB32 /* React-jsinspector.xcconfig */, + C447C2F56F60AB7FBB7B476E7BE16CF5 /* React-jsinspector-dummy.m */, + EDB961063E6B91D50C655FB6D99E7937 /* React-jsinspector-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; - sourceTree = ""; - }; - 01F71F6A382BA8C526E97D12453355F2 /* UMModuleRegistryAdapter */ = { - isa = PBXGroup; - children = ( - 24D27E95E22AECBF6A8EBC4AF37A09DE /* UMModuleRegistryAdapter.h */, - 8DB055F2F0A57992EDE9F57B8090C83A /* UMModuleRegistryAdapter.m */, - 814D0A2257FDA7280D125A21A9FF57D7 /* UMModuleRegistryHolderReactModule.h */, - AEF64B8DAEBD007EDF874E01EC76C39D /* UMModuleRegistryHolderReactModule.m */, - 4383417B4A71491BC74E2F1638CDC3EB /* UMViewManagerAdapterClassesRegistry.h */, - 55340EED345363477EF6B0438936AE88 /* UMViewManagerAdapterClassesRegistry.m */, - ); - name = UMModuleRegistryAdapter; - path = UMReactNativeAdapter/UMModuleRegistryAdapter; - sourceTree = ""; - }; - 023EEB0284B8E306707B78AB820AB75A /* Support Files */ = { - isa = PBXGroup; - children = ( - A111BF72E62C135E8A32E92280B57856 /* React-RCTImage.xcconfig */, - 6BCB3B01A2DB62F391DF3632FEEA5D34 /* React-RCTImage-dummy.m */, - 4463766585E2B6DBB82FED87F7A45685 /* React-RCTImage-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; + path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; sourceTree = ""; }; 02B9B4543CCDD217470D0F3A1DB86777 /* Fabric */ = { @@ -10299,6 +10317,33 @@ path = Fabric; sourceTree = ""; }; + 02E1FA65B159716F1B71BBCBBC48444F /* RNRootView */ = { + isa = PBXGroup; + children = ( + AF1F6FD35CBC3BA539E068BB68FA6300 /* RootView.h */, + 9DD6B4AD935BF557920D22C91DE77005 /* RootView.m */, + 224E968E09E112B6026EDF9E9E6A13CE /* Pod */, + F83F66880ABE8AF483C777FA6360A013 /* Support Files */, + ); + name = RNRootView; + path = "../../node_modules/rn-root-view"; + sourceTree = ""; + }; + 045BC7589D43B21F9E8D5C1AEAD08961 /* Resources */ = { + isa = PBXGroup; + children = ( + AF46CB11B96AE2F376EA3DBCCE72CE3A /* de.lproj */, + 5CA21ACF7962D1714E14223EB2D8BCDF /* en.lproj */, + D5A70010BFF9BA939B57367CD2398C01 /* es.lproj */, + 516A725FD2FA0C22DB6B7DB0B99F417C /* fr.lproj */, + C45617988D2E356E57BF3F7A0FE0E174 /* ja.lproj */, + 8E76D6C44A81A38F97B20CB129A923D3 /* pl.lproj */, + 757B5E8A67E8D556A6A4A5C8AE81BD35 /* QBImagePicker.storyboard */, + 306C50F833A0809C36C0DD5B74E014D1 /* zh-Hans.lproj */, + ); + name = Resources; + sourceTree = ""; + }; 0479CE164E19B7899B8DD49B70760072 /* Crashlytics */ = { isa = PBXGroup; children = ( @@ -10316,196 +10361,184 @@ path = Crashlytics; sourceTree = ""; }; - 049B28077B9160008DE08394ACBA7DFA /* ReactNativeKeyboardInput */ = { + 05092DF600E7A7957FF4F53F9A3A8149 /* Profiler */ = { isa = PBXGroup; children = ( - 7E194C2B3E1A3C85C1A7D8950F8FA923 /* LNInterpolation */, - 0B5E5C32DA0019AC7F25EFCB29586179 /* Pod */, - 411674146B92D38978324224D6529D3F /* RCTCustomInputController */, - B26DCD7576C0E7001826D5D2C66650DF /* Support Files */, + D464809C3C3854D1F9775A805FC36A2C /* RCTMacros.h */, + 209CA054AFC6D7B52A3633988433EACE /* RCTProfile.h */, + 081E5EECE46CD1A347C6EF95EB9C8529 /* RCTProfile.m */, + 54A3463CC32DA92D00E4D68BA05B415E /* RCTProfileTrampoline-arm.S */, + 9F805C09F19ACC63F9DA6181B3059F82 /* RCTProfileTrampoline-arm64.S */, + 2B5B4D65517EA9E604FDECF4A1846876 /* RCTProfileTrampoline-i386.S */, + 67DE68077134FE64C136C6E93320E3E3 /* RCTProfileTrampoline-x86_64.S */, ); - name = ReactNativeKeyboardInput; - path = "../../node_modules/react-native-keyboard-input"; + name = Profiler; + path = React/Profiler; sourceTree = ""; }; - 056FD1C87771E904F1C1F09030ABB515 /* React-CoreModules */ = { + 05BE414C0768A61070674D2FE684EF11 /* Pod */ = { isa = PBXGroup; children = ( - 67AB383D600CBB69E2C06164AB420E46 /* CoreModulesPlugins.mm */, - FF20E0E867446DD64D310ADC5198B062 /* RCTAccessibilityManager.mm */, - A16FA912EF54257986B57147AF617E33 /* RCTActionSheetManager.mm */, - 91B1AE33881EB075C0F149DE8EB47EEF /* RCTAlertManager.mm */, - AE42FD475B3F941CBA622D74A5C66418 /* RCTAppearance.mm */, - 9E7A5F6E8E45697D6F63CB9F6DFCD3C2 /* RCTAppState.mm */, - 348AA5B5AC508B77A3D637486F0346FC /* RCTAsyncLocalStorage.mm */, - ABA57A7A58CE312EFAB1323D9291E144 /* RCTClipboard.mm */, - A6406D1EDBF70CA4DEC57908F01CF67E /* RCTDeviceInfo.mm */, - D3AF7EE60D514CE7E7F47CEB81130DF6 /* RCTDevMenu.mm */, - 4CDCD6A136E371FEBED4722B32D60D80 /* RCTDevSettings.mm */, - 3021B14A09D4716AEEB8CBACE9316DB3 /* RCTExceptionsManager.mm */, - 33CDEBE8A77A2A5A2F42AA42C5DD210C /* RCTFPSGraph.m */, - 450AFEEF0AA1876A3F9BF8D66DF22A12 /* RCTI18nManager.mm */, - 6DCA8B6C9FD99CA20C25A12FE1C334E2 /* RCTKeyboardObserver.mm */, - A2C6CB41654BA05C6A611A04DFD81CFF /* RCTLogBox.mm */, - 677691D65DFCD8429843BFF9F273E3F1 /* RCTPerfMonitor.mm */, - FD263E2AEE4F6B150F6D1440DE23059C /* RCTPlatform.mm */, - 7B0A302C1C770E1D2AC505A1CC17CC88 /* RCTRedBox.mm */, - 18DD138B14C91D2AB76B3260B96E619F /* RCTSourceCode.mm */, - 0B323165A82758004B3BF7CF1D9B7BE2 /* RCTStatusBarManager.mm */, - 5FDC1CE06F0458615CD0B74AB05F0BA7 /* RCTTiming.mm */, - 8EA23C3BB3D64F8EB47A6FE06269D2B4 /* RCTTVNavigationEventEmitter.mm */, - 37216B6E12125370DB6D9BBE2207512E /* RCTWebSocketExecutor.mm */, - 631022D61685D08D77DD54C946C65685 /* RCTWebSocketModule.mm */, - 59A5662EAAFF300273BE44CA1FB64D10 /* Pod */, - 40CA44CFAB7CDC2DB69535A103027E0C /* Support Files */, - ); - name = "React-CoreModules"; - path = "../../node_modules/react-native/React/CoreModules"; - sourceTree = ""; - }; - 0580F8DBD5D678DB0B125AFE59451F58 /* Yoga */ = { - isa = PBXGroup; - children = ( - 017EFE10CDD6741C8D50EAA9F06C0AD9 /* BitUtils.h */, - 3AE5BDEEEDCAAEE59EFC82C33EC71FC8 /* CompactValue.h */, - C1B49077B4BCE1602288DC8DF114A95F /* log.cpp */, - EEA4E814B1B194EB9B05590348340156 /* log.h */, - F8D99D9D8C74A860CFC6848B8D6194C9 /* Utils.cpp */, - B923EA2312B2BB180A784C9E1D5644DD /* Utils.h */, - DCB05304DF3D2687D859975C865AF6CE /* YGConfig.cpp */, - B34A213E2EE08069E9FE06B08DB9A960 /* YGConfig.h */, - 2A1A7657676383C3DD07A56DBB78453D /* YGEnums.cpp */, - 75B1D0F517B8A7EBEF839B508F1D0AB3 /* YGEnums.h */, - 9AD858430194257ED9865ACF31CA62CE /* YGFloatOptional.h */, - 9B5838302607289F60F41DB4D8FDE194 /* YGLayout.cpp */, - 5EE38FF38DA559E6478EF3F5E2F17567 /* YGLayout.h */, - 6DA5AE4E810F3B738C224A1B58B470F6 /* YGMacros.h */, - 28FDEC8C4917B4E72F65E5B9F9D28EF9 /* YGNode.cpp */, - 06353F9686498FF537BA050E3967FC4A /* YGNode.h */, - FC13F7C79D892A62F91C9E560F9D0D2B /* YGNodePrint.cpp */, - CA86921710499BD076EACF2DB4E51E2A /* YGNodePrint.h */, - 7DA2BEF8DCD132D261291E354D9E01F6 /* YGStyle.cpp */, - 673328DBF6C82C9CDA0CA53D26A7C4A0 /* YGStyle.h */, - 31AE3C94309955E524BEF01546E39AFC /* YGValue.cpp */, - 0B3A0AA50391C1B5390DC63C87751BF8 /* YGValue.h */, - D02A1B3E1F6EDF27F7E7EE61856E48A5 /* Yoga.cpp */, - 044347D679B9EB2948B4421209C2C9EC /* Yoga.h */, - 3B14095F63BB5DDCAA899D3F778B1BE3 /* Yoga-internal.h */, - F37E21D8FD6D2D88A8B16A5F8ED14993 /* event */, - E1D36DE5B445C5E5EC43BD573AF4DAE2 /* internal */, - 573496722B50EFD289DC59353B20DF06 /* Pod */, - 12D6D09BB25EE226639E8FEF92718DCF /* Support Files */, - ); - name = Yoga; - path = "../../node_modules/react-native/ReactCommon/yoga"; - sourceTree = ""; - }; - 064B892095F1FFC35A5DC8095812BAE7 /* Pod */ = { - isa = PBXGroup; - children = ( - 0F91CC22FD02C12DE7E61375FFA29955 /* React-RCTImage.podspec */, + C75D22E6E9E3499FEE0A3861088D7C3F /* LICENSE */, + 1A3B2D322C2010B68E5E905B86DF2C62 /* README.md */, + B7A321B55CC1F2DCA106C34A4E57F86E /* rn-extensions-share.podspec */, ); name = Pod; sourceTree = ""; }; - 072B55F4F16C6E867C79FFC7B0B93C4A /* CxxUtils */ = { + 072E58720E64EFBFFCB06BEB9058C49F /* Requesters */ = { isa = PBXGroup; children = ( - 66E2D02A94FA2E4D5E82E7C9E3817F85 /* RCTFollyConvert.h */, - 5E822BEB2C4FCF710BBDC16671A1AF25 /* RCTFollyConvert.mm */, + 85F8D5372BED8FB4C056F83AA254D36F /* RemoteNotification */, + A7C96B52313A17DA4FD956C2A944AD03 /* UserNotification */, ); - name = CxxUtils; - path = React/CxxUtils; + name = Requesters; + path = EXPermissions/Requesters; sourceTree = ""; }; - 0A4840F32EA32301D0FED5DAFD2F035C /* Support Files */ = { + 088989501B4A141B664624095782831E /* Pod */ = { isa = PBXGroup; children = ( - AC3C0AF66923CD6AA182BCD2B3B77A1F /* RNVectorIcons.xcconfig */, - D92AB73FA85C2EFD5BAF51DDF0BA5466 /* RNVectorIcons-dummy.m */, - 54A7710218923FBE9D86D5C914EEE935 /* RNVectorIcons-prefix.pch */, + E9D7BBEE4380591D1FE584D6FBDEE88A /* React-jsi.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 08CA95BACAF838E76E27885FDF146257 /* React */ = { + isa = PBXGroup; + children = ( + 19DDEEEEB67DC748AE42D5B711A22795 /* Pod */, + 87429C6BA0139D97302A68158C3AED74 /* Support Files */, + ); + name = React; + path = "../../node_modules/react-native"; + sourceTree = ""; + }; + 08D632601A45AAD452C6EEB3C8632622 /* Drivers */ = { + isa = PBXGroup; + children = ( + 0BA71B3682336787CBEDC68D8B7DEFCD /* RCTDecayAnimation.m */, + 6F6EAD38009DDEBD60F96F13B1500506 /* RCTEventAnimation.m */, + 14979149F23DF62C17F9E7A21EE83969 /* RCTFrameAnimation.m */, + 5EE0EABCCC36003AE9A066A1311388C6 /* RCTSpringAnimation.m */, + ); + name = Drivers; + path = Drivers; + sourceTree = ""; + }; + 08DD0716338B6985C2F338612F8A4A24 /* RawText */ = { + isa = PBXGroup; + children = ( + 85CC15D655072A7A9895561BE72AD16C /* RCTRawTextShadowView.m */, + 9C99C09197F47A717D2D6F03FDACA5EA /* RCTRawTextViewManager.m */, + ); + name = RawText; + path = RawText; + sourceTree = ""; + }; + 0963B9F98307DC3FBFB51DA0B96F1A78 /* Core */ = { + isa = PBXGroup; + children = ( + ); + name = Core; + sourceTree = ""; + }; + 0B0C18D8AD22C1FD5A52EDD9E3FD2025 /* Support Files */ = { + isa = PBXGroup; + children = ( + 6E1662013842AD470983BDAD74E96EAE /* RNLocalize.xcconfig */, + FAE48DC6CFAB94B34462D824F058AFCB /* RNLocalize-dummy.m */, + 5F5E46E13226ECF39A9863F5EC501736 /* RNLocalize-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNVectorIcons"; + path = "../../ios/Pods/Target Support Files/RNLocalize"; sourceTree = ""; }; - 0A694903AF7C12028DF565A1AA873DA2 /* EXKeepAwake */ = { + 0B1C2E8D8EB325D292C25F38A959046B /* Support Files */ = { isa = PBXGroup; children = ( - ABE2162F3D7925EF60E7F3E538B3ED68 /* EXKeepAwake.h */, - 05E7285D3CE4D977C35CFECF3AED54DB /* EXKeepAwake.m */, - 202924F7B29DB95F465DBDB64E8185F1 /* Pod */, - 33CD74F5D7AA09117BE35E5819D0966A /* Support Files */, + 85AC90391ADECD53E3556D7003D3A23F /* UMSensorsInterface.xcconfig */, ); - name = EXKeepAwake; - path = "../../node_modules/expo-keep-awake/ios"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; sourceTree = ""; }; - 0AC5AB2EBC04E49E0246D8358516FAFF /* ReactNativeKeyboardTrackingView */ = { + 0BAEE6158DDEBCE3F2D3D828463FEDF1 /* Tools */ = { isa = PBXGroup; children = ( - BAD38D2AD9D27FD4554AF3D66C9A9991 /* KeyboardTrackingViewManager.h */, - F70BDF844B02084D7E021F49AB36109A /* KeyboardTrackingViewManager.m */, - 6870DCF7D43BE3A808D451F892C25075 /* ObservingInputAccessoryView.h */, - 26508A36D5838FDD6CC1B38CF7EAEACB /* ObservingInputAccessoryView.m */, - F81EC68EEFDD0FE1C1C97EA765FDED19 /* UIResponder+FirstResponder.h */, - 9B2ED3D0AF41433010628FE726856577 /* UIResponder+FirstResponder.m */, - 825AD6BF08468728799307F6F04730AA /* Pod */, - DBEE9988B77A4B7CF28C186FFD58F990 /* Support Files */, + 57F56536E891B238679FB9405792E45F /* BSG_KSArchSpecific.h */, + 17BF13DD148057E6199EEF5D184DF394 /* BSG_KSBacktrace.c */, + 912327CD24447113DCBE5E0204334FC2 /* BSG_KSBacktrace.h */, + 713882D8685596882A1DA0DCAC5ACF8C /* BSG_KSBacktrace_Private.h */, + 411C77468EFAC449BC05F4BE98E07F71 /* BSG_KSCrashCallCompletion.h */, + 119FA8BE700BB585F326E8DDDBE2097B /* BSG_KSCrashCallCompletion.m */, + 3B298DC760AAF3986A2D64997749D50B /* BSG_KSDynamicLinker.c */, + C5363E2E18C3E2582BC14D74EF29FEAD /* BSG_KSDynamicLinker.h */, + 555614C4441CCF93180DF6410C9F48EA /* BSG_KSFileUtils.c */, + 50AC756E0E949F216873FC9F7F3C7DF6 /* BSG_KSFileUtils.h */, + 29747568ABBBA9E9A1EC0F48BD467C22 /* BSG_KSJSONCodec.c */, + 8D33DE116D0794F9ECB3257024ACF204 /* BSG_KSJSONCodec.h */, + A8CBE9BA702F9353DB44F29C05C20508 /* BSG_KSJSONCodecObjC.h */, + 078ACB560B9DF301B22DB27AC0251D1B /* BSG_KSJSONCodecObjC.m */, + 1A0B8792CF6208F57C912BB7C29B4FCB /* BSG_KSLogger.h */, + F14592AC28964F7719B2E418774F7A9B /* BSG_KSLogger.m */, + D032D6FEA72FCE92B1AC6AAF34468012 /* BSG_KSMach.c */, + C5CA0AEF5EA89992EB0B35EE86E02AA7 /* BSG_KSMach.h */, + C0A320184E361CD4261DBE4243AFAC31 /* BSG_KSMach_Arm.c */, + FE86AD7E797D9914BE9A74EC7BC13ADF /* BSG_KSMach_Arm64.c */, + 1E76B6BB36B2A3C42DDF3D7B633F5976 /* BSG_KSMach_x86_32.c */, + B982F2A245C062D03E9D0007425EFD88 /* BSG_KSMach_x86_64.c */, + 0DFBE72CD90D262E7A6933E7E30E47E9 /* BSG_KSMachApple.h */, + 2F6E770107F0F9662E99148E09934317 /* BSG_KSObjC.c */, + 91031C2D142B91C4659188043CFBB59E /* BSG_KSObjC.h */, + 41CB39FD5D11539EAE2ECF837C19AC7F /* BSG_KSObjCApple.h */, + 1EC15084DB3363D73309F2FFC704EC04 /* BSG_KSSignalInfo.c */, + A401BFC2002B1F9F6DAFF5F0A3777E03 /* BSG_KSSignalInfo.h */, + 1F6F2CFA01EC3575434B192A4A609F3A /* BSG_KSSingleton.h */, + 465454A21A09429BC53A1110206D6B71 /* BSG_KSString.c */, + 22DC540653AA6DEFE018F0E96892639A /* BSG_KSString.h */, + 777059C692B7C55601D372692929E4C5 /* BSG_KSSysCtl.c */, + 0E942DCB54F046D2146E9F69DC7E1335 /* BSG_KSSysCtl.h */, + FAFD364A32A0320AB9E8550CAC48CB22 /* BSG_RFC3339DateTool.h */, + E0F9503131ACB8C4FD70E76CA14C2EF5 /* BSG_RFC3339DateTool.m */, + 23FC3234B2DB57E1ED7030BCE13BB424 /* NSError+BSG_SimpleConstructor.h */, + 1A007ACDD8283948E99A5DD959DE9242 /* NSError+BSG_SimpleConstructor.m */, ); - name = ReactNativeKeyboardTrackingView; - path = "../../node_modules/react-native-keyboard-tracking-view"; + name = Tools; + path = Tools; sourceTree = ""; }; - 0ADC1887BECB117D4274AEE6291E24EE /* perf */ = { + 0BDA0E5DAE60284E397056711DB96C3D /* Support Files */ = { isa = PBXGroup; children = ( - BDFF81F9DE62DBA42323C8BFE40CEE08 /* RNFirebasePerformance.h */, - 19ED04DE837A8C283B54F50AE3CFC19A /* RNFirebasePerformance.m */, + 22F817D447B0FBFC5E919D280677C049 /* EXWebBrowser.xcconfig */, + 7F0600C755BC4C06B2F73F1604FE74D4 /* EXWebBrowser-dummy.m */, + EC0296D9829486EAB25598C847B99257 /* EXWebBrowser-prefix.pch */, ); - name = perf; - path = RNFirebase/perf; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; sourceTree = ""; }; - 0B5C6FBC7AE922F6158C3CB2A5B1A524 /* Pod */ = { + 0C52D7E905C9C54B83D4559802B3C107 /* Support Files */ = { isa = PBXGroup; children = ( - BE29D0312D2BFE31EFB8A2DB111675BE /* LICENSE */, - 30567A88DBFBF298463E3A00798BDAD8 /* README.md */, - D593C8EE3EC0B10A8FC5FB03B1C6A558 /* RNCAsyncStorage.podspec */, + B85F14B1A3321F67D57FB3E5D50DEF80 /* React-RCTSettings.xcconfig */, + 18462B43FFBDF05E68BAB2E07C605FB9 /* React-RCTSettings-dummy.m */, + 9B1EF8C47031ED85B03BA1723CCA998B /* React-RCTSettings-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; sourceTree = ""; }; - 0B5E5C32DA0019AC7F25EFCB29586179 /* Pod */ = { + 0CC265D5D87E747A8FC6AEACB14A603A /* Support Files */ = { isa = PBXGroup; children = ( - D56375C635A3D360AC5CCEF384DBE882 /* LICENSE */, - 4D13B4F891926B025701AF162EA83CC9 /* ReactNativeKeyboardInput.podspec */, - 501A9BC73EA16BFC1100B7CD8B4E6299 /* README.md */, + 0004CD2B1C7A554C35DAB64B5EBAE612 /* EXConstants.xcconfig */, + 7B1D9EE485F3205646C5051B7F089AFA /* EXConstants-dummy.m */, + 3AD9E3A089699EE37B9B9DB63D50FD4E /* EXConstants-prefix.pch */, ); - name = Pod; - sourceTree = ""; - }; - 0B5F23AF887AC5E49F46677871D7CB0A /* RCTWebSocket */ = { - isa = PBXGroup; - children = ( - 834FF4DE768628BEB59D5C710482E567 /* RCTReconnectingWebSocket.h */, - 86279D6F840FCC2B4D1F9372E3DF2DD5 /* RCTReconnectingWebSocket.m */, - 9F4936DDB7CCA87862B4A6728C5B8932 /* RCTSRWebSocket.h */, - B792152A334862B990C9A456897A9E3B /* RCTSRWebSocket.m */, - ); - name = RCTWebSocket; - sourceTree = ""; - }; - 0BA53CFD8331699B0984181C32F69AA6 /* messaging */ = { - isa = PBXGroup; - children = ( - B547E723A978FEAEE283A2BC0B0E35F1 /* RNFirebaseMessaging.h */, - 8C1880B513634EA016258921EE8E14A8 /* RNFirebaseMessaging.m */, - ); - name = messaging; - path = RNFirebase/messaging; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXConstants"; sourceTree = ""; }; 0E2F0D7BF28C56D98D40123E6864E55B /* Core */ = { @@ -10655,36 +10688,47 @@ name = Core; sourceTree = ""; }; - 0F36A3F2AF21B6B60CE75AB5F670F2C0 /* Profiler */ = { + 0F7067B2B36F003E69A4DAB0A768A9A8 /* BugsnagReactNative */ = { isa = PBXGroup; children = ( - DA70B4DCF41CBF382730E796B3FD3315 /* RCTMacros.h */, - 71F8C7D1FCE51B747B4284DFC5A37EC2 /* RCTProfile.h */, - BE7EB5E6069674E49DBA684A1ACF3FE2 /* RCTProfile.m */, - 4D1CF3BFFC23DE95FBCAF929A29908F2 /* RCTProfileTrampoline-arm.S */, - EA6EEB4FF4F44556520BEB0B65A85A20 /* RCTProfileTrampoline-arm64.S */, - D402C610EC05744076650804CE14382D /* RCTProfileTrampoline-i386.S */, - D437D2083801556E3685A8D9231B1072 /* RCTProfileTrampoline-x86_64.S */, + 2475A083CA7E9531F5DF98EB4E5E1B57 /* BugsnagReactNative.h */, + 4669A53C93BC1B653C57B87A2DD1CFFA /* BugsnagReactNative.m */, + 0963B9F98307DC3FBFB51DA0B96F1A78 /* Core */, + 9F294B654934236B675B6241DA9D6D0C /* Pod */, + 87893C2F0862C48AF9A3B0634CFEF11B /* Support Files */, + 8FC7093F051AAD0C014CD72B31406F47 /* vendor */, ); - name = Profiler; - path = React/Profiler; + name = BugsnagReactNative; + path = "../../node_modules/bugsnag-react-native"; sourceTree = ""; }; - 0F524DA95E8E7D2F4E36F6F714915196 /* RNReanimated */ = { + 101FF42C7904DE9D979F50F6F443FB2C /* EXPermissions */ = { isa = PBXGroup; children = ( - 78B460BFD2D95F243722708D53AF7C15 /* REAModule.h */, - 1D0271D5E8E0630A5C01B1A874559A40 /* REAModule.m */, - 8A8483349E35D9DCA566CD160A24FC4F /* REANodesManager.h */, - EC5F1C6EF04364C25D1ACDBFD97CB381 /* REANodesManager.m */, - 77669A1A60D5F27D47BE8A4011BAEC4A /* REAUtils.h */, - 4F7F7040F16329B0EBA42DDEE2FF4129 /* Nodes */, - 90A8F76706FB04AECFBCB894D5B8BE27 /* Pod */, - 7978583CD6B17A1A91BE33628E669CF6 /* Support Files */, - 8DA8F67C79D916E2938A707CE16C708C /* Transitioning */, + 86AC22B4BB409F1E101B286CF2109DB4 /* EXPermissions.h */, + C3093E8DB076B814FC199B208E9B3C15 /* EXPermissions.m */, + C73F242C04336D7FF6A7E8E1A751127D /* EXReactNativeUserNotificationCenterProxy.h */, + FD2915E38674C2C900EFA33041163379 /* EXReactNativeUserNotificationCenterProxy.m */, + 8C25CAF0585B48705E634DD3620AA65B /* Pod */, + 072E58720E64EFBFFCB06BEB9058C49F /* Requesters */, + 5BABCC3389C6D56CF2B8CA6247E086F4 /* Support Files */, ); - name = RNReanimated; - path = "../../node_modules/react-native-reanimated"; + name = EXPermissions; + path = "../../node_modules/expo-permissions/ios"; + sourceTree = ""; + }; + 1025CE3A3508A0D6797CC0868926333A /* RNDeviceInfo */ = { + isa = PBXGroup; + children = ( + 5FF124BFE4789E564508AA5A571693E7 /* DeviceUID.h */, + CBAB0F47CDDDF4B890096A8A31547545 /* DeviceUID.m */, + 59149DB4D7BD69A028948BDB37206DF2 /* RNDeviceInfo.h */, + E4717C28EB9B27DF783198B758A4CF07 /* RNDeviceInfo.m */, + 999BF1A5966256F0CBA646850A42B180 /* Pod */, + B0C8E59E32D9E87D0FB976FCF301BB08 /* Support Files */, + ); + name = RNDeviceInfo; + path = "../../node_modules/react-native-device-info"; sourceTree = ""; }; 10790653138889F070A782E6FAD80A03 /* Support Files */ = { @@ -10697,72 +10741,36 @@ path = "../Target Support Files/FirebaseCoreDiagnostics"; sourceTree = ""; }; - 10A4BEBEF0B2C3507B2FB86651F4FBFD /* RCTRequired */ = { + 1116BC4E32F4BC8C3355FD27CB06BFAF /* UMFontInterface */ = { isa = PBXGroup; children = ( - A9D92C71BFFF155AC377A1AEC924FAF9 /* RCTRequired.h */, - DF6955B135C7170B2AA450C179439B57 /* Pod */, - 17A4DE3539D2A2226C2B02F401A70862 /* Support Files */, + 7CBD602AD6DCD7613DB5467CED953E8F /* UMFontManagerInterface.h */, + E090ED2ECA03CB8C46EB494202C518DA /* UMFontProcessorInterface.h */, + 0E8F0C8A8EA584A96DEEF4825A115884 /* UMFontScalerInterface.h */, + 1A18989B04E0616980D292BD374E4DD7 /* UMFontScalersManagerInterface.h */, + 12D8633DA1E0F7C1C0AC39229CF07B89 /* Pod */, + C2D5468CE3FCDDDAE11CF6D139E212BC /* Support Files */, ); - name = RCTRequired; - path = "../../node_modules/react-native/Libraries/RCTRequired"; + name = UMFontInterface; + path = "../../node_modules/unimodules-font-interface/ios"; sourceTree = ""; }; - 10CE330F46CAC53089EBA5EB02982605 /* Core */ = { + 112B87124D6DD86DB98C788B1A15D9D8 /* converters */ = { isa = PBXGroup; children = ( + 6060942BEAD2B3B29663F1F50D7605DD /* RCTConvert+UIBackgroundFetchResult.h */, + 3E41A3B00394163C9CBAF010F4ECE1B6 /* RCTConvert+UIBackgroundFetchResult.m */, ); - name = Core; + name = converters; + path = RNFirebase/converters; sourceTree = ""; }; - 113F37800DC8644AA909F31DD047B97A /* auth */ = { + 12D8633DA1E0F7C1C0AC39229CF07B89 /* Pod */ = { isa = PBXGroup; children = ( - 96617C36F05D41CC081BEFC02F9359C6 /* RNFirebaseAuth.h */, - AFA11A4B03E0F898AC5E5B422EF99D41 /* RNFirebaseAuth.m */, + A8D8282349A5EE2BA6014CDD4B5CB405 /* UMFontInterface.podspec */, ); - name = auth; - path = RNFirebase/auth; - sourceTree = ""; - }; - 120423C547605188F1E0347B53A49434 /* Support Files */ = { - isa = PBXGroup; - children = ( - BCC3839F4CB33F4464C762E8EAA62FE6 /* RNFastImage.xcconfig */, - BB8AB3616CFD2142F8046F8BDD1B760A /* RNFastImage-dummy.m */, - 229F228FC5FB9549EDE19E04D5118418 /* RNFastImage-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNFastImage"; - sourceTree = ""; - }; - 12D6D09BB25EE226639E8FEF92718DCF /* Support Files */ = { - isa = PBXGroup; - children = ( - 9B2849A8CD608136332B1AAD3514E469 /* Yoga.modulemap */, - 05F68EE13E6ED5837AA2208FCCA1B7A8 /* Yoga.xcconfig */, - 25C2D49CB4D73F95CEA2CEC1A59E5672 /* Yoga-dummy.m */, - DE77825A983F0E4D1D4F349822DBFD96 /* Yoga-prefix.pch */, - 35B468CF8FF3E3BC1AD58CB8ED8ED5EA /* Yoga-umbrella.h */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/Yoga"; - sourceTree = ""; - }; - 13EE3709DE8E1F2A61ED6BDEF210F9D1 /* React-RCTAnimation */ = { - isa = PBXGroup; - children = ( - B456F787CDAD8E9FBC971E3589135E4B /* RCTAnimationPlugins.mm */, - 94517CD85F6C0CB5786A3FE34C5DDB31 /* RCTAnimationUtils.m */, - 4CF0C8F232E34E452145999C6D84FE3B /* RCTNativeAnimatedModule.mm */, - D354AFF84D9B0477F197A34EFA56A3FC /* RCTNativeAnimatedNodesManager.m */, - F800671DBE74B243992B1C53FA601798 /* Drivers */, - AC1A4D30D433C6D40C7BF81583E8C558 /* Nodes */, - BAF5C24214641C13BE6D890F2E7D6582 /* Pod */, - 53BCECCE872E61EE9806C1BF5F13FA9B /* Support Files */, - ); - name = "React-RCTAnimation"; - path = "../../node_modules/react-native/Libraries/NativeAnimation"; + name = Pod; sourceTree = ""; }; 13FF510C367D171AA3FE2A078CFEA2A4 /* Frameworks */ = { @@ -10774,179 +10782,178 @@ name = Frameworks; sourceTree = ""; }; - 141B1550F380052D097F4CC67A82F022 /* RNCMaskedView */ = { + 1466488A6AB81BD8262F74CD34216623 /* Pod */ = { isa = PBXGroup; children = ( - A17988463059BCDD1EAFD0A400371DB8 /* RNCMaskedView.h */, - C11F3018A56727FCC1AB3BC7301B5506 /* RNCMaskedView.m */, - 3F30531A84345F1C2D7A1FDE6C5194E6 /* RNCMaskedViewManager.h */, - 3438A92E0705A029699AE3D344304330 /* RNCMaskedViewManager.m */, - 4CC0D4DC757C493F40D25F54EFD078F7 /* Pod */, - 54D2AB7E55741AAF4894F78CB2DDECF6 /* Support Files */, - ); - name = RNCMaskedView; - path = "../../node_modules/@react-native-community/masked-view"; - sourceTree = ""; - }; - 141EB77E853A9622D6F7FB4B76637AF9 /* TextInput */ = { - isa = PBXGroup; - children = ( - CD6D85F38091AD9D0F53507CF1F9B615 /* RCTBackedTextInputDelegateAdapter.m */, - 9B717635B144BE7E1E113229D729CAC6 /* RCTBaseTextInputShadowView.m */, - BABF1453638674E3E2F7C08B23127985 /* RCTBaseTextInputView.m */, - 60617C7334B7CF0995AEF61961396DE2 /* RCTBaseTextInputViewManager.m */, - 5D0EFD62B842697EABB07903F8065FC0 /* RCTInputAccessoryShadowView.m */, - 570CF44B3BC9B3E2801722C618A8E01A /* RCTInputAccessoryView.m */, - 5E46A3A8AA873E918E25622F55AB0003 /* RCTInputAccessoryViewContent.m */, - 85FDFFB455E68FB0A3DCC7A7CBB47158 /* RCTInputAccessoryViewManager.m */, - FF199BE0FB6C35F104C18D87B66C644C /* RCTTextSelection.m */, - 90C3B0098E98DF86C4E32CAD0025F2FD /* Multiline */, - E8A3C71255DE9484A37D7B2EBA1EC9CC /* Singleline */, - ); - name = TextInput; - path = TextInput; - sourceTree = ""; - }; - 15B961824C36871EDE5B8144D5875EEE /* RCTTextHeaders */ = { - isa = PBXGroup; - children = ( - 01AB4AEEAEFBEA748EA4844C2FFCFD7C /* RCTConvert+Text.h */, - FB93889EE44F1D09E60F8608E9E52799 /* RCTTextAttributes.h */, - 6F29C01F0F038B5B6E246B15665C0C07 /* RCTTextTransform.h */, - 5B20B163ACBB47409521B71F4298EC59 /* BaseText */, - 581E40054BB5E0CDC8AA03D71631D21C /* RawText */, - D2C273B5DB667887C3B3E64C9D8725AA /* Text */, - 5941716C7716FEC2892133AB4465B924 /* TextInput */, - 30808431DB5643CE67649895E48868EF /* VirtualText */, - ); - name = RCTTextHeaders; - sourceTree = ""; - }; - 17A4DE3539D2A2226C2B02F401A70862 /* Support Files */ = { - isa = PBXGroup; - children = ( - 95D339445817B79D848F5AD6B2AA6F61 /* RCTRequired.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTRequired"; - sourceTree = ""; - }; - 17F212CDE9DEE057EF3554A07EB7445F /* Support Files */ = { - isa = PBXGroup; - children = ( - DBD668FA503318593178E4546569639B /* React-RCTText.xcconfig */, - 1DED9F8FF68789EA26962FF97F09D3BB /* React-RCTText-dummy.m */, - A007BA3600A0D60E10E561A3B31B181B /* React-RCTText-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTText"; - sourceTree = ""; - }; - 181969EF5DE84B187A9126253E27F48C /* ViewManagers */ = { - isa = PBXGroup; - children = ( - 7878193DAA3EC52A6C7D59A1FFCFF437 /* ARTGroupManager.h */, - FD65EB61DD90B8550179AA6BD6B09D11 /* ARTGroupManager.m */, - 2091BB47DBE48DD2A68BBDE3A3632E4F /* ARTNodeManager.h */, - AC035A824477CCE1D8F381072FC3974F /* ARTNodeManager.m */, - 0EEAB525FF29656BF4A9BC0EF3846EB7 /* ARTRenderableManager.h */, - 3B7FBF33AC92AD6DA22A777AFC78B0BC /* ARTRenderableManager.m */, - F58D6BF0A6621914DEA7D362035767A6 /* ARTShapeManager.h */, - 8EF5EB1DDA2F8F59AD377272F050B005 /* ARTShapeManager.m */, - 0A1F4947E57242ED7DA527F0CC888F99 /* ARTSurfaceViewManager.h */, - E9BD133792AD192FC5788F6929A30EEC /* ARTSurfaceViewManager.m */, - 51AA1D7606FC15F2B0A46B782BB51B3C /* ARTTextManager.h */, - 37CAF81E9E4AA35A161ABCCE6FE90679 /* ARTTextManager.m */, - ); - name = ViewManagers; - path = ios/ViewManagers; - sourceTree = ""; - }; - 18A90A5935F518F1A2A8D25A1A101A39 /* Pod */ = { - isa = PBXGroup; - children = ( - 16343C4984A652AD4DA38317AE200D52 /* React-jsiexecutor.podspec */, + E1F9BCA1437F86681BEEFD0484AFC0F0 /* LICENSE.md */, + 7EDDBD66CBFF6B1708122EE42C2FB9C5 /* react-native-document-picker.podspec */, + 5C1C3620764CF08A1D6E8EAC6C0012F3 /* README.md */, ); name = Pod; sourceTree = ""; }; - 18D577403E2ABE9E63B63E9D89470AFF /* Pod */ = { + 1632A3616DC0CFF32A742A24767312F9 /* Support Files */ = { isa = PBXGroup; children = ( - 6FD49F49277AD33DABE22B10F1031894 /* advancedIos.md */, - 24D4A9A6CFB1C3FFFFCBF1D3CA5E1B53 /* installation.md */, - 7243AA4FC9367C46F0CCB5200FE83641 /* LICENSE */, - 24479DD5D9677CE489CC3BDB6489B144 /* localNotifications.md */, - EE0379762B0BDD090CB06B5599A24A34 /* notificationsEvents.md */, - 71B9A4E956BFBD9065F0061A3F007F70 /* react-native-notifications.podspec */, - 663ED0DD8B063D8BD713087946DCA342 /* README.md */, - 8A7D1BFE521D2C993AB256BE01D2D998 /* subscription.md */, + 9DF547BCD14061CD62E58880D6A92DB5 /* ReactNativeART.xcconfig */, + 0DC4753856349A20BF60E239F3DE0374 /* ReactNativeART-dummy.m */, + 8281F16DD5F0C7D51335DF5FCD121D39 /* ReactNativeART-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/ReactNativeART"; + sourceTree = ""; + }; + 1671EB795F52EEEDDD044A9107D7C23A /* react-native-appearance */ = { + isa = PBXGroup; + children = ( + EC9F9FB50FE02D6165060C3BB45997DD /* RNCAppearance.h */, + 122E04F7E1EC2E9AFE681E66A2D5D1FC /* RNCAppearance.m */, + 9AFFEDDE7CFB2C5E2CA5311D2F76B264 /* RNCAppearanceProvider.h */, + 2744D69B7CA848FB0307E86A45438935 /* RNCAppearanceProvider.m */, + A7C9923AFC25F79D1EE735484960E4C2 /* RNCAppearanceProviderManager.h */, + B0F818123E207CD4DD66F14D8EE99606 /* RNCAppearanceProviderManager.m */, + 5FA3D5B563F60ADA267450E6EDEDB551 /* Pod */, + 7F7C8D1A9124A040EBF1D8C16262386C /* Support Files */, + ); + name = "react-native-appearance"; + path = "../../node_modules/react-native-appearance"; + sourceTree = ""; + }; + 17FCFBABA3BEE8CE1EDED474A90D781B /* KeyCommands */ = { + isa = PBXGroup; + children = ( + 3AC743AAF093BEA69296F8D19A4A63DB /* RCTKeyCommandConstants.h */, + D6A54E68A069603C40EB24A3073DD1FA /* RCTKeyCommandConstants.m */, + 879C4675A42A906C9C1BAC3DFB52488A /* RCTKeyCommandsManager.h */, + 01E29E1E919123FA73529DB1E40266E0 /* RCTKeyCommandsManager.m */, + 27CBE4131BDDBD724884CD5D33B3A062 /* Pod */, + 6835B1809D0F5824A10DF34E15B66122 /* Support Files */, + ); + name = KeyCommands; + path = "../../node_modules/react-native-keycommands"; + sourceTree = ""; + }; + 1858AD2396CA758854000DF829897208 /* Pod */ = { + isa = PBXGroup; + children = ( + C898C23FFB4EA1B7C6820BB604B3C061 /* react-native-slider.podspec */, ); name = Pod; sourceTree = ""; }; - 1AB0EDACC4281D8EEE4A3F03317F3199 /* Brushes */ = { + 18F3B84D071BF6E03A17202E54D4FD0A /* RNFastImage */ = { isa = PBXGroup; children = ( - DCC589DA00C01A163E318C72EB67B785 /* ARTBrush.h */, - 8511196A00D9F17F33EECD75EE612D1D /* ARTBrush.m */, - 3708A1323C1DF619C344E7F5A1D60345 /* ARTLinearGradient.h */, - 6D052842F034339DF5D22E941A053F44 /* ARTLinearGradient.m */, - 71172134774813FF7BE46C29E82A360E /* ARTPattern.h */, - B309B4E79E23D7B86447953A5B6F5CC4 /* ARTPattern.m */, - BECB0C184EC58C92F82472FC752114F2 /* ARTRadialGradient.h */, - 2233A3D8AF08DC9CAB0FAE75F534B157 /* ARTRadialGradient.m */, - 4E3EDCAEDE57D6F600816F83663FBA53 /* ARTSolidColor.h */, - CEEB012EA206F50BF1AC357FCA4B1075 /* ARTSolidColor.m */, + 9470C0122B1CEFE0E5EB0E44CB510B68 /* FFFastImageSource.h */, + 998AF8A34DBB39420D04028C3FFCBF77 /* FFFastImageSource.m */, + C6C36B4CF0EFE6B9FBE55B0E968F387A /* FFFastImageView.h */, + 2625B767D0A3165A55BF95193B14F6A5 /* FFFastImageView.m */, + 6AB6F7A05712378F1F168AF79F14103E /* FFFastImageViewManager.h */, + C42295A853EA3272C33CC1007B5EA749 /* FFFastImageViewManager.m */, + BA82F24AE9818ECFBAAC74D9D13B0DC1 /* RCTConvert+FFFastImage.h */, + 3149899EA1140A5AAE52CCD55745C11B /* RCTConvert+FFFastImage.m */, + F2C96C477D8226F4791C9F63C3A28860 /* Pod */, + C97AD079866FF412E88ADF0012A68C29 /* Support Files */, ); - name = Brushes; - path = ios/Brushes; + name = RNFastImage; + path = "../../node_modules/react-native-fast-image"; sourceTree = ""; }; - 1AC661070983BD5DE8D6AB8768A11E08 /* Reporting */ = { + 197CCF54254EB41F35CB9E7ED5C936CF /* Pod */ = { isa = PBXGroup; children = ( - D8BD75F0D30C42B8D861CE26DF7DC272 /* Filters */, + C08CA5F5FD4835B128CFCF8A10302E56 /* RCTRequired.podspec */, ); - name = Reporting; - path = Reporting; + name = Pod; sourceTree = ""; }; - 1BF64DFE79FC198AAD112732DFEEE4D2 /* Support Files */ = { + 19DDEEEEB67DC748AE42D5B711A22795 /* Pod */ = { isa = PBXGroup; children = ( - D3DB106B54E595AA69BA58A90616528C /* react-native-jitsi-meet.xcconfig */, - 079B62AE33AE93B5551EE35A65870003 /* react-native-jitsi-meet-dummy.m */, - 9E08A421A26D63189FBA431E767E1228 /* react-native-jitsi-meet-prefix.pch */, + F30CA48894CE9AB7992D762A62BEEB5D /* React.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 1A52D4B6AFA8602F4D6E078053FC4B7E /* React-RCTImage */ = { + isa = PBXGroup; + children = ( + 00E181409EB769E1E4567A58BB6438BC /* RCTAnimatedImage.m */, + 346826B90C891C3D7725CA4C9354B292 /* RCTGIFImageDecoder.mm */, + 5B6158AB2550CBA102DCA35CC0DC2013 /* RCTImageBlurUtils.m */, + 9BB1B2939F9907FFAD48E3DD565AEE10 /* RCTImageCache.m */, + 2660850DDB2DA283DA5E458102EAF98A /* RCTImageEditingManager.mm */, + 2D1FDE73C0584894CCEAA11A49E2129D /* RCTImageLoader.mm */, + D4A7990730C79B33E94B1BD3679B751B /* RCTImagePlugins.mm */, + 5B2843009ACC56D555D6CECDF3265A53 /* RCTImageShadowView.m */, + 5CE3DF498DAECCDBB770650734DEA869 /* RCTImageStoreManager.mm */, + C56C1693BDC084EDD80C7D26ADD67C9E /* RCTImageUtils.m */, + D16CF1F5F589134A5AD03CAAF6FF4E3A /* RCTImageView.mm */, + 10BC9BB79CE745F5F7AA23B9ACEDFC2A /* RCTImageViewManager.mm */, + 786509F4FA686BA87CF7D9D1756FE1E3 /* RCTLocalAssetImageLoader.mm */, + 7A7AD95B78F3A4DF14DA2B010AF9E31F /* RCTResizeMode.m */, + 87BC5392A15D33DF52E1EA10F18A8449 /* RCTUIImageViewAnimated.m */, + 9C7BED83817A7DCA4244F0B0096A6873 /* Pod */, + 808B97661809063B9FBF83711979460C /* Support Files */, + ); + name = "React-RCTImage"; + path = "../../node_modules/react-native/Libraries/Image"; + sourceTree = ""; + }; + 1AEFF8718A96DF986DA163FF3C3FA634 /* RCTImageHeaders */ = { + isa = PBXGroup; + children = ( + 26F32BCDDA6E518EC2F330306560C1D7 /* RCTAnimatedImage.h */, + 1B4B04C675AD000807C98844D4BCB30A /* RCTGIFImageDecoder.h */, + 06FB3CE26855FB694C1788270CD863E2 /* RCTImageBlurUtils.h */, + E707EF4A9F0B2CF92BFFC42E09E49239 /* RCTImageCache.h */, + 5C4190CC70591447D20794606785FDE8 /* RCTImageDataDecoder.h */, + DEB1C53ABC82E6C91B3D561E55026863 /* RCTImageEditingManager.h */, + 595D8F4E3C8DC70C61DEEE557893DE27 /* RCTImageLoader.h */, + A38031CF428F811D52F5E8700628EF3E /* RCTImageLoaderProtocol.h */, + A59E89BC17764FD67238AFCB3714E538 /* RCTImageLoaderWithAttributionProtocol.h */, + 513CCD42219FDB82C128464C0AD3C6CF /* RCTImagePlugins.h */, + CE6120ADA01F94B73B9EC7AB04DE0BE4 /* RCTImageShadowView.h */, + 4294ADC52CAD14B81DE5D364BF4332DB /* RCTImageStoreManager.h */, + 6648E271EB48C91A24CD30B895D7B530 /* RCTImageURLLoader.h */, + 07AA1343D184912CDFB622E045546DFF /* RCTImageURLLoaderWithAttribution.h */, + 5BC8D48210994F43DAE85577F073A325 /* RCTImageUtils.h */, + A090CF9C0A7BD1841F9ABBB8AEBDA75F /* RCTImageView.h */, + E24952E40FC2451E5EF180170FA299D5 /* RCTImageViewManager.h */, + 131CD649B2B7FE421F563A3FE5F15B97 /* RCTLocalAssetImageLoader.h */, + B6758DD46ADA704C20414E9814387441 /* RCTResizeMode.h */, + 0AEBB74E46017DCAE9ED28A67AE68D17 /* RCTUIImageViewAnimated.h */, + ); + name = RCTImageHeaders; + sourceTree = ""; + }; + 1B33BBDE85A572343E7D60B37DEBA6B5 /* Support Files */ = { + isa = PBXGroup; + children = ( + 63738A7284C8997966EA3B6F6B1C94BE /* ReactNativeKeyboardTrackingView.xcconfig */, + 9CBDA1D4944626DCD719D472BAD21DAD /* ReactNativeKeyboardTrackingView-dummy.m */, + DB3FACCE62965BA349C71B1CE35C403A /* ReactNativeKeyboardTrackingView-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; + path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardTrackingView"; sourceTree = ""; }; - 1C001F2B97F765B4CE3A01381A8A5F08 /* UMTaskManagerInterface */ = { + 1B3879BDE51988479417A1B4943A6069 /* storage */ = { isa = PBXGroup; children = ( - E08CEB019AE9D1F64B99BF43B1421CE7 /* UMTaskConsumerInterface.h */, - 79BC87C3410FF8B3408B0216427248B7 /* UMTaskInterface.h */, - FFD38E86AFE44CB2D996B795AE7BD68D /* UMTaskLaunchReason.h */, - 62426F2578B3BAEE251AC7AA1B398F54 /* UMTaskManagerInterface.h */, - 3C679D75081C23DDE01FB23A6A0C1EF2 /* UMTaskServiceInterface.h */, - A9CA67E11989C757AD673CCCFC327205 /* Pod */, - D0700DB88A4168F1A45B5C4B8D008CA7 /* Support Files */, + C229DD1D2670A9D83AB53E37B472BE4C /* RNFirebaseStorage.h */, + F0F0CA4750B2846C91E0E6F8CC2F958B /* RNFirebaseStorage.m */, ); - name = UMTaskManagerInterface; - path = "../../node_modules/unimodules-task-manager-interface/ios"; + name = storage; + path = RNFirebase/storage; sourceTree = ""; }; - 1C257D09DEDEF6CFEDF8E09482C7EFFC /* Support Files */ = { + 1B726160768B9D92E1F2C13CF497AE30 /* Pod */ = { isa = PBXGroup; children = ( - 97202E31DFB9D2A4A85FE4E09EDF51E0 /* RNFirebase.xcconfig */, - A314309FA2DFA9D8A7995B90C1DD59F8 /* RNFirebase-dummy.m */, - 9A1CEDAE70739A6A092AA8160D68D06B /* RNFirebase-prefix.pch */, + 72F06AEF19767243AF081CAA23DC7E00 /* UMImageLoaderInterface.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFirebase"; + name = Pod; sourceTree = ""; }; 1C288610EF2F997BEF7BE0F98A6B8320 /* PromisesObjC */ = { @@ -10998,85 +11005,70 @@ path = PromisesObjC; sourceTree = ""; }; - 1CEA22AA5F6E160328B61CE2889325AD /* config */ = { + 1DD0B2EAFF2752623CB47676CBA5E973 /* Pod */ = { isa = PBXGroup; children = ( - 326BE608109CD737AE71E4DCBAD13050 /* RNFirebaseRemoteConfig.h */, - A3E8E1BCDFF6FAE4E66CDC2970F384AD /* RNFirebaseRemoteConfig.m */, - ); - name = config; - path = RNFirebase/config; - sourceTree = ""; - }; - 1D46DED0E8195A3F959A1951C4FD18DC /* Support Files */ = { - isa = PBXGroup; - children = ( - 480DF966BAF372D6D54BEF2B856081DD /* react-native-safe-area-context.xcconfig */, - 5687C0F3CD1FE7DCF6A6AFFBABEF0297 /* react-native-safe-area-context-dummy.m */, - 3612C556FEA262A16DD0238ABF81BB74 /* react-native-safe-area-context-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-safe-area-context"; - sourceTree = ""; - }; - 1D4A68B2F734EBD28D1AA86FAFE5F4DA /* Text */ = { - isa = PBXGroup; - children = ( - 31A62F7D36A317FBB5A8A4E1AD72E2E0 /* NSTextStorage+FontScaling.m */, - 8AD88D369AE5FCBBDAEA3A65A1242340 /* RCTTextShadowView.m */, - 10FA882BE2A1CC62A084B0FDC31D5E2D /* RCTTextView.m */, - 1CD1B6E707FCE3DA0964C73557A3F74D /* RCTTextViewManager.m */, - ); - name = Text; - path = Text; - sourceTree = ""; - }; - 1E98D589CDB02DE6E666D432678EBB7A /* UMViewManagerAdapter */ = { - isa = PBXGroup; - children = ( - 988B83D5C4E72194AE3C172467333A1C /* UMViewManagerAdapter.h */, - 0598A05C3FA7953C8D0C113CD4A573D3 /* UMViewManagerAdapter.m */, - ); - name = UMViewManagerAdapter; - path = UMReactNativeAdapter/UMViewManagerAdapter; - sourceTree = ""; - }; - 202924F7B29DB95F465DBDB64E8185F1 /* Pod */ = { - isa = PBXGroup; - children = ( - E9C827B15B24319EC4FD840BA889AAF0 /* EXKeepAwake.podspec */, + 30BAC8AC4EF89E119C4D7156A861883C /* UMAppLoader.podspec */, ); name = Pod; sourceTree = ""; }; - 20BCFC336B602B0CEF85417D45EFAB55 /* Support Files */ = { + 1E48829C241F58F37038166B20133A2D /* Pod */ = { isa = PBXGroup; children = ( - 39B28B1988D29E1DF313B43FBF1F2507 /* react-native-document-picker.xcconfig */, - 303A73CBD94A4706CCCD402D519ED20D /* react-native-document-picker-dummy.m */, - FCFDC9373B4BCEB0CD9BE9370793CD7E /* react-native-document-picker-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-document-picker"; - sourceTree = ""; - }; - 2131A048264C4E95AEA0095DC9F75323 /* Pod */ = { - isa = PBXGroup; - children = ( - 12AF2C6E03DDD77B4BDF11B77EB63479 /* EXLocalAuthentication.podspec */, + 44B9D8C69D69194F6D4A1FD5B0FF9ACE /* React-RCTBlob.podspec */, ); name = Pod; sourceTree = ""; }; - 218CE2D1583E39C60B06BE0E321FFF7B /* UMConstantsInterface */ = { + 1F9759B38C8F969AD772CB8F85AC4271 /* KSCrash */ = { isa = PBXGroup; children = ( - 438CFAEA08738C77DEFA64FF6895AF1A /* UMConstantsInterface.h */, - 73AEBD3E727FD9F034B2BE3A2C49B256 /* Pod */, - 5F4724DA493B391ADB356DB755460DE6 /* Support Files */, + 68B28725610D0DD6C112641D47D2E566 /* Recording */, + 41CE3199D539E6A65D353C0231418F1C /* Reporting */, ); - name = UMConstantsInterface; - path = "../../node_modules/unimodules-constants-interface/ios"; + name = KSCrash; + path = KSCrash; + sourceTree = ""; + }; + 1F9EA41B88E4043A93C3C7FFA882F505 /* Support Files */ = { + isa = PBXGroup; + children = ( + 90C9BF5355CE3D22296D117057869FA9 /* RNGestureHandler.xcconfig */, + C4F1DF0D45EFB894C49030EFCEC3E5C1 /* RNGestureHandler-dummy.m */, + 896C4FB5CBD85DE33F5DCC0E34C9FC89 /* RNGestureHandler-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNGestureHandler"; + sourceTree = ""; + }; + 1FCC6901162177014F3E1488CF628E09 /* UIUtils */ = { + isa = PBXGroup; + children = ( + 643C99E95EE10C5CE0A53CA23B7D7076 /* RCTUIUtils.h */, + 025E645C19027FF11B2AD002927427AD /* RCTUIUtils.m */, + ); + name = UIUtils; + path = React/UIUtils; + sourceTree = ""; + }; + 215579E01CA51AC2DB90459D02EF36CC /* Singleline */ = { + isa = PBXGroup; + children = ( + CDC6EBF6C7FAA54E8C3C87677CF4A20B /* RCTSinglelineTextInputView.m */, + F7AE66658B6D58193498536A962DE0A1 /* RCTSinglelineTextInputViewManager.m */, + 2444EE42E0284DE98A0E99D5624D1937 /* RCTUITextField.m */, + ); + name = Singleline; + path = Singleline; + sourceTree = ""; + }; + 21A37FD95C0465FF9F99F759118EABC0 /* Pod */ = { + isa = PBXGroup; + children = ( + B7A1BE671777394FB2197CB0F8D38DDF /* FBLazyVector.podspec */, + ); + name = Pod; sourceTree = ""; }; 220E8AFE711CCC2F2A01FE53AAB60789 /* FlipperKit */ = { @@ -11100,99 +11092,63 @@ path = FlipperKit; sourceTree = ""; }; - 22B7E52AB19E732A7BEA4999F064D9F6 /* react-native-background-timer */ = { + 224E968E09E112B6026EDF9E9E6A13CE /* Pod */ = { isa = PBXGroup; children = ( - 9CE4E74BB784F95503D0BC24576FA113 /* RNBackgroundTimer.h */, - A6FB26E8B106BDA09D54A8ADC23EC6B8 /* RNBackgroundTimer.m */, - 42660FE87E4E9D14DDF711C4EB9F1537 /* Pod */, - E0B29F138497CE9D51938111CE725064 /* Support Files */, - ); - name = "react-native-background-timer"; - path = "../../node_modules/react-native-background-timer"; - sourceTree = ""; - }; - 23857B390EB84E5E4EC36AC3BB556AA7 /* Support Files */ = { - isa = PBXGroup; - children = ( - BD56167A610A2BAE73BE6C8C6502DB56 /* React-RCTBlob.xcconfig */, - 1F50D85D2ABB1A17E0A43941DF96862A /* React-RCTBlob-dummy.m */, - 86B07A1B0238522BD0E8D77766F78D5A /* React-RCTBlob-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; - sourceTree = ""; - }; - 23E36F00A28B7EF5E645D4C398726B77 /* RemoteNotification */ = { - isa = PBXGroup; - children = ( - 236B99ED08B344D430D50229C19689A9 /* EXRemoteNotificationPermissionRequester.h */, - 4A98CFD13FCCF4E8B8421BD34D9821CB /* EXRemoteNotificationPermissionRequester.m */, - ); - name = RemoteNotification; - path = RemoteNotification; - sourceTree = ""; - }; - 24395B421E59A42359E14DFF38B3F880 /* Pod */ = { - isa = PBXGroup; - children = ( - 8034F6B895325E52AD211E870AF7344D /* LICENSE */, - 4E5EAA0F6A9E84FE2CAB239CDEE12A30 /* README.md */, - 7904B9501586BA2896F3C1BC3E1B2E44 /* rn-fetch-blob.podspec */, + 01C8D2F0DA3AC1453C4A4E1AAEBEDAF0 /* README.md */, + 6E484E6752AFB0619F0ED1AD505354CF /* RNRootView.podspec */, ); name = Pod; sourceTree = ""; }; - 254F84ED54CCC1FA871E58EA5DDE9D0B /* Support Files */ = { + 22B8878C03FF0E845D30531EF34198D9 /* React-jsiexecutor */ = { isa = PBXGroup; children = ( - A05AE19536392AABB7ABBE60ACC487A2 /* FBLazyVector.xcconfig */, + 0339FF0394421A78EC4E62FACD4BBDEB /* JSIExecutor.cpp */, + 85D7EA372D091B41050D682B16FBD362 /* JSIExecutor.h */, + 449186A1FD562F7DCB008783E13C8BCE /* JSINativeModules.cpp */, + 7BFD2EF897B8C56DCB198B1BAB5FC9E7 /* JSINativeModules.h */, + 67C1609F0508825F322811C96A4007A8 /* Pod */, + 4F576D1987C11155DAA506741CBC77DB /* Support Files */, + ); + name = "React-jsiexecutor"; + path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; + sourceTree = ""; + }; + 23C007FAAC3BF44C6DCDF0FA37F53CBF /* Support Files */ = { + isa = PBXGroup; + children = ( + 4170EA930CC1710E8CD10295F5027F00 /* rn-extensions-share.xcconfig */, + DA85E657E1A04BF36A3D6719725246AA /* rn-extensions-share-dummy.m */, + 904A4896430B13B9E0ED745E2F64C6AC /* rn-extensions-share-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; + path = "../../ios/Pods/Target Support Files/rn-extensions-share"; sourceTree = ""; }; - 2550900BCFD90092E44EBD8775DB3E15 /* ReactNativeART */ = { + 247B1300D13C1611C7F59AB97414AD50 /* EXConstants */ = { isa = PBXGroup; children = ( - DC72F08E9E9C745BBD906C0AD75D11AF /* ARTCGFloatArray.h */, - 510EE4B52831547FE4C81D061693AC7B /* ARTContainer.h */, - 9A4FA7696475A97587BC6C360739DD59 /* ARTGroup.h */, - 0A915925BDD8213CB949A2B270F41493 /* ARTGroup.m */, - 04079F3F915E2504AFB4073E09E67CBB /* ARTNode.h */, - C1528A95D502CDF7F46BB86FB8692CFB /* ARTNode.m */, - 118935DB48F3E9A3C3F88BA28BFD212F /* ARTRenderable.h */, - 817834EBD7CC1B69068254D93D17F76F /* ARTRenderable.m */, - 7291A11E4E697A55C450DCC63CB30A4E /* ARTShadow.h */, - 4FABC4583A03AFF3425D5AB3E2858898 /* ARTShape.h */, - 6E79585604F8EEF8602D5D08CC2F22ED /* ARTShape.m */, - 218C7D7C9A58A2F00A43E0A813EE7FDE /* ARTSurfaceView.h */, - F6DA3EF2777ECA866ABCDF65F4968613 /* ARTSurfaceView.m */, - 73C15243C53B413C4D535D02B154D994 /* ARTText.h */, - 73FE11771844837CD61CD8216DE2E1C7 /* ARTText.m */, - A321BC88D535F1BAF7B345609D9EDB70 /* ARTTextFrame.h */, - 6EAC3A1E336464E750674F250E41896A /* RCTConvert+ART.h */, - 758017C7185FB18C013423C4A04248AD /* RCTConvert+ART.m */, - 1AB0EDACC4281D8EEE4A3F03317F3199 /* Brushes */, - 81BBB5FA0054553CF9CF7DD9BA8408E4 /* Pod */, - BA571E7045BD4EE7C105A3ED77CCB2A4 /* Support Files */, - 181969EF5DE84B187A9126253E27F48C /* ViewManagers */, + 05E0A0D2314B170BE1F42E0C84F1599A /* EXConstants.h */, + 1642B5970EA2D1E7F8CA2E2121764DEB /* EXConstants.m */, + 5B7F0E33C1B2FD4761AFBF32AF3615FB /* EXConstantsService.h */, + C44725A1EC6B0D7042E990E8FFAD2EBC /* EXConstantsService.m */, + 62DD65BDAD21786832F1665CF4036965 /* Pod */, + 0CC265D5D87E747A8FC6AEACB14A603A /* Support Files */, ); - name = ReactNativeART; - path = "../../node_modules/@react-native-community/art"; + name = EXConstants; + path = "../../node_modules/expo-constants/ios"; sourceTree = ""; }; - 25CD5256C1B8015E47259AB469EA989E /* RNCAsyncStorage */ = { + 25CB0469783D4D915BD07DD663977BF4 /* Support Files */ = { isa = PBXGroup; children = ( - 3801A9AA76CFB87F753B9C9CDC97CC0A /* RNCAsyncStorage.h */, - C76F717D6AB5581F9DF8FEC3A698DF88 /* RNCAsyncStorage.m */, - 74238653779A6C8999BE09AA6E793150 /* RNCAsyncStorageDelegate.h */, - 0B5C6FBC7AE922F6158C3CB2A5B1A524 /* Pod */, - 88C10EC360D644E776A435D5FE61AC36 /* Support Files */, + 050293ECCB39238309F20D196347F57D /* React-RCTText.xcconfig */, + 94B1495E7AC6173D77EE9923CB0C47DD /* React-RCTText-dummy.m */, + 65452C3A8D28695AB45DB372121151EA /* React-RCTText-prefix.pch */, ); - name = RNCAsyncStorage; - path = "../../node_modules/@react-native-community/async-storage"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTText"; sourceTree = ""; }; 25F537B91CC2261AB7550F2D39AB6DFD /* FlipperKitUserDefaultsPlugin */ = { @@ -11206,26 +11162,44 @@ name = FlipperKitUserDefaultsPlugin; sourceTree = ""; }; - 25F9D907A8EE3B489D5E31FC30CE84BD /* analytics */ = { + 265D0857017BE95DEAD1E52EAF9FBA28 /* Services */ = { isa = PBXGroup; children = ( - A9A14BC73F7C002FBCFE67B418D37145 /* RNFirebaseAnalytics.h */, - 4B0EA60829F0C9B8CA01FE04CD80A98F /* RNFirebaseAnalytics.m */, + A70BC19B9CE70FBC2F3A251A3BCC2C56 /* UMLogManager.h */, + 1749F6851479091C87395887DCD61E51 /* UMLogManager.m */, ); - name = analytics; - path = RNFirebase/analytics; + name = Services; + path = UMCore/Services; sourceTree = ""; }; - 277329F544D890D00A4AA1CBFCE93F73 /* UMFaceDetectorInterface */ = { + 266C53CD9F82282A7CAB70AECF3D67A7 /* callinvoker */ = { isa = PBXGroup; children = ( - B024D3A8606822EAD98FDEC3D7972849 /* UMFaceDetectorManager.h */, - 25A0097282A0AF586E0783D1A26002DE /* UMFaceDetectorManagerProvider.h */, - E9EAC3DDFAB1D4C1175CE6027CD54248 /* Pod */, - 2CD48E0D8E17FF8FF5067445CCC5E98E /* Support Files */, + 156000D09829F9412CE412849106C412 /* BridgeJSCallInvoker.cpp */, + 30D01623D5B2069095D4078A25ADB625 /* BridgeJSCallInvoker.h */, + 4921921C7C64404DD7FF84797378B2BD /* CallInvoker.h */, + E2DDA6DC942834BBBE14643AF830A50A /* MessageQueueThreadCallInvoker.cpp */, + 6F5705092A7E5EC01EFB09386E8FAEEF /* MessageQueueThreadCallInvoker.h */, ); - name = UMFaceDetectorInterface; - path = "../../node_modules/unimodules-face-detector-interface/ios"; + name = callinvoker; + sourceTree = ""; + }; + 26CB6B03B1B6A74D7E8525B3C972F701 /* Source */ = { + isa = PBXGroup; + children = ( + 1F9759B38C8F969AD772CB8F85AC4271 /* KSCrash */, + ); + name = Source; + path = Source; + sourceTree = ""; + }; + 27CBE4131BDDBD724884CD5D33B3A062 /* Pod */ = { + isa = PBXGroup; + children = ( + 5B64365F2CE08876FF36A80AA1783DA8 /* KeyCommands.podspec */, + BE479547392B4094703EFDBC6509C671 /* README.md */, + ); + name = Pod; sourceTree = ""; }; 280CE93A920EB70C7634F8D7DFCC87C6 /* Support Files */ = { @@ -11237,10 +11211,33 @@ path = "../Target Support Files/FirebaseCoreDiagnosticsInterop"; sourceTree = ""; }; - 2889EEBBD5FF473E8A2D971F257F8716 /* Pod */ = { + 28A73EF51796778EE8EAC3A975651DFC /* Resources */ = { isa = PBXGroup; children = ( - 13CDFAA4F38795DA76021D68522D7B2C /* React-Core.podspec */, + A0FEBA98F4D9A822A665C76B34936BF8 /* AntDesign.ttf */, + 696068ADA8823D325D81CEAB7E79445A /* Entypo.ttf */, + 49AC4F1EDFD471A0178ED2F38D110BE8 /* EvilIcons.ttf */, + 5963C665BE241CBBFBF347C93599A890 /* Feather.ttf */, + BA4660B8FF0C9BCA3CE3504D7C65E022 /* FontAwesome.ttf */, + 693FF7F5A48A54001372327577F4738F /* FontAwesome5_Brands.ttf */, + 89AC205EF8525776E545D30976209280 /* FontAwesome5_Regular.ttf */, + 524F9C9E4189025DCA5E843BA359C667 /* FontAwesome5_Solid.ttf */, + 62846AD2796D14779D9E039E090C56FF /* Fontisto.ttf */, + B0C3213F266EE3934FC3A0D35E47A08D /* Foundation.ttf */, + BF02A4360C993EA209F4841480D7BFCC /* Ionicons.ttf */, + 3C8355C5A727F67C1B3CC117903FECB9 /* MaterialCommunityIcons.ttf */, + 0E42CC7555AD8E8F6B67AFD7B4427870 /* MaterialIcons.ttf */, + 6029FFF1B1A0E895DC80EC2F2BD7646E /* Octicons.ttf */, + 0FBF585EBA9B386402A60BD79F70A534 /* SimpleLineIcons.ttf */, + 4997FC565EB64A458E9459418736C6B6 /* Zocial.ttf */, + ); + name = Resources; + sourceTree = ""; + }; + 28CEE3B53434016CBAFAF3FFE7C7B5B2 /* Pod */ = { + isa = PBXGroup; + children = ( + 81F5C2EF37CF8CEA19EE31033EF82125 /* UMPermissionsInterface.podspec */, ); name = Pod; sourceTree = ""; @@ -11253,92 +11250,53 @@ name = Frameworks; sourceTree = ""; }; - 2B4DA6F56CC005F69162519E6C796117 /* Tools */ = { + 2B82DD34B6F225D7C08445875360AB61 /* Pod */ = { isa = PBXGroup; children = ( - 0A81DE66523DA03FDE7B454B003A23AA /* BSG_KSArchSpecific.h */, - D85F93BA0C1F91F82E872303AC967FE5 /* BSG_KSBacktrace.c */, - 864BE71E829E73221991F5BC988DC085 /* BSG_KSBacktrace.h */, - 804B80B024847B85E875989E81FC8A68 /* BSG_KSBacktrace_Private.h */, - E11917D25C233EF2C370315C25703C6E /* BSG_KSCrashCallCompletion.h */, - 7B146B293C998566D39D24B2C5EE51B8 /* BSG_KSCrashCallCompletion.m */, - 75B6E19A8A683EC329483F9DC5E3D866 /* BSG_KSDynamicLinker.c */, - 623F626684B21E4B298778247C3A3CFF /* BSG_KSDynamicLinker.h */, - 2513D6F36A8FA8C9B73B64041F2EDEF2 /* BSG_KSFileUtils.c */, - 5B4693B820DF65291800F0BB5201F2BC /* BSG_KSFileUtils.h */, - 23F74F87AF59856E46547C2881B0AFAE /* BSG_KSJSONCodec.c */, - 754E1308A17DB39BF6A2E15E689FE2A9 /* BSG_KSJSONCodec.h */, - 4BA7DBE6DCBED7C232ED5E202CAEEBA3 /* BSG_KSJSONCodecObjC.h */, - E0B16B296EEC12B40F25184707097A87 /* BSG_KSJSONCodecObjC.m */, - 4007700B7984997C895AECD0BA11FE55 /* BSG_KSLogger.h */, - 169F6049694732668A84DF1F0D4614FD /* BSG_KSLogger.m */, - 2D27EF6E62BF2AFA0B42B92939546604 /* BSG_KSMach.c */, - 98227A55A726EDD844059C5D468D934D /* BSG_KSMach.h */, - 83CC034CE44E984FDE544845227AA356 /* BSG_KSMach_Arm.c */, - D8B25E315BDB9C305A6177EE534CEB89 /* BSG_KSMach_Arm64.c */, - 857582D8A41ACD94446254C89ED2C945 /* BSG_KSMach_x86_32.c */, - 55236396A55D0926763EE84C72EDDC25 /* BSG_KSMach_x86_64.c */, - 6BC541DD4BFA297EDE39AE9BA74B11E0 /* BSG_KSMachApple.h */, - 6B9AEDDB5F8023CE81EFE66995CDB9D8 /* BSG_KSObjC.c */, - D68D93423326ADB4888DD7891E8170ED /* BSG_KSObjC.h */, - 671AD54C7E97609168CD5CC4DB6E2C3F /* BSG_KSObjCApple.h */, - AE294F557701166FCB35B4D09E55C838 /* BSG_KSSignalInfo.c */, - 56015852126C5BEE74215276534C3B92 /* BSG_KSSignalInfo.h */, - 2F6373F563279B12A436A58BEB650040 /* BSG_KSSingleton.h */, - 47B3E4F71019572CC50AE7FCEDFCA646 /* BSG_KSString.c */, - 6A786B071574EAEE6EDDAC6A7FCDE73E /* BSG_KSString.h */, - 41B3140B228FFA637D56327E92ADC4D3 /* BSG_KSSysCtl.c */, - CB64A782AAA28CAD578D9FBA2E4463F5 /* BSG_KSSysCtl.h */, - 6BEB1E302CD049A23057EEA618813119 /* BSG_RFC3339DateTool.h */, - BAFD0ECB19C5ABDD6DCF5CEC5348BA25 /* BSG_RFC3339DateTool.m */, - 38D99895242A709511883F21E9571FDB /* NSError+BSG_SimpleConstructor.h */, - C1958EEDA679949596D34264F875312C /* NSError+BSG_SimpleConstructor.m */, + 77CA1053BDB2B72809CA94CC2AD8CC5F /* LICENSE */, + 066BB0768735A88992CD059E35B6F38F /* react-native-jitsi-meet.podspec */, + 8A1DBB81EFCFB6432AC159B9FB62D2FF /* README.md */, ); - name = Tools; - path = Tools; + name = Pod; sourceTree = ""; }; - 2B6216FC326AC3EDBE78420891126E9B /* Services */ = { + 2BCD39FFC62C1C72493B04CB4BE77F10 /* database */ = { isa = PBXGroup; children = ( - 56D4EACA530A4C0E33C8B1F52968893B /* UMReactFontManager.h */, - 691B872DB95DC8ACABB816163EE7BF2B /* UMReactFontManager.m */, - 4DA8FFD63A11DE004038642C959A1AFE /* UMReactLogHandler.h */, - B16A11EFE75C65900856BB3DF8EB7C00 /* UMReactLogHandler.m */, - 6D6F465A07E7B71C8BD64BFBB39709B4 /* UMReactNativeAdapter.h */, - 878F95DD6D824A4B657EFC0C29CEBE6C /* UMReactNativeAdapter.m */, - ACE4701B05DA5126866FE17304CBD0C4 /* UMReactNativeEventEmitter.h */, - BF920D45EDD10AC6F145314BCCFA1F82 /* UMReactNativeEventEmitter.m */, + 9A07EB1BB471CCBD3DDB3373E225CFD6 /* RNFirebaseDatabase.h */, + FE96DC8BB3D1E56398BB5DC38C611909 /* RNFirebaseDatabase.m */, + 0B3D37D4AD8CFFB551561CAB8EFED1F7 /* RNFirebaseDatabaseReference.h */, + A1C749454E7A224BF2E84D8812788E93 /* RNFirebaseDatabaseReference.m */, ); - name = Services; - path = UMReactNativeAdapter/Services; + name = database; + path = RNFirebase/database; sourceTree = ""; }; - 2C8B1CAABC0A5EF64907EA7D906DFC36 /* core */ = { + 2BFCCD8FB1F341ABE2FDBB306D0E837E /* Pod */ = { isa = PBXGroup; children = ( - D13841282F071474EE044B063C61089F /* LongLivedObject.cpp */, - 292F4C7DB5ADBD377DBECB33A5F61BA3 /* LongLivedObject.h */, - 5A6DCD5044E6054D97DE4D6D9F91953F /* TurboCxxModule.cpp */, - 59A449755E5623E3F3A658CE870D8B15 /* TurboCxxModule.h */, - 0DEF98D45877DF4D904216235211640E /* TurboModule.cpp */, - 5EC491942FBCB9E18C4D191EFA0AC2D7 /* TurboModule.h */, - 1A4DE5073E11257819EBE2DCB1A0DAA0 /* TurboModuleBinding.cpp */, - 49A7C2C40FE569C64E713C2B9744B650 /* TurboModuleBinding.h */, - 5E34EF295CCEA2DC2DEA03740A6B6895 /* TurboModuleUtils.cpp */, - 8990CA564DA7E586F347724564AF1F7F /* TurboModuleUtils.h */, - F2C56EF63B80DB12D27DBCE82EE8F424 /* platform */, + 4BD12A4E0E9E120671E3595F05564CB8 /* FBReactNativeSpec.podspec */, ); - name = core; + name = Pod; sourceTree = ""; }; - 2CD48E0D8E17FF8FF5067445CCC5E98E /* Support Files */ = { + 2D08631F78712C1B13DFC454C6A721A9 /* EXAppleAuthentication */ = { isa = PBXGroup; children = ( - 2AC48C614EF608D8A8ECADA5403E7886 /* UMFaceDetectorInterface.xcconfig */, + 9882D646B43B77E05AD92A8392005D1F /* EXAppleAuthentication.h */, + 40DD3FADDC87FB94BC8C59709E9960A3 /* EXAppleAuthentication.m */, + 906EAEFB0C5A8EE1E65224A170387B98 /* EXAppleAuthenticationButton.h */, + 43E4F1558AC479BE196BDD1CFC6902BA /* EXAppleAuthenticationButton.m */, + 8F4AF770831C42771BFF441F32A06190 /* EXAppleAuthenticationButtonViewManagers.m */, + 8531146500933BC6E506E180A61DEEB1 /* EXAppleAuthenticationMappings.h */, + 62381861DE4FD973F0A21B9ACADB2F15 /* EXAppleAuthenticationMappings.m */, + 4CD8D621D244624D31D23B1C91014A93 /* EXAppleAuthenticationRequest.h */, + 4831228447E518D4B8D8BFB7333FFE97 /* EXAppleAuthenticationRequest.m */, + C67A0E6AAA8F1033C8EA52378A6606BC /* Pod */, + B9314F7A099277D1AC5E63B641B433C5 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; + name = EXAppleAuthentication; + path = "../../node_modules/expo-apple-authentication/ios"; sourceTree = ""; }; 2D0BC511DE014646C3246B137502B404 /* Support Files */ = { @@ -11352,24 +11310,6 @@ path = "../Target Support Files/Flipper-PeerTalk"; sourceTree = ""; }; - 2D8DFDD74CEBA992B7168D40CEB37808 /* Pod */ = { - isa = PBXGroup; - children = ( - 49C4A60375BDEBF6F42DF10F23547C50 /* EXImageLoader.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 2E1F1C8D15A750696AC808C9D24392DB /* VirtualText */ = { - isa = PBXGroup; - children = ( - EBE3DF045B2BFF4F9EE0CE7EFBACB13E /* RCTVirtualTextShadowView.m */, - FB63269530E988E3B070B317F950B1FF /* RCTVirtualTextViewManager.m */, - ); - name = VirtualText; - path = VirtualText; - sourceTree = ""; - }; 2E476DD1009CDFC78D61CD10021DF883 /* OpenSSL-Universal */ = { isa = PBXGroup; children = ( @@ -11380,75 +11320,61 @@ path = "OpenSSL-Universal"; sourceTree = ""; }; - 2EE1EAFC0A1B50D9B752A8254E1DD276 /* turbomodule */ = { + 2E85BCF9B180B4C7DE7F28C05D0685C1 /* Support Files */ = { isa = PBXGroup; children = ( - 2C8B1CAABC0A5EF64907EA7D906DFC36 /* core */, + CD89CF5BA6AB187F237B8A20B4CFA470 /* UMAppLoader.xcconfig */, + ACBC6B28CBAE195DCE491C2C0BF291BA /* UMAppLoader-dummy.m */, + AA59683EAE2D4F30A185132700EC4A23 /* UMAppLoader-prefix.pch */, ); - name = turbomodule; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMAppLoader"; sourceTree = ""; }; - 2FEBB938345F2EC1D79077E6533D1B9E /* RNLocalize */ = { + 2F0F7BB0491A7C6EB25A3ACC13673717 /* EXWebBrowser */ = { isa = PBXGroup; children = ( - 3E2CAD787B7E9C2C2142BACFB04C3355 /* RNLocalize.h */, - 1C65A9DA1E65CC708117D99AAB7D0C4F /* RNLocalize.m */, - D54CAABD300090385C0741A7E7881A7D /* Pod */, - CD392ABDD68E7F320E53F230ABC49D45 /* Support Files */, + CFC9523B63CD897F2AB2DCE4C52B265E /* EXWebBrowser.h */, + 8B5B25E03A4B03627DAF31A4398E5009 /* EXWebBrowser.m */, + 47E7742150B55ECE42CAB139243FEBD4 /* Pod */, + 0BDA0E5DAE60284E397056711DB96C3D /* Support Files */, ); - name = RNLocalize; - path = "../../node_modules/react-native-localize"; + name = EXWebBrowser; + path = "../../node_modules/expo-web-browser/ios"; sourceTree = ""; }; - 305BFAE0A35B9564F2460EF5957315D1 /* Pod */ = { + 302FEAE76257008346957632C0FCCEA6 /* SurfaceHostingView */ = { isa = PBXGroup; children = ( - 73D273219A3783A3C38DF3D5FC37D684 /* LICENSE */, - 7E92A008EB759EBCB9FEAA6F7838ABD1 /* react-native-safe-area-context.podspec */, - DE8D7E28331419444025B830F64B1548 /* README.md */, + 564DEFDF58ED06E037C757714E253443 /* RCTSurfaceHostingProxyRootView.h */, + 6AAC0C247FEA5320D92290C2AA6F16A1 /* RCTSurfaceHostingProxyRootView.mm */, + 75D557C23935A8E80A7188A1DCF5E3BE /* RCTSurfaceHostingView.h */, + 86BCF8918FA45AE14CB04B6ADA4D6627 /* RCTSurfaceHostingView.mm */, + 5203E8481C68C7F88B05A6095736E0F2 /* RCTSurfaceSizeMeasureMode.h */, + A66DACA6A2BC66D2AD2A1C50D43D9D59 /* RCTSurfaceSizeMeasureMode.mm */, + ); + name = SurfaceHostingView; + path = SurfaceHostingView; + sourceTree = ""; + }; + 303DC452A2F618FF0F8D530EB8ECC9C2 /* Pod */ = { + isa = PBXGroup; + children = ( + 241396C8A411DEA5271976B765D0DB6B /* LICENSE */, + 6A5315283474BCB6DFD5D91C8B339DD9 /* README.md */, + D66CC6911658BDC0840E34D562559037 /* RNReanimated.podspec */, ); name = Pod; sourceTree = ""; }; - 30808431DB5643CE67649895E48868EF /* VirtualText */ = { + 305431BE074DD17F30563ECC511D40FC /* VirtualText */ = { isa = PBXGroup; children = ( - 78F9004D8744F424F748C9A7EFB1D2AA /* RCTVirtualTextShadowView.h */, - 62073CFA22997381940AF92E40CFDE72 /* RCTVirtualTextViewManager.h */, + 6988A2C472E936589B7F837072850348 /* RCTVirtualTextShadowView.m */, + 3DC83B2F3CD5791A8779CE94324B6B47 /* RCTVirtualTextViewManager.m */, ); name = VirtualText; - path = Libraries/Text/VirtualText; - sourceTree = ""; - }; - 30837435E9258A1A6F71EDF7D8E4FAF8 /* CoreModulesHeaders */ = { - isa = PBXGroup; - children = ( - 8D01F4AD6506AD0945625F47438F57EE /* CoreModulesPlugins.h */, - 3DFD37227366B3C1618056411F6E0B4B /* RCTAccessibilityManager.h */, - 1E3EEB571DA081D93F06C33F0690D2EF /* RCTActionSheetManager.h */, - BB0CC49417FFC7DF376BAC17A7926B3A /* RCTAlertManager.h */, - C206DEDDBA96BCFD776E124C461B2239 /* RCTAppearance.h */, - 0A45B438353CDD3D4B69A51D16A27037 /* RCTAppState.h */, - 98651E01D9A1FDA8C80914C4796A3CD9 /* RCTAsyncLocalStorage.h */, - 966DC2802D4A295E40B4A1D7BDAD580E /* RCTClipboard.h */, - 996D63CD578638730C1A5D64EF6D4645 /* RCTDeviceInfo.h */, - 011FF85ADE51F2C3229D8D1563E1B5D4 /* RCTDevMenu.h */, - A0212D4FA7674BAA2C48990DEFED4059 /* RCTDevSettings.h */, - 580D5C6E95E4C416ED95656E884CA836 /* RCTExceptionsManager.h */, - 21096E683D104D1228A9BADA7F2A7F42 /* RCTFPSGraph.h */, - F1A107DBC13DA48B593EB2CB9CC6EAC5 /* RCTI18nManager.h */, - FE5E7102CC2EAE4463148A18B8E646EF /* RCTKeyboardObserver.h */, - 1B77EF67D215D0CC165090EF68145073 /* RCTLogBox.h */, - 4A6A0169C7C620F5D591A8B275CF72E3 /* RCTPlatform.h */, - 4821A2BC728337B5065B1480185C9D72 /* RCTRedBox.h */, - 691FF0282B7E134729F1A5F8A2A5DBFC /* RCTSourceCode.h */, - E231F1F7210F4CD348D5E9F2D0104EE1 /* RCTStatusBarManager.h */, - D129EE55B0AB5F819C224A05A8ACF06A /* RCTTiming.h */, - B1EFE76640888E1541786E9A667A8B81 /* RCTTVNavigationEventEmitter.h */, - 822B68D5798FAF66B06FDEFA1A122687 /* RCTWebSocketExecutor.h */, - 765866D9CBF9A79B34EA674AD03022CD /* RCTWebSocketModule.h */, - ); - name = CoreModulesHeaders; + path = VirtualText; sourceTree = ""; }; 31516D027AF40B4FB1323F057D75EA9E /* Support Files */ = { @@ -11460,39 +11386,82 @@ path = "../Target Support Files/GoogleAppMeasurement"; sourceTree = ""; }; - 334CD033CC4911E6E661EE8B77E10B00 /* SurfaceHostingView */ = { + 317BE13528C9A8D44F3F0482124D3ABA /* Support Files */ = { isa = PBXGroup; children = ( - D18AA3A97528190531050ED0CD0872DD /* RCTSurfaceHostingProxyRootView.h */, - 9B7577941CB65451A9F414FD6E86A21C /* RCTSurfaceHostingProxyRootView.mm */, - 4074E995EDF098FF2CA2927FCC7D4895 /* RCTSurfaceHostingView.h */, - 5A272D2C380C2A684AD218B6946C09A5 /* RCTSurfaceHostingView.mm */, - 9474CC013D4697CDBD52788FB775552B /* RCTSurfaceSizeMeasureMode.h */, - 6B4163820907085299B148411E69DA1D /* RCTSurfaceSizeMeasureMode.mm */, + 69AE13D23811D322D270415DA06E5638 /* UMCameraInterface.xcconfig */, ); - name = SurfaceHostingView; - path = SurfaceHostingView; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; sourceTree = ""; }; - 33B67F4A2178162239D56F4BE5F2A7ED /* Pod */ = { + 31EEAEF9BB8126F345C6F0940CEBB640 /* CxxModule */ = { isa = PBXGroup; children = ( - B898F32D38B541EDFFEFD3AD54E87200 /* LICENSE */, - 29E4C78CEA536C120FB4E3042AFBC7E0 /* README.md */, - 95C9C61861B277A5292579FA2A307C6F /* RNGestureHandler.podspec */, + B61566486D10B9EFC3DC1FD535454F71 /* DispatchMessageQueueThread.h */, + 6E1C039B9169CD68726A5B2C2A4FE067 /* RCTCxxMethod.h */, + D9279E8DCDD76912B395B18D4F8F102A /* RCTCxxMethod.mm */, + 995AC1B7D0FFC307FBDE42396BEC7495 /* RCTCxxModule.h */, + 92CD58808BEC1B77743DB330D006FE17 /* RCTCxxModule.mm */, + 4A400B04CC4314064FFD73A023EE9C4D /* RCTCxxUtils.h */, + 5A8E5DA5F58F53A59DF787F4DBDA183C /* RCTCxxUtils.mm */, + 8F4541A76FB78D77FA3A964755798242 /* RCTNativeModule.h */, + 0EA2652DADB72FFC3372DC4610D94043 /* RCTNativeModule.mm */, + ); + name = CxxModule; + path = React/CxxModule; + sourceTree = ""; + }; + 31FE5332728AA1413BC004D2B00A9A7F /* Text */ = { + isa = PBXGroup; + children = ( + 16BEFE6A5F51633D8AE6553FDE7F2B38 /* NSTextStorage+FontScaling.h */, + 53BA2EEBDACA3F00B86D18D7ED315D3E /* RCTTextShadowView.h */, + F8103D0961FA2AD9D3D3475D5F5BB421 /* RCTTextView.h */, + 795879AD145A8FC49CE63D2F23335CD9 /* RCTTextViewManager.h */, + ); + name = Text; + path = Libraries/Text/Text; + sourceTree = ""; + }; + 32741838E12ED0B06ACA1CCA9323259F /* Support Files */ = { + isa = PBXGroup; + children = ( + 7B819EFA3A99D5AFE206DDF40E01CCE0 /* FBLazyVector.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; + sourceTree = ""; + }; + 331FB15FFDC76C6F4701C2909CFFE04D /* Pod */ = { + isa = PBXGroup; + children = ( + 2A01A31FE793FB476EBD3590E428F3CA /* React-cxxreact.podspec */, ); name = Pod; sourceTree = ""; }; - 33CD74F5D7AA09117BE35E5819D0966A /* Support Files */ = { + 33E16EF53E0DD3D0E1F253D4EE6F3AA6 /* Support Files */ = { isa = PBXGroup; children = ( - 1CE0E0D6483E6B6D67A06256495BE46E /* EXKeepAwake.xcconfig */, - EA184D451F00520F850B9280736A0C0A /* EXKeepAwake-dummy.m */, - 7284D61D8A640676F2D6EB15027CAF80 /* EXKeepAwake-prefix.pch */, + 6F8655AEBCB33048C58824700009949B /* UMFaceDetectorInterface.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXKeepAwake"; + path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; + sourceTree = ""; + }; + 342D5BA51ADE304F60B4392CA06F18D6 /* UMModuleRegistryAdapter */ = { + isa = PBXGroup; + children = ( + 42361CCA7EE61E9ECF248240D46300FA /* UMModuleRegistryAdapter.h */, + 86CF0BC0CA68A46963CF070AD7302459 /* UMModuleRegistryAdapter.m */, + 9BF31BBF6F96CABF7114F9C5DABEBDCD /* UMModuleRegistryHolderReactModule.h */, + D6F3946CB852E1E2D18BE5EB7F732CB5 /* UMModuleRegistryHolderReactModule.m */, + 15BC50236B6BFC8A12A25EA5714EEE3C /* UMViewManagerAdapterClassesRegistry.h */, + C600E0C9557D33A1A03EDF81C56E1C6D /* UMViewManagerAdapterClassesRegistry.m */, + ); + name = UMModuleRegistryAdapter; + path = UMReactNativeAdapter/UMModuleRegistryAdapter; sourceTree = ""; }; 352C7A61BB6029C6E16D490C4B3D02F7 /* DoubleConversion */ = { @@ -11522,38 +11491,34 @@ path = DoubleConversion; sourceTree = ""; }; - 3549DDAB2955BFDB62C9F2DC09D56A22 /* Support Files */ = { + 36AD6E626C9602E439258E341D6144C9 /* Support Files */ = { isa = PBXGroup; children = ( - C416C41A74FED4CB533D8AD84CA11923 /* EXWebBrowser.xcconfig */, - F56F1329EFE157CF8424509C7B0469F1 /* EXWebBrowser-dummy.m */, - D980AADB05D8875AA1B9F488E44A54E4 /* EXWebBrowser-prefix.pch */, + 27740AED39B856AD14E9D9FEF84F85D7 /* React-RCTAnimation.xcconfig */, + 09E6F1B93BCEDB39360721493C91D27F /* React-RCTAnimation-dummy.m */, + ED5B0B99E28BEFBAA178E44EB85B60FE /* React-RCTAnimation-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; sourceTree = ""; }; - 367006D8A5B1AE1852A738557D2D6FBD /* React-jsiexecutor */ = { + 379B196334DADD48ED925872400F4667 /* RCTVibrationHeaders */ = { isa = PBXGroup; children = ( - B6A3FAF59C0CFB7BD0712CAFEDF02C55 /* JSIExecutor.cpp */, - F64962F0D25E0AA9ABB2F4300E47F623 /* JSIExecutor.h */, - DC78EF6E015F7F1CCDCF3B310B0F2FDE /* JSINativeModules.cpp */, - C6A8B65A67CE8BF70D0C94161CDA35D4 /* JSINativeModules.h */, - 18A90A5935F518F1A2A8D25A1A101A39 /* Pod */, - B2019BA8608178A4AA7D8747C5B800DF /* Support Files */, + A6D61A98BE3838A974047F5F353B5506 /* RCTVibration.h */, + 3FA37BB8D5CE3A4D72821970E36DAD96 /* RCTVibrationPlugins.h */, ); - name = "React-jsiexecutor"; - path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; + name = RCTVibrationHeaders; sourceTree = ""; }; - 36B1FEAAB627597BA59F1C5BBA467E50 /* Source */ = { + 37AC86349167CE22DBCE3ADF2770AE4A /* Pod */ = { isa = PBXGroup; children = ( - 88D6908D56FE0CEE31A0427412C1D5F2 /* KSCrash */, + 0C7E521014162B0C14C9EB7404009500 /* LICENSE */, + 596AE8F30AA47CA16D08FE5E41198F0B /* react-native-orientation-locker.podspec */, + 6DEB40674BC3CEF1213783E57BD533DA /* README.md */, ); - name = Source; - path = Source; + name = Pod; sourceTree = ""; }; 37B11CC49A738188121844B878F751AD /* Support Files */ = { @@ -11566,15 +11531,35 @@ path = "../Target Support Files/FirebaseCore"; sourceTree = ""; }; - 38195C32CD71E1CA0291CD199FECC436 /* Support Files */ = { + 380DBB4F886FD18306B0100941C30DC1 /* React-RCTLinking */ = { isa = PBXGroup; children = ( - EA1DF787EC4E0D5B279B321E210A10F7 /* RNGestureHandler.xcconfig */, - D103B62C40D65B708853EC41BC334FB2 /* RNGestureHandler-dummy.m */, - 2B0D6D5351E9FEE34EC25890E8F1C42A /* RNGestureHandler-prefix.pch */, + CACF2B685B649906EB9892ADAC750941 /* RCTLinkingManager.mm */, + DBA6C305890D75EAECC073B075616CC6 /* RCTLinkingPlugins.mm */, + 6C7AB5E57803928A10DB3B26F2FD287B /* Pod */, + 5EA619D241822FE3E6925F88112922D0 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNGestureHandler"; + name = "React-RCTLinking"; + path = "../../node_modules/react-native/Libraries/LinkingIOS"; + sourceTree = ""; + }; + 3820C957CF703D246758D4F95FEF8CF9 /* TextInput */ = { + isa = PBXGroup; + children = ( + 5D43CF61D8784FE6287055564C6F9EB4 /* RCTBackedTextInputDelegateAdapter.m */, + DE381473802F29281EA11A762D3463A0 /* RCTBaseTextInputShadowView.m */, + 612BBADAE25F5CC04DCF32929D459F74 /* RCTBaseTextInputView.m */, + 501799D18FF728DE0379BD277745DE90 /* RCTBaseTextInputViewManager.m */, + D40BCDA9810F056BB68B0CE6A9A38580 /* RCTInputAccessoryShadowView.m */, + 2DF42191E5D0F0270A08953BE5753EBA /* RCTInputAccessoryView.m */, + 03055D7A42E5E850114489ED90D99F78 /* RCTInputAccessoryViewContent.m */, + 77B9E249C98CA27B5638458542B2F44E /* RCTInputAccessoryViewManager.m */, + 98E83548474CF2527CD74F317FE6A0D3 /* RCTTextSelection.m */, + 5D57A9C7F2C1BF322DDC4D75B2835682 /* Multiline */, + 215579E01CA51AC2DB90459D02EF36CC /* Singleline */, + ); + name = TextInput; + path = TextInput; sourceTree = ""; }; 38380F63B9B4888F311398DEE99F44D8 /* Flipper-Glog */ = { @@ -11598,97 +11583,13 @@ path = "Flipper-Glog"; sourceTree = ""; }; - 38C481393045D08B893C7ECEC2931B8C /* Support Files */ = { + 38553B08D4B44A82ED7318CC5C628633 /* Support Files */ = { isa = PBXGroup; children = ( - 519E60F210A4D0FBF513E0A6BD2CE3B3 /* React-RCTActionSheet.xcconfig */, + 4E535088C379402A8A0165AE84AC64BA /* UMConstantsInterface.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; - sourceTree = ""; - }; - 38C738ABECC4178C40206D15C36CFA71 /* Views */ = { - isa = PBXGroup; - children = ( - 8047AAD4980D8D52D9E71B867281B50F /* RCTActivityIndicatorView.h */, - D274D775B4DD4A1A139EF425C33D2B03 /* RCTActivityIndicatorView.m */, - 6A740AB9E84EE7F160C46FA027866F16 /* RCTActivityIndicatorViewManager.h */, - 9FFDFD5627E8F443A5C394A522D97255 /* RCTActivityIndicatorViewManager.m */, - 7258E8B44BC3D72B157DF7DEC7335C9D /* RCTAnimationType.h */, - 40E7F7110995D0200FB9ADD981B99926 /* RCTAutoInsetsProtocol.h */, - 3B963523997919758D0FAB0A9669A0B6 /* RCTBorderDrawing.h */, - D2B11E8BDA69D119BD7C66CAC7F3DDFD /* RCTBorderDrawing.m */, - FA2280BF1EBC3A71E7E0A58002543F49 /* RCTBorderStyle.h */, - C968B68E93DC69FC68020D26721951A4 /* RCTComponent.h */, - A25B648764C88A992F7997E1061171A1 /* RCTComponentData.h */, - B731DBCD2B080AF81E6B23701B99D9FB /* RCTComponentData.m */, - 578E7FABF78F4B71F81A2530E4D2B393 /* RCTConvert+CoreLocation.h */, - BC9CF095234EAD63B5212461C7F34C3C /* RCTConvert+CoreLocation.m */, - FC2E9188A71752C9529309F0C9D52F3F /* RCTConvert+Transform.h */, - 87B295827CD3B913A62B08E3CD47EFBA /* RCTConvert+Transform.m */, - ED55E50BE639C12549AAC281D82AA3FA /* RCTDatePicker.h */, - E55BE8314FE62C3F798D69B2788D3C70 /* RCTDatePicker.m */, - 7BC8CFA5BFEE5BAD9F3B2BD997723C0A /* RCTDatePickerManager.h */, - 187588AD728FE895C4CE2336639A2FC2 /* RCTDatePickerManager.m */, - 614E957D62CC940EA3B4C5C652DBD96E /* RCTFont.h */, - CF6F06D1D70A1A6CC315B45EFF51E30F /* RCTFont.mm */, - E33C9F3BC242232E4254BB4A190875F4 /* RCTLayout.h */, - 1387D192DEF83A58471C4E31CF164D14 /* RCTLayout.m */, - 38AC229967EB1A3B5161006686531264 /* RCTMaskedView.h */, - CD8B535DC636A2F8344F95F9BF077873 /* RCTMaskedView.m */, - 98B8E95BC68A4DC2A4F499E3C087CAB1 /* RCTMaskedViewManager.h */, - D78507D8D37EB274556A7A81F5448024 /* RCTMaskedViewManager.m */, - FABF410FC5DEAC331E83F4C41574FBE5 /* RCTModalHostView.h */, - 12D479D7F81530DCC5D5BF185A747439 /* RCTModalHostView.m */, - 4354FD53164162840040324844BDCA29 /* RCTModalHostViewController.h */, - 3EE3EB154C4B26EF48C50AFFA8D0F031 /* RCTModalHostViewController.m */, - DA7E1A86E4720B28EFA881ABD8B38DEA /* RCTModalHostViewManager.h */, - 332A8AA4D66AB38E71450D0753AB0B60 /* RCTModalHostViewManager.m */, - 8E11A137B30F437BBAD3C171706E893F /* RCTModalManager.h */, - 5A15E6153EC2B2E49A16449F0C735FEB /* RCTModalManager.m */, - 3BD2EF7F1226651AB2E94E608674EEE3 /* RCTPicker.h */, - 80D238AA7EC7C5899E5E561AA17369C4 /* RCTPicker.m */, - 66A809627B181D7C7F939337DBF8CB8E /* RCTPickerManager.h */, - 4887C61A076F4297E7EC218B52CB90CD /* RCTPickerManager.m */, - D83973C3B4969CD818CB99DE305EB2FA /* RCTPointerEvents.h */, - B10A4839E235754AFB78BA656B501336 /* RCTProgressViewManager.h */, - B61E5C9B6EE01109D7A689CCB834B6C4 /* RCTProgressViewManager.m */, - F77F7871E0D93F4938C41A3CACF11F74 /* RCTRootShadowView.h */, - CC769B15377863F8BF8D0D9BC25A307D /* RCTRootShadowView.m */, - BD8E462DF6A71905487EE19E3BE23B02 /* RCTSegmentedControl.h */, - 6EFF9011FA81CBCFE129F5940006063E /* RCTSegmentedControl.m */, - EC320C7B511A6BB77B4F812D50F5BA02 /* RCTSegmentedControlManager.h */, - FF143363146A1A676B6090C46F850DE1 /* RCTSegmentedControlManager.m */, - D82808C7DF9925E623D51A6883938EAB /* RCTShadowView.h */, - 79C9D72B3BF7D52B8E6B78801BBBCE55 /* RCTShadowView.m */, - 21B4F21E27E5CEAB7A1E4D18014A6C8F /* RCTShadowView+Internal.h */, - DFD4713F0522DE61DB7A3C9AE0A069A6 /* RCTShadowView+Internal.m */, - 4938F4ACE687EF0BA1239C067F5C2F4A /* RCTShadowView+Layout.h */, - 181C9AC6344CCE2653E6D3C053095857 /* RCTShadowView+Layout.m */, - D8C24E2E075EE060FE9733722C3C2512 /* RCTSlider.h */, - ED68EE2DB2AD306AA5B428EAB629183D /* RCTSlider.m */, - 7C9103B4E1E1189CB5618B559EACE888 /* RCTSliderManager.h */, - F7DC0361EA8FE2A0F02B48ED863B5DA6 /* RCTSliderManager.m */, - B52505446B5C9841EEA2363C17ABF163 /* RCTSwitch.h */, - F65EA3DE2F2099329D2ADA67D0E7F9D1 /* RCTSwitch.m */, - 0A4802CD6320F1866FAF9644C0B4F0DF /* RCTSwitchManager.h */, - 9A100DDD23DE5A0E30CA63531F243807 /* RCTSwitchManager.m */, - E38202EC2BE757781663714C2E94A7F1 /* RCTTextDecorationLineType.h */, - EBC5D969F3C301F83593A4E880F7D9F0 /* RCTView.h */, - 4C200DBA814F0F1BE533960ED7E88B31 /* RCTView.m */, - CE51992B18782F5420C05D7F43A1DC36 /* RCTViewManager.h */, - 4880F7901F9462D4EEEE3B8586CAF73E /* RCTViewManager.m */, - 0292F0409BE3032F07AE00C5D25A0C70 /* RCTWrapperViewController.h */, - CCEB2A76A1AD83AD183398B35E887461 /* RCTWrapperViewController.m */, - B21B19C2FBF0A1E6E64AA4E87F29E2F7 /* UIView+Private.h */, - 846E289778E9CB2CF36CA55865F975F2 /* UIView+React.h */, - BE363E764077427D016691742517A4D4 /* UIView+React.m */, - E57EEB220F986123CCDFABB0319C6E1E /* RefreshControl */, - C9F08ED693135402B7ADEAE039B65324 /* SafeAreaView */, - 9FB2F931341150A0027A4E6BD724C551 /* ScrollView */, - ); - name = Views; - path = React/Views; + path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; sourceTree = ""; }; 392473E5D65A5DA8950060501ED4DC78 /* Support Files */ = { @@ -11871,133 +11772,55 @@ path = "Flipper-RSocket"; sourceTree = ""; }; - 39BD5101C866BC4FC736A114EC5C2DD2 /* Base */ = { + 39A56978D6F28AAD11DCA7EF8335D2A8 /* Support Files */ = { isa = PBXGroup; children = ( - 559BBC19F2C72D1E5847FE12880CC350 /* RCTAssert.h */, - 4E313C1F8813EB82A89C8A1822911085 /* RCTAssert.m */, - 38AD9CA9D464D1F4AA14FD830C09AFAA /* RCTBridge.h */, - C6E373AA48E6E329BF7EE8C448DDEA2C /* RCTBridge.m */, - 6388C11E37EC7C26229536931F89AB52 /* RCTBridge+Private.h */, - 2E21FA93BDE61ED25CF1C1E266CB1FBC /* RCTBridgeDelegate.h */, - B218FEA1EEE285B60FFA63E09C29E7D5 /* RCTBridgeMethod.h */, - 1F228F589A5E0C3E7A3AABA43442C5BF /* RCTBridgeModule.h */, - D2E4DB7C7D91ACCBD9A78DFF12B194D2 /* RCTBundleURLProvider.h */, - 1E3939A83E98B735EFD3973DAE2E4FCD /* RCTBundleURLProvider.m */, - 2A4465D9C66789A29A41BC4026FC7721 /* RCTComponentEvent.h */, - E44F841DC9DF78E1B86554A60A81A457 /* RCTComponentEvent.m */, - 140B58D080DCD1D139F1EB3283AAABB7 /* RCTConstants.h */, - 62E88D3F5C58EA25138827D6182D31A7 /* RCTConstants.m */, - F8C19B245B025664E7F15066425AC15A /* RCTConvert.h */, - 5B2BA726DFF2CA5AFAFCB606A31E1705 /* RCTConvert.m */, - BD0667D541A8082EF88CA14960BAF74A /* RCTCxxConvert.h */, - 7E0881BC6EFECE3262DA82753F8F5341 /* RCTCxxConvert.m */, - 5949779F38EA697885C4FE2CA5BF84D9 /* RCTDefines.h */, - 384893C929C2E7804FCA0B1A2371017B /* RCTDisplayLink.h */, - 4CF98F4890E38089DA734E167808B5C4 /* RCTDisplayLink.m */, - AA9C402FF8D48DC7DCEC716FD0EB6C50 /* RCTErrorCustomizer.h */, - AB4715C75F28CAED93F7D95C6CD20D35 /* RCTErrorInfo.h */, - 11B1B50E2419A2F77B4F76E677288C86 /* RCTErrorInfo.m */, - 810368266CDC54C4FD184409A0100C33 /* RCTEventDispatcher.h */, - 9A462BAC6D7E6BE09F4DEFE618FEF797 /* RCTEventDispatcher.m */, - 7EAA37A2A4911AD73687B72C8D0F5311 /* RCTFrameUpdate.h */, - 5921D7E19DAD65DBFDC7FF5F4C0037AD /* RCTFrameUpdate.m */, - E24EFE20F1762D2D036845A640ADD32E /* RCTImageSource.h */, - F2461FBB9497DB2296DC171E44A6C374 /* RCTImageSource.m */, - 0017FB47E14E5B32E82A90381435D24E /* RCTInvalidating.h */, - BDF5626E398AC416DFEF4D293F9220F5 /* RCTJavaScriptExecutor.h */, - 7AF1BD557B5652D5FF683C4F402BFB07 /* RCTJavaScriptLoader.h */, - C2B557DD09C4EC88B415B5050CC85ABA /* RCTJavaScriptLoader.mm */, - 058A8D2CACD3432B5FE785E4D1904D54 /* RCTJSStackFrame.h */, - C62FED310E09A30A66C26D17632271F4 /* RCTJSStackFrame.m */, - 3FBAA376761268B02C2068DAAFA0E18E /* RCTKeyCommands.h */, - 3F6018200CB5E3676FFC482BA965B684 /* RCTKeyCommands.m */, - 8DB5F0EB4AC10D3E3FE671D078D2EF6B /* RCTLog.h */, - 2D90B987D7A9509CD96F9A78E36416F3 /* RCTLog.mm */, - 243500BCBB61324A1989B60D21E1E475 /* RCTManagedPointer.h */, - 6B34942F065CF734DD9D48428E5B298A /* RCTManagedPointer.mm */, - 460E4DEF8032905E0F4A0F2C4E98DCA8 /* RCTModuleData.h */, - 31C14AF5BE3B281BF4BC9886FC51D8B4 /* RCTModuleData.mm */, - 2EFF1B3CB4D2A850414200366C5565B4 /* RCTModuleMethod.h */, - 474DB0F722611816328CC014AB9BCF63 /* RCTModuleMethod.mm */, - 2F7CA6490F20360A7064C08F46FCF5DC /* RCTMultipartDataTask.h */, - 4E67473DCD12826E2CA3837583E9C9C2 /* RCTMultipartDataTask.m */, - BCA39EA70FE3B97470E11828406F4768 /* RCTMultipartStreamReader.h */, - 83490E4CFA06A68F3D77C88D18926441 /* RCTMultipartStreamReader.m */, - BB20DEF11E50A083AF8BBC9B8B265A16 /* RCTNullability.h */, - BDF2FF995645E381FCB060220D610084 /* RCTParserUtils.h */, - B3C4FFB58E0149D4582F336D3F3A93DE /* RCTParserUtils.m */, - 54CD452C01F10208A6B014EED82F7FDC /* RCTPerformanceLogger.h */, - 12CB442B630EA66817536E0157E1E4C3 /* RCTPerformanceLogger.m */, - 49DB63552321F5EB6E8D67D9D3225A75 /* RCTRedBoxSetEnabled.h */, - D970E34B228FAECA5A706C8B698E0031 /* RCTRedBoxSetEnabled.m */, - E994B959E37C0F18C04F59661A626018 /* RCTReloadCommand.h */, - 38BD4FC3679D32ED6AB7AAA85114541B /* RCTReloadCommand.m */, - EDC17792673B4E74A85240A093A34E23 /* RCTRootContentView.h */, - 243D64C70C3BB8D6678B33719B5B6556 /* RCTRootContentView.m */, - 573E597027274BC29EBA777763EDC41F /* RCTRootView.h */, - D21D2F9B533C89B39131B7034FF68BC8 /* RCTRootView.m */, - 3D956B10A36543035362FC1A7F716E8E /* RCTRootViewDelegate.h */, - B90B2170F097409F6BC3604706972EC6 /* RCTRootViewInternal.h */, - 7D0348860E2DCDF89CFDCBB47AE6638F /* RCTTouchEvent.h */, - BDC04558F9FF3CDAB1C4CE6F8493591E /* RCTTouchEvent.m */, - 7B1C46779D3ED8853D25DB9345D05CA1 /* RCTTouchHandler.h */, - 83B8CA6C9AFC665C3A24D768AEA995AD /* RCTTouchHandler.m */, - C7E2B87C68912B4D0C360E7131D40C7D /* RCTURLRequestDelegate.h */, - 61BA10489CCC88CA14A331878E987F36 /* RCTURLRequestHandler.h */, - E627D82208C709A675EC05836823B550 /* RCTUtils.h */, - 3C6F9D80F6FEC327B071FDB1586C77E1 /* RCTUtils.m */, - AAF4F7E292D175AF8DA769D4055866E0 /* RCTUtilsUIOverride.h */, - 330591B23AC30025C60AAA759192D205 /* RCTUtilsUIOverride.m */, - E8CC976D41A74619CB0ABB2532626EEB /* RCTVersion.h */, - 266DE4D7452FEA4F243F95332F75B2AD /* RCTVersion.m */, - D82CBFAAE17C94BAAA05E29955DF5CE1 /* RCTWeakProxy.h */, - 923E3BEC24E03E8214779AEE66755BA0 /* RCTWeakProxy.m */, - 7026EAF29F017BEAB0F55A89D7ABC21C /* Surface */, - ); - name = Base; - path = React/Base; - sourceTree = ""; - }; - 3B0FCD07797E518871CE1C2EFC071D7E /* Support Files */ = { - isa = PBXGroup; - children = ( - F62EF4ACB422422947F7AE2E10B72B6A /* React-jsi.xcconfig */, - F8BFC2873678765632F624D52144BBA2 /* React-jsi-dummy.m */, - 6D4B64785BBB8C4B4AB2DC7E88F7FC56 /* React-jsi-prefix.pch */, + E61CF60153E47AD3BE61F120E5496976 /* React-RCTActionSheet.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsi"; + path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; sourceTree = ""; }; - 3B2C3F070A8EBC809578ED2F92A93078 /* UMSensorsInterface */ = { + 3B01D6BED5725FF86EB5BCC66EE9AB1E /* Support Files */ = { isa = PBXGroup; children = ( - 14D8D4CDF8859688529E2A068193FA57 /* UMAccelerometerInterface.h */, - E937077FED402F7F909DA0259E3F8ED8 /* UMBarometerInterface.h */, - 87FCF0839B80C4606A45ABEECCF40575 /* UMDeviceMotionInterface.h */, - 98E44F61DE862C2B2FB375A641709F6B /* UMGyroscopeInterface.h */, - EC9F5FFE1CE0F251F84E8C6D1D083724 /* UMMagnetometerInterface.h */, - EE56228989A8169DB5FB65C20BB551EE /* UMMagnetometerUncalibratedInterface.h */, - 41702CA8E73FB95427D66A9C460F72A0 /* Pod */, - 6302203C9B3CD28065618A7A7F62E2D2 /* Support Files */, + 0489DFAD8CDFB314CDC540B95FD79C84 /* react-native-notifications.xcconfig */, + 0013155BD637465406EC7C9A5EBFD577 /* react-native-notifications-dummy.m */, + 489B2BE56ECB5369B8A21803E6CBA421 /* react-native-notifications-prefix.pch */, ); - name = UMSensorsInterface; - path = "../../node_modules/unimodules-sensors-interface/ios"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-notifications"; sourceTree = ""; }; - 3BDC7B2B7913825781920B730C15482C /* react-native-cameraroll */ = { + 3C5E6BAEAC84F75A9778746E8E78E13A /* fabric */ = { isa = PBXGroup; children = ( - 949B1AC69E29D86673D25F0A39823AA1 /* RNCAssetsLibraryRequestHandler.h */, - 97FD1A550F6685B9E0B687215D385E68 /* RNCAssetsLibraryRequestHandler.m */, - 0D27998CFA5C0E77A18D200E10757361 /* RNCCameraRollManager.h */, - EBB1D93FBCA2C56BFFB1255F6A5B589E /* RNCCameraRollManager.m */, - FD7910AB663ED853AA4CD970F42AE0FB /* Pod */, - 49DD049C57328621733744BAB672C4CC /* Support Files */, + 83B8ECDC47881A70923CD35CA2E2DCA0 /* crashlytics */, ); - name = "react-native-cameraroll"; - path = "../../node_modules/@react-native-community/cameraroll"; + name = fabric; + path = RNFirebase/fabric; + sourceTree = ""; + }; + 3CAC4DC5BC7BCB3C6B5719BD364C1F06 /* Pod */ = { + isa = PBXGroup; + children = ( + 4F5764F79EDB89B2E56B1DC234C9CDBD /* LICENCE */, + BFF73D90E1EB134A59A319885D6799A2 /* react-native-cameraroll.podspec */, + D2153814AB3E52F623233D1B9A1C5DF7 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 3CF1DE621832047911CB90DA773D9C30 /* RNUserDefaults */ = { + isa = PBXGroup; + children = ( + 741C3A3B5625053E83FF3307CC09A3DC /* RNUserDefaults.h */, + 28E7299B4D7DC027AEA6FF8027B16E29 /* RNUserDefaults.m */, + 6B003C27A1CC5E397BF46797E17455DB /* Pod */, + 3DE1BC7FFF42B100200871F070C8A9A1 /* Support Files */, + ); + name = RNUserDefaults; + path = "../../node_modules/rn-user-defaults"; sourceTree = ""; }; 3D16D20D4E8D5D4564004B5DF7D5CE87 /* FBCxxFollyDynamicConvert */ = { @@ -12009,23 +11832,82 @@ name = FBCxxFollyDynamicConvert; sourceTree = ""; }; - 3D4969E017189BBF86A2F6E452468E34 /* Pod */ = { + 3DD32296F6DE280701C4477F3F72126C /* Support Files */ = { isa = PBXGroup; children = ( - 88E857D0E4B228497060896BAADC4309 /* EXConstants.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 3EA76167C2AFCF802FFABCFF4E40CB32 /* Support Files */ = { - isa = PBXGroup; - children = ( - 8B8D7C247710F589A7D5C33233C3917F /* React-RCTNetwork.xcconfig */, - FA441F05395DC267F32E07B4232124CC /* React-RCTNetwork-dummy.m */, - 408BC1BCD56C9EDBD173F9764DE80CE3 /* React-RCTNetwork-prefix.pch */, + F04329074D27EAB622ADF38E5694313D /* EXHaptics.xcconfig */, + 9B210DEA7F13EE96BA6DA8B363A2EFD3 /* EXHaptics-dummy.m */, + BF1A51A3817F94FE9F6D656316439DF9 /* EXHaptics-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; + path = "../../../ios/Pods/Target Support Files/EXHaptics"; + sourceTree = ""; + }; + 3DE1BC7FFF42B100200871F070C8A9A1 /* Support Files */ = { + isa = PBXGroup; + children = ( + D0AB169A9A57CF2E1200E72299D75C26 /* RNUserDefaults.xcconfig */, + D25D1E1BBC70B6001EA6BA3DC4F722CA /* RNUserDefaults-dummy.m */, + 21DF973E0B0381E6F81ACD448A537C4E /* RNUserDefaults-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNUserDefaults"; + sourceTree = ""; + }; + 3E59569D16CD6F05673EB5DE2284EAF9 /* RNCAsyncStorage */ = { + isa = PBXGroup; + children = ( + 8F20EA7B3F5905572DE6CF16610A8A2C /* RNCAsyncStorage.h */, + 99B30853C542D2115F98448315C2D52D /* RNCAsyncStorage.m */, + BE2A853BA7F9A576904BEA2F920D162A /* RNCAsyncStorageDelegate.h */, + DD933C3C950F07C5529BEABC3E8C5FFF /* Pod */, + 8D31F7E502F792082BBBF53BD639EAD5 /* Support Files */, + ); + name = RNCAsyncStorage; + path = "../../node_modules/@react-native-community/async-storage"; + sourceTree = ""; + }; + 3EA78CDA244356545F1446DC8913E26D /* Filters */ = { + isa = PBXGroup; + children = ( + CA16BF55FDA9DBC46F00C4AF3230C6D5 /* BSG_KSCrashReportFilter.h */, + 938A92659A2B571EE3FA5B905DDD2A1B /* BSG_KSCrashReportFilterCompletion.h */, + ); + name = Filters; + path = Filters; + sourceTree = ""; + }; + 3EC524AB128B75456FB45376D6957A29 /* React-RCTSettings */ = { + isa = PBXGroup; + children = ( + A26A7EF563377345BE162F627EAD070F /* RCTSettingsManager.mm */, + A277DF5B66397F66164BD142D7155F5E /* RCTSettingsPlugins.mm */, + F5517A089DAB12A29DF2BAF32329221A /* Pod */, + 0C52D7E905C9C54B83D4559802B3C107 /* Support Files */, + ); + name = "React-RCTSettings"; + path = "../../node_modules/react-native/Libraries/Settings"; + sourceTree = ""; + }; + 3EDC428094876DEF1D9458F57F523962 /* Support Files */ = { + isa = PBXGroup; + children = ( + 8F7080514B2DC132D8D9E4F8F6B307F3 /* RNScreens.xcconfig */, + C4F76CE918BDF24D3B02B9768F7BCB3B /* RNScreens-dummy.m */, + 8CF69344B3E34A32C259EDE32B6D68C1 /* RNScreens-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNScreens"; + sourceTree = ""; + }; + 3F43C9D190A43BB2B9AF16C6D00A899B /* Pod */ = { + isa = PBXGroup; + children = ( + 443ED58974BE5CC32B09E74F5A784381 /* LICENSE */, + BE0C45CE0B456AF7B20E80160D87113A /* README.md */, + 70E0E86D8435F505B9026D6968E02EC0 /* RNGestureHandler.podspec */, + ); + name = Pod; sourceTree = ""; }; 402211E3E291023565E9F0F090AFCBE2 /* Flipper-DoubleConversion */ = { @@ -12055,67 +11937,15 @@ path = "Flipper-DoubleConversion"; sourceTree = ""; }; - 40715CF8AA65DA50DEE5C3912C2B7BD3 /* Pod */ = { + 412A3306FA919717E628FCD2816593DB /* Support Files */ = { isa = PBXGroup; children = ( - 7ED8D693913D9C26AC53AC1FAD8D56BE /* EXWebBrowser.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 409F7F1718614418CE93A7D3DD08811B /* EXConstants */ = { - isa = PBXGroup; - children = ( - CAAB0B6DC1FD159902E0EB5AE6A23A51 /* EXConstants.h */, - 620794FB04094752CA28515CB127A05B /* EXConstants.m */, - D78C4A6F8CB137212800F09AE3CA2E0B /* EXConstantsService.h */, - 3F74C75537AB9A84C780287DC28D5023 /* EXConstantsService.m */, - 3D4969E017189BBF86A2F6E452468E34 /* Pod */, - 73B9F440CA923B9CC8228360F9AC9089 /* Support Files */, - ); - name = EXConstants; - path = "../../node_modules/expo-constants/ios"; - sourceTree = ""; - }; - 40CA44CFAB7CDC2DB69535A103027E0C /* Support Files */ = { - isa = PBXGroup; - children = ( - D9FD0FC7CB7998DF02AD942B6A276DC1 /* React-CoreModules.xcconfig */, - 81B175DB517E21D3E7D3D04D53D407A5 /* React-CoreModules-dummy.m */, - 07C80E242654D1BA9979DC38736D3632 /* React-CoreModules-prefix.pch */, + 45739967460E2D1904354C494EDEEB86 /* EXVideoThumbnails.xcconfig */, + 0633D4BC2B6C74F5592307ACB6CA753E /* EXVideoThumbnails-dummy.m */, + 6D1B8F9D5C016E7F3E093EC478D6067B /* EXVideoThumbnails-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; - sourceTree = ""; - }; - 411674146B92D38978324224D6529D3F /* RCTCustomInputController */ = { - isa = PBXGroup; - children = ( - FB4823943E5AD110DFCFA865AF9A2D22 /* RCTCustomInputController.h */, - F89B0811B63126971AC55FE11379F658 /* RCTCustomInputController.m */, - 49C954801764BA30B8837999C61E0088 /* RCTCustomKeyboardViewController.h */, - 6C1A2D7195A33B28D3E8779C2D1CAD7E /* RCTCustomKeyboardViewController.m */, - ); - name = RCTCustomInputController; - path = lib/ios/RCTCustomInputController; - sourceTree = ""; - }; - 41702CA8E73FB95427D66A9C460F72A0 /* Pod */ = { - isa = PBXGroup; - children = ( - 0945BBEEC7F494B6316CB68B3BEBC976 /* UMSensorsInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 4191C14440CF614E648051F8C97BB22C /* Pod */ = { - isa = PBXGroup; - children = ( - ABFB481D86C371E0274CBB9001895F73 /* LICENSE.md */, - D92F00F2A06C66F7B6EEFFE5770E26A9 /* README.md */, - 6D6AE562690725EE1645C7E18FC8F1FE /* RNDateTimePicker.podspec */, - ); - name = Pod; + path = "../../../ios/Pods/Target Support Files/EXVideoThumbnails"; sourceTree = ""; }; 41C5A03E78256F1F08282B5C2AA2FF41 /* Frameworks */ = { @@ -12127,6 +11957,15 @@ name = Frameworks; sourceTree = ""; }; + 41CE3199D539E6A65D353C0231418F1C /* Reporting */ = { + isa = PBXGroup; + children = ( + 3EA78CDA244356545F1446DC8913E26D /* Filters */, + ); + name = Reporting; + path = Reporting; + sourceTree = ""; + }; 424FC6815FF3644493EEBD58BEBC0532 /* mux */ = { isa = PBXGroup; children = ( @@ -12141,47 +11980,39 @@ name = mux; sourceTree = ""; }; - 42660FE87E4E9D14DDF711C4EB9F1537 /* Pod */ = { + 42D849C4DB1F4E7A81DD314A5E8124DF /* Support Files */ = { isa = PBXGroup; children = ( - 48A0EA06DE8FBE826F65937BA555D504 /* LICENSE */, - FBD6925E4BD9FDD5FF5C63F8BEA821F0 /* react-native-background-timer.podspec */, - D8C8C63A331598BB439DDEFDE18370F6 /* README.md */, + 0B64EEB3F7933A5B2098647909E0ED92 /* UMCore.xcconfig */, + 87F5B9141D7DADA8D05A9CFFBDE907C6 /* UMCore-dummy.m */, + FE46EB0DFA751BDEFDEC9AAB2626A64D /* UMCore-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMCore"; sourceTree = ""; }; - 42A3430379AA41111163D3C757A7477F /* RCTVibrationHeaders */ = { + 430868DBC24D3C3594A17F82C637639F /* RCTTextHeaders */ = { isa = PBXGroup; children = ( - 237CC3ABD81B96AE4676A00DDA048928 /* RCTVibration.h */, - FCFCEDC08449593B9FB0E57605CA2344 /* RCTVibrationPlugins.h */, + 24289386D837C7C24973A780A5CFC145 /* RCTConvert+Text.h */, + 396BCC1103806DB62E13A01085BFDB9A /* RCTTextAttributes.h */, + 4AA5953CEC6B4F9133E614A9B1EDAF92 /* RCTTextTransform.h */, + FA020F1D7148238F70324A38FC757611 /* BaseText */, + 585D34274855BF0119B6A9E500D7F05E /* RawText */, + 31FE5332728AA1413BC004D2B00A9A7F /* Text */, + 0195942E39A8F0E0C975DC2EF4643C08 /* TextInput */, + 69C54614F75748C758C57626C4F9199B /* VirtualText */, ); - name = RCTVibrationHeaders; + name = RCTTextHeaders; sourceTree = ""; }; - 4324087578EE4170736BEF35C03522EE /* Handlers */ = { + 4333278F1391611065DA33934F7200AE /* DevSupport */ = { isa = PBXGroup; children = ( - D81CA9D8189010CC1FE9FB3F2B0F925C /* RNFlingHandler.h */, - 4C2F3B2B18419478923F098C4C3F7CA2 /* RNFlingHandler.m */, - 34E846E2A6909123C2B8E5EC4860DFAA /* RNForceTouchHandler.h */, - 014B16143B6BE9269F59C30B5C9D178B /* RNForceTouchHandler.m */, - 26D606583A8A4265E46BBCF9BEF7D7A8 /* RNLongPressHandler.h */, - 9AF2718A7C2117A0EEEA5E94848C61BB /* RNLongPressHandler.m */, - C2E94B6D13B60B6F5054461F826B4219 /* RNNativeViewHandler.h */, - EA58EA4D547EE32CC093428D5178FBC8 /* RNNativeViewHandler.m */, - 29A79EFAC50AA6F7BA8971A7DDE91CD9 /* RNPanHandler.h */, - 78E079F329E2EA05ADB7D20605DC4251 /* RNPanHandler.m */, - 100FC90DF3F10194AB37E353AAFC64EB /* RNPinchHandler.h */, - B41DBB54CB5BC29C9F2DD4AC442948CA /* RNPinchHandler.m */, - E474FB33AFD5A2EA3EBB99AB25648F49 /* RNRotationHandler.h */, - 1B66039BD77444C6E1A930CEA35B4856 /* RNRotationHandler.m */, - 0C527A242FCB70C4E79C1BB4DE5B8DF4 /* RNTapHandler.h */, - 896E3405123D8222C02B5AF250E310BD /* RNTapHandler.m */, + C447DE37E8999BE13AC6EE5FA7663FAB /* DevSupport */, + F5E16C2C6E06593544B52720DB25D207 /* Inspector */, ); - name = Handlers; - path = ios/Handlers; + name = DevSupport; sourceTree = ""; }; 433C73FED5D05883FF3D921E1099BB8F /* demux */ = { @@ -12194,85 +12025,46 @@ name = demux; sourceTree = ""; }; - 438027C9C4B027F11B58EBCDC40CF2F2 /* EXHaptics */ = { + 4532E1AC9DA617EBCF83479C74103116 /* Pod */ = { isa = PBXGroup; children = ( - 4F3A1AA4799D64BC0CD42833FEA073A0 /* EXHapticsModule.h */, - B21E1F639E1D07C5BE2DBAD0D6A7AA47 /* EXHapticsModule.m */, - BF28AFD053B658109B3F90B19FA28EFA /* Pod */, - D76C1C02B82535906DA0BEE7BE1D30AB /* Support Files */, + 215B5C61A1572BEF192E6E40890740CB /* UMFaceDetectorInterface.podspec */, ); - name = EXHaptics; - path = "../../node_modules/expo-haptics/ios"; + name = Pod; sourceTree = ""; }; - 4473E1F926790693692EC0D99491FECC /* Recording */ = { + 45EB4CB9D90AACEC24EB02C2E4ABB0AE /* Support Files */ = { isa = PBXGroup; children = ( - F68B4A2346A20F499A15E6541DB0515D /* BSG_KSCrash.h */, - 330F23D7B53A95233627DE41F79DF342 /* BSG_KSCrash.m */, - 0C286AD7EC1E09E7CC3550C72EBEF2B6 /* BSG_KSCrashAdvanced.h */, - 75AFF57E477C64127F71A0DCE3C8F1B8 /* BSG_KSCrashC.c */, - B6776F5DFBCEC5F6CA6F705C4B7F6558 /* BSG_KSCrashC.h */, - 3F0EC37499F4820026AB30162B77C596 /* BSG_KSCrashContext.h */, - 9E8962F09A716B354B9D11C3AD2285DC /* BSG_KSCrashDoctor.h */, - 31609F47469A3B892862A77E300E6942 /* BSG_KSCrashDoctor.m */, - 1EC2A2B4FB3B75643522D72ADC35B110 /* BSG_KSCrashIdentifier.h */, - 474BC2E5DEC74C05178F6E0476989FA0 /* BSG_KSCrashIdentifier.m */, - 0591949859C3338773C4E3829101278E /* BSG_KSCrashReport.c */, - F9394D1C5B9A8CD72D175A2ACB8FD5C1 /* BSG_KSCrashReport.h */, - 045C2246BF47FF94296C1DF119A721FC /* BSG_KSCrashReportFields.h */, - ED28CEE4903470D9B88CE566F49DD8AA /* BSG_KSCrashReportStore.h */, - FF054FBC4F1290AE1B95DDB9CF320F05 /* BSG_KSCrashReportStore.m */, - 47ABC6AB693D34D43108D5C78A31B43F /* BSG_KSCrashReportVersion.h */, - C6133E09F8DBF18DA5F2D9D1F9A67EC5 /* BSG_KSCrashState.h */, - FA05A81B6B93648F197FBC4600021D44 /* BSG_KSCrashState.m */, - 06BFAAEC4C9DCE8E0E1100EAE7E78F1D /* BSG_KSCrashType.c */, - C194615FA8C7CCD34E5BE0CBD3606870 /* BSG_KSCrashType.h */, - DE5C940EFE41E1C1AF83582732C954FB /* BSG_KSSystemCapabilities.h */, - 01CEB4FCC8845C95F772C4401D4D0088 /* BSG_KSSystemInfo.h */, - 7170A1DF984D20FE16FF2452F4687EF1 /* BSG_KSSystemInfo.m */, - 564893FF9249E9ECE45B1F5E1A0DB0F3 /* BSG_KSSystemInfoC.h */, - 81667B55B8C8A91F337D815B5B58C1A0 /* Sentry */, - 2B4DA6F56CC005F69162519E6C796117 /* Tools */, - ); - name = Recording; - path = Recording; - sourceTree = ""; - }; - 44CF9BE6474BEA62CC3089E16B08A89B /* Support Files */ = { - isa = PBXGroup; - children = ( - 7EBD9A7B592CFA429F02C49F03CF346F /* UMPermissionsInterface.xcconfig */, - 861D71A5C1704ACAA69E03C6E34AFC71 /* UMPermissionsInterface-dummy.m */, - 53BF5156EB033D0CE1D6176F47450F75 /* UMPermissionsInterface-prefix.pch */, + 39F4D653B834C5AD699B8608F1CDACEF /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, + 36DD59698462AF3BB58AFA0B87ACAA45 /* RNImageCropPicker.xcconfig */, + 4A5089756CA01445DAA8F58801683705 /* RNImageCropPicker-dummy.m */, + CA714758B676185C739362094E502FA4 /* RNImageCropPicker-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; + path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; sourceTree = ""; }; - 4577FC2E5D2276672B67310D6B2BEC7A /* EXLocalAuthentication */ = { + 461D1E9F71F246EA74A92D336F337133 /* React-jsi */ = { isa = PBXGroup; children = ( - 75CAF7581560F9B82217BAE19818DA5B /* EXLocalAuthentication.h */, - 07AA4BD17AFAD621804CD03BAE1CF973 /* EXLocalAuthentication.m */, - 2131A048264C4E95AEA0095DC9F75323 /* Pod */, - BB9FCACB8C234318A7C6512C11D084B1 /* Support Files */, + 78545C54F7F735A7E71AC86B01AB3CD3 /* JSCRuntime.cpp */, + 1578EE1C0EA94CFE091DEC4F00AE2E2C /* JSCRuntime.h */, + FE0CEFE039C99D812D1C87353FD3ACB8 /* jsi */, + 088989501B4A141B664624095782831E /* Pod */, + DF2A823F424957A7FF17D40A88D63422 /* Support Files */, ); - name = EXLocalAuthentication; - path = "../../node_modules/expo-local-authentication/ios"; + name = "React-jsi"; + path = "../../node_modules/react-native/ReactCommon/jsi"; sourceTree = ""; }; - 4684BF9D332BECA27A96A6909C34E708 /* react-native-orientation-locker */ = { + 46E5AD6F69D9519C386602DF76606A6A /* RCTSettingsHeaders */ = { isa = PBXGroup; children = ( - 950A2656476330B7598DF07A0F6A7E93 /* Orientation.h */, - B88941F26D4EAEDC366AC47BE26EFEC5 /* Orientation.m */, - 83F7B44F97C52BE5B49BFAA1875E0BB9 /* Pod */, - C115643F3D9F810B548BC1D6AA5B60FC /* Support Files */, + 33D551B60F8530F4356EB55964B4FA03 /* RCTSettingsManager.h */, + 78912319CEF3413E7D31B12DDCF6E9D0 /* RCTSettingsPlugins.h */, ); - name = "react-native-orientation-locker"; - path = "../../node_modules/react-native-orientation-locker"; + name = RCTSettingsHeaders; sourceTree = ""; }; 46E7C624D3C29B3AB6BDE86C7B98348E /* Support Files */ = { @@ -12284,6 +12076,34 @@ path = "../Target Support Files/Fabric"; sourceTree = ""; }; + 47C249B9C18E719786A318853DFD9D04 /* RCTBlobHeaders */ = { + isa = PBXGroup; + children = ( + 1D4D41211C446BE6090144A856378B10 /* RCTBlobManager.h */, + 41E9388F4F2F474F51343984C953523A /* RCTFileReaderModule.h */, + ); + name = RCTBlobHeaders; + sourceTree = ""; + }; + 47C42C77AE6EA8C457516FAE62B37AE9 /* Support Files */ = { + isa = PBXGroup; + children = ( + 5401F36DD46724F06EC804A065EE1E28 /* React-CoreModules.xcconfig */, + DE1A9DCFA71D2A144B640AFE2807BA7F /* React-CoreModules-dummy.m */, + 1D33A07A03A476E1AFF9662BAA20BB2B /* React-CoreModules-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; + sourceTree = ""; + }; + 47E7742150B55ECE42CAB139243FEBD4 /* Pod */ = { + isa = PBXGroup; + children = ( + DB086192F7C5B024A9119AECE8ADE1D7 /* EXWebBrowser.podspec */, + ); + name = Pod; + sourceTree = ""; + }; 47F76561CAB618F276F1C9A6E91F49F4 /* boost-for-react-native */ = { isa = PBXGroup; children = ( @@ -12293,54 +12113,29 @@ path = "boost-for-react-native"; sourceTree = ""; }; - 494FF9299755CB2A47E65BA3AA8CC914 /* RNGestureHandler */ = { + 480ECE216EBC9B3B769B95077F785439 /* Pod */ = { isa = PBXGroup; children = ( - CB584FC2A20F9CDF0558E2EC2ACEBD57 /* RNGestureHandler.h */, - 026C5640A11F741416A6D3D3C6C3AB69 /* RNGestureHandler.m */, - DB04F2A6B47D0BC68C8E9643FD41C33D /* RNGestureHandlerButton.h */, - 9D0F45C320E4E26BDBE55273EE1E1EC9 /* RNGestureHandlerButton.m */, - BD68EDAD47CB6EE1355CC2150B429E4F /* RNGestureHandlerDirection.h */, - 7E756124372A4E7FA694676683FA1589 /* RNGestureHandlerEvents.h */, - 1CC91CB22BA56B10A996E0E12450DC09 /* RNGestureHandlerEvents.m */, - 8E3305844444A129D964A1C780DBA683 /* RNGestureHandlerManager.h */, - 42789F8F1B2AD1FB439310641EDDB97F /* RNGestureHandlerManager.m */, - 6F9C73D726BA76260B12ED6961C738B3 /* RNGestureHandlerModule.h */, - 63D6DCC9D86537F9D3E9804D2880D0F4 /* RNGestureHandlerModule.m */, - 73A81D69BBA83AA8F9567A52654496CB /* RNGestureHandlerRegistry.h */, - F4AD6A08A55422659C377BD3708DE52F /* RNGestureHandlerRegistry.m */, - 0F311E036A6CCE07931510059BC1289F /* RNGestureHandlerState.h */, - 6AF46407306036FBC1128FC7B5171849 /* RNRootViewGestureRecognizer.h */, - 3A3B6CD03DB936F086CB3AFF7FE558AE /* RNRootViewGestureRecognizer.m */, - 4324087578EE4170736BEF35C03522EE /* Handlers */, - 33B67F4A2178162239D56F4BE5F2A7ED /* Pod */, - 38195C32CD71E1CA0291CD199FECC436 /* Support Files */, - ); - name = RNGestureHandler; - path = "../../node_modules/react-native-gesture-handler"; - sourceTree = ""; - }; - 495F7078126BFBF9D79C9B462E09EF2E /* Pod */ = { - isa = PBXGroup; - children = ( - 6E2BECC4F92F31362EA0443D291CE88B /* React-RCTSettings.podspec */, + C38F2DF546EC0B7401DD3FD817DF5A7A /* EXImageLoader.podspec */, ); name = Pod; sourceTree = ""; }; - 496152554BE93C70BE4370463A2883A7 /* Video */ = { + 4918C3ED866941C93DA3FAEC45EAB269 /* RNReanimated */ = { isa = PBXGroup; children = ( - 1ACEC62AD3F9E866C6D987DB71219DAE /* EXVideoManager.h */, - D99477B7E43B77E721F647603C5D9561 /* EXVideoManager.m */, - 4763D50EC1B8BFE3DE35DEAFACEC16D3 /* EXVideoPlayerViewController.h */, - BAADF67C2659DA3D7FBB0D06D51FE509 /* EXVideoPlayerViewController.m */, - F7A8AAAB915D220A3760C7C015893EA0 /* EXVideoPlayerViewControllerDelegate.h */, - 64390CB491BCD314AE059ED98D830851 /* EXVideoView.h */, - 72D3E0A25B23EE863ED72FB6A6BC343B /* EXVideoView.m */, + 571BAD26D9BC6F164E5EB00F633B8668 /* REAModule.h */, + FE7137F593DB4D74102C04004E6ECE76 /* REAModule.m */, + 721AB46BD809C2987EF958E95073BFF2 /* REANodesManager.h */, + A0A5BC613C561149D537888AC2E00F65 /* REANodesManager.m */, + 854D1744DD389D5D8C1ACE4FA1387DE9 /* REAUtils.h */, + 9B39715FD3535FE90C4437C61C5DBE58 /* Nodes */, + 303DC452A2F618FF0F8D530EB8ECC9C2 /* Pod */, + FDF367A413F3FF61D6DA07F3B6BFB869 /* Support Files */, + E0B0F2B680537CFA8404EBD652D2C36A /* Transitioning */, ); - name = Video; - path = EXAV/Video; + name = RNReanimated; + path = "../../node_modules/react-native-reanimated"; sourceTree = ""; }; 496A55A037DB7441D97AC80C9BBA8C16 /* Support Files */ = { @@ -12359,61 +12154,56 @@ name = decode; sourceTree = ""; }; - 49DD049C57328621733744BAB672C4CC /* Support Files */ = { + 4A06001556AA7308EA70997ECE34506A /* UMAppLoader */ = { isa = PBXGroup; children = ( - 1A9D65778FDC48595F6A4B3E574F8ADB /* react-native-cameraroll.xcconfig */, - 4872A4192F53CA0514FFD1C38F605F3B /* react-native-cameraroll-dummy.m */, - 7C98C17532E2B34D7124DF2F7AA808D8 /* react-native-cameraroll-prefix.pch */, + 2E04D3A647F36E8B028E2D8851475024 /* UMAppLoaderProvider.h */, + 107E6EA09D55A51A08CC1346FF70D5AC /* UMAppLoaderProvider.m */, + FC58C2812ADC3931119894A3085D7C9B /* Interfaces */, + 1DD0B2EAFF2752623CB47676CBA5E973 /* Pod */, + 2E85BCF9B180B4C7DE7F28C05D0685C1 /* Support Files */, + ); + name = UMAppLoader; + path = "../../node_modules/unimodules-app-loader/ios"; + sourceTree = ""; + }; + 4A3EF155D81E1A88F1BB2F484ECAD67B /* core */ = { + isa = PBXGroup; + children = ( + 9BB449E0F6493A29C62B20ED4EB2BF00 /* LongLivedObject.cpp */, + 83A50FFDF1FBD07F4FD73E119C3704D2 /* LongLivedObject.h */, + 1D14771DAF845523B655DB9144C5891D /* TurboCxxModule.cpp */, + 2306FB1ABBEFA9CE789F81A2FAC42EE6 /* TurboCxxModule.h */, + 0EF2C04C9FBCE8D759B215220D6D7AE3 /* TurboModule.cpp */, + EAC5057FC760FBFD55BC580C40F920CE /* TurboModule.h */, + 3B468DA312920E115DBC601B9DD70210 /* TurboModuleBinding.cpp */, + 4FA133FF443545FD679E492E568820B6 /* TurboModuleBinding.h */, + 0A3317667F31F7168FA5A80542BA6B0B /* TurboModuleUtils.cpp */, + 40CC5CEBEF1FD6B260ECFB4E7B4A77EC /* TurboModuleUtils.h */, + DCE7C0512B08275E79393733DD6559DD /* platform */, + ); + name = core; + sourceTree = ""; + }; + 4ACB44402D6A5B0462D05663FFC2BAAF /* Support Files */ = { + isa = PBXGroup; + children = ( + BD696F1412B23F77ADFF152EF3F0A69D /* react-native-slider.xcconfig */, + B2AAE58A26E1DF2320BB3B2AD7277A1E /* react-native-slider-dummy.m */, + B5156710EF4D21CBABD4FB4802D33794 /* react-native-slider-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; + path = "../../../ios/Pods/Target Support Files/react-native-slider"; sourceTree = ""; }; - 4A4AC3F544F1EED7FFF7D3F417C05C6F /* Support Files */ = { + 4B0E585FE0E1E6F4CE16345AA3F74056 /* Pod */ = { isa = PBXGroup; children = ( - 1F6EEF03AB61BA96B505482C5AB6E1F0 /* EXPermissions.xcconfig */, - 912CBB2BABD0EDA3B9EBCA30EFEAB6D0 /* EXPermissions-dummy.m */, - 777302FBC51C7FB15E88AC25C43D17B5 /* EXPermissions-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXPermissions"; - sourceTree = ""; - }; - 4B6D207E423830A3B70EE5C0F700E254 /* DevSupport */ = { - isa = PBXGroup; - children = ( - 7F64B73ACF9BC3BED00B6B69C12F3FC3 /* DevSupport */, - E661352C9045B5ACA33A6CE1BAA8C127 /* Inspector */, - ); - name = DevSupport; - sourceTree = ""; - }; - 4C5B03CBA81CF48F3DC975FC4AC2079D /* Pod */ = { - isa = PBXGroup; - children = ( - D1B9224C509C038CF4DD5F6D20691367 /* BugsnagReactNative.podspec */, - 07F7BC878AD42B87F559C08DA8FFA6D5 /* LICENSE.txt */, - A974BB8B7E4DDD0415948DCD0A15BCFB /* README.md */, + 5954A915F296FDBAE51B798050C998FB /* UMBarCodeScannerInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 4C7A8AD53C41B86BA11BBC83C7C80988 /* BugsnagReactNative */ = { - isa = PBXGroup; - children = ( - 43E10A08E51FDE22F2B27E6FD2D0E927 /* BugsnagReactNative.h */, - 712049F52355C5FECA8281099BB75DF3 /* BugsnagReactNative.m */, - 10CE330F46CAC53089EBA5EB02982605 /* Core */, - 4C5B03CBA81CF48F3DC975FC4AC2079D /* Pod */, - AF71A63BC553E74005006B6C641FA1D4 /* Support Files */, - 008BF400C33F7EEC6260A235029A7676 /* vendor */, - ); - name = BugsnagReactNative; - path = "../../node_modules/bugsnag-react-native"; - sourceTree = ""; - }; 4C9C00A9A947C8D0144651514259CB34 /* Flipper-Folly */ = { isa = PBXGroup; children = ( @@ -13046,54 +12836,54 @@ path = "Flipper-Folly"; sourceTree = ""; }; - 4CC0D4DC757C493F40D25F54EFD078F7 /* Pod */ = { + 4DEDC9B6BA0086EA042F5365E4392AB3 /* UMCore */ = { isa = PBXGroup; children = ( - 473B06EFC8025000815F2A178478157F /* README.md */, - 3F288DD742A90D42BB243D41296F4845 /* RNCMaskedView.podspec */, + 49C3C2D766AD5EBFBF77708CF363A786 /* UMAppDelegateWrapper.h */, + 55E8A6E0210B59074AACE28BDB6B9E52 /* UMAppDelegateWrapper.m */, + EC4A6E943C7DAEEA950D96EE96271C15 /* UMDefines.h */, + 512B8149A1DDC202F6AE37A0577E9EB2 /* UMErrorCodes.h */, + 49F37D41ACDCF417C3F20711F4D42ECC /* UMErrorCodes.m */, + 82FFF75FB306AB23B867834650F67403 /* UMExportedModule.h */, + 6D24767B02EB893827AF0338BBB8ABFA /* UMExportedModule.m */, + 3849EEFE0D7DD1DDED58F4F9AF3B84B4 /* UMSingletonModule.h */, + E970F038C92A074F5CDFDFED75311D5C /* UMSingletonModule.m */, + 44A77B66CB563D3BB5FF97B8CBFEC42F /* UMUtilities.h */, + 003EAF4329308F1EC6185DA44A1D66DC /* UMUtilities.m */, + 83FBC58A4E8CE4DD3045967787AC7A8A /* UMViewManager.h */, + 12FC96FD85B0EE6C53FFF770B8B474F5 /* UMViewManager.m */, + DC4E9203EEAAF5AB4FEA8687B1A872E4 /* Pod */, + 61762E0F01CF291269A0204FA0E84808 /* Protocols */, + 265D0857017BE95DEAD1E52EAF9FBA28 /* Services */, + 42D849C4DB1F4E7A81DD314A5E8124DF /* Support Files */, + F4F451FE4EC5499630858AEFD9F886B9 /* UMModuleRegistry */, + CE334D4FE774D312554D8BD58CB7C00A /* UMModuleRegistryProvider */, ); - name = Pod; + name = UMCore; + path = "../../node_modules/@unimodules/core/ios"; sourceTree = ""; }; - 4CDDA4135051A8CA5E13E304CE37C880 /* RNFetchBlob */ = { + 4E3FDB910F80273D04FC0A3423061974 /* Support Files */ = { isa = PBXGroup; children = ( - 8DB39230D42F7725C5D4198A6BC2C8FE /* RNFetchBlob.h */, - C081E766A0AE388CBA3494056F0B22BB /* RNFetchBlob.m */, - ); - name = RNFetchBlob; - path = ios/RNFetchBlob; - sourceTree = ""; - }; - 4D80DCE5D0D213B2B71F686AD3C7DA9C /* Support Files */ = { - isa = PBXGroup; - children = ( - CD82F2671948DC1907B3DF01C331072B /* UMFontInterface.xcconfig */, + 6F0EF6046A20A68989C5B5B8DD839E33 /* UMReactNativeAdapter.xcconfig */, + 071EAC1216B90DC198CDBCF0BD16D771 /* UMReactNativeAdapter-dummy.m */, + D82087B9CDF9C978097ED1884BCFEBF5 /* UMReactNativeAdapter-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFontInterface"; + path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; sourceTree = ""; }; - 4DCF3844FD4CE93DF8A01B1AEC2F04FC /* Support Files */ = { + 4EEC1118E267BAB027555E67DC4C2B44 /* RNLocalize */ = { isa = PBXGroup; children = ( - 3FA7B179A187CA9F095E596EB65561A6 /* React.xcconfig */, + D94271F55B4B4578FBF5D306CDE13760 /* RNLocalize.h */, + 7849699F5D9238F474EA192DBE3B1BD3 /* RNLocalize.m */, + 5DD34C1192395A01CAC59A1F1C53FFF3 /* Pod */, + 0B0C18D8AD22C1FD5A52EDD9E3FD2025 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React"; - sourceTree = ""; - }; - 4E1D0B3235FD1E67F4DBEA50BCA77DD1 /* RNVectorIcons */ = { - isa = PBXGroup; - children = ( - F5764DD8D3511BD9AF70A14B3CC7BAEC /* RNVectorIconsManager.h */, - 5A453CEEB4F76F588A7696C94988C9B3 /* RNVectorIconsManager.m */, - 67C3D217C8F5AAC31858088D70495219 /* Pod */, - 8F448DB122BA932F8620E565F266B97C /* Resources */, - 0A4840F32EA32301D0FED5DAFD2F035C /* Support Files */, - ); - name = RNVectorIcons; - path = "../../node_modules/react-native-vector-icons"; + name = RNLocalize; + path = "../../node_modules/react-native-localize"; sourceTree = ""; }; 4F3253A1691213F124EF835815078D87 /* Support Files */ = { @@ -13105,65 +12895,36 @@ path = "../Target Support Files/boost-for-react-native"; sourceTree = ""; }; - 4F7F7040F16329B0EBA42DDEE2FF4129 /* Nodes */ = { + 4F576D1987C11155DAA506741CBC77DB /* Support Files */ = { isa = PBXGroup; children = ( - BBC5B564D4E222135FE8ED1976E3CFEE /* REAAlwaysNode.h */, - F8357D4267F0B7850BA442638A9095BE /* REAAlwaysNode.m */, - C932A04CA8776155060B099D4D68C381 /* REABezierNode.h */, - BFECE6384E03B74BBDCD64E8B15A7BAE /* REABezierNode.m */, - C89A10E5A2F973FC16FE5EA6BF54102E /* REABlockNode.h */, - 689C2EC302CAC200CAA0F3413D0DFC41 /* REABlockNode.m */, - C8721D1A0233F31995963A9A3DF84D9E /* REACallFuncNode.h */, - EA73BD9A0670CEBBF8B1FFE8023CF4E0 /* REACallFuncNode.m */, - B2EA33EA5ED3107C712A11D9A91F10B8 /* REAClockNodes.h */, - 80958931E5FA592699C3A969DDFF51FC /* REAClockNodes.m */, - C6D05C339CAFF93449D9207342890752 /* REAConcatNode.h */, - AC14E1C64D4AA6BDFBCB354FEC0D3624 /* REAConcatNode.m */, - D48AAEE3B7A82C36CE218CA0D4ABA3C8 /* REACondNode.h */, - CC1FE9306F0644A4806134F950CB3EC8 /* REACondNode.m */, - 2B7748EB32FDE490DEEE86DEF49D1FCA /* READebugNode.h */, - DEB3AF46C8D97467F7608524BDDC07B1 /* READebugNode.m */, - AC0E9D5F8489BD6C505350744F94A35A /* REAEventNode.h */, - FB21DD46609D824435480EBBB6DC51FE /* REAEventNode.m */, - D7DB0C5FE6A3D654667F3AFB62743A2D /* REAFunctionNode.h */, - 87EC72DB8312E12EA5686A7E6ADB07F3 /* REAFunctionNode.m */, - 6D2DE99061D0D67202BCD04691C59097 /* REAJSCallNode.h */, - B50C536872CDEC69C71B3C8565C6119A /* REAJSCallNode.m */, - FE59FFDE1C441A32AEBDBCBA0BCF6270 /* REANode.h */, - 2AD11B259B7DD8E19188CB41300D227E /* REANode.m */, - 3AA490065F4BC8E0D3C4692DAEEFEAF6 /* REAOperatorNode.h */, - FDD551671D8B9B950EC901DF038BD847 /* REAOperatorNode.m */, - 90B37B107B18843F906626722F0D460C /* REAParamNode.h */, - 5E36E388D5D9AED3B87265E9DE468D1B /* REAParamNode.m */, - 7945D6FE3AD2068CCD887818DCF8E3D4 /* REAPropsNode.h */, - 415F3E5470AF03E227F33C7685577453 /* REAPropsNode.m */, - 762660FFC0E4FE182E1FFE0CD372E250 /* REASetNode.h */, - 11D57F3E85CB70F4630EAE63364EAFC9 /* REASetNode.m */, - 6B9EECE7FEF87ABC9945DCC76B0242B4 /* REAStyleNode.h */, - 4FCF17466F0DCA386762F8FED8C852E0 /* REAStyleNode.m */, - 36938C4AE46A403632FBBB6781E84192 /* REATransformNode.h */, - EC5D37BC5F9383C4051C5CC05D3BB2D7 /* REATransformNode.m */, - 61CD7DFA4D6FA1B5DCD652D7B498AC51 /* REAValueNode.h */, - 9D6B806B0C24218829AD1891707AAB87 /* REAValueNode.m */, + B4DB9002992F6C1F1B0D7325578F65D8 /* React-jsiexecutor.xcconfig */, + BFDC408389CB2C71CCB52D6A88B529F1 /* React-jsiexecutor-dummy.m */, + 26E6F381E54D63B3B6494AEBD4A5B28E /* React-jsiexecutor-prefix.pch */, ); - name = Nodes; - path = ios/Nodes; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; sourceTree = ""; }; - 5072BC143B26C83F7DBD9B570A7E2F2E /* UMReactNativeAdapter */ = { + 5057049FEC168F7A6584384331BAB91E /* Support Files */ = { isa = PBXGroup; children = ( - 7D15E6C15A7316E075DE1480693E3EC3 /* UMBridgeModule.h */, - A534A8DAF6642C3F95E6D17048CE5F49 /* Pod */, - 2B6216FC326AC3EDBE78420891126E9B /* Services */, - 5305AE8CFB08ABDBDE1CFBFF0EDC8AB4 /* Support Files */, - 01F71F6A382BA8C526E97D12453355F2 /* UMModuleRegistryAdapter */, - 012FC69BE3EE39BA699E14877377CE35 /* UMNativeModulesProxy */, - 1E98D589CDB02DE6E666D432678EBB7A /* UMViewManagerAdapter */, + 756DB69AC60ABE66C85FA7A50F750FED /* react-native-orientation-locker.xcconfig */, + 60BC1B16DBA95BF0B4A0A58D8D19924C /* react-native-orientation-locker-dummy.m */, + 8349C1ED2875E354054E1A1C6D0DCAB1 /* react-native-orientation-locker-prefix.pch */, ); - name = UMReactNativeAdapter; - path = "../../node_modules/@unimodules/react-native-adapter/ios"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; + sourceTree = ""; + }; + 50C581FD4D8D9DCF06347AE8C8F2ECE8 /* auth */ = { + isa = PBXGroup; + children = ( + EC9D4A28059892E242284CB4F0ABA042 /* RNFirebaseAuth.h */, + C51E3248075DA87730F8569F1ABA1D10 /* RNFirebaseAuth.m */, + ); + name = auth; + path = RNFirebase/auth; sourceTree = ""; }; 50CE2A98724B88B6511B9FC9A63BD750 /* libwebp */ = { @@ -13178,33 +12939,6 @@ path = libwebp; sourceTree = ""; }; - 512C5570E8ADC8F326BDA112C15D0B14 /* UMCore */ = { - isa = PBXGroup; - children = ( - E2CB38D8C97E32A3F4DCD3D043F9798C /* UMAppDelegateWrapper.h */, - 1D6E5B64017CA191E21A10500294791C /* UMAppDelegateWrapper.m */, - FD340A681087E5EDF44BFE8125F94E33 /* UMDefines.h */, - 61BCFC87F27E2D92FBE9152AD141F7D1 /* UMErrorCodes.h */, - 54B3E0CEA29CC571D11A364AD4711081 /* UMErrorCodes.m */, - 1C575223DD80A1A324BE64F252A30A9F /* UMExportedModule.h */, - 7288210CAECF12E039CD64A2C78D6019 /* UMExportedModule.m */, - BC5A69BE5A136CFCBA030C7348047FAF /* UMSingletonModule.h */, - C7D50E8970AD79B27DF87DBF1760F03A /* UMSingletonModule.m */, - 7650710798CC06A03542A2EC3C4AA111 /* UMUtilities.h */, - FA7CB6620E78F55861DAC14448B01FEA /* UMUtilities.m */, - 41EFF701D7733E84C3E6CB4249D15E50 /* UMViewManager.h */, - 667CD6E0621A6A22626D17C1FC4193F5 /* UMViewManager.m */, - 8826C64CA7B950E0D05C38FBC27C1D75 /* Pod */, - BE36DD3E09D244C34A09999220E5B74F /* Protocols */, - 808EDE8CE433DF3A694F0345285DC2CF /* Services */, - C8EAA790EE1C1985F7B99B7DD20B2951 /* Support Files */, - F4E51F4BE8CADB9EA880D18457D26138 /* UMModuleRegistry */, - AAE847ED7CBED5236F0B5F67DE126943 /* UMModuleRegistryProvider */, - ); - name = UMCore; - path = "../../node_modules/@unimodules/core/ios"; - sourceTree = ""; - }; 519321310C6145F0BC711C3B3BC24F11 /* Pods-RocketChatRN */ = { isa = PBXGroup; children = ( @@ -13222,48 +12956,6 @@ path = "Target Support Files/Pods-RocketChatRN"; sourceTree = ""; }; - 520D892D9CA8AB79F67C1CF75FB5961D /* Support Files */ = { - isa = PBXGroup; - children = ( - D3CB7593538589D725451D196525C08D /* UMImageLoaderInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; - sourceTree = ""; - }; - 5305AE8CFB08ABDBDE1CFBFF0EDC8AB4 /* Support Files */ = { - isa = PBXGroup; - children = ( - 4902917D498A6B50F1CC8A63FC284F56 /* UMReactNativeAdapter.xcconfig */, - 3E81CBB70226B89AF95EBC4D1189E164 /* UMReactNativeAdapter-dummy.m */, - 1026A0EA6EE749E75A0B9AD22250EBE0 /* UMReactNativeAdapter-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; - sourceTree = ""; - }; - 530D4F52BD5CF7D56BF9078E1709CBEC /* Support Files */ = { - isa = PBXGroup; - children = ( - 6D55422F96B86133BA39796E3E0BFAE1 /* ReactCommon.xcconfig */, - 61921553F1EC97895789B8D5FFC8C8E0 /* ReactCommon-dummy.m */, - 9A19DA83C15C897A7408690D694E37FE /* ReactCommon-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactCommon"; - sourceTree = ""; - }; - 53BCECCE872E61EE9806C1BF5F13FA9B /* Support Files */ = { - isa = PBXGroup; - children = ( - A266A310E438F6D6275F6951C789F666 /* React-RCTAnimation.xcconfig */, - 61E745892A7448F89C062DEE4419807D /* React-RCTAnimation-dummy.m */, - 1778BB76850FD1A4A84F34996DDA2CB5 /* React-RCTAnimation-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; - sourceTree = ""; - }; 543AC9958110B577106FB5FE196BF6A6 /* Support Files */ = { isa = PBXGroup; children = ( @@ -13274,159 +12966,161 @@ path = "../Target Support Files/GoogleDataTransport"; sourceTree = ""; }; - 54D2AB7E55741AAF4894F78CB2DDECF6 /* Support Files */ = { + 54F9C92849F083966F15EBEDD414A1C0 /* Support Files */ = { isa = PBXGroup; children = ( - 0DCCA917653E3FB19DCC244BC113C5FD /* RNCMaskedView.xcconfig */, - A35C702B991BD84D970E4366E95038AD /* RNCMaskedView-dummy.m */, - 484FBA874A17D7148C4F3612F39F57FC /* RNCMaskedView-prefix.pch */, + E91AD6284DD4AB7F771C29815C3A0022 /* EXLocalAuthentication.xcconfig */, + ED55C10A7DA7EE91F2EF2FBF40E36ED5 /* EXLocalAuthentication-dummy.m */, + 5B6435866EEF6A5BB90B65DE63BD83B3 /* EXLocalAuthentication-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNCMaskedView"; + path = "../../../ios/Pods/Target Support Files/EXLocalAuthentication"; sourceTree = ""; }; - 55BBE6DA80C2065E3EDCAF194FD67E02 /* Pod */ = { + 55384BCA896B2711670C68DF64D3D330 /* Pod */ = { isa = PBXGroup; children = ( - 6C10A44E8B12B1A686F6D253C78335FB /* UMPermissionsInterface.podspec */, + 032664ABA202E30892CBB23A17DB14F3 /* LICENSE */, + 1606FAF1B7E71C3407C25835E69D6CF9 /* README.md */, + 8E5089BAFB07659F6E7AC0E0316AC029 /* rn-fetch-blob.podspec */, ); name = Pod; sourceTree = ""; }; - 568A84114214E476D7E8745F4FFBCB25 /* RNFastImage */ = { + 555D4A8EBD4041A0B52AA2F56957D6DA /* FBReactNativeSpec */ = { isa = PBXGroup; children = ( - 8F2E5A60687B26ECCDAEB921308A2BD5 /* FFFastImageSource.h */, - E06F518B230FA65E6F5216AF15600058 /* FFFastImageSource.m */, - 0A8D1FED0CE58854EEB0575FC8C80A45 /* FFFastImageView.h */, - C56B74B0A8D4393BF56F060DF429EFB4 /* FFFastImageView.m */, - 4AC46F45DA1D34DC0406E3439D485A29 /* FFFastImageViewManager.h */, - 416047E8ABB8DCF4B1C92A69B0BE21DA /* FFFastImageViewManager.m */, - 788248476225073802F6DDD8C52E6EB2 /* RCTConvert+FFFastImage.h */, - DB464BF08C80F086A79A4B094295F4AD /* RCTConvert+FFFastImage.m */, - 66F82812B40C676C05BE470E5D48B7E9 /* Pod */, - 120423C547605188F1E0347B53A49434 /* Support Files */, + F01F18AEA282CB9E34DD14D19C2D63A1 /* FBReactNativeSpec.h */, + 688D0ABC174C6A9DB209984CF35D97C7 /* FBReactNativeSpec-generated.mm */, + 2BFCCD8FB1F341ABE2FDBB306D0E837E /* Pod */, + F10C7E5318941DCA2B337E21F2877404 /* Support Files */, ); - name = RNFastImage; - path = "../../node_modules/react-native-fast-image"; + name = FBReactNativeSpec; + path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; sourceTree = ""; }; - 573496722B50EFD289DC59353B20DF06 /* Pod */ = { + 56CA0842623633108B5E2C2CBE0338A3 /* Nodes */ = { isa = PBXGroup; children = ( - 3E3B134139265E70A7391B77D55C5C79 /* Yoga.podspec */, + 86B6EA59C8167D6CAF1A59391D82DA84 /* RCTAdditionAnimatedNode.h */, + 1B2948ABDB21DABAE59D9D6DFF951012 /* RCTAnimatedNode.h */, + 2C2FBC0A054D33CDCCF8C06A100B019E /* RCTDiffClampAnimatedNode.h */, + 5FAEB419F66E1976F7843B1EC7F1F451 /* RCTDivisionAnimatedNode.h */, + 4D30D8C74FFA15785DB15BC7AFBAA963 /* RCTInterpolationAnimatedNode.h */, + 14491B988359F95819D696C672587578 /* RCTModuloAnimatedNode.h */, + 0615D3DFC82C26757E1BD398535DAACC /* RCTMultiplicationAnimatedNode.h */, + A37715BF54D25621CFB1E49A366C553C /* RCTPropsAnimatedNode.h */, + 887C85C30BFFB73C5ACCE12EB42C4735 /* RCTStyleAnimatedNode.h */, + B74B3D0393A1DA20C2CFA6536BD32337 /* RCTSubtractionAnimatedNode.h */, + 86E7A2742CDDAC5A74CEFA4B2A333DE2 /* RCTTrackingAnimatedNode.h */, + 88956C81AA4B077BC4788F5BD4D3B66D /* RCTTransformAnimatedNode.h */, + 2DB92C8FC3FC92540D11087C99286E40 /* RCTValueAnimatedNode.h */, ); - name = Pod; + name = Nodes; + path = Libraries/NativeAnimation/Nodes; sourceTree = ""; }; - 581E40054BB5E0CDC8AA03D71631D21C /* RawText */ = { + 56CB59F734C755F10DA425C075879FEE /* Support Files */ = { isa = PBXGroup; children = ( - 3EBC062030E2474E2800217FE40BDB2D /* RCTRawTextShadowView.h */, - 7CB13247273DA1EDC15E72E4B74C2E1C /* RCTRawTextViewManager.h */, + 51EDE4A352C03CEEFF24BC91E49758F7 /* react-native-safe-area-context.xcconfig */, + 7FB0C95DF7E2E303FFFE3017E48AF553 /* react-native-safe-area-context-dummy.m */, + 2868DBB725094899C2B14D6416E2A0E2 /* react-native-safe-area-context-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-safe-area-context"; + sourceTree = ""; + }; + 575672154DAAF25A043C03758C7ACC82 /* admob */ = { + isa = PBXGroup; + children = ( + 56329E2231A05D55C0A5FF45601A5F03 /* BannerComponent.h */, + 3D71F8CB11FA9EFCE632EF2ADC483214 /* BannerComponent.m */, + 2CF59DE05A098DAA833C7A70753F25BC /* NativeExpressComponent.h */, + D93AB3281682C4922FEE2F3E42D74976 /* NativeExpressComponent.m */, + 9F629F100430310341B2F399E260D8E6 /* RNFirebaseAdMob.h */, + FE33B6D87F46148EA40455A33D94BA39 /* RNFirebaseAdMob.m */, + 5A4F53AB3445FE3C43E2B355A096F6D5 /* RNFirebaseAdMobBannerManager.h */, + 066FD3A91B0F1517F1463DB5F7CABA38 /* RNFirebaseAdMobBannerManager.m */, + B9101611D1081DAA8646B34923008FE7 /* RNFirebaseAdMobInterstitial.h */, + A038D71AFF5935A62E96279F15FB1CA9 /* RNFirebaseAdMobInterstitial.m */, + 7AC151F4ACB07F1042E6F75F7183386D /* RNFirebaseAdMobNativeExpressManager.h */, + B36E7575D09CE06B36B64262E56AD7A1 /* RNFirebaseAdMobNativeExpressManager.m */, + 0E3265C42333A48771EC37248BBC59B3 /* RNFirebaseAdMobRewardedVideo.h */, + 218422C5163CBAD686311A3CF0701DF7 /* RNFirebaseAdMobRewardedVideo.m */, + ); + name = admob; + path = RNFirebase/admob; + sourceTree = ""; + }; + 585D34274855BF0119B6A9E500D7F05E /* RawText */ = { + isa = PBXGroup; + children = ( + 0A8028BCC58743A6AB3702379DF66EB6 /* RCTRawTextShadowView.h */, + FE19B7DAAB2672D88B1F5E74DE62B517 /* RCTRawTextViewManager.h */, ); name = RawText; path = Libraries/Text/RawText; sourceTree = ""; }; - 5837BCC1FB4BFABEDAFBA89BEA003D2D /* react-native-document-picker */ = { + 59641CADCE1F13341419F7DE2A2694FC /* Text */ = { isa = PBXGroup; children = ( - 36B4B555A7345845BD541D75B33A46D8 /* RNDocumentPicker.h */, - 936B379768BFE692579CEB953C6E4BFA /* RNDocumentPicker.m */, - AFE3948AC31752A57634DA0EFF3F8C8C /* Pod */, - 20BCFC336B602B0CEF85417D45EFAB55 /* Support Files */, + 91A3294E0CAE80277F6BA9F07BE963ED /* NSTextStorage+FontScaling.m */, + F91B915CE87D11F1EC02D7B6AE542EC5 /* RCTTextShadowView.m */, + 9A8D977AFC2C5F8CB3A5F09188EB520E /* RCTTextView.m */, + 404125022A4DE6ACDF8B89CC27579A03 /* RCTTextViewManager.m */, ); - name = "react-native-document-picker"; - path = "../../node_modules/react-native-document-picker"; + name = Text; + path = Text; sourceTree = ""; }; - 5941716C7716FEC2892133AB4465B924 /* TextInput */ = { + 5B08F74F43DB6AA8D2D7C89F425E89D8 /* UMSensorsInterface */ = { isa = PBXGroup; children = ( - 7950D5F8D42922169511C70BC8A76A9E /* RCTBackedTextInputDelegate.h */, - 13476D98851D62545BC85FC3F3B75065 /* RCTBackedTextInputDelegateAdapter.h */, - F36EFD190D824B1AA3C9D168D5A91F6D /* RCTBackedTextInputViewProtocol.h */, - 3AAC11F1613B55F051B873E278DC1C4F /* RCTBaseTextInputShadowView.h */, - 1C18C780B51845AEAD8B40A66BD671EA /* RCTBaseTextInputView.h */, - 11B2CD6FEA433142CF2642FD63D646A7 /* RCTBaseTextInputViewManager.h */, - 0D9526635D048D516E86BDC0C54F35F7 /* RCTInputAccessoryShadowView.h */, - E0F93B07CA6A177B020501B813AF73FE /* RCTInputAccessoryView.h */, - 1657E2CFAD8519FA56E7AC6F8133E913 /* RCTInputAccessoryViewContent.h */, - 838B0E00132CBB87EE347175D86573F0 /* RCTInputAccessoryViewManager.h */, - B22B1FCA440606BDC621C87A505EA7DE /* RCTTextSelection.h */, - CC86FD01E56D4248464AA2805830DDFD /* Multiline */, - B1153DDB0D80CA0A62D3C7199BBCC871 /* Singleline */, + 9BB37923E297A754832080958B8B5FEC /* UMAccelerometerInterface.h */, + 8FE5E457B8AA0BA085359B0443A137B2 /* UMBarometerInterface.h */, + C72EFF39F9845C65ECAFF95FFC67AED7 /* UMDeviceMotionInterface.h */, + 461AC52930C06809C3A0A91CCC3D7E5B /* UMGyroscopeInterface.h */, + 60CEF74DE427937C7D1DF1E267410A4C /* UMMagnetometerInterface.h */, + A68E398CE32D7ADB78DE83D46C0163BD /* UMMagnetometerUncalibratedInterface.h */, + C77D241DC3FE4B81336FC547EB076024 /* Pod */, + 0B1C2E8D8EB325D292C25F38A959046B /* Support Files */, ); - name = TextInput; - path = Libraries/Text/TextInput; + name = UMSensorsInterface; + path = "../../node_modules/unimodules-sensors-interface/ios"; sourceTree = ""; }; - 59A5662EAAFF300273BE44CA1FB64D10 /* Pod */ = { + 5BABCC3389C6D56CF2B8CA6247E086F4 /* Support Files */ = { isa = PBXGroup; children = ( - 83ED5419D765BF8786FEE8E3BC0ACD92 /* React-CoreModules.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 5ACB4F600152D8BA486BA640421CF67F /* Pod */ = { - isa = PBXGroup; - children = ( - A0554BCE5634A9AE3D00F74D15EF8A3A /* RCTTypeSafety.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 5B20B163ACBB47409521B71F4298EC59 /* BaseText */ = { - isa = PBXGroup; - children = ( - 0768F9582B509DD1903F273F99CCBE3A /* RCTBaseTextShadowView.h */, - F92A4A615D9303E8F7019A445D3B7EAB /* RCTBaseTextViewManager.h */, - ); - name = BaseText; - path = Libraries/Text/BaseText; - sourceTree = ""; - }; - 5B5F6F868719F0F706C02941CE2B4F17 /* Pod */ = { - isa = PBXGroup; - children = ( - 12D3CD87830F42F1663F1365496738BD /* EXAV.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 5C5A3B1D8F6EA362B0CF5F056546022F /* Support Files */ = { - isa = PBXGroup; - children = ( - 9A04A4A96919D130F7EC9F19E79E9BD5 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, - 75D42886A8D8EE19739010B6AE86A9C4 /* RNImageCropPicker.xcconfig */, - BAD73BD5778173836BF37DB3E81D1893 /* RNImageCropPicker-dummy.m */, - 5B041A42D0A700C4788205E2676C57FF /* RNImageCropPicker-prefix.pch */, + 9B11399D7D9C0CC421366F0B70405608 /* EXPermissions.xcconfig */, + 92BC26C6959C651149076B70977E6A2D /* EXPermissions-dummy.m */, + 53D7F6BFEC09B23AD74FFD107A935416 /* EXPermissions-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; + path = "../../../ios/Pods/Target Support Files/EXPermissions"; sourceTree = ""; }; - 5C7E681F165666BF648A3273C5EE9D6B /* Support Files */ = { + 5BD3CDDAA18AEA0F7499B011397E3CA1 /* React-RCTActionSheet */ = { isa = PBXGroup; children = ( - 154930B5CD237788D51995410631A451 /* rn-extensions-share.xcconfig */, - 945E2FE17CD93180418682D517F48A18 /* rn-extensions-share-dummy.m */, - 0D15C40CA8D0C400B39E4EC4ABF7AF5F /* rn-extensions-share-prefix.pch */, + D09F2CCCE0B5BECE9759D5AF56E0DC67 /* Pod */, + 39A56978D6F28AAD11DCA7EF8335D2A8 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-extensions-share"; + name = "React-RCTActionSheet"; + path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; sourceTree = ""; }; - 5CBF5862DCE646C71479424BC720C47C /* converters */ = { + 5CE6AC589C5C4294462A7296BAF6484D /* ReactCommon */ = { isa = PBXGroup; children = ( - F065C44BE36C5DF55B20032E78356FBB /* RCTConvert+UIBackgroundFetchResult.h */, - 2C5383D8B108AC10101C2B270CFD6834 /* RCTConvert+UIBackgroundFetchResult.m */, + 266C53CD9F82282A7CAB70AECF3D67A7 /* callinvoker */, + A3BA2B2AFCB59E1AB204ADFBFEC7DFC4 /* Support Files */, + F328997D35C107D877CD77AF7AE95930 /* turbomodule */, ); - name = converters; - path = RNFirebase/converters; + name = ReactCommon; + path = "../../node_modules/react-native/ReactCommon"; sourceTree = ""; }; 5D294D3CAF4E18644A598886692185E0 /* Support Files */ = { @@ -13438,130 +13132,203 @@ path = "../Target Support Files/Firebase"; sourceTree = ""; }; - 5D51901BFB548A56AD90038D48C6322F /* Default */ = { + 5D57A9C7F2C1BF322DDC4D75B2835682 /* Multiline */ = { isa = PBXGroup; children = ( - 39BD5101C866BC4FC736A114EC5C2DD2 /* Base */, - A54623681621CAE4F74A50B1F2377527 /* CxxBridge */, - C468EE21EFC5FCA8528BDEE66E6B6183 /* CxxModule */, - 072B55F4F16C6E867C79FFC7B0B93C4A /* CxxUtils */, - E9CA97DE5AB07581D7ECE3BFE8528991 /* Modules */, - 0F36A3F2AF21B6B60CE75AB5F670F2C0 /* Profiler */, - C8D036CC3D3C7E7CB6920B33CA4716BD /* UIUtils */, - 38C738ABECC4178C40206D15C36CFA71 /* Views */, + 0FBCF12118BE36F18E343B01FE292CBC /* RCTMultilineTextInputView.m */, + D66BC7D0B852BE873C1CC9FC4836A3F7 /* RCTMultilineTextInputViewManager.m */, + 4B4D3FE3A0902B85586AB8E1709522DA /* RCTUITextView.m */, ); - name = Default; + name = Multiline; + path = Multiline; sourceTree = ""; }; - 5DF30D12C08D644CF416FE8F8251EF9F /* Pod */ = { + 5DD34C1192395A01CAC59A1F1C53FFF3 /* Pod */ = { isa = PBXGroup; children = ( - 2F875BFD1CA3EC391F34B82B3BD1A9F0 /* EXFileSystem.podspec */, + BAEB73E466BB265D89EE1E33D6DA3E00 /* LICENSE */, + 7106EEAFBE6BAE4A506A5118B384AB1F /* README.md */, + CD54189EB54FEDC36E9CEB99FAE74F47 /* RNLocalize.podspec */, ); name = Pod; sourceTree = ""; }; - 5F2E577FACAEC47FC4941B7DDE69F0C4 /* Support Files */ = { + 5EA619D241822FE3E6925F88112922D0 /* Support Files */ = { isa = PBXGroup; children = ( - F77C8987370E646D1FE60087AC86D072 /* react-native-notifications.xcconfig */, - F637BCDB775FCB93C477528433F01104 /* react-native-notifications-dummy.m */, - D9754B6838118A3DED915C2546CA93CE /* react-native-notifications-prefix.pch */, + 6DF84C4AC2FF0FD8AF3C923CCBCA3EEB /* React-RCTLinking.xcconfig */, + 902C59283CA9D5897D96DC5A6A036B75 /* React-RCTLinking-dummy.m */, + B458A529C776F13CD9070EB18C8504A3 /* React-RCTLinking-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-notifications"; + path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; sourceTree = ""; }; - 5F3FA00CDA3087145C5C928EF21C9A08 /* Support Files */ = { + 5F703CFEEE07B41A508F85312EA62CFA /* Pod */ = { isa = PBXGroup; children = ( - 1822FEE04D7DC86E792297283A876EB3 /* react-native-slider.xcconfig */, - 5E654BD64EA4CF0D62614F245EBE844D /* react-native-slider-dummy.m */, - D5AF5604A394A4E31355F0EA0DFD48E6 /* react-native-slider-prefix.pch */, + 79F313B36542D7D26580C516EABE6289 /* EXAV.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-slider"; + name = Pod; sourceTree = ""; }; - 5F4724DA493B391ADB356DB755460DE6 /* Support Files */ = { + 5FA3D5B563F60ADA267450E6EDEDB551 /* Pod */ = { isa = PBXGroup; children = ( - 2F8A02485800C6E27383CAEF19BAB5B5 /* UMConstantsInterface.xcconfig */, + 53BD81CD8513B30AA00AC0C699A9998F /* LICENSE */, + AA8CD82969CCBF7E27116E4DF0040E1E /* react-native-appearance.podspec */, + 454B7DA6BA91FEB1C6431A46061AE923 /* README.md */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; + name = Pod; sourceTree = ""; }; - 6007012FE1EDFD9D99D53D26DAC0C707 /* React-RCTText */ = { + 61762E0F01CF291269A0204FA0E84808 /* Protocols */ = { isa = PBXGroup; children = ( - E4516ED18B46059F908E125B5657004B /* RCTConvert+Text.m */, - 079E15960D8A469FBF3CE8B19E12F350 /* RCTTextAttributes.m */, - D294F4F52424E2872CF14D8EB0107259 /* BaseText */, - C49DF1796B469AA3C3A16E66D5314A90 /* Pod */, - F334F3BD628C0C35029B400E9FDD3025 /* RawText */, - 17F212CDE9DEE057EF3554A07EB7445F /* Support Files */, - 1D4A68B2F734EBD28D1AA86FAFE5F4DA /* Text */, - 141EB77E853A9622D6F7FB4B76637AF9 /* TextInput */, - 2E1F1C8D15A750696AC808C9D24392DB /* VirtualText */, + 4CB1F7A50693D9CF3D1B8F89276D0618 /* UMAppLifecycleListener.h */, + ED5BC9D96294FFB993377139D192A7E2 /* UMAppLifecycleService.h */, + 554B22F03906055DC4B73FDEE5372239 /* UMEventEmitter.h */, + 40E6DCD80E4FC6FFB164600E707463D7 /* UMEventEmitterService.h */, + 1B87F8E16A65AB0AA58EBDC9AC6B343F /* UMInternalModule.h */, + BB6917060CD8E3BCC7BAC43AAF2FDFEE /* UMJavaScriptContextProvider.h */, + F99A0A68F1381494A19F623FB3B97C43 /* UMKernelService.h */, + 55DED3FBCD9CA821EF7A18DF058FC1EE /* UMLogHandler.h */, + 3F96DF6D6BA0CF581CC46C988CF8122B /* UMModuleRegistryConsumer.h */, + F0AEA7B0AFBBC79FE0CA376439E2A09B /* UMUIManager.h */, + 762BEEE67A6C2BA66BC01DC9BDDEBEE5 /* UMUtilitiesInterface.h */, ); - name = "React-RCTText"; - path = "../../node_modules/react-native/Libraries/Text"; + name = Protocols; + path = UMCore/Protocols; sourceTree = ""; }; - 6014E7A579507E5D5985C3C06A8B2FD8 /* UserNotification */ = { + 61A1692F5A4B578EAF8EF4A23F6CD6A4 /* react-native-jitsi-meet */ = { isa = PBXGroup; children = ( - F8D4C288124F351C8ACC90F7B1B6EDB6 /* EXUserNotificationPermissionRequester.h */, - 1FBEA0DAC355C97FB1BBC87C15F7363C /* EXUserNotificationPermissionRequester.m */, + 91937954EC3D19154FBDF69F9966BDCD /* RNJitsiMeetView.h */, + 911B53B91157F66224EA02E8A8FA0B7F /* RNJitsiMeetView.m */, + 2DCFC81374FB80B7085A8B149771FECD /* RNJitsiMeetViewManager.h */, + A836149B7ADFE67BA66D94796213734B /* RNJitsiMeetViewManager.m */, + 2B82DD34B6F225D7C08445875360AB61 /* Pod */, + AD8F51D43C17C1F674A78CC20CCD51B4 /* Support Files */, ); - name = UserNotification; - path = UserNotification; + name = "react-native-jitsi-meet"; + path = "../../node_modules/react-native-jitsi-meet"; sourceTree = ""; }; - 60FAA5274D0CFB9A9C7958AD337B5B43 /* Support Files */ = { + 62DD65BDAD21786832F1665CF4036965 /* Pod */ = { isa = PBXGroup; children = ( - E71A285B6E54E2E7954A6ED16E689A84 /* RNScreens.xcconfig */, - 979A89974EA11CC2F7307DC24AE485A6 /* RNScreens-dummy.m */, - F56F5FD8157251878F55A2C6C6756BF9 /* RNScreens-prefix.pch */, + D24D871466449AFC51109827456C4216 /* EXConstants.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNScreens"; + name = Pod; sourceTree = ""; }; - 618FBF0F325F3B07E9F08C73B1CE583B /* UMImageLoaderInterface */ = { + 635DBA49E5037EF9089256C518CFBA5F /* Source */ = { isa = PBXGroup; children = ( - 9DF528330DCE2264552F4634E1A3FE2C /* UMImageLoaderInterface.h */, - F2D6561EFC6ACF63F93471C163C26253 /* Pod */, - 520D892D9CA8AB79F67C1CF75FB5961D /* Support Files */, + F1E839D3BA68E28756EAAC8A5913028E /* BSG_KSCrashReportWriter.h */, + 931FE198A25C9BC87758418B8F903556 /* BSGConnectivity.h */, + EF5486049EDC1824356D857F5C0F6915 /* BSGConnectivity.m */, + 0C879FAF890CC44C742103804933655E /* BSGOutOfMemoryWatchdog.h */, + 956FA2E8F3CB9BCD8C901DE0C9995E5F /* BSGOutOfMemoryWatchdog.m */, + 7AD03E484778128BB377B052A004064B /* BSGSerialization.h */, + 37895F3BEBC6FBAE7B69AC1E9B664C63 /* BSGSerialization.m */, + 9FD63B7A2E08464D5A03789191955423 /* Bugsnag.h */, + B15C487F4DC80F8BE99777A46A89376A /* Bugsnag.m */, + 6F77194E54C6A747E949B4AAA15A0675 /* BugsnagApiClient.h */, + 0AC9C1DB7C04328B5BB8E33489022D4E /* BugsnagApiClient.m */, + BEDD8EF93D0127ED2A373DF630F9E051 /* BugsnagBreadcrumb.h */, + 2B73E343A993E6CEF42350881F8F0E84 /* BugsnagBreadcrumb.m */, + 3F82FA274BA7E705C804627258FC1AFD /* BugsnagCollections.h */, + DF467F947B74376C96C9A29D47C69BD8 /* BugsnagCollections.m */, + 1E84BABFA46907C3092C5F2ABC995C29 /* BugsnagConfiguration.h */, + 2D64575D372A7F5A5C6B1E7CAA66CD49 /* BugsnagConfiguration.m */, + 7FDA191D4CCF1F4510BEEA4F4E9F2B67 /* BugsnagCrashReport.h */, + 047E3082BDAAFDB754C2F948E1FB9C07 /* BugsnagCrashReport.m */, + 1DB63DF1A95876A2FAC34C050BCC3855 /* BugsnagCrashSentry.h */, + CD70D2AA3F9709DFA32D80C23A668901 /* BugsnagCrashSentry.m */, + 1676FC615941B3942BB2D9289298A715 /* BugsnagErrorReportApiClient.h */, + FEF078F0F06D226117C9B44CCF7A934A /* BugsnagErrorReportApiClient.m */, + 1FC9F360C6E2DE922732719E9CF39F59 /* BugsnagFileStore.h */, + F48F0353F4F7EE6357B920EF17DCE593 /* BugsnagFileStore.m */, + 3763AB04A89529750855C4C3533760D9 /* BugsnagHandledState.h */, + 2D8409785A38DCC8B6E9EFC8DDF80F5E /* BugsnagHandledState.m */, + 8D520DB62B2AA74B6834DC2104F6A540 /* BugsnagKeys.h */, + B9C741BBFDA15841A9940FD832CA71D0 /* BugsnagKSCrashSysInfoParser.h */, + F0CC2A5C60683A04E50F08667B3742AC /* BugsnagKSCrashSysInfoParser.m */, + 6AC3F7E4DAF9A0BCDF52264CFFE374A8 /* BugsnagLogger.h */, + 3924139DCBF1E96013E3D806FA355B7C /* BugsnagMetaData.h */, + 14B051DDE46778264E83099E407929F4 /* BugsnagMetaData.m */, + 9652CB5F5744FD7E236307D575339A15 /* BugsnagNotifier.h */, + 4B16BF17465FB62E0B3AEEDF1623DC8C /* BugsnagNotifier.m */, + 5856E498F87DC64E56AF486736B65248 /* BugsnagPlugin.h */, + B72142B3DCD694D56D81DDC466849790 /* BugsnagSession.h */, + 71AE41B49320B7D195F1396292016E9B /* BugsnagSession.m */, + 884E3962C61598FE083992ECDA7986DF /* BugsnagSessionFileStore.h */, + E4715A68BDF3486D832920D916ECA375 /* BugsnagSessionFileStore.m */, + 4A5D8F44DCDE87F173CBE63A075DB058 /* BugsnagSessionTracker.h */, + 7D0B357A176559069BF4F07A11BD76F2 /* BugsnagSessionTracker.m */, + 17BC9E5C4DEB82B74B5BFC4E7C56357F /* BugsnagSessionTrackingApiClient.h */, + ECF4AFAE13A35FFC1A16CE050FFC238B /* BugsnagSessionTrackingApiClient.m */, + 3861A556F991E0FB85827D1D364AA6EA /* BugsnagSessionTrackingPayload.h */, + 25BDBD014796225914C8BE9790EEAF48 /* BugsnagSessionTrackingPayload.m */, + F3367CCC04776A1175C5A45EFB6529C8 /* BugsnagSink.h */, + 3B45B6C3975F42178855A0EA49CAAF12 /* BugsnagSink.m */, + 9916466C8411EAC9AAC96756257A4EBE /* BugsnagUser.h */, + FCF1E186581D4AB90F54D0F475088693 /* BugsnagUser.m */, + 2C4AD36AF9A99718600B5ECBED9C08F9 /* Private.h */, + D2226D46095F80681CDF073214B64209 /* KSCrash */, ); - name = UMImageLoaderInterface; - path = "../../node_modules/unimodules-image-loader-interface/ios"; + name = Source; + path = Source; sourceTree = ""; }; - 6302203C9B3CD28065618A7A7F62E2D2 /* Support Files */ = { + 64DF6A39AFBA9668F142BB1022043253 /* Yoga */ = { isa = PBXGroup; children = ( - 1C254DDF760CFE1B957F1285F8E05730 /* UMSensorsInterface.xcconfig */, + D6E511CDA073D7085B98A69C0BF9E92B /* BitUtils.h */, + 4DD6B706D7C83809F01C6C0B11777F78 /* CompactValue.h */, + 3CCC75DE3E19DBDCDC976CB51121AA6A /* log.cpp */, + E65CACEB67E1652527A2057E33BD3A9A /* log.h */, + 2F4B4CF25B4C47002CC185DC4D991BFD /* Utils.cpp */, + D8C74FA13B259036623D80DFFD327CA9 /* Utils.h */, + E8DB26D72064B358DEF28E118D4717F5 /* YGConfig.cpp */, + B5B719F0E723B85512C67960D063CAFF /* YGConfig.h */, + 6A32CB6BF5B614879CA8331936310E6A /* YGEnums.cpp */, + CC8F9EEB184C73EAF0EDBFFB9A9448F2 /* YGEnums.h */, + D10621A800B7B97AA6F5E01BCDFACEA6 /* YGFloatOptional.h */, + 2148262530D07D32B42FD8E37018A73A /* YGLayout.cpp */, + 251536CB04DA819939DE200CBD5BA105 /* YGLayout.h */, + 1EF403D5ED7B4AC1BD1B459C3D9B0A38 /* YGMacros.h */, + 6CDB31BDF2D8BFC7451FA2DE3DEAEEB8 /* YGNode.cpp */, + 08286E5500972EC4C7AFF7710EB30701 /* YGNode.h */, + 0C16D5592AAF54FDAD9945573AAF7295 /* YGNodePrint.cpp */, + BE91CEE35AB92D55B46F5AE10BF32F0C /* YGNodePrint.h */, + DAF9878961E52E9EEA3D247C43084864 /* YGStyle.cpp */, + DBEF8150E3FFC9506A7843EDB9AFD1BD /* YGStyle.h */, + 31B9586A25A945DFDF336F9090B11E07 /* YGValue.cpp */, + 4E8ED8A83DA5B53CBED456E31C005406 /* YGValue.h */, + 9CF2193318F09D8D55E14A40590398F6 /* Yoga.cpp */, + 16EDF9F4F68DD8A45FAF7D7434479632 /* Yoga.h */, + 30E7AB436B129FA770A942480C3CCFD1 /* Yoga-internal.h */, + B30DCF40B8113D7FBD77F511662841CF /* event */, + 77F64B007C151AB85BD97621050EA0C4 /* internal */, + F444A175FD45C81AC68FA64C4A9C5211 /* Pod */, + B09CE1CED6ED41A93C1F440616D45FDA /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; + name = Yoga; + path = "../../node_modules/react-native/ReactCommon/yoga"; sourceTree = ""; }; - 63FE9A6158F19C19811B942F9094005B /* firestore */ = { + 663891084B71F8392225208F585031EB /* UMConstantsInterface */ = { isa = PBXGroup; children = ( - DD2C91842F8AA4B0DF95934449D72C7B /* RNFirebaseFirestore.h */, - BF92E0205AFBC3A8C190909EF2828F9E /* RNFirebaseFirestore.m */, - E7B56BB01334BED5F74C070D50E63B17 /* RNFirebaseFirestoreCollectionReference.h */, - BD51C70EDC724958D2208066FF323929 /* RNFirebaseFirestoreCollectionReference.m */, - F906A24A447302757CF4C1DDD5A2CEC8 /* RNFirebaseFirestoreDocumentReference.h */, - B07ACDDE256221F6C7F1568D6C163BF9 /* RNFirebaseFirestoreDocumentReference.m */, + A2DA013639549EE873CF7EE0CD0D4B78 /* UMConstantsInterface.h */, + DC9AB5AC18E12C0261EF0F622A2B6804 /* Pod */, + 38553B08D4B44A82ED7318CC5C628633 /* Support Files */, ); - name = firestore; - path = RNFirebase/firestore; + name = UMConstantsInterface; + path = "../../node_modules/unimodules-constants-interface/ios"; sourceTree = ""; }; 66BE12F4855C4E39C8CC6926F1CE4466 /* Flipper */ = { @@ -13599,22 +13366,10 @@ path = Flipper; sourceTree = ""; }; - 66F82812B40C676C05BE470E5D48B7E9 /* Pod */ = { + 67C1609F0508825F322811C96A4007A8 /* Pod */ = { isa = PBXGroup; children = ( - D54A5DBCE23CA2C1288506043F78F31A /* LICENSE */, - D244D15B04878FE0B7B9C01DCA5DEA0B /* README.md */, - 4BF971D46BEF2E96744C234BEF055C9F /* RNFastImage.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 67C3D217C8F5AAC31858088D70495219 /* Pod */ = { - isa = PBXGroup; - children = ( - E6049D333E0CB5EEFF80BD18073331AB /* LICENSE */, - 2836C992399327B4574D0ABD5F11D065 /* README.md */, - C966154D3A6D1F45C2A1D4A43DFCC7D3 /* RNVectorIcons.podspec */, + 0660A4AF44B1A8B709A1A279D0F0352C /* React-jsiexecutor.podspec */, ); name = Pod; sourceTree = ""; @@ -13629,32 +13384,59 @@ path = JitsiMeetSDK; sourceTree = ""; }; - 685624A66EE8AD1FE66D93F6A4267BE3 /* Pod */ = { + 6835B1809D0F5824A10DF34E15B66122 /* Support Files */ = { isa = PBXGroup; children = ( - 08F35E718A43E3769E9829CD5DB3D66C /* FBLazyVector.podspec */, + CEAB7B1C6528C25F32EC288834418C84 /* KeyCommands.xcconfig */, + 3082B4F67DF8A2C570FEF766BE0A18F3 /* KeyCommands-dummy.m */, + 008D4EEA0505267E416DCDEBB6A3CB34 /* KeyCommands-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/KeyCommands"; sourceTree = ""; }; - 68C8BA260E0601B049B1CFAD3DFC27B0 /* Pod */ = { + 68B28725610D0DD6C112641D47D2E566 /* Recording */ = { isa = PBXGroup; children = ( - D57BEB2166AD018B6575D3085446368D /* UMCameraInterface.podspec */, + 7034C52AF5A115A04C42690DE056D075 /* BSG_KSCrash.h */, + C7B7295CBF6EF405A44F84AAE4205705 /* BSG_KSCrash.m */, + ADE10929ECA897064616AF907B1E46F7 /* BSG_KSCrashAdvanced.h */, + 82B4266BB676B66E2D74AD3DDE2289B0 /* BSG_KSCrashC.c */, + 4102C6ABE9B6D8A970C2C548F9BE4FCA /* BSG_KSCrashC.h */, + E1302BA0F105DBBB6C1DD6892800572C /* BSG_KSCrashContext.h */, + 6702D43F6FF76BC785818390BF2715CF /* BSG_KSCrashDoctor.h */, + 6EB757A79FF3B69AD6B9E4791A7020F0 /* BSG_KSCrashDoctor.m */, + 19EB35F2F254B311138218F74DE97208 /* BSG_KSCrashIdentifier.h */, + A6B6585247FA2579ED5CCC001FF52D48 /* BSG_KSCrashIdentifier.m */, + 15DF0AD1F4D72162B8B16CBE2821BB68 /* BSG_KSCrashReport.c */, + 557D849BDD58B5EDD349B0A4B70B353F /* BSG_KSCrashReport.h */, + 6986DCB9B08399021A0D79977F8DD2AD /* BSG_KSCrashReportFields.h */, + E26EAC0D5FFC97756CB264A63EE8C6AD /* BSG_KSCrashReportStore.h */, + BA402C1554FE2BDBAB76A90DFB51A5C1 /* BSG_KSCrashReportStore.m */, + E59AAFF2863D30569902D759C7E4886B /* BSG_KSCrashReportVersion.h */, + 9587AC33DF69DBB7AC794A5FFF90F085 /* BSG_KSCrashState.h */, + B79690820F853D09C764DCD73376DDA2 /* BSG_KSCrashState.m */, + 09AEF2D1F4A3A89E05BC42A67C9A9078 /* BSG_KSCrashType.c */, + 5716A6D1621B8CE34399740BD56D3A5A /* BSG_KSCrashType.h */, + E48FF155CEACF2D353DD9A1988CA19C6 /* BSG_KSSystemCapabilities.h */, + F5ADEEE062EADEFBE896922E862E906F /* BSG_KSSystemInfo.h */, + 21F2D742801090DEBF0FE24B3991700C /* BSG_KSSystemInfo.m */, + 43216B6B4C1AEA1BD2A30C66CA5DA2E9 /* BSG_KSSystemInfoC.h */, + FC1A2AC9EADFDB33FC36BABAA944D95E /* Sentry */, + 0BAEE6158DDEBCE3F2D3D828463FEDF1 /* Tools */, ); - name = Pod; + name = Recording; + path = Recording; sourceTree = ""; }; - 6A1D90631ED18BB57C6927D6A758C84E /* callinvoker */ = { + 69C54614F75748C758C57626C4F9199B /* VirtualText */ = { isa = PBXGroup; children = ( - 99AC7C72CBC41B73D2CE21846CE83564 /* BridgeJSCallInvoker.cpp */, - 522A67FF6DEF458E98CF38C1DDE3CE3E /* BridgeJSCallInvoker.h */, - 817EA3D9E4075E22C8E1D7E5FB63F5D9 /* CallInvoker.h */, - B672245AD793F1274302C0FE517E6B43 /* MessageQueueThreadCallInvoker.cpp */, - B0396BECE7B46A50278AC9710C82935D /* MessageQueueThreadCallInvoker.h */, + 187879FBE986DDC8A947A11CEDC57826 /* RCTVirtualTextShadowView.h */, + 57171E8592D216A0BCACF19A6FCE78FB /* RCTVirtualTextViewManager.h */, ); - name = callinvoker; + name = VirtualText; + path = Libraries/Text/VirtualText; sourceTree = ""; }; 6A912DFBEF3C3AA952685022884D3B52 /* CoreOnly */ = { @@ -13665,6 +13447,38 @@ name = CoreOnly; sourceTree = ""; }; + 6B003C27A1CC5E397BF46797E17455DB /* Pod */ = { + isa = PBXGroup; + children = ( + E104B46A43DFAA4D5F590037BBD1B791 /* LICENSE */, + 664A19866F0F704D6D518F77B73F550F /* README.md */, + FC67C6BDDEAF5A2442364063DE94D1BB /* RNUserDefaults.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 6B0CAB366CC3BD5C6ED31F3A127D4025 /* Support Files */ = { + isa = PBXGroup; + children = ( + B99C9BB3EF243DDDCB218744CD0C9125 /* React-cxxreact.xcconfig */, + 418793307BC38610A8688BBDC0102CF2 /* React-cxxreact-dummy.m */, + 9F21288D0DC16C988FA9A185036BDFAA /* React-cxxreact-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; + sourceTree = ""; + }; + 6B3F1D0652DDF2F6C431EEC0F4C29AFF /* RCTWebSocket */ = { + isa = PBXGroup; + children = ( + 81A037AD65496FFC1B100F0F22692DEC /* RCTReconnectingWebSocket.h */, + A546E06EEC18CC5AB5459E96314B48FF /* RCTReconnectingWebSocket.m */, + 365A6806983A06E40D88574D1A430189 /* RCTSRWebSocket.h */, + 1BE06198C27F8E9E487826A3D1389423 /* RCTSRWebSocket.m */, + ); + name = RCTWebSocket; + sourceTree = ""; + }; 6B6C67192AE9F11CBBD87057B8D02F8D /* Frameworks */ = { isa = PBXGroup; children = ( @@ -13673,6 +13487,14 @@ name = Frameworks; sourceTree = ""; }; + 6C7AB5E57803928A10DB3B26F2FD287B /* Pod */ = { + isa = PBXGroup; + children = ( + 90F5D0DCF5243D92714915E6A47EC69A /* React-RCTLinking.podspec */, + ); + name = Pod; + sourceTree = ""; + }; 6D0643508C3373F6059224980E136831 /* FirebaseCore */ = { isa = PBXGroup; children = ( @@ -13722,89 +13544,68 @@ path = FirebaseCore; sourceTree = ""; }; - 6E4159F5BBD253BF8DB6980D883CEE03 /* RCTAnimationHeaders */ = { + 6DBE6BED24524D3B8AC0D2BE7659AE3B /* React-RCTText */ = { isa = PBXGroup; children = ( - 57C1D0033FCD6C917A9C222F068771BA /* RCTAnimationPlugins.h */, - 7B1AFAFD053657E0139E2976E1B03C55 /* RCTAnimationUtils.h */, - 956A735CFDA4202C8A959EBDB7B2FF59 /* RCTNativeAnimatedModule.h */, - 0F4E46F906C35AFCA50D74860A1A755E /* RCTNativeAnimatedNodesManager.h */, - E216610296C04F8931FDCA395C0BB54F /* Drivers */, - 9AC3A8091E1B2ECB429D5E4D0FE410DC /* Nodes */, + E17B60C58DF1CD7EBC60C27183ECCBB2 /* RCTConvert+Text.m */, + 95DEEB975C251DC0DD518B4F697B113D /* RCTTextAttributes.m */, + AA010E07B27634C44BBA986629A540E9 /* BaseText */, + 80ED7F24B4AEEBF0D1B3CD22CF027CE7 /* Pod */, + 08DD0716338B6985C2F338612F8A4A24 /* RawText */, + 25CB0469783D4D915BD07DD663977BF4 /* Support Files */, + 59641CADCE1F13341419F7DE2A2694FC /* Text */, + 3820C957CF703D246758D4F95FEF8CF9 /* TextInput */, + 305431BE074DD17F30563ECC511D40FC /* VirtualText */, ); - name = RCTAnimationHeaders; + name = "React-RCTText"; + path = "../../node_modules/react-native/Libraries/Text"; sourceTree = ""; }; - 6FF0AF91F44712D37109D0D96264384F /* Pod */ = { + 6F71257E6B9C99F6C8427C0987236D5A /* react-native-cameraroll */ = { isa = PBXGroup; children = ( - B89FBE68534027D71FA51453AF01C170 /* LICENSE */, - 1B60FBA5879F6ED7539AE706D52D79AA /* README.md */, - 0566809519C6B1B9B8048DD66BB8D9FA /* RNImageCropPicker.podspec */, + 96AA26E861DA5B0E29D148F918CC770E /* RNCAssetsLibraryRequestHandler.h */, + 382504A213EAEA9F7B9E6159D87B51D8 /* RNCAssetsLibraryRequestHandler.m */, + 766D25EE8AC06E2F849B9A4EF23CD32F /* RNCCameraRollManager.h */, + F95EDB6F891DB33312838AF3CFEBCE5D /* RNCCameraRollManager.m */, + 3CAC4DC5BC7BCB3C6B5719BD364C1F06 /* Pod */, + FC6A41A889E0B1DFAC58BC9611C90F15 /* Support Files */, ); - name = Pod; + name = "react-native-cameraroll"; + path = "../../node_modules/@react-native-community/cameraroll"; sourceTree = ""; }; - 6FF8F1A7EA1C8FCEC0690B0A87C4125E /* RCTBlobHeaders */ = { + 70F0D36986108076B2A3C6C0049783AC /* Support Files */ = { isa = PBXGroup; children = ( - 2AE7D63FD52D8DF551781E15915CDBF0 /* RCTBlobManager.h */, - 57CC54FED6E3BD09BB3C35419FE88DE3 /* RCTFileReaderModule.h */, - ); - name = RCTBlobHeaders; - sourceTree = ""; - }; - 7026EAF29F017BEAB0F55A89D7ABC21C /* Surface */ = { - isa = PBXGroup; - children = ( - 6013707A7FC70BD89A3DC12B7821E9FD /* RCTSurface.h */, - 55B584D504D0EBBCB3ADE54119D0FA67 /* RCTSurface.mm */, - 5BF57A39218B9E02559205BD8108171F /* RCTSurfaceDelegate.h */, - 67B8DFFCE4C7CC70F13C349BE6035C8C /* RCTSurfaceRootShadowView.h */, - 3696C49C9234E00FACC99834BC009560 /* RCTSurfaceRootShadowView.m */, - E936B08EAEB98611A2F4235623253091 /* RCTSurfaceRootShadowViewDelegate.h */, - E1052AE1EBD954C5CFB4FDF8DE1EB425 /* RCTSurfaceRootView.h */, - B2158890B81D6B1DB2B12B0A04E2159F /* RCTSurfaceRootView.mm */, - 884963FFF7286D1F95FF395295AE946E /* RCTSurfaceStage.h */, - FEF6EB89B8CFDCBF5B6EEA7364E59782 /* RCTSurfaceStage.m */, - 44D36755F64DC86FC5B660FBB5475A09 /* RCTSurfaceView.h */, - AF11CF67143B8E836CE6310BC6958121 /* RCTSurfaceView.mm */, - 4CA81B64D64DCE78D97331CB4A14076A /* RCTSurfaceView+Internal.h */, - 334CD033CC4911E6E661EE8B77E10B00 /* SurfaceHostingView */, - ); - name = Surface; - path = Surface; - sourceTree = ""; - }; - 70DEACAB614D1722AD912BCE5A4BA6BF /* notifications */ = { - isa = PBXGroup; - children = ( - 586423E8C1E30C89F661FB5B859B6400 /* RNFirebaseNotifications.h */, - 35DAACEE22375215A28F445680E28CF8 /* RNFirebaseNotifications.m */, - ); - name = notifications; - path = RNFirebase/notifications; - sourceTree = ""; - }; - 71C864E426211213A91F8C634F1D20AC /* Support Files */ = { - isa = PBXGroup; - children = ( - 46A907BB0135556D38312BEE62A0C3B4 /* RNDateTimePicker.xcconfig */, - C4C96490A25F9C2F97BA3419589767EE /* RNDateTimePicker-dummy.m */, - 043ED4F8DDAC348C73E37E585DDF8CDF /* RNDateTimePicker-prefix.pch */, + ACAF80EA5DCDD687AEC7BBCB213D0F14 /* React-RCTBlob.xcconfig */, + DFE199A94F260A920AA2102D8E7655CF /* React-RCTBlob-dummy.m */, + BD3966D75FB07B1018792CD8943F35A1 /* React-RCTBlob-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; + path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; sourceTree = ""; }; - 72283CE36909B0EB92D18C7305C6D725 /* React-RCTActionSheet */ = { + 7165973A2EC6C3767F453FFD0D325345 /* UMNativeModulesProxy */ = { isa = PBXGroup; children = ( - BCD94DA415ECF19C7FA0DD6DED8E1F8B /* Pod */, - 38C481393045D08B893C7ECEC2931B8C /* Support Files */, + 2CAC25D7FC5DF89ED2F7953785D55282 /* UMNativeModulesProxy.h */, + F162F61E596682F0B5B70E78B59DA9D3 /* UMNativeModulesProxy.m */, ); - name = "React-RCTActionSheet"; - path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; + name = UMNativeModulesProxy; + path = UMReactNativeAdapter/UMNativeModulesProxy; + sourceTree = ""; + }; + 7174316D001163E013D06DECBF94C1B1 /* react-native-background-timer */ = { + isa = PBXGroup; + children = ( + 7C9BCECBF660D3275D3D5A4996817653 /* RNBackgroundTimer.h */, + 3826C185CC437E8F905232507D722145 /* RNBackgroundTimer.m */, + B89AE84D6449A40818C0930A0DEF4233 /* Pod */, + ED39A00065888605FC9737FD399E8FEB /* Support Files */, + ); + name = "react-native-background-timer"; + path = "../../node_modules/react-native-background-timer"; sourceTree = ""; }; 72B50A7632FE42309F2928649B30816C /* TOCropViewController */ = { @@ -13836,77 +13637,251 @@ path = TOCropViewController; sourceTree = ""; }; - 72E70123C8843567EDFF21FF53624685 /* Pod */ = { + 73A73EC1CCF460370FA4A5ADE48366C0 /* Support Files */ = { isa = PBXGroup; children = ( - 607D801D449C5D7D9B7699C4D36F8C4C /* FBReactNativeSpec.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 73AEBD3E727FD9F034B2BE3A2C49B256 /* Pod */ = { - isa = PBXGroup; - children = ( - 6D22F25FD48B9F912FC82A4663BA6BE1 /* UMConstantsInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 73B9F440CA923B9CC8228360F9AC9089 /* Support Files */ = { - isa = PBXGroup; - children = ( - 2E080D7510CAB789BD804E9F7C16E8F9 /* EXConstants.xcconfig */, - 8D94744C5D6317657409A956D035A95A /* EXConstants-dummy.m */, - BEADA4B0B24CC11705CD225A9B31F056 /* EXConstants-prefix.pch */, + 3E330A0088F6483DE33FAE71EA483B80 /* RNBootSplash.xcconfig */, + 46A45D2EF0AD50250C14EC10A064ADF9 /* RNBootSplash-dummy.m */, + 0C87E1F4965B92CF2B0D2DECD11DAE13 /* RNBootSplash-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXConstants"; + path = "../../ios/Pods/Target Support Files/RNBootSplash"; sourceTree = ""; }; - 75B11E5660E73F80BEA3F8CF9F94189E /* React-RCTBlob */ = { + 74B4CC0534C7AFF613170B15DF4E6E22 /* EXKeepAwake */ = { isa = PBXGroup; children = ( - 4EAE78FBD0E1720917B9B30E1494D853 /* RCTBlobCollector.mm */, - C9B73CA9D99311A9DA5B2131CBE847A2 /* RCTBlobManager.mm */, - 4F46CD75880689900CCAE3953234155D /* RCTBlobPlugins.mm */, - 9F8259B1F92298E671F6B07308C7E1C3 /* RCTFileReaderModule.mm */, - E2988D9ECAEE97FB90FE385E01180CD5 /* Pod */, - 23857B390EB84E5E4EC36AC3BB556AA7 /* Support Files */, + 74DE5ECD6B64E6F47DF433971EAD8225 /* EXKeepAwake.h */, + B9FB1155EF84D6AC90960986987D4C56 /* EXKeepAwake.m */, + A6E8C630B93C509E768D59012E983627 /* Pod */, + F54F8A9C7509943B758510D02EB572D7 /* Support Files */, ); - name = "React-RCTBlob"; - path = "../../node_modules/react-native/Libraries/Blob"; + name = EXKeepAwake; + path = "../../node_modules/expo-keep-awake/ios"; sourceTree = ""; }; - 7622934C1D05E152ED6CE1939FE3052F /* Pod */ = { + 7568F3FC5805FF88772A35996E118BCA /* RNGestureHandler */ = { isa = PBXGroup; children = ( - 617434A0C4A963A1C6B626F297EE7A1E /* LICENSE */, - 619239D848DF8831CE4D8E84BE8A5095 /* react-native-webview.podspec */, - B4E8FB698BF67019DBD91A191D87BAC9 /* README.md */, + DF6C3C2A27E578BC883D91EFB730AD7F /* RNGestureHandler.h */, + CB0136873C962E55A307219684FD01DA /* RNGestureHandler.m */, + 71A81006D808932FC42B12786BECA152 /* RNGestureHandlerButton.h */, + 229D455DAF28AED347F98E3AA7A9215F /* RNGestureHandlerButton.m */, + 61641261A2D33040F051EBEF497D174F /* RNGestureHandlerDirection.h */, + 452F41A12ABBAAB84397380B42284D60 /* RNGestureHandlerEvents.h */, + AB19388EE5EB2981E1C9A9DF67E6FF9C /* RNGestureHandlerEvents.m */, + EB9D4B812F643F74A25D57EA9EB4B7C5 /* RNGestureHandlerManager.h */, + F1A053F801616ED4AD79D36175CDEF89 /* RNGestureHandlerManager.m */, + E9CB0FF20BC5770F5B661AE9BD63A55E /* RNGestureHandlerModule.h */, + 4CFDB601BC80758537EFDD2CD961C812 /* RNGestureHandlerModule.m */, + 1912C5AEC1649E0A26A6C8D886057FB6 /* RNGestureHandlerRegistry.h */, + A32DD059BD65EAF034E7A33D7CE1B88C /* RNGestureHandlerRegistry.m */, + CFA2603FABAEAAB495CB1DA0BB90CBF2 /* RNGestureHandlerState.h */, + 284D9D2232E840D4407AF909CFEC6332 /* RNRootViewGestureRecognizer.h */, + 754BADBA4BFF71A5E54EF704A1ECF345 /* RNRootViewGestureRecognizer.m */, + 75FAAA0FFB98808174F8D1081B25CFD2 /* Handlers */, + 3F43C9D190A43BB2B9AF16C6D00A899B /* Pod */, + 1F9EA41B88E4043A93C3C7FFA882F505 /* Support Files */, ); - name = Pod; + name = RNGestureHandler; + path = "../../node_modules/react-native-gesture-handler"; sourceTree = ""; }; - 76EBFC862EB5B928AC16B7E305251C76 /* Support Files */ = { + 7580C6647A7E005D0E732BE95D3EDAD8 /* Products */ = { isa = PBXGroup; children = ( - 952A3BC9205F6FD09AE396E20B9AF967 /* react-native-webview.xcconfig */, - 246900FADB4F3C74288C75E1A8280DB8 /* react-native-webview-dummy.m */, - 34E1B20C58561E8991E3003B6915A1FA /* react-native-webview-prefix.pch */, + 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */, + 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */, + 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */, + 7E7E46B76D0AFE3DFC477DC55C5DB326 /* libEXAppleAuthentication.a */, + AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */, + 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */, + ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */, + 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */, + 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */, + 09B5856105EF7C6447B9EC57E7E36B34 /* libEXKeepAwake.a */, + 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */, + 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */, + 130335B611EDD6AFF8824641E06138D6 /* libEXVideoThumbnails.a */, + 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */, + ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */, + E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */, + 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */, + 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */, + E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */, + AC12C7E29555A7CFDDEF1EDB5BC2F3DA /* libFlipper-DoubleConversion.a */, + 99D5CD245388DC76AAEF6E1E351A90ED /* libFlipper-Folly.a */, + E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */, + ACBB7F62B267CC7C9BBBAE41DE94743B /* libFlipper-PeerTalk.a */, + FFDC7746794AB17CFB7150820479DF40 /* libFlipper-RSocket.a */, + 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */, + 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */, + 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */, + 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */, + 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */, + B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */, + 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */, + 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */, + 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */, + 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */, + ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */, + 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */, + F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */, + BD71E2539823621820F84384064C253A /* libReact-Core.a */, + 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */, + 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */, + D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */, + F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */, + 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */, + 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */, + B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */, + 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */, + 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */, + 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */, + 012242E4480B29DF1D5791EC61C27FEE /* libreact-native-notifications.a */, + 48425DA2F01D82A20786D5E55E264A29 /* libreact-native-orientation-locker.a */, + 52FCF98CEFF94C742080B6965D537AD0 /* libreact-native-safe-area-context.a */, + 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */, + 8DF63376066E2275FF26820B3A512A9B /* libreact-native-webview.a */, + FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */, + F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */, + EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */, + 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */, + A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */, + 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */, + E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */, + C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */, + D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */, + 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */, + 16E9F31EC059F2E6FADBF7D544CCCA1D /* libReactNativeKeyboardInput.a */, + 17772905A5DCAAE05D22C2CC78ABB63D /* libReactNativeKeyboardTrackingView.a */, + 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */, + 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */, + 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */, + 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */, + B8CD4B9B578CE9FA38114B638C9CAA78 /* libRNCMaskedView.a */, + 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */, + E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */, + E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */, + 4EAF7225D8D498E7D232AE1520E6CBD3 /* libRNFirebase.a */, + 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */, + 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */, + 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */, + C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */, + E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */, + 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */, + BFCE4058442BFB8DEB89BA3F261A76BA /* libRNUserDefaults.a */, + 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */, + B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */, + FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */, + 7862C607B7BE0510C2D65193F9B4B4F9 /* libTOCropViewController.a */, + 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */, + AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */, + BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */, + 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */, + 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */, + 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */, + 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */, + FE1E812071397E31AE21DFF368B781B1 /* TOCropViewControllerBundle.bundle */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-webview"; + name = Products; sourceTree = ""; }; - 7978583CD6B17A1A91BE33628E669CF6 /* Support Files */ = { + 75FAAA0FFB98808174F8D1081B25CFD2 /* Handlers */ = { isa = PBXGroup; children = ( - 51D92DB69D49FE06B70EB88A24CEAB3B /* RNReanimated.xcconfig */, - 7475D055991525FC0CAB8F685BEA149D /* RNReanimated-dummy.m */, - 08088FFC505F9EB5299EABCA1F1830AF /* RNReanimated-prefix.pch */, + AEA925593969061E24617E29F3435905 /* RNFlingHandler.h */, + C5079FCBD5EEF4C3D19A4559DF39DA35 /* RNFlingHandler.m */, + B2801CE3D0AA03D69A9078311329EAF6 /* RNForceTouchHandler.h */, + 664B5DC0915CFC4E8AB867A5708297D9 /* RNForceTouchHandler.m */, + 1E0E785CEC2D81D047949A009814CE8F /* RNLongPressHandler.h */, + A22087B248A717DD8210B86F366BCBA8 /* RNLongPressHandler.m */, + 94C0242D134E88E6F06939B09DB92DE1 /* RNNativeViewHandler.h */, + 792E8146D665B9BE40716A7239F38CB7 /* RNNativeViewHandler.m */, + ECE9D044A0D0A72C4ABBDE19C8C41E14 /* RNPanHandler.h */, + 92B4938E17DE6E0F57D621D9A0B535B6 /* RNPanHandler.m */, + 2E4E3D7778CEABC0932F3CD31EEC5032 /* RNPinchHandler.h */, + B345A3B464A66FC1F84CD8C067A5243E /* RNPinchHandler.m */, + 9DB214EB8B00630F1D5159C416C5A867 /* RNRotationHandler.h */, + 4771CCC3D05E5289CEBBA3375D768D88 /* RNRotationHandler.m */, + E84D0FB226B76CEC903DA2F88387ADFE /* RNTapHandler.h */, + 25F57D1BC4A85048563BB3D7FD14366B /* RNTapHandler.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNReanimated"; + name = Handlers; + path = ios/Handlers; + sourceTree = ""; + }; + 76E31D768139B42A0295F13E40189339 /* React-Core */ = { + isa = PBXGroup; + children = ( + E68A45510D3D2214B0D208BC8E5F233A /* CoreModulesHeaders */, + B2390E8E4378FE6619A8D76AEBCBF8A3 /* Default */, + 4333278F1391611065DA33934F7200AE /* DevSupport */, + A95E1B05BED2D06151899E350FC7EF2E /* Pod */, + 9424DEAC091141078B8EF5449BB12DDD /* RCTAnimationHeaders */, + 47C249B9C18E719786A318853DFD9D04 /* RCTBlobHeaders */, + 1AEFF8718A96DF986DA163FF3C3FA634 /* RCTImageHeaders */, + DEE486CB55E39DFF0FBE91EFE1146050 /* RCTLinkingHeaders */, + 7BA911FDA7201871841AC88AB0EBA5E1 /* RCTNetworkHeaders */, + 46E5AD6F69D9519C386602DF76606A6A /* RCTSettingsHeaders */, + 430868DBC24D3C3594A17F82C637639F /* RCTTextHeaders */, + 379B196334DADD48ED925872400F4667 /* RCTVibrationHeaders */, + 6B3F1D0652DDF2F6C431EEC0F4C29AFF /* RCTWebSocket */, + 9EC5600BCBA1669EA17AAB433A93EBB4 /* Support Files */, + ); + name = "React-Core"; + path = "../../node_modules/react-native"; + sourceTree = ""; + }; + 77F64B007C151AB85BD97621050EA0C4 /* internal */ = { + isa = PBXGroup; + children = ( + 81AD6C487CCEAA0F5DAFF49CC9DDD9F9 /* experiments.cpp */, + CDBD8119ABE1F1E9D8EC59A46B8188D7 /* experiments.h */, + FA26F5CD6039D854B695DE1B9100EB5E /* experiments-inl.h */, + ); + name = internal; + path = yoga/internal; + sourceTree = ""; + }; + 78B6E09563CBBB52D2F5B8C7864D4301 /* react-native-notifications */ = { + isa = PBXGroup; + children = ( + 5024867E4249A0B59A14EEC601A826C8 /* RCTConvert+RNNotifications.h */, + F2C3E67B7EB1144D81752B5938C9B7DC /* RCTConvert+RNNotifications.m */, + 79815458817C4C36E6AD52E9F494CCCD /* RNBridgeModule.h */, + 70BBF9B79ED5994105858E2CF4EFF638 /* RNBridgeModule.m */, + BC0B68D6DE8ED8D2C98B906BF4672B2F /* RNCommandsHandler.h */, + 8314C783AAAD40DF3EC8B2AB3571FDCD /* RNCommandsHandler.m */, + C227F4B7992430DBAC04276C2B6014C1 /* RNEventEmitter.h */, + D442A7464ADD235A918A775E8F1FE747 /* RNEventEmitter.m */, + 648C3C9B39B77082CA8AE80E2173EBD5 /* RNNotificationCenter.h */, + 8FA7B030CA0FC5FE7424D5B176BCC195 /* RNNotificationCenter.m */, + E8B20DC75F836A5E02E9E2ECB20ABDED /* RNNotificationCenterListener.h */, + 3C705C1315A99F2E22859FD59954D434 /* RNNotificationCenterListener.m */, + 8FC9625141225307F54CA8F7D5C31D65 /* RNNotificationCenterMulticast.h */, + 3F143168A55B0B275D7ABE38E92D0A7C /* RNNotificationCenterMulticast.m */, + A53DBE7B1126235D0DFB30AD452911FA /* RNNotificationEventHandler.h */, + 429E81C70FB1627BEAB071C56E303483 /* RNNotificationEventHandler.m */, + 3978E0817217815A03BD8559CBC212A0 /* RNNotificationParser.h */, + E57A68CDEEEECB747100BA81E12450CE /* RNNotificationParser.m */, + 8E2F48AAC45A184290900EF2E16526FA /* RNNotifications.h */, + 98F4C41C33A646AB98C7D298B382D8D2 /* RNNotifications.m */, + D81CAB99456950B46A500274DF8DBFAF /* RNNotificationsStore.h */, + 22E30478C4160A8365B501CC0D700C84 /* RNNotificationsStore.m */, + 77551D21D017ED844EB6B8D74A5B0FEC /* RNNotificationUtils.h */, + 069507335A033B9D3A7F90B470BDB266 /* RNNotificationUtils.m */, + EB7AC2F1B7531D26A22F4D278FE0599D /* RNPushKit.h */, + E20B1B67C0A60279B2E2E8D87D79E25B /* RNPushKit.m */, + 0CB1410A921E227EA20B80E650DF64E8 /* RNPushKitEventHandler.h */, + 0C69A4C9BEE6C6DB95D331757A1B845D /* RNPushKitEventHandler.m */, + 2C0DFEE7AB0E2E06D08C7A0E58297A01 /* RNPushKitEventListener.h */, + 9EDE8B04F6E09D2755963245B947C89B /* RNPushKitEventListener.m */, + E1657A85F442979F755796DE6AB7768F /* Pod */, + 3B01D6BED5725FF86EB5BCC66EE9AB1E /* Support Files */, + ); + name = "react-native-notifications"; + path = "../../node_modules/react-native-notifications"; sourceTree = ""; }; 79A8B05E3CDB5B6325BB3E6C3D8B5F36 /* CocoaAsyncSocket */ = { @@ -13922,23 +13897,93 @@ path = CocoaAsyncSocket; sourceTree = ""; }; - 7B1F25D60EA3EBCE50207D9948A28C8B /* Pod */ = { + 79D015AEF41FDCF7169B6653196E257B /* Support Files */ = { isa = PBXGroup; children = ( - 928373C7AF34A18BD06E6D9D8FCDD4E1 /* RNFirebase.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 7BF1C6A62D7279E8352F855487BBC4A4 /* Support Files */ = { - isa = PBXGroup; - children = ( - 468209B3D9E7F6D309269585FAC537A8 /* EXFileSystem.xcconfig */, - 0E878B95DE1321991EF7EDCA77D6AC46 /* EXFileSystem-dummy.m */, - D887432A65993784DD1B767F28B5190D /* EXFileSystem-prefix.pch */, + 7CB50B1B70E1F32BA1A0D0477F868DBE /* rn-fetch-blob.xcconfig */, + 70D2F1DE32D8D83ED283D13D70AE9546 /* rn-fetch-blob-dummy.m */, + E1050B17E10A8FA20BBE522DF1CDE9C5 /* rn-fetch-blob-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXFileSystem"; + path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; + sourceTree = ""; + }; + 7A39C7AFF8E3B0C1D9204C86F6DA2588 /* RCTTypeSafety */ = { + isa = PBXGroup; + children = ( + 612968A96E8A41623D518BAAAAC894B7 /* RCTConvertHelpers.h */, + 7F28FCD5E18CE510ADEDC2288AF4189C /* RCTConvertHelpers.mm */, + 0C5479F774B6CA1B2BC9515C2724511F /* RCTTypedModuleConstants.h */, + 2B9791A84E3FD01985C6E61A8FE2E3BA /* RCTTypedModuleConstants.mm */, + B07DCEC5B87D7C9350BB3CDBE94A1262 /* Pod */, + 86FDDED91A1C3E40B067BF42DD6568FA /* Support Files */, + ); + name = RCTTypeSafety; + path = "../../node_modules/react-native/Libraries/TypeSafety"; + sourceTree = ""; + }; + 7A69BC9E31B660FD0D04786D5722995B /* EXLocalAuthentication */ = { + isa = PBXGroup; + children = ( + 983C8D4D1F255DEB3F4CD2C3EA0D1AD8 /* EXLocalAuthentication.h */, + 1210196EDCC2368A83CE532E53CAB073 /* EXLocalAuthentication.m */, + CD9E977EE1D3C9829E74B5E00AEE7F24 /* Pod */, + 54F9C92849F083966F15EBEDD414A1C0 /* Support Files */, + ); + name = EXLocalAuthentication; + path = "../../node_modules/expo-local-authentication/ios"; + sourceTree = ""; + }; + 7B7D62B3ADBDF5FD943A3683665DE51E /* EXVideoThumbnails */ = { + isa = PBXGroup; + children = ( + BF71B6B50AE0EA0C42E1995CB3D90984 /* EXVideoThumbnailsModule.h */, + F3A088F5E94959F5608F4899D57DA206 /* EXVideoThumbnailsModule.m */, + DD046720E12F5A0A22EDDD4F431A7770 /* Pod */, + 412A3306FA919717E628FCD2816593DB /* Support Files */, + ); + name = EXVideoThumbnails; + path = "../../node_modules/expo-video-thumbnails/ios"; + sourceTree = ""; + }; + 7BA911FDA7201871841AC88AB0EBA5E1 /* RCTNetworkHeaders */ = { + isa = PBXGroup; + children = ( + 7C389B355B317DAF3433694C53E04F99 /* RCTDataRequestHandler.h */, + 8006576A15E920884603E8789CAB9F3C /* RCTFileRequestHandler.h */, + 2D780F29E8B27EF815A15DF6A4D809F3 /* RCTHTTPRequestHandler.h */, + 4E6A5B0627CF2430FBEEDDDF9D3C6E43 /* RCTNetworking.h */, + 87879C5F90E0BF186BD7EB7751024664 /* RCTNetworkPlugins.h */, + 2D2D1751ACFF90E1CCB30E85EEEB3C24 /* RCTNetworkTask.h */, + ); + name = RCTNetworkHeaders; + sourceTree = ""; + }; + 7BDABBB205135C97CD389299C2BADFF2 /* React-RCTAnimation */ = { + isa = PBXGroup; + children = ( + C1A63DDB109BA4203505D76411BFC8F3 /* RCTAnimationPlugins.mm */, + 8F365C38338057419C36E893C210572D /* RCTAnimationUtils.m */, + F5E0495E51B25D3727E20E65FAC40054 /* RCTNativeAnimatedModule.mm */, + C65DE3A05F1889FCBA86E8368027A1AD /* RCTNativeAnimatedNodesManager.m */, + 08D632601A45AAD452C6EEB3C8632622 /* Drivers */, + AB97F816DCD149D7B806A8261096EB7E /* Nodes */, + 8EE4F6739D321EEE724DD30836E74DEF /* Pod */, + 36AD6E626C9602E439258E341D6144C9 /* Support Files */, + ); + name = "React-RCTAnimation"; + path = "../../node_modules/react-native/Libraries/NativeAnimation"; + sourceTree = ""; + }; + 7CE66DB324C180CD6469517639A4571B /* Pod */ = { + isa = PBXGroup; + children = ( + E35AC1E2768077668B60A8ED1902042C /* api.md */, + F9490B778417DFE2B630B576B8871191 /* LICENSE */, + 45687295D331495FAC12FB8AA20733E6 /* ReactNativeART.podspec */, + 7F0A7446707EA1C6ED5A30A9CC9AEDD4 /* README.md */, + ); + name = Pod; sourceTree = ""; }; 7D35DED12BA9C28403DF2F7CA70120AE /* Support Files */ = { @@ -13964,36 +14009,36 @@ path = "../Target Support Files/SDWebImageWebPCoder"; sourceTree = ""; }; - 7E194C2B3E1A3C85C1A7D8950F8FA923 /* LNInterpolation */ = { + 7DEB487513949393BDCD443560AA995E /* messaging */ = { isa = PBXGroup; children = ( - A293F70B190C15DA5D589C12F2F4DF71 /* Color+Interpolation.h */, - 4C10D118FCB5A1D44DAD24D400763822 /* Color+Interpolation.m */, - C7858E4C09D6D3679159D6A6549030A8 /* LNAnimator.h */, - 9EA14D97FB3AC533F53FDE8DA09D3E8C /* LNAnimator.m */, - AFB4E917FDA63E6F71E5BCC8A1A41675 /* LNInterpolable.h */, - 80831920B0F94217F86C1F661C6EF6F5 /* LNInterpolable.m */, - C38446787239FC2BA2FCCAC06FF5ED3E /* LNInterpolation.h */, - 4195373022D017C35FEF3127FC071669 /* NSValue+Interpolation.h */, + 9BB894F231018CC975693BDF8F83262E /* RNFirebaseMessaging.h */, + 1754C542BA03C7EB47091AA16D3D4B49 /* RNFirebaseMessaging.m */, ); - name = LNInterpolation; - path = lib/ios/LNInterpolation; + name = messaging; + path = RNFirebase/messaging; sourceTree = ""; }; - 7F64B73ACF9BC3BED00B6B69C12F3FC3 /* DevSupport */ = { + 7F2C4C41C3FC2FECB5F6E4E3750C45D1 /* Support Files */ = { isa = PBXGroup; children = ( - F75FFFB4A60327E536707F5E073BBF4E /* RCTDevLoadingView.h */, - D33A37653C30A71F7C6A2E26D52CDB07 /* RCTDevLoadingView.m */, - 895AFF7485D12E025A20A45963852D6C /* RCTInspectorDevServerHelper.h */, - 5398671EB6C01110E81BA064933D8CE6 /* RCTInspectorDevServerHelper.mm */, - BEF1AF86C4CA22839409EAFA0F5A2362 /* RCTPackagerClient.h */, - F51AB3B9E6D4177AE31FE7343F6FC5C4 /* RCTPackagerClient.m */, - 7D22AA44235C44FBD8317D1BAFC531C5 /* RCTPackagerConnection.h */, - 832BFBD5B4D8F5A6474A1205C9A5F781 /* RCTPackagerConnection.mm */, + 35F091C33CF755F5204262A08B542402 /* react-native-webview.xcconfig */, + 1A00D7608C84CD3E9E40FFA4EAE992A4 /* react-native-webview-dummy.m */, + DFEA7C535EEB73060DBCDC1CBE5D3D9E /* react-native-webview-prefix.pch */, ); - name = DevSupport; - path = React/DevSupport; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-webview"; + sourceTree = ""; + }; + 7F7C8D1A9124A040EBF1D8C16262386C /* Support Files */ = { + isa = PBXGroup; + children = ( + E1B0203EEAA6794298B1232415B345A3 /* react-native-appearance.xcconfig */, + C9F5249E7488AC68C5C1BF0BC0810D36 /* react-native-appearance-dummy.m */, + 5F010C588037ABA18A5891B2D87C817B /* react-native-appearance-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-appearance"; sourceTree = ""; }; 7FEA1BA30009FF4ED0BBB9710B2C6ABB /* Frameworks */ = { @@ -14007,6 +14052,16 @@ name = Frameworks; sourceTree = ""; }; + 800E41EE9ADD1686F7B7593D0C47F491 /* CxxUtils */ = { + isa = PBXGroup; + children = ( + 34E54A0143BAC6774E7ED46216E9562D /* RCTFollyConvert.h */, + 7A2F23E4B697DCF260B94A6A4A8E1A8A /* RCTFollyConvert.mm */, + ); + name = CxxUtils; + path = React/CxxUtils; + sourceTree = ""; + }; 804DDD14BFF95CE89D0324F62E428AC7 /* Environment */ = { isa = PBXGroup; children = ( @@ -14024,26 +14079,23 @@ name = Environment; sourceTree = ""; }; - 805BE8A5117C72BB1AFFE5B9A4C0D9BA /* RNUserDefaults */ = { + 808B97661809063B9FBF83711979460C /* Support Files */ = { isa = PBXGroup; children = ( - AACD8E5CBF6C8A9D707708D67FB0776A /* RNUserDefaults.h */, - 6253978A6B13DE9AF2B49EF14DD9FFBB /* RNUserDefaults.m */, - 84BDAEA2FA52C2BF18C1152873638959 /* Pod */, - C98CF69E5C2D69E47DC3E287256605D9 /* Support Files */, + E4B85E9CA9529BA3CA89A024EF880435 /* React-RCTImage.xcconfig */, + B8CA43372B9273DDF55F3E98AD3F76ED /* React-RCTImage-dummy.m */, + 1996D9C230EB0924BA74B49833FEC80B /* React-RCTImage-prefix.pch */, ); - name = RNUserDefaults; - path = "../../node_modules/rn-user-defaults"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; sourceTree = ""; }; - 808EDE8CE433DF3A694F0345285DC2CF /* Services */ = { + 80ED7F24B4AEEBF0D1B3CD22CF027CE7 /* Pod */ = { isa = PBXGroup; children = ( - A2A3D3A937FBC55FBC290581E655CF24 /* UMLogManager.h */, - A3D85591BCF381152165FF4EA43C2DC0 /* UMLogManager.m */, + 9D21E7EF7232E7B2F07E97553A3BA5CE /* React-RCTText.podspec */, ); - name = Services; - path = UMCore/Services; + name = Pod; sourceTree = ""; }; 8103BDE362746AD07C007034A687D3B3 /* Frameworks */ = { @@ -14065,6 +14117,20 @@ path = "../Target Support Files/nanopb"; sourceTree = ""; }; + 8146BA21018A7B2664F3089B667CFA71 /* React-RCTBlob */ = { + isa = PBXGroup; + children = ( + 623682EDC77E46A028080B8E884FBEAA /* RCTBlobCollector.mm */, + 24B6F7ED44E5EE98C4B53B63797D9E0D /* RCTBlobManager.mm */, + F6093427BE39449CF4B7B503DE60F1CA /* RCTBlobPlugins.mm */, + EA00899B601D90EE6586A95E2062D486 /* RCTFileReaderModule.mm */, + 1E48829C241F58F37038166B20133A2D /* Pod */, + 70F0D36986108076B2A3C6C0049783AC /* Support Files */, + ); + name = "React-RCTBlob"; + path = "../../node_modules/react-native/Libraries/Blob"; + sourceTree = ""; + }; 814C63AC772830844D0748FD66F8F6B6 /* Support Files */ = { isa = PBXGroup; children = ( @@ -14074,81 +14140,80 @@ path = "../Target Support Files/JitsiMeetSDK"; sourceTree = ""; }; - 81667B55B8C8A91F337D815B5B58C1A0 /* Sentry */ = { + 82BB307478C72B3DF801D43367453AA5 /* UMTaskManagerInterface */ = { isa = PBXGroup; children = ( - 6319D387E7FC985E43290533F2D2C188 /* BSG_KSCrashSentry.c */, - 04B0CAFC92C46EEDCFB2A67C85B3D411 /* BSG_KSCrashSentry.h */, - FF798471BCEAD019E573DC6EA756217A /* BSG_KSCrashSentry_CPPException.h */, - 4B25090CF5A8EE2ECC9FB7F4AA565272 /* BSG_KSCrashSentry_CPPException.mm */, - 95689EA557684CC591A3707AB727EE2E /* BSG_KSCrashSentry_MachException.c */, - 781E988E0CB8EFE95F712A6D15D687DA /* BSG_KSCrashSentry_MachException.h */, - C4B0898909B2F346934BDAB0195A0865 /* BSG_KSCrashSentry_NSException.h */, - A36A728598495F81A65543D130D1002D /* BSG_KSCrashSentry_NSException.m */, - 0A9E0F8E3943D6D7D8D7A41C34D5D77F /* BSG_KSCrashSentry_Private.h */, - 0832D97F675F7913811359F39365D101 /* BSG_KSCrashSentry_Signal.c */, - EB71CBD16759D50EA2846AC4CA88FC4D /* BSG_KSCrashSentry_Signal.h */, - 8BBF60887E51831BA17F9FCC006CE447 /* BSG_KSCrashSentry_User.c */, - 4389C794EF360A373970122BCE3E3B04 /* BSG_KSCrashSentry_User.h */, + 11893D7D91D9CBDF71B033F695F52827 /* UMTaskConsumerInterface.h */, + 7B0B8D92CD92DD9D473C5D6444E69D53 /* UMTaskInterface.h */, + FDA2307EF278D12863DA802831D9EA81 /* UMTaskLaunchReason.h */, + 9BBC53C72E4690F1F9660AA072BFBCD0 /* UMTaskManagerInterface.h */, + 020B4A74E08D3438BA845901F7EAE0C1 /* UMTaskServiceInterface.h */, + F715E9434EC6EF1E33CA6D85BD7F95C6 /* Pod */, + E6F7914799F07EF468AF568F9B8008DF /* Support Files */, ); - name = Sentry; - path = Sentry; + name = UMTaskManagerInterface; + path = "../../node_modules/unimodules-task-manager-interface/ios"; sourceTree = ""; }; - 81BBB5FA0054553CF9CF7DD9BA8408E4 /* Pod */ = { + 82F42776458D7A3AE266E944CA191615 /* Support Files */ = { isa = PBXGroup; children = ( - 6FD71D4C28DBB037140B3D5A8CB499BC /* api.md */, - 8DE5A822AFCD779DC8D1B4D7E970EA5E /* LICENSE */, - D87C64931687093AF105F019CC2C96DC /* ReactNativeART.podspec */, - 10A0E5B448E578CA854F88D23DDB48C9 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 825AD6BF08468728799307F6F04730AA /* Pod */ = { - isa = PBXGroup; - children = ( - D4934942035146D5FC835596F207EFE1 /* LICENSE */, - CD1DA0D94E413CABB836471C0DCFEC2D /* ReactNativeKeyboardTrackingView.podspec */, - 4D6BD65450C624EFCF56A701B8B07884 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 82DEAB3BA59E6FBE153B67AB9D349CA7 /* RNRootView */ = { - isa = PBXGroup; - children = ( - 3DFE160F16EC7A844A34840BBFE7F713 /* RootView.h */, - 9435A5F651CDFF2713C7933FB58BF0BE /* RootView.m */, - FBFEC2C3260DCD636BDF920375CD21AB /* Pod */, - A032F939B9933DD6EEE81EA66B4E9A41 /* Support Files */, - ); - name = RNRootView; - path = "../../node_modules/rn-root-view"; - sourceTree = ""; - }; - 83951C6EDC04CCC1DF8CE8AFD2DD89FB /* Support Files */ = { - isa = PBXGroup; - children = ( - 6EB856FA7C6C6417ABD9B03F599C7003 /* react-native-appearance.xcconfig */, - 3A69772246CC5C13967C50549B628B78 /* react-native-appearance-dummy.m */, - 40A63EB5D11569F884DD560319645C1D /* react-native-appearance-prefix.pch */, + B349A54F4D2FD519D2D0B5F20BE0EC7E /* RNCMaskedView.xcconfig */, + B83F19BE55D1F77902A11954FA99A98B /* RNCMaskedView-dummy.m */, + B68538A195431A933EA46D81A51FBC48 /* RNCMaskedView-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-appearance"; + path = "../../../ios/Pods/Target Support Files/RNCMaskedView"; sourceTree = ""; }; - 83F7B44F97C52BE5B49BFAA1875E0BB9 /* Pod */ = { + 8304FCCCE6BCBB13152C7B49243442D1 /* links */ = { isa = PBXGroup; children = ( - C882CAC562072778936CF9E773BC4EE7 /* LICENSE */, - CD6C1DF1DFFC9E4E503D905CDC596B8C /* react-native-orientation-locker.podspec */, - D808A499E327FA4C917ADA665522A8D7 /* README.md */, + 072440311BE630265E8A9BA9FE4B579C /* RNFirebaseLinks.h */, + BB759F07AA4F96184B483DA4D5D1044A /* RNFirebaseLinks.m */, + ); + name = links; + path = RNFirebase/links; + sourceTree = ""; + }; + 834362F1E8D1719B6D969EE019EFAFEE /* Pod */ = { + isa = PBXGroup; + children = ( + CAAFE38A769152050B34DD379E1655FC /* LICENSE */, + BD70DEA8AEFD95E482D660919D2119E1 /* react-native-webview.podspec */, + AAD40C0280E8F25C4C55F966D4D1DC33 /* README.md */, ); name = Pod; sourceTree = ""; }; + 83B8ECDC47881A70923CD35CA2E2DCA0 /* crashlytics */ = { + isa = PBXGroup; + children = ( + 42B0FA4D0C81A84BABD6BF79E80D54FD /* RNFirebaseCrashlytics.h */, + 259A7A98CD2D59BD5742C7E41787EBD7 /* RNFirebaseCrashlytics.m */, + ); + name = crashlytics; + path = crashlytics; + sourceTree = ""; + }; + 843AB984121E158AFAE94E519F12AFF6 /* Brushes */ = { + isa = PBXGroup; + children = ( + 57DC9EA4D5833A0806D27ADB335ED964 /* ARTBrush.h */, + BB2D3C3460F8F63518DD4E289F7D0265 /* ARTBrush.m */, + 327656D2867C9A9125E6AD17423A15D1 /* ARTLinearGradient.h */, + CE77A43CB054B9B1F4219449FA68BD3D /* ARTLinearGradient.m */, + CC9296090CAECF07215252DE287A9C3A /* ARTPattern.h */, + 5AE8FFCD5A5113CC66524CC9F466CEB7 /* ARTPattern.m */, + A724BD0C25F5146F814C94E6A142AE77 /* ARTRadialGradient.h */, + 40DA589797B65249F51467C00467339A /* ARTRadialGradient.m */, + 86E393A367FE82ABC7B17ECBE2B0B1E2 /* ARTSolidColor.h */, + 7B070620454ABD843CBAC84F6D6C3662 /* ARTSolidColor.m */, + ); + name = Brushes; + path = ios/Brushes; + sourceTree = ""; + }; 847A91BC53838E022F037E31415CB62F /* Support Files */ = { isa = PBXGroup; children = ( @@ -14160,16 +14225,6 @@ path = "../Target Support Files/CocoaAsyncSocket"; sourceTree = ""; }; - 84BDAEA2FA52C2BF18C1152873638959 /* Pod */ = { - isa = PBXGroup; - children = ( - B78CD0F6D5A3002EC7BD3682D558D0C2 /* LICENSE */, - CAE775CD76200692B8C410236206F4E2 /* README.md */, - 39BAEE4DAC0E1227FA20F4904C1221B1 /* RNUserDefaults.podspec */, - ); - name = Pod; - sourceTree = ""; - }; 85036FAFEB60A7A7F38257AB58E1EC8B /* Targets Support Files */ = { isa = PBXGroup; children = ( @@ -14334,122 +14389,131 @@ name = webp; sourceTree = ""; }; - 874C280E4E0C0657581A21EECF9E7A48 /* UMFileSystemInterface */ = { + 858CE34E11A8A610E14A8E58A1FDD044 /* RCTRequired */ = { isa = PBXGroup; children = ( - 6F195162827AEBC3CFE8A90F7196A628 /* UMFilePermissionModuleInterface.h */, - C78D38C5B1A867D3B3A98904C5222D22 /* UMFileSystemInterface.h */, - C30F8E406802B25646A9487500565490 /* Pod */, - A5E7F12897361D2AAD0AB21CF9126260 /* Support Files */, + FC13892E86EE8C031817B89F4C794345 /* RCTRequired.h */, + 197CCF54254EB41F35CB9E7ED5C936CF /* Pod */, + C5CC8AC01C3B8A00A916BE9550337C77 /* Support Files */, ); - name = UMFileSystemInterface; - path = "../../node_modules/unimodules-file-system-interface/ios"; + name = RCTRequired; + path = "../../node_modules/react-native/Libraries/RCTRequired"; sourceTree = ""; }; - 8826C64CA7B950E0D05C38FBC27C1D75 /* Pod */ = { + 85F8D5372BED8FB4C056F83AA254D36F /* RemoteNotification */ = { isa = PBXGroup; children = ( - 563AEB557D8D49F5930222EC826BF462 /* UMCore.podspec */, + 7C6406852A37DF0AEA527CEAEB1001E0 /* EXRemoteNotificationPermissionRequester.h */, + 0C17DAEB767685E151CBEEE677106E5A /* EXRemoteNotificationPermissionRequester.m */, + ); + name = RemoteNotification; + path = RemoteNotification; + sourceTree = ""; + }; + 86E655BA6DB99509E8240D44FF7EF897 /* Pod */ = { + isa = PBXGroup; + children = ( + 9629E23ED9D547986D588B68E344F095 /* README.md */, + 9F7A0FE0D72F2FD6789A27F3F0257FB5 /* RNCMaskedView.podspec */, ); name = Pod; sourceTree = ""; }; - 88A6F68455DF19BA0E304927A6DA52F9 /* Support Files */ = { + 86FDDED91A1C3E40B067BF42DD6568FA /* Support Files */ = { isa = PBXGroup; children = ( - 95B6DCE2C3D8FA240DB90EA5D4505BA9 /* EXVideoThumbnails.xcconfig */, - 1018BD214C8F0629210A84AD70CB7294 /* EXVideoThumbnails-dummy.m */, - 51650E0D93550CD76B8B4A39FB44A199 /* EXVideoThumbnails-prefix.pch */, + 36C3AB77231D2DA03640B39959D39D09 /* RCTTypeSafety.xcconfig */, + 30E068B0B144FCD0EAD039ECE9DB57A8 /* RCTTypeSafety-dummy.m */, + 5B6D80A8766FB5EE8F0249FBC6411379 /* RCTTypeSafety-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXVideoThumbnails"; + path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; sourceTree = ""; }; - 88C10EC360D644E776A435D5FE61AC36 /* Support Files */ = { + 8730E74AC6EE504B097AE7CB023D437B /* RNBootSplash */ = { isa = PBXGroup; children = ( - B26A5CD70C5B2AD2B50E546B29A49624 /* RNCAsyncStorage.xcconfig */, - 46E969FCD8BE80CC7A0BC72598694541 /* RNCAsyncStorage-dummy.m */, - B7A19770A1C51A5E185ADFF13D1011CB /* RNCAsyncStorage-prefix.pch */, + 9BBA45778A6D490CC1EDD321DF57F656 /* RNBootSplash.h */, + 4B167CBAC7DC720B989DFA450011E400 /* RNBootSplash.m */, + 8C9932923AE74564F5F6161B45952232 /* Pod */, + 73A73EC1CCF460370FA4A5ADE48366C0 /* Support Files */, + ); + name = RNBootSplash; + path = "../../node_modules/react-native-bootsplash"; + sourceTree = ""; + }; + 87429C6BA0139D97302A68158C3AED74 /* Support Files */ = { + isa = PBXGroup; + children = ( + 00E976495F86A5FC584B964CB92ADF63 /* React.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNCAsyncStorage"; + path = "../../ios/Pods/Target Support Files/React"; sourceTree = ""; }; - 88D6908D56FE0CEE31A0427412C1D5F2 /* KSCrash */ = { + 87893C2F0862C48AF9A3B0634CFEF11B /* Support Files */ = { isa = PBXGroup; children = ( - 4473E1F926790693692EC0D99491FECC /* Recording */, - 1AC661070983BD5DE8D6AB8768A11E08 /* Reporting */, + F04F96BD284F3D632696C76096959613 /* BugsnagReactNative.xcconfig */, + 5A21B730283D7A49ECA943EC16683056 /* BugsnagReactNative-dummy.m */, + 8C15AF75882E5BE815D73705B6F34817 /* BugsnagReactNative-prefix.pch */, ); - name = KSCrash; - path = KSCrash; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; sourceTree = ""; }; - 8ABE44A8BA2A2D294A46134B09438F07 /* Source */ = { + 886DEAD4CD6EF8212FA4449DDF2D7D64 /* notifications */ = { isa = PBXGroup; children = ( - E6AF293B2145F6AFBA2CC16BCA37F41C /* BSG_KSCrashReportWriter.h */, - 10F76B5D9E90B1C8AEB0E10A384DAFB3 /* BSGConnectivity.h */, - 6E0578404880DEA4B41E04A03DDF80D8 /* BSGConnectivity.m */, - FE5E796B79C0061E67CF9C648ED2371A /* BSGOutOfMemoryWatchdog.h */, - 2B2A08D8D954D554D533AD9629E96E30 /* BSGOutOfMemoryWatchdog.m */, - B8F54589F8E464A861654B6BA8D4331D /* BSGSerialization.h */, - 6CA9C1A98FA470D75F01F28C41B4849C /* BSGSerialization.m */, - 72D4CE121E219DF0C4968BFB37CA5D8C /* Bugsnag.h */, - 178E8A48C4E60EFA94418FF914B82743 /* Bugsnag.m */, - 9FF4BD9CD4E1C59F8CCA9F2DFAA234CA /* BugsnagApiClient.h */, - 70B52738C1534D681595A58D730353B8 /* BugsnagApiClient.m */, - 926107E274E6A73190B88493226E1CAF /* BugsnagBreadcrumb.h */, - AA2DBC921F3029395CE2F0C0D3BAAB8F /* BugsnagBreadcrumb.m */, - 3120CCC4BB4F2FFC7A6FA9A46A0223B0 /* BugsnagCollections.h */, - 61D6870C67E4DDFD5D2B3D0A4A48852D /* BugsnagCollections.m */, - 77B74BFAC97BB50C9BAAD83849B1F1D3 /* BugsnagConfiguration.h */, - C84F32F9099BEBC7F2D27568864D160D /* BugsnagConfiguration.m */, - F40DAA725D323E04DFE810AE8FC32213 /* BugsnagCrashReport.h */, - B10C27689490B563415BE53719EDF706 /* BugsnagCrashReport.m */, - 23423CF6EA7C6A496B8D9DF4C59955FE /* BugsnagCrashSentry.h */, - 457A399CDA28385FA49BA8167A0217CA /* BugsnagCrashSentry.m */, - 73FCE3CF78B994013BDB437BC073586B /* BugsnagErrorReportApiClient.h */, - 14EE582EA538BF33EE107885F8B42466 /* BugsnagErrorReportApiClient.m */, - AB0B91B89C348E1C5FDAA47CD5F30C9D /* BugsnagFileStore.h */, - A733777449DF2F8811A31FC086E540BB /* BugsnagFileStore.m */, - 65F9702220B7B5AF9B597933137C935A /* BugsnagHandledState.h */, - DDC153135A8664CE2D76E9E60D5E2631 /* BugsnagHandledState.m */, - 0CC94E256873EF1A6C4BCB70936D273A /* BugsnagKeys.h */, - 8B70A44246ABB7757F1F1344C2E65CAD /* BugsnagKSCrashSysInfoParser.h */, - 2F04BBF6F474E888E7899CB3E0E61DE4 /* BugsnagKSCrashSysInfoParser.m */, - 9D35157E450C8834E3BA9CCAA4AC641C /* BugsnagLogger.h */, - DE137337B8AB426D526DB7D610D0B6BF /* BugsnagMetaData.h */, - A4D5E68CF3BB3186A5C0B714487C9D4A /* BugsnagMetaData.m */, - 8432996E1A83786BF3950A9216943A28 /* BugsnagNotifier.h */, - C2E74A5FA6A9D9512B8F7F9511B777E3 /* BugsnagNotifier.m */, - FF45BAC34B8B59C677362E89BB9FAF29 /* BugsnagPlugin.h */, - 3412BB0B012BE91E0C5D2CAFC31E4A9C /* BugsnagSession.h */, - E6DCA9FED6C5C89616D46DAA362B5171 /* BugsnagSession.m */, - 6C5F962BBBE94A973F8814B8639FDB87 /* BugsnagSessionFileStore.h */, - FC1DD0400651CE82B03C80EA91136957 /* BugsnagSessionFileStore.m */, - 940929DAA269A4C4ACB67A9A2337AA01 /* BugsnagSessionTracker.h */, - 89176D7625D1F30283283C735D37A49C /* BugsnagSessionTracker.m */, - 0B8FB29F6AC044354596468EB0E63CFD /* BugsnagSessionTrackingApiClient.h */, - F958A10A38BE359890553D59E9F2D4C5 /* BugsnagSessionTrackingApiClient.m */, - 3CE34BD48DDD564DA1A5F6F2EAF0DEFE /* BugsnagSessionTrackingPayload.h */, - 99594423459EEB42A29AF610F6983A9A /* BugsnagSessionTrackingPayload.m */, - 3C91DD0B19AEFAFA4B4D75FB0236620A /* BugsnagSink.h */, - 77B5C81528971AB0B5CB133BEE0E38CD /* BugsnagSink.m */, - 068FEB8942799C25ABFF13F26928F3DE /* BugsnagUser.h */, - 9D0F44893AD3E0A4239D6FDF012DF0A0 /* BugsnagUser.m */, - 672829A0AB58D4EA43AD1F6F698BB6EE /* Private.h */, - F7621C8D6925471357864034BECB6C63 /* KSCrash */, + C4056A95B9082E2CB7A6161D92837DDB /* RNFirebaseNotifications.h */, + 64E354D0B781F4A56820F61138A82ACF /* RNFirebaseNotifications.m */, ); - name = Source; - path = Source; + name = notifications; + path = RNFirebase/notifications; sourceTree = ""; }; - 8C210E60FFE17AC14E4D8AC561DC65FD /* Pod */ = { + 88941AEF6D71470BAA096A9A89414C8D /* Pod */ = { isa = PBXGroup; children = ( - 6051AAC1CBC3DB5534CDD84F5CEB2A26 /* React.podspec */, + 5C90F222FC5C01B89F9E67EB26D92DE6 /* EXHaptics.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 88BDC54124484DC24791C6DFCEDBBF43 /* Pod */ = { + isa = PBXGroup; + children = ( + A78DE93255125EB0D55025FCE381012D /* UMFileSystemInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 8A14AEF962D8A98A959A8A28FFD80099 /* EXHaptics */ = { + isa = PBXGroup; + children = ( + 5AEC85FB0ECEB95C270BBC108B611442 /* EXHapticsModule.h */, + 310CCBD58CAC10932222DD449C29A85E /* EXHapticsModule.m */, + 88941AEF6D71470BAA096A9A89414C8D /* Pod */, + 3DD32296F6DE280701C4477F3F72126C /* Support Files */, + ); + name = EXHaptics; + path = "../../node_modules/expo-haptics/ios"; + sourceTree = ""; + }; + 8C25CAF0585B48705E634DD3620AA65B /* Pod */ = { + isa = PBXGroup; + children = ( + BAA3C129648E585E934FD903D1C96652 /* EXPermissions.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 8C9932923AE74564F5F6161B45952232 /* Pod */ = { + isa = PBXGroup; + children = ( + F74F51402CA616F76A43BEE74FFBA664 /* LICENSE */, + A8496B7000568ED2B46217716ECFC5D8 /* README.md */, + 6B1F61D96101BF69D9C0A5E74A1BE48B /* RNBootSplash.podspec */, ); name = Pod; sourceTree = ""; @@ -14495,44 +14559,31 @@ path = CocoaLibEvent; sourceTree = ""; }; - 8D990A86E9FF403E15FE4EFFA33E449E /* Pod */ = { + 8D31F7E502F792082BBBF53BD639EAD5 /* Support Files */ = { isa = PBXGroup; children = ( - CF8936B6C622E00367F2FDD5A7D3A080 /* UMBarCodeScannerInterface.podspec */, + C23CD0A21EBD2999A882F84B9F233AD5 /* RNCAsyncStorage.xcconfig */, + 67919E9EA3B4D9F98265CA9D9D1E588E /* RNCAsyncStorage-dummy.m */, + 51DECBC4E486E8A8C1C355E6C19A8843 /* RNCAsyncStorage-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNCAsyncStorage"; + sourceTree = ""; + }; + 8EE4F6739D321EEE724DD30836E74DEF /* Pod */ = { + isa = PBXGroup; + children = ( + D9D902ABD851156DF10A01DEC00F0123 /* React-RCTAnimation.podspec */, ); name = Pod; sourceTree = ""; }; - 8DA8F67C79D916E2938A707CE16C708C /* Transitioning */ = { + 8F297E5EB29BF8AFD4F647BDF4BA0188 /* Pod */ = { isa = PBXGroup; children = ( - C4B13AABF5C01816B1F1888F8C02D596 /* RCTConvert+REATransition.h */, - 6968E72EA221A652A1E662D6D7EDC15C /* RCTConvert+REATransition.m */, - 74C12544EC8AA7B7B2EC601C042BC447 /* REAAllTransitions.h */, - 545CF27041459F6DC7BF2DB9D86CD210 /* REAAllTransitions.m */, - FA3AB3914573DD5348414461938C9AFC /* REATransition.h */, - 038EC3FEF3E378705AFC70F8439DCCDE /* REATransition.m */, - C60EAE0A54FF212B714AF0FF77374FC9 /* REATransitionAnimation.h */, - 64C2567BEDF0288D61164E4312B28294 /* REATransitionAnimation.m */, - 249A7D40A6715A3AA99D6160299D46D1 /* REATransitionManager.h */, - 644CE6E6A02CE714416A726EC48578AD /* REATransitionManager.m */, - FD83D6F380CD41F473F3B59B403BC5D4 /* REATransitionValues.h */, - 099175F27CBD66453311A8A60CF896F9 /* REATransitionValues.m */, + 68E5C1887F6952E167CC07F80FD866E3 /* React-jsinspector.podspec */, ); - name = Transitioning; - path = ios/Transitioning; - sourceTree = ""; - }; - 8E825D1787A03DC60D026ED5E475B181 /* ios */ = { - isa = PBXGroup; - children = ( - DB737943823C0C0979F96B831D7F1A6E /* RCTTurboModule.h */, - 300ACEFA6E05B7FB33C7E3A880C1CCC1 /* RCTTurboModule.mm */, - 2621D939ABECF381C4333FD11B3DBE11 /* RCTTurboModuleManager.h */, - 17897E6E0BBF0D2797F2D1FFDDA55B5F /* RCTTurboModuleManager.mm */, - ); - name = ios; - path = ios; + name = Pod; sourceTree = ""; }; 8F3F9A745BA6313500B68AB69A642318 /* FlipperKitLayoutTextSearchable */ = { @@ -14543,27 +14594,13 @@ name = FlipperKitLayoutTextSearchable; sourceTree = ""; }; - 8F448DB122BA932F8620E565F266B97C /* Resources */ = { + 8FC7093F051AAD0C014CD72B31406F47 /* vendor */ = { isa = PBXGroup; children = ( - 021BB114EC44FDCE5750A9BFC39134F3 /* AntDesign.ttf */, - FB42D30DE455E3AA936111C8833208BD /* Entypo.ttf */, - 194C8D25FF14664B73B97F728D08A4BD /* EvilIcons.ttf */, - 8F121A69CA8A6886D40D5A86ADA16E5A /* Feather.ttf */, - 6E4EB8D3277207699835BC2F7C5DE938 /* FontAwesome.ttf */, - D252FCD51CAD79E8CE3940176F0BD73F /* FontAwesome5_Brands.ttf */, - 44ED88CBF5C8B32276B0726F04A9B9B7 /* FontAwesome5_Regular.ttf */, - E4E310DD1351BF79C1D5477D3DFA62B4 /* FontAwesome5_Solid.ttf */, - 0D838479726FE37EF7204F8038CDC189 /* Fontisto.ttf */, - 453BEE2FDDDB6FCAC6FA2B914188273F /* Foundation.ttf */, - 420BB02F7725324C307852F9D875E358 /* Ionicons.ttf */, - D23CFD7163F9C8B745569916E88DF8BA /* MaterialCommunityIcons.ttf */, - F2AE3533049A9026DE6276D3A85C60E9 /* MaterialIcons.ttf */, - 7AF0458FB69E290DDAB01749EB48097F /* Octicons.ttf */, - C7A15DCFFDA1ADCAE8DBC816C381F9F8 /* SimpleLineIcons.ttf */, - 37342866BC8641DD44D51F5B2175BC0B /* Zocial.ttf */, + 97A90BAF5C036F8FF315C05BC64D3D76 /* bugsnag-cocoa */, ); - name = Resources; + name = vendor; + path = cocoa/vendor; sourceTree = ""; }; 8FED26F502E2920C9AA2FBDDB1ADE0FE /* GoogleUtilities */ = { @@ -14583,57 +14620,16 @@ path = GoogleUtilities; sourceTree = ""; }; - 909EB23EF4FBFC669441684896516FBA /* Support Files */ = { + 9262A2316A90CB9BDC512EE169A6AB4F /* React-RCTVibration */ = { isa = PBXGroup; children = ( - 925BE885B1BF4BBCEE831EDCC702C665 /* UMBarCodeScannerInterface.xcconfig */, + 47CEEEC269B05BDC532D4EA71D6E2901 /* RCTVibration.mm */, + 4BF56BE3E96D4B9ADB90A98D1091192B /* RCTVibrationPlugins.mm */, + F0D24934AB932CFE3017CF97EC12DCD7 /* Pod */, + E72A2C8168FA7019CBF069BDE9C23983 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; - sourceTree = ""; - }; - 90A8F76706FB04AECFBCB894D5B8BE27 /* Pod */ = { - isa = PBXGroup; - children = ( - D1631F949868D66C882423D4B658AF3D /* LICENSE */, - 379C513DDBC4E0394999FA853E4A61F3 /* README.md */, - E9D76C1D8BC68701342F30DD272C6FD9 /* RNReanimated.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 90BD493B653E811B8313E43F153A5218 /* React-jsinspector */ = { - isa = PBXGroup; - children = ( - 2EBB735830CD6F04A874EE7F92E5E17D /* InspectorInterfaces.cpp */, - 5842DB1199154EBA3E343304048164C1 /* InspectorInterfaces.h */, - F3337BD4703A9F2A4645B1948EACE318 /* Pod */, - F43A0B0436D4ABA89BEA98DE90707A24 /* Support Files */, - ); - name = "React-jsinspector"; - path = "../../node_modules/react-native/ReactCommon/jsinspector"; - sourceTree = ""; - }; - 90C3B0098E98DF86C4E32CAD0025F2FD /* Multiline */ = { - isa = PBXGroup; - children = ( - 45CB80B7AD42144BEA36D5928A84F76D /* RCTMultilineTextInputView.m */, - F0607E5A6E3338DFCBCC07997E08D209 /* RCTMultilineTextInputViewManager.m */, - 39592E7518AEA079B23E5DF37B8CC628 /* RCTUITextView.m */, - ); - name = Multiline; - path = Multiline; - sourceTree = ""; - }; - 90F3CCF0364BAB2CB8FF6EA76B2184FF /* Support Files */ = { - isa = PBXGroup; - children = ( - 3ADFD7C87D38BB59A7251CDABC626E6A /* rn-fetch-blob.xcconfig */, - F6E31255807343DA5B79C6064CCB3698 /* rn-fetch-blob-dummy.m */, - D68B80AB4689550963779757C4C2BF15 /* rn-fetch-blob-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; + name = "React-RCTVibration"; + path = "../../node_modules/react-native/Libraries/Vibration"; sourceTree = ""; }; 92BBBFCEF02E438F7A934ACF7CFC72C7 /* FlipperKitReactPlugin */ = { @@ -14645,27 +14641,29 @@ name = FlipperKitReactPlugin; sourceTree = ""; }; - 933B7BEB89076597C807241DE6A44B58 /* Support Files */ = { + 942026784B56774D5FFBB481548BC399 /* react-native-orientation-locker */ = { isa = PBXGroup; children = ( - 708047505D149B936C021E2B459E36C3 /* UMCameraInterface.xcconfig */, + 21DBB7108A9FA1EEFCA9735DD0E85D7D /* Orientation.h */, + 1605C45A7EB80DD78D498C6ACE428CF4 /* Orientation.m */, + 37AC86349167CE22DBCE3ADF2770AE4A /* Pod */, + 5057049FEC168F7A6584384331BAB91E /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; + name = "react-native-orientation-locker"; + path = "../../node_modules/react-native-orientation-locker"; sourceTree = ""; }; - 939BA7B5EADFE3904EAB23962E73093F /* UMFontInterface */ = { + 9424DEAC091141078B8EF5449BB12DDD /* RCTAnimationHeaders */ = { isa = PBXGroup; children = ( - 20F18A76FC6A2B873CCF4F03200AF4DF /* UMFontManagerInterface.h */, - 2006A3AC22462826731E745F343FE7F7 /* UMFontProcessorInterface.h */, - 2056C01590D85F60BA805762144D861D /* UMFontScalerInterface.h */, - A1076F242435BC17F228427F5A7393D8 /* UMFontScalersManagerInterface.h */, - F2F52E0655E0013AA440234B03F1C587 /* Pod */, - 4D80DCE5D0D213B2B71F686AD3C7DA9C /* Support Files */, + A97B54AF94D69E660EA7DC1739BA3584 /* RCTAnimationPlugins.h */, + CFEFBEA04FA99AD9C4C0CCF8E7EC85FF /* RCTAnimationUtils.h */, + 80B980A2DC985D47E5B4F3CF526DFD78 /* RCTNativeAnimatedModule.h */, + 3181EBFF3AA9E8E21FE1CB080DDF96F4 /* RCTNativeAnimatedNodesManager.h */, + C56B6E4DC08FD464B4569419D3E5E42F /* Drivers */, + 56CA0842623633108B5E2C2CBE0338A3 /* Nodes */, ); - name = UMFontInterface; - path = "../../node_modules/unimodules-font-interface/ios"; + name = RCTAnimationHeaders; sourceTree = ""; }; 94F799760A06FEB9BF350D68FE8F87FD /* AppDelegateSwizzler */ = { @@ -14683,6 +14681,14 @@ name = AppDelegateSwizzler; sourceTree = ""; }; + 9616C550EE284ADC18EE45FA6E79539F /* Pod */ = { + isa = PBXGroup; + children = ( + 9394189BEBBF07FF4D1B068C8F7250C2 /* React-RCTNetwork.podspec */, + ); + name = Pod; + sourceTree = ""; + }; 96B49BB4A070DBD8FC8A851FF52F92B4 /* Static */ = { isa = PBXGroup; children = ( @@ -14799,15 +14805,28 @@ name = Core; sourceTree = ""; }; - 9845326DFAE7D6A44CFE45D706DFF6F3 /* Support Files */ = { + 97A90BAF5C036F8FF315C05BC64D3D76 /* bugsnag-cocoa */ = { isa = PBXGroup; children = ( - AD80B6E773902F36BD6C9760017E9F2D /* UMAppLoader.xcconfig */, - 9C684CFA3C36CAF10DC81C506460AEDA /* UMAppLoader-dummy.m */, - 9D4B55864F909DEDFA9762CA8700F4DB /* UMAppLoader-prefix.pch */, + 635DBA49E5037EF9089256C518CFBA5F /* Source */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMAppLoader"; + name = "bugsnag-cocoa"; + path = "bugsnag-cocoa"; + sourceTree = ""; + }; + 9824DA50CDE37B270C88EFC711EA344C /* Video */ = { + isa = PBXGroup; + children = ( + 86A09AE5C83D80F26243E9C6A3BC235E /* EXVideoManager.h */, + FA1617111E51F830287C52C9066B2E55 /* EXVideoManager.m */, + 31172A1D79DC9491F3DE61DC9D8DE12B /* EXVideoPlayerViewController.h */, + 0F40B52FC2DFDB13480B387C4F29CA0F /* EXVideoPlayerViewController.m */, + 0E1555A71B1B88690357F182AE3E27EA /* EXVideoPlayerViewControllerDelegate.h */, + 8D12E7F5CECBA2EC6D11887658B661A2 /* EXVideoView.h */, + C0C8628D3ECA2DC14F6E5DAFEF019A26 /* EXVideoView.m */, + ); + name = Video; + path = EXAV/Video; sourceTree = ""; }; 9947F30BFF1E6439578095A21FABE5E5 /* CppBridge */ = { @@ -14817,6 +14836,42 @@ name = CppBridge; sourceTree = ""; }; + 999BF1A5966256F0CBA646850A42B180 /* Pod */ = { + isa = PBXGroup; + children = ( + B672C2FF341C2CBC84CE7C181369DAED /* LICENSE */, + C4BEA3F947F7BCB04367E48FD3A8CEAB /* README.md */, + 6D5D1E85E2F0BC368B16D1F1C550518A /* RNDeviceInfo.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 9A120C340496610EC2E5B01FE0CA82C9 /* QBImagePickerController */ = { + isa = PBXGroup; + children = ( + 2C514716EB275CDB666C4007580DC233 /* QBAlbumCell.h */, + 4491B07A5A45C84FDC154B2DFC264C3D /* QBAlbumCell.m */, + 9D261CBE9D3D62109B6D4E8FA46F0BCD /* QBAlbumsViewController.h */, + 7427F37FF19E195E55A9669219AD60B2 /* QBAlbumsViewController.m */, + 4036DA66AEAADDE67F7AF5FF9DD0B667 /* QBAssetCell.h */, + B592100B4B0203A70764DFDE23FCAD33 /* QBAssetCell.m */, + FCA944816518E50AC3DD696784739696 /* QBAssetsViewController.h */, + 8027FF476E99F0262910226C469925AA /* QBAssetsViewController.m */, + BF7875275D133A28394FE406760DC9CE /* QBCheckmarkView.h */, + 877ECD691ABB300A0857DC2D3F38502D /* QBCheckmarkView.m */, + B913B0DE28EC59A4F79F6DB78A261708 /* QBImagePickerController.h */, + B0308D260F31194A500BE1434E9FC9BF /* QBImagePickerController.m */, + 049121CD6C0B1D64E58E3C9027BDCEFB /* QBSlomoIconView.h */, + 09CF615CD864B0E7013EFE0697D54749 /* QBSlomoIconView.m */, + 5FD47A2CFA0C7E037D8822F94D6775F8 /* QBVideoIconView.h */, + FABD8E76822F5C6BF39C74CB704D5A8B /* QBVideoIconView.m */, + 491AED04763753D48BB1E360F814442C /* QBVideoIndicatorView.h */, + B93E931A811386F363040FE7E7792B66 /* QBVideoIndicatorView.m */, + 045BC7589D43B21F9E8D5C1AEAD08961 /* Resources */, + ); + name = QBImagePickerController; + sourceTree = ""; + }; 9AB292B2F9BFA5B7C2925CCFBE327F69 /* Support Files */ = { isa = PBXGroup; children = ( @@ -14828,36 +14883,70 @@ path = "../Target Support Files/libwebp"; sourceTree = ""; }; - 9AC3A8091E1B2ECB429D5E4D0FE410DC /* Nodes */ = { + 9B39715FD3535FE90C4437C61C5DBE58 /* Nodes */ = { isa = PBXGroup; children = ( - F24B3959EC928E4010A4555AA52C546F /* RCTAdditionAnimatedNode.h */, - 670FFCA9F4BFB50956ABBE651270B075 /* RCTAnimatedNode.h */, - 56F14E5E776D7B19B46DF94B1F6742C5 /* RCTDiffClampAnimatedNode.h */, - CBF38D0EDCD2BAE9F7E0DFC3EB793EAA /* RCTDivisionAnimatedNode.h */, - DE9FA24E0448EDBCB927E3A2EA991B44 /* RCTInterpolationAnimatedNode.h */, - FE8ABBB32147E196B4A62E4E10BB5F37 /* RCTModuloAnimatedNode.h */, - CB910BBAA7F056C8ACF556BE38DBF0F5 /* RCTMultiplicationAnimatedNode.h */, - 6DD5D80D7ADF5C069B80C7F7074695F7 /* RCTPropsAnimatedNode.h */, - 47446E6FDCFAD179B4F5E48AA827CF35 /* RCTStyleAnimatedNode.h */, - 463E02AF901F4B917BFC3AC76F7C9FB5 /* RCTSubtractionAnimatedNode.h */, - A248C549D661E6A17DD0BEAF6ED72EE5 /* RCTTrackingAnimatedNode.h */, - 45B6D745F1887A0E606CD8358C2E2862 /* RCTTransformAnimatedNode.h */, - 66E53087487877DA1338C28363B6884D /* RCTValueAnimatedNode.h */, + BB307728748153F595011FB99B180AD5 /* REAAlwaysNode.h */, + 27022965E30076F988DA9D6535E05F09 /* REAAlwaysNode.m */, + 6D63D68250D517F7A8A6FB42EDD1F2EB /* REABezierNode.h */, + FC173FDB05B7BEFFF5A3A8234F36C097 /* REABezierNode.m */, + 7C5BF9AA9C782B87608E0F4E3255B3AA /* REABlockNode.h */, + CDD98338FF52785F209DFBB76641F9F9 /* REABlockNode.m */, + 1BE6C709B2CDA1C8F74B0EB1C19753A3 /* REACallFuncNode.h */, + FF4202637A81AEA50739266A3B02FCCA /* REACallFuncNode.m */, + 568D062A0FF6D94B39E569F10DE6AD41 /* REAClockNodes.h */, + 5D5395056415CAF584F742E8375FDA75 /* REAClockNodes.m */, + CB4578475007A74E070102107138CF00 /* REAConcatNode.h */, + C6F1748B403E6E5764097A0DFD44854C /* REAConcatNode.m */, + 85155F53DD15AAF844D7921324350B39 /* REACondNode.h */, + 3A8EB6CB82FF58D29DCA66F92F103701 /* REACondNode.m */, + DF7167F2BF896C12BBCF5BD8C375A50C /* READebugNode.h */, + 26D34E8EF25EA2FB1249DD3B286FD598 /* READebugNode.m */, + C0BF5F99115EE471188E590055260764 /* REAEventNode.h */, + 8A21DF5AF76A2B8062D40CB737C1DADA /* REAEventNode.m */, + 1A1D9610A449D2388F01014781CD204A /* REAFunctionNode.h */, + 0F0512CBCDA1447DCD89511D30DA8FCF /* REAFunctionNode.m */, + AB48E873BEAA1DD110680782677F158D /* REAJSCallNode.h */, + CFBC723AEB7D761951B2444283230789 /* REAJSCallNode.m */, + D41D779CF58921FD4B98EDD73A15EF24 /* REANode.h */, + 35FF01812EF4A19AF5A496A538F75336 /* REANode.m */, + 28BBE692349E857ED55046519762BAA7 /* REAOperatorNode.h */, + D3F91A5AC125245092B53FBCC0CFA84F /* REAOperatorNode.m */, + 9EFBCED0F028458C60D260A2443070DE /* REAParamNode.h */, + 32D6CEEE188F5E019A0E0D332B9CDF02 /* REAParamNode.m */, + 5027F0CC646A6516D16F1A731BCE3023 /* REAPropsNode.h */, + D194CD066A6620297A9ABEF104160B18 /* REAPropsNode.m */, + 70FE932D7EE0A2E6E295FF0F651AC85F /* REASetNode.h */, + 3C4D934407C0DE63D6FCEF3662980C0D /* REASetNode.m */, + 4AD6C8ED2DA49566A7EF6CBB775EA267 /* REAStyleNode.h */, + 719CB1BCA06AACF1CB60A6CA66317BF6 /* REAStyleNode.m */, + ACC10530C3FEADFF050AA7DD6DDEADDA /* REATransformNode.h */, + 0B0EB0C1455E1309931489C3C4346DC9 /* REATransformNode.m */, + 4E3187C6C948132009DB5543F9704A1D /* REAValueNode.h */, + 842878067937A44B227D66C01C43030D /* REAValueNode.m */, ); name = Nodes; - path = Libraries/NativeAnimation/Nodes; + path = ios/Nodes; sourceTree = ""; }; - 9CB5E0D40D1411C6AF26B43ECEA97048 /* Support Files */ = { + 9BBDED08BD901CB1D10B2FFDC62F8F58 /* react-native-document-picker */ = { isa = PBXGroup; children = ( - 4E7317E7709F95AD4EBE3D146EF52949 /* FBReactNativeSpec.xcconfig */, - 0C7EAA5CB9379993BD07BCA5D5A33B12 /* FBReactNativeSpec-dummy.m */, - 700D2AA0E6364287805AB811D53093FC /* FBReactNativeSpec-prefix.pch */, + E190A81436A1E6A3B90BE76CDA87269B /* RNDocumentPicker.h */, + 21FA8F5FC5A5FA3D930E63232DACA794 /* RNDocumentPicker.m */, + 1466488A6AB81BD8262F74CD34216623 /* Pod */, + B10DDD4F9730AAF7627A0109F2C34C46 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; + name = "react-native-document-picker"; + path = "../../node_modules/react-native-document-picker"; + sourceTree = ""; + }; + 9C7BED83817A7DCA4244F0B0096A6873 /* Pod */ = { + isa = PBXGroup; + children = ( + 6373D9E4E8F697C98D3DBA57A8DBF2AD /* React-RCTImage.podspec */, + ); + name = Pod; sourceTree = ""; }; 9D8EB2E52CFAF65B1C7895DAB9967958 /* Support Files */ = { @@ -14873,6 +14962,38 @@ path = "../Target Support Files/FlipperKit"; sourceTree = ""; }; + 9DA30316620B5362601D5BD1EF70BF5D /* Multiline */ = { + isa = PBXGroup; + children = ( + C9C73D7D00469115D46057DBC13A85F7 /* RCTMultilineTextInputView.h */, + 6D4994A75D45527F7F5930F67C8B5BEB /* RCTMultilineTextInputViewManager.h */, + F86499206B3CCEFEDBF06F69F36D7B91 /* RCTUITextView.h */, + ); + name = Multiline; + path = Multiline; + sourceTree = ""; + }; + 9EC5600BCBA1669EA17AAB433A93EBB4 /* Support Files */ = { + isa = PBXGroup; + children = ( + 079F6E76299A18536226AD3A42E9764F /* React-Core.xcconfig */, + E6F633DA233010259078C80B210B8CB0 /* React-Core-dummy.m */, + 8ED94D8BE07D4006C71DDCE06EF299BA /* React-Core-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React-Core"; + sourceTree = ""; + }; + 9F294B654934236B675B6241DA9D6D0C /* Pod */ = { + isa = PBXGroup; + children = ( + 9C1792EAAB3134FE54B51A82E9C58BBE /* BugsnagReactNative.podspec */, + 3A087F03D451E89A5AAD301D0B58B36C /* LICENSE.txt */, + C702028BE0E9F17B34F2C20BC017AD83 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; 9F87E7AC51EDEBF22E4988AE59997F65 /* SDWebImage */ = { isa = PBXGroup; children = ( @@ -14883,27 +15004,6 @@ path = SDWebImage; sourceTree = ""; }; - 9FB2F931341150A0027A4E6BD724C551 /* ScrollView */ = { - isa = PBXGroup; - children = ( - 2C5C63223AB5EAA7F18B5732308E2937 /* RCTScrollableProtocol.h */, - BEA76C48FC50984E4F9E6E0CF3DA4101 /* RCTScrollContentShadowView.h */, - A28F4BCFA07BFCD1FBB3A8988D1341D9 /* RCTScrollContentShadowView.m */, - B8F314BF2984990FA063A03D6CFC9EDB /* RCTScrollContentView.h */, - 85653A67F4DAFE72CB27698A0137506B /* RCTScrollContentView.m */, - C01677F298780E9A8D60D5281B060257 /* RCTScrollContentViewManager.h */, - 0FB643881A96AB7E3640E83A710DBF2D /* RCTScrollContentViewManager.m */, - 5D442FBD4686B89CE6183D846DFA6792 /* RCTScrollEvent.h */, - BA70A66223D2DA58B700B4B982C1F2CD /* RCTScrollEvent.m */, - 75497E5890A05EC1C27367D4A88685F7 /* RCTScrollView.h */, - B8B23E2DCFF2CEDF5DA4F6D1A9A791B0 /* RCTScrollView.m */, - D2EE2F1FC5DBB130C6DAAEDC66A45312 /* RCTScrollViewManager.h */, - 0DC699F0D9FE9CBAF4C154CDCB2CFF9B /* RCTScrollViewManager.m */, - ); - name = ScrollView; - path = ScrollView; - sourceTree = ""; - }; A00FF58D0E86FB776D0EFA6AFE66C950 /* Support Files */ = { isa = PBXGroup; children = ( @@ -14915,17 +15015,6 @@ path = "../Target Support Files/Flipper-RSocket"; sourceTree = ""; }; - A032F939B9933DD6EEE81EA66B4E9A41 /* Support Files */ = { - isa = PBXGroup; - children = ( - 8AF5C046C9FEA5644E462470FB169CF8 /* RNRootView.xcconfig */, - EE41C8F59E52D48F972F13E201B0CF7D /* RNRootView-dummy.m */, - FF9CBB565089003157B36DC0BB0175D7 /* RNRootView-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNRootView"; - sourceTree = ""; - }; A06C0348B0DCCB729224A5C8AECC115F /* SKIOSNetworkPlugin */ = { isa = PBXGroup; children = ( @@ -14943,6 +15032,17 @@ name = SKIOSNetworkPlugin; sourceTree = ""; }; + A0B0E69071D422E89F8A9AFF6AECE6B8 /* Support Files */ = { + isa = PBXGroup; + children = ( + 2649E0E14CC40301FE5BC5CBCFE7C60C /* EXAV.xcconfig */, + 86159C8534820A22070AD2CBF12AF275 /* EXAV-dummy.m */, + 7AA39110DD8D8834D95E5D61309C0695 /* EXAV-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXAV"; + sourceTree = ""; + }; A1523A15AB1E0B92DC88479E9B680AB8 /* NSData+zlib */ = { isa = PBXGroup; children = ( @@ -14952,105 +15052,43 @@ name = "NSData+zlib"; sourceTree = ""; }; - A1703292CF8304F090F24C0A05A87DBF /* crashlytics */ = { + A382696B6B1FB012CA2DE1875EF35AE4 /* Pod */ = { isa = PBXGroup; children = ( - FF2E3B6071E642C960A305BD24112969 /* RNFirebaseCrashlytics.h */, - 8211C849B0BB27D35A0F6DE827D32200 /* RNFirebaseCrashlytics.m */, - ); - name = crashlytics; - path = crashlytics; - sourceTree = ""; - }; - A1FDDFCAA9244F7231AA5067148B2E77 /* jsi */ = { - isa = PBXGroup; - children = ( - 6D79C1C3353D4D0924BA444AAE425C7A /* decorator.h */, - 3ECAD576FC93676742AF2BEB00B37145 /* instrumentation.h */, - 8ACFEE7F35A7FDA56187C4913ED971B6 /* jsi.cpp */, - 63ADF89DFE17177EEA8B93FFA928D3C0 /* jsi.h */, - 289AB504D307CADBD61BC9ECB6FB301C /* jsi-inl.h */, - AC753D8FD29951B39F59B1FF8F7221AE /* JSIDynamic.cpp */, - AC673122B986549D070C9F17702D6C35 /* JSIDynamic.h */, - 9FD22FAE125FA335CEE173E903DB98EB /* jsilib.h */, - 9A62CDA9C04EC5C2F3BCB26BA4924A70 /* jsilib-posix.cpp */, - 459249E942D2FD50F651A22F80497889 /* jsilib-windows.cpp */, - E895CCA4FDC4BDCD1ACEA84305D9A7E6 /* threadsafe.h */, - ); - name = jsi; - path = jsi; - sourceTree = ""; - }; - A201AB833056B400CA96CCFAFA70CDA3 /* Support Files */ = { - isa = PBXGroup; - children = ( - E15558B9219D94CF1F5657740ACDE9C5 /* RNDeviceInfo.xcconfig */, - 23512D9D1FA46DF9D7AB26488FD6D8FB /* RNDeviceInfo-dummy.m */, - B54F151E8051C4AA9C2C1F94A5E728C4 /* RNDeviceInfo-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; - sourceTree = ""; - }; - A230E064774935F97FF83D731F567152 /* React-RCTVibration */ = { - isa = PBXGroup; - children = ( - 8E3978DF7ED57361A352828DF9842EB9 /* RCTVibration.mm */, - FE3AC1673D41D15C7C6718BA6182BB6D /* RCTVibrationPlugins.mm */, - 01A6DB90B7281A9537FC1A61142320C0 /* Pod */, - E28E7E65EEA3C53244DDC6D6DA3F1E8F /* Support Files */, - ); - name = "React-RCTVibration"; - path = "../../node_modules/react-native/Libraries/Vibration"; - sourceTree = ""; - }; - A3246F403FCF2D393D888D401D4E0428 /* Support Files */ = { - isa = PBXGroup; - children = ( - AF11E03D5B5336362E177A24DBF7096F /* RCTTypeSafety.xcconfig */, - 6BE374AE85600D98349DB55D1038CAF7 /* RCTTypeSafety-dummy.m */, - 77D20E2E14B478DA5AF1AFB02D181B21 /* RCTTypeSafety-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; - sourceTree = ""; - }; - A534A8DAF6642C3F95E6D17048CE5F49 /* Pod */ = { - isa = PBXGroup; - children = ( - E48604F48DAC94E3DDE700AF98F56FE2 /* UMReactNativeAdapter.podspec */, + BE02C0418CF8EE6054A6B6631E06DCDA /* EXFileSystem.podspec */, ); name = Pod; sourceTree = ""; }; - A537BBD6716D20AAA989B616CAE132A4 /* React-RCTLinking */ = { + A3B5CCE2A3D44117B0F1B14E2A1BC6B2 /* EXFileSystem */ = { isa = PBXGroup; children = ( - F84C9DCA5279A3667D6257DCCBF5E5C9 /* RCTLinkingManager.mm */, - E82F2B869C7FD0698FFA7A1F9E5ACFAF /* RCTLinkingPlugins.mm */, - EB933F5A080E1259BECB4DD8BB491FAC /* Pod */, - 01C2321C27F4FFA72F24B11159387B29 /* Support Files */, + CB37AA76C764D977AF9EA4B1FA538F9D /* EXDownloadDelegate.h */, + 2498A4DA779B27626860F0C820BF4D36 /* EXDownloadDelegate.m */, + 3DFF981C47CA2DEF0ABD18204C9C309B /* EXFilePermissionModule.h */, + 22067950C5C6A4A4DC87C7D141E6E076 /* EXFilePermissionModule.m */, + 198A5250D407D50D33F2AAC0B8048876 /* EXFileSystem.h */, + 1711B188EC11F4C1FEAD7932A4A1A3DE /* EXFileSystem.m */, + 65D682C26CA14926B14CC0283B7F7337 /* EXFileSystemAssetLibraryHandler.h */, + 9AE3E53F317299930F0492639EF01984 /* EXFileSystemAssetLibraryHandler.m */, + B2D4DDB8592A5368609B572269B0F1D2 /* EXFileSystemLocalFileHandler.h */, + 0E3C14843CFD8E90981B9685A9A32E31 /* EXFileSystemLocalFileHandler.m */, + A382696B6B1FB012CA2DE1875EF35AE4 /* Pod */, + CB3AF880AEAA2464B866814E4AB8B022 /* Support Files */, ); - name = "React-RCTLinking"; - path = "../../node_modules/react-native/Libraries/LinkingIOS"; + name = EXFileSystem; + path = "../../node_modules/expo-file-system/ios"; sourceTree = ""; }; - A54623681621CAE4F74A50B1F2377527 /* CxxBridge */ = { + A3BA2B2AFCB59E1AB204ADFBFEC7DFC4 /* Support Files */ = { isa = PBXGroup; children = ( - 0D5C72F658BE37FBCAB30618A68F9D23 /* JSCExecutorFactory.h */, - 820F8842B24170991B1792B2091775EB /* JSCExecutorFactory.mm */, - F44A0CD19357F15C7C00725A8D33E20D /* NSDataBigString.h */, - 8AA97DDF312021A67A66C576CBF31CF1 /* NSDataBigString.mm */, - B757E08DABF9ED2D5DA2332EE709A28E /* RCTCxxBridge.mm */, - E885728BDC4A8C2993A7BB23F35C3C36 /* RCTCxxBridgeDelegate.h */, - 674088A105FF58213544F7538F565151 /* RCTMessageThread.h */, - 13DD1B28DAEDF569254323914729E6C3 /* RCTMessageThread.mm */, - 6BBC55D0BAE3E0BB33A9C04D97CFAA33 /* RCTObjcExecutor.h */, - A2E0E0FBE3BE420F40E9F34D63E43093 /* RCTObjcExecutor.mm */, + 0B0A67F61C92A74A973F3AD157FF31AE /* ReactCommon.xcconfig */, + C14E45FD9623CC58C10518AD113563CE /* ReactCommon-dummy.m */, + A163430C5570F89037762F4E9A150712 /* ReactCommon-prefix.pch */, ); - name = CxxBridge; - path = React/CxxBridge; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/ReactCommon"; sourceTree = ""; }; A59353DB0870ED6577E60D8D39E21610 /* MethodSwizzler */ = { @@ -15063,15 +15101,6 @@ name = MethodSwizzler; sourceTree = ""; }; - A5E7F12897361D2AAD0AB21CF9126260 /* Support Files */ = { - isa = PBXGroup; - children = ( - 7891744027814EB6F7BBB3EEA8244492 /* UMFileSystemInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; - sourceTree = ""; - }; A5F069021F0FD037171E52BBEC3CA18C /* GoogleAppMeasurement */ = { isa = PBXGroup; children = ( @@ -15082,18 +15111,6 @@ path = GoogleAppMeasurement; sourceTree = ""; }; - A651B710CD18C0D243BB9C432315CEB5 /* UMBarCodeScannerInterface */ = { - isa = PBXGroup; - children = ( - 2BFDD514937B20C543A2E6097EA22E2B /* UMBarCodeScannerInterface.h */, - 31203E4AAD1FC38EAD20B1B10A91190B /* UMBarCodeScannerProviderInterface.h */, - 8D990A86E9FF403E15FE4EFFA33E449E /* Pod */, - 909EB23EF4FBFC669441684896516FBA /* Support Files */, - ); - name = UMBarCodeScannerInterface; - path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; - sourceTree = ""; - }; A69845E822AFF1445C6224AC528A5688 /* Support Files */ = { isa = PBXGroup; children = ( @@ -15103,6 +15120,25 @@ path = "../Target Support Files/FirebaseAnalytics"; sourceTree = ""; }; + A6E8C630B93C509E768D59012E983627 /* Pod */ = { + isa = PBXGroup; + children = ( + D539CB3FCDAB4B52C26A6288C51EFEC0 /* EXKeepAwake.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + A78D1B9F33705E69D8CE3AE6B6568F34 /* Singleline */ = { + isa = PBXGroup; + children = ( + 267F6C74F5F2AB98971FC8EA2F47B183 /* RCTSinglelineTextInputView.h */, + 124072C8CF5B3C82CAF4ECD605BC4C4E /* RCTSinglelineTextInputViewManager.h */, + 90D34DFF04C9FC93FBC548E5C5BC1EC1 /* RCTUITextField.h */, + ); + name = Singleline; + path = Singleline; + sourceTree = ""; + }; A798E741FBE2780C2247A64322076790 /* Pods */ = { isa = PBXGroup; children = ( @@ -15144,68 +15180,65 @@ name = Pods; sourceTree = ""; }; - A7A0FEFCA21ECB2CD2763B5E90C61541 /* functions */ = { + A7C96B52313A17DA4FD956C2A944AD03 /* UserNotification */ = { isa = PBXGroup; children = ( - 51EADEF91B7B886DA76E5CD35A5254EB /* RNFirebaseFunctions.h */, - 3EC707E40A56FB45B18630938D291BF8 /* RNFirebaseFunctions.m */, + CF6E7C96EC29BA645245BB12B05D8BBD /* EXUserNotificationPermissionRequester.h */, + 533A436110B2A43D96258CDCDC425754 /* EXUserNotificationPermissionRequester.m */, ); - name = functions; - path = RNFirebase/functions; + name = UserNotification; + path = UserNotification; sourceTree = ""; }; - A8A0A94D4AC1D9E2E3C7BCC1079F4F99 /* Support Files */ = { + A7FE8EE23B062EB05226A784920F4B5F /* RNCMaskedView */ = { isa = PBXGroup; children = ( - D0D1ABF3B89914EBBBDF00360294DDAC /* EXImageLoader.xcconfig */, - 73844297063A4D124E465C14347C59A0 /* EXImageLoader-dummy.m */, - 7FB6659D78CDBEDF7792CC526BE5B252 /* EXImageLoader-prefix.pch */, + DB64B1122545BBAF21C429CE6B63462E /* RNCMaskedView.h */, + 3E417FCC99890ADA6613B3B742D3E0C9 /* RNCMaskedView.m */, + B6AD0FF33C5C0376F2D1F42D1945EF20 /* RNCMaskedViewManager.h */, + 16820BBC6885750171296D2BFF8E857A /* RNCMaskedViewManager.m */, + 86E655BA6DB99509E8240D44FF7EF897 /* Pod */, + 82F42776458D7A3AE266E944CA191615 /* Support Files */, + ); + name = RNCMaskedView; + path = "../../node_modules/@react-native-community/masked-view"; + sourceTree = ""; + }; + A82D8687F061DD3E30BBF64E4CDDE8FD /* Support Files */ = { + isa = PBXGroup; + children = ( + 06AAD9D0F4DA3DB3A4910B53E9778504 /* ReactNativeKeyboardInput.xcconfig */, + 759ADEA0F49999ED003E12B3140CEA1C /* ReactNativeKeyboardInput-dummy.m */, + 2C67267A8A17001BD55473995B72CDCF /* ReactNativeKeyboardInput-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXImageLoader"; + path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardInput"; sourceTree = ""; }; - A93C46D5C05B86E41A16F0DC63F68BAA /* React-cxxreact */ = { + A9102972D0D0EBC24A846628566EDB0C /* RNScreens */ = { isa = PBXGroup; children = ( - 176E682D41DF7CC73EC689503E11CFC5 /* CxxModule.h */, - AF74D6C245FDC2CF2884B2AD59B8252F /* CxxNativeModule.cpp */, - 9B318843A578BDB8143B81E602A3BD8A /* CxxNativeModule.h */, - 82C89CDE844236EA18A85AC998F20C01 /* Instance.cpp */, - 73C2342444562F5C84331C25526B734F /* Instance.h */, - 94446C8C4D927F1CFA1EF749AD691827 /* JsArgumentHelpers.h */, - 9CDCEFEB0F8EB7AB3332416CE86E41AC /* JsArgumentHelpers-inl.h */, - 7660A9FD29E726852043D35BA11C2A65 /* JSBigString.cpp */, - 1F2E52A1218F748E57349CFBEDDB565E /* JSBigString.h */, - 67B72A3E7B49AA3497182A6E61873E60 /* JSBundleType.cpp */, - 69B6D2BB819E460BA9FA4E519D5B54B8 /* JSBundleType.h */, - 4903B4BB6E4988D7C0DFE53CA04CE545 /* JSDeltaBundleClient.cpp */, - 7883C05ED00ABDCC8429FA9E3FD9A7CE /* JSDeltaBundleClient.h */, - 8FE213B1E1A18786AD8062BD7D12E915 /* JSExecutor.cpp */, - 9E6BB2A68339DF6C48E9AAF7FE47C4C9 /* JSExecutor.h */, - E102AAC7A0DF3B55DFCCE338224DD7E7 /* JSIndexedRAMBundle.cpp */, - 11B26118160321B6863E597D7ECD6ADA /* JSIndexedRAMBundle.h */, - 7D1701087B20DC5B9A8EB0325671F231 /* JSModulesUnbundle.h */, - 5F11B9B92C0E35FBA7898DE7A2A81B02 /* MessageQueueThread.h */, - 47C7AD4A381985CD1A3659776721230E /* MethodCall.cpp */, - 769C0D49445A3B7FAF11861746C922B3 /* MethodCall.h */, - 8AF741FBFD4302AB4CC76070ADB906C9 /* ModuleRegistry.cpp */, - 2445FCA743A7135BAB54BA939458F8F6 /* ModuleRegistry.h */, - 00A26D8E2C88C84085C59339D32C8A40 /* NativeModule.h */, - 28CE0A2263810AB8B174A3BC5EDDD46F /* NativeToJsBridge.cpp */, - 918A7741E230976F34225A5AD202BEAD /* NativeToJsBridge.h */, - C5D469DF24AAB3A60D4D2DC73D7157DC /* RAMBundleRegistry.cpp */, - B7360D2B463CE6CA010B5AF2028E78D4 /* RAMBundleRegistry.h */, - 65F9AE4F2347C36409967A9064055FBA /* ReactMarker.cpp */, - 80268938CD89348C2550E423A921845F /* ReactMarker.h */, - 6D2E47E5DC5515FFA80025C1D28C5163 /* RecoverableError.h */, - B3783E3B4DA426535AD140A0330F95AD /* SharedProxyCxxModule.h */, - 13B375DBDAED765EE756A663051D4F59 /* SystraceSection.h */, - F18E9C5D3FDEE3E0E34B84EC806C612E /* Pod */, - C2E8AE65D5403430F3B0507D5BD46D39 /* Support Files */, + 134E75B44815EFD151A2D9B70BD40986 /* RNSScreen.h */, + 7A37CA79C6B36FB48C96D5E545155E9C /* RNSScreen.m */, + A7933DE23E2E94AB414A61ADF5BF0B52 /* RNSScreenContainer.h */, + 878DC5AA91F3DFEE8A5FCE23CDF9F154 /* RNSScreenContainer.m */, + 876083BCCE2D2CC8E94DE4899EB6ADAD /* RNSScreenStack.h */, + 6B41E4FCC74576391ADB7ACBFD2CB539 /* RNSScreenStack.m */, + 96425385B1223999EC8995BC6E3AFA06 /* RNSScreenStackHeaderConfig.h */, + 2905F5558875923B7AF4A82D78A04C68 /* RNSScreenStackHeaderConfig.m */, + FEEADD289671AB3FDE86B26916E5686A /* Pod */, + 3EDC428094876DEF1D9458F57F523962 /* Support Files */, ); - name = "React-cxxreact"; - path = "../../node_modules/react-native/ReactCommon/cxxreact"; + name = RNScreens; + path = "../../node_modules/react-native-screens"; + sourceTree = ""; + }; + A95E1B05BED2D06151899E350FC7EF2E /* Pod */ = { + isa = PBXGroup; + children = ( + FB7AD6B3ADA10DF50D786C20607F7CB7 /* React-Core.podspec */, + ); + name = Pod; sourceTree = ""; }; A97D4722F12FAED5135A2205397F4AAE /* FirebaseCoreDiagnostics */ = { @@ -15220,151 +15253,35 @@ path = FirebaseCoreDiagnostics; sourceTree = ""; }; - A9CA67E11989C757AD673CCCFC327205 /* Pod */ = { + AA010E07B27634C44BBA986629A540E9 /* BaseText */ = { isa = PBXGroup; children = ( - 3952FE228AC8F49810009754B414EA0A /* UMTaskManagerInterface.podspec */, + B01F3DAB08F37744FF6F8C05B00B9C18 /* RCTBaseTextShadowView.m */, + 77B684152044F95724A69EDE979113A0 /* RCTBaseTextViewManager.m */, ); - name = Pod; + name = BaseText; + path = BaseText; sourceTree = ""; }; - AA00CA5040E67394A8968C68F98A95DA /* Products */ = { + AB97F816DCD149D7B806A8261096EB7E /* Nodes */ = { isa = PBXGroup; children = ( - 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */, - 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */, - 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */, - AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */, - 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */, - ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */, - 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */, - 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */, - 09B5856105EF7C6447B9EC57E7E36B34 /* libEXKeepAwake.a */, - 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */, - 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */, - 130335B611EDD6AFF8824641E06138D6 /* libEXVideoThumbnails.a */, - 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */, - ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */, - E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */, - 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */, - 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */, - E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */, - AC12C7E29555A7CFDDEF1EDB5BC2F3DA /* libFlipper-DoubleConversion.a */, - 99D5CD245388DC76AAEF6E1E351A90ED /* libFlipper-Folly.a */, - E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */, - ACBB7F62B267CC7C9BBBAE41DE94743B /* libFlipper-PeerTalk.a */, - FFDC7746794AB17CFB7150820479DF40 /* libFlipper-RSocket.a */, - 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */, - 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */, - 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */, - 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */, - 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */, - B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */, - 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */, - 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */, - 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */, - 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */, - ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */, - 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */, - F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */, - BD71E2539823621820F84384064C253A /* libReact-Core.a */, - 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */, - 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */, - D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */, - F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */, - 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */, - 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */, - B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */, - 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */, - 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */, - 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */, - 012242E4480B29DF1D5791EC61C27FEE /* libreact-native-notifications.a */, - 48425DA2F01D82A20786D5E55E264A29 /* libreact-native-orientation-locker.a */, - 52FCF98CEFF94C742080B6965D537AD0 /* libreact-native-safe-area-context.a */, - 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */, - 8DF63376066E2275FF26820B3A512A9B /* libreact-native-webview.a */, - FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */, - F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */, - EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */, - 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */, - A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */, - 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */, - E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */, - C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */, - D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */, - 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */, - 16E9F31EC059F2E6FADBF7D544CCCA1D /* libReactNativeKeyboardInput.a */, - 17772905A5DCAAE05D22C2CC78ABB63D /* libReactNativeKeyboardTrackingView.a */, - 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */, - 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */, - 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */, - 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */, - B8CD4B9B578CE9FA38114B638C9CAA78 /* libRNCMaskedView.a */, - 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */, - E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */, - E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */, - 4EAF7225D8D498E7D232AE1520E6CBD3 /* libRNFirebase.a */, - 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */, - 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */, - 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */, - C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */, - E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */, - 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */, - BFCE4058442BFB8DEB89BA3F261A76BA /* libRNUserDefaults.a */, - 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */, - B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */, - FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */, - 7862C607B7BE0510C2D65193F9B4B4F9 /* libTOCropViewController.a */, - 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */, - AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */, - BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */, - 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */, - 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */, - 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */, - 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */, - FE1E812071397E31AE21DFF368B781B1 /* TOCropViewControllerBundle.bundle */, + C18252439B490C91FC5F74CCC76918A3 /* RCTAdditionAnimatedNode.m */, + 59A38D76ECF6D3A2CF7979FB90B2B2E4 /* RCTAnimatedNode.m */, + 041293840B618AC2B9040C82E56A4EC6 /* RCTDiffClampAnimatedNode.m */, + 2AC7952E4EB82FDF80EE45F4F7C9817C /* RCTDivisionAnimatedNode.m */, + 2F453AB8650E5E04AF66A8676A2B8967 /* RCTInterpolationAnimatedNode.m */, + 5910B455F2DD57F89C0663BA82E590FB /* RCTModuloAnimatedNode.m */, + 23F91F7ECFFD18675908FE501CA1B836 /* RCTMultiplicationAnimatedNode.m */, + BAB32DAC1CCB947DB9B0F1CACD9FFADE /* RCTPropsAnimatedNode.m */, + 71FC861FA342057264415C3E6A5BF805 /* RCTStyleAnimatedNode.m */, + 1B68E7E8F81A7A29F567BCAF59647574 /* RCTSubtractionAnimatedNode.m */, + 87A15D379D5A6FF0CA7347DCFDE9F8DD /* RCTTrackingAnimatedNode.m */, + 4E3FD77131EA5EDCE0E84A962E4F4B4A /* RCTTransformAnimatedNode.m */, + BC6BF1D7ED08F18910811808E32D7B8E /* RCTValueAnimatedNode.m */, ); - name = Products; - sourceTree = ""; - }; - AAE847ED7CBED5236F0B5F67DE126943 /* UMModuleRegistryProvider */ = { - isa = PBXGroup; - children = ( - E7C018B37CA0571A66AF691C602CF3E9 /* UMModuleRegistryProvider.h */, - E407C008808A40F70B6473A6CBE3F57E /* UMModuleRegistryProvider.m */, - ); - name = UMModuleRegistryProvider; - path = UMCore/UMModuleRegistryProvider; - sourceTree = ""; - }; - AAFA814E161AF1138E2E6300E623F955 /* EXAV */ = { - isa = PBXGroup; - children = ( - 9293FEC03A243E75C03156FF0BB9EDD0 /* EXAudioRecordingPermissionRequester.h */, - 281755D3FED0AC0C07667D6185F87413 /* EXAudioRecordingPermissionRequester.m */, - AA1DE0B2DD8D09365C0A96B826CEFF8C /* EXAudioSessionManager.h */, - 03A4A214ECFB8B66DB5206004751513C /* EXAudioSessionManager.m */, - A8FDC50C0A49E9CFF9A6B5B6012AA2C4 /* EXAV.h */, - 929C256FD97B9112F7FEE2BA26618099 /* EXAV.m */, - 7C782DEE90C5CE37713B612FA60063C7 /* EXAVObject.h */, - 9D8551A70D7C7711E79188E2D0317FDA /* EXAVPlayerData.h */, - 3CB3E097FB8D4699ADBD9E68474B0E50 /* EXAVPlayerData.m */, - 5B5F6F868719F0F706C02941CE2B4F17 /* Pod */, - C5634E89673A4D643DD73FA9C1A0A1DF /* Support Files */, - 496152554BE93C70BE4370463A2883A7 /* Video */, - ); - name = EXAV; - path = "../../node_modules/expo-av/ios"; - sourceTree = ""; - }; - AB1F3048A8AEBCBB864D8B8A8625A202 /* links */ = { - isa = PBXGroup; - children = ( - E7229A6C8E02DA1D07A9ED6E82D84169 /* RNFirebaseLinks.h */, - C9EED251D0562B9AC03A005055380663 /* RNFirebaseLinks.m */, - ); - name = links; - path = RNFirebase/links; + name = Nodes; + path = Nodes; sourceTree = ""; }; ABD6D4AA9A75376B07AA8CFE7F1B0CD8 /* Reachability */ = { @@ -15378,48 +15295,6 @@ name = Reachability; sourceTree = ""; }; - ABD835202B16033ECD0A78822544FF34 /* Support Files */ = { - isa = PBXGroup; - children = ( - FD536FA8CE7E4CF9FD689C9CFEA9B5EF /* RNBootSplash.xcconfig */, - 52D5A4999CBC938C3EB96C5EB0DC4C53 /* RNBootSplash-dummy.m */, - B9D8831B8C7A05F631A441D513C9FE58 /* RNBootSplash-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNBootSplash"; - sourceTree = ""; - }; - AC1A4D30D433C6D40C7BF81583E8C558 /* Nodes */ = { - isa = PBXGroup; - children = ( - F1B6B155C1362423F030CED4E3879362 /* RCTAdditionAnimatedNode.m */, - FA8813AF8196B7EA7BB351CFF7D6D740 /* RCTAnimatedNode.m */, - F4D44217F164E43678965F751CC6119C /* RCTDiffClampAnimatedNode.m */, - F9FA3D4ED8D7DB9B45419661B73FBFAD /* RCTDivisionAnimatedNode.m */, - 280073A9944B03667F12E624AABE183B /* RCTInterpolationAnimatedNode.m */, - E715E1B8FD064130CF7B8A3C3A754F4F /* RCTModuloAnimatedNode.m */, - E9B4CC3ABAFE80A77B59E5D3D8031B4C /* RCTMultiplicationAnimatedNode.m */, - 864CF5DDB5CF30FBF99B6687CAFAE43D /* RCTPropsAnimatedNode.m */, - C1339D81158046A4381EEC75CB217634 /* RCTStyleAnimatedNode.m */, - E381D2F8590F15AB81188961FC855C36 /* RCTSubtractionAnimatedNode.m */, - 3169594B075AF1E3A5B47E086E0F5156 /* RCTTrackingAnimatedNode.m */, - B15677836E5397891055B57F0F56CB1A /* RCTTransformAnimatedNode.m */, - 9AF413FA899EC75DA85DAD882CC3D76C /* RCTValueAnimatedNode.m */, - ); - name = Nodes; - path = Nodes; - sourceTree = ""; - }; - AC4C4E25ED47E8018739B786EA6F8DF3 /* Pod */ = { - isa = PBXGroup; - children = ( - F36236811E003A337EF6CAEEC8FC9311 /* LICENSE */, - 36CD5A95887F55368E62220E39020141 /* react-native-appearance.podspec */, - EB688E0AF071C036441B95809DA13B81 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; AC534666E5D1992937AD465AEC6E6EF4 /* Logger */ = { isa = PBXGroup; children = ( @@ -15430,15 +15305,24 @@ name = Logger; sourceTree = ""; }; - ACEC3B85033B2A4A6EC339231799703E /* ReactCommon */ = { + ACB2DFF2E33E6E5F07A5D80D1C1EF6B8 /* Pod */ = { isa = PBXGroup; children = ( - 6A1D90631ED18BB57C6927D6A758C84E /* callinvoker */, - 530D4F52BD5CF7D56BF9078E1709CBEC /* Support Files */, - 2EE1EAFC0A1B50D9B752A8254E1DD276 /* turbomodule */, + 3762FECAFF7F556152C59808B990F279 /* React-CoreModules.podspec */, ); - name = ReactCommon; - path = "../../node_modules/react-native/ReactCommon"; + name = Pod; + sourceTree = ""; + }; + ACFAEBF4C6C1A7053D0137F3437085BA /* FBLazyVector */ = { + isa = PBXGroup; + children = ( + 966F02B48C3446EE8A1C530C620F08CE /* FBLazyIterator.h */, + 4865AD148FB95A16B139DE3AD0BB5331 /* FBLazyVector.h */, + 21A37FD95C0465FF9F99F759118EABC0 /* Pod */, + 32741838E12ED0B06ACA1CCA9323259F /* Support Files */, + ); + name = FBLazyVector; + path = "../../node_modules/react-native/Libraries/FBLazyVector"; sourceTree = ""; }; AD07D6129601D36043F603D1825C8DD7 /* GoogleDataTransportCCTSupport */ = { @@ -15462,18 +15346,15 @@ path = GoogleDataTransportCCTSupport; sourceTree = ""; }; - AD10018EE51B6AA21E78516768713479 /* UMPermissionsInterface */ = { + AD8F51D43C17C1F674A78CC20CCD51B4 /* Support Files */ = { isa = PBXGroup; children = ( - 0BCC70F4FF4C368C566CA84DDD9D0F52 /* UMPermissionsInterface.h */, - F9C923B2DE2580BF065AC26AF57C071D /* UMPermissionsMethodsDelegate.h */, - 88BB66B7FBB43DB09249D407D844F08F /* UMPermissionsMethodsDelegate.m */, - 21D9C70A8F47F56275117FC3BD2FA20A /* UMUserNotificationCenterProxyInterface.h */, - 55BBE6DA80C2065E3EDCAF194FD67E02 /* Pod */, - 44CF9BE6474BEA62CC3089E16B08A89B /* Support Files */, + E0495102CDC8237B6AC8990EE9CE248D /* react-native-jitsi-meet.xcconfig */, + FDF5377FFC3A9BA9CC53D6C97ADD2E4E /* react-native-jitsi-meet-dummy.m */, + C955267DE061468D6AEE4D05FE950850 /* react-native-jitsi-meet-prefix.pch */, ); - name = UMPermissionsInterface; - path = "../../node_modules/unimodules-permissions-interface/ios"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; sourceTree = ""; }; AD9F9EC9BD3E83CB1760763FE97FB773 /* UserDefaults */ = { @@ -15485,29 +15366,6 @@ name = UserDefaults; sourceTree = ""; }; - ADE2B0CCEA2BBD307A99A974FF8CC747 /* EXPermissions */ = { - isa = PBXGroup; - children = ( - 778CBF152932CBF275F1EF51184F3EE1 /* EXPermissions.h */, - D23365A895C40B971B40B8F58C974B53 /* EXPermissions.m */, - 30CC3B2ADA60E450F29AA47F0F9C5626 /* EXReactNativeUserNotificationCenterProxy.h */, - 92CEF276BD4AE7CABDE715A120DD5392 /* EXReactNativeUserNotificationCenterProxy.m */, - AEA8CD03C878D6B1ABBCAED6A5EE35A7 /* Pod */, - CD2CE5E23897F375F4F6A44ED452C51F /* Requesters */, - 4A4AC3F544F1EED7FFF7D3F417C05C6F /* Support Files */, - ); - name = EXPermissions; - path = "../../node_modules/expo-permissions/ios"; - sourceTree = ""; - }; - AEA8CD03C878D6B1ABBCAED6A5EE35A7 /* Pod */ = { - isa = PBXGroup; - children = ( - C7929EE383C27E6C8346E2C07F343142 /* EXPermissions.podspec */, - ); - name = Pod; - sourceTree = ""; - }; AF2822ABC2FA5B0E08EA2A2236520F83 /* FirebaseCoreDiagnosticsInterop */ = { isa = PBXGroup; children = ( @@ -15519,25 +15377,6 @@ path = FirebaseCoreDiagnosticsInterop; sourceTree = ""; }; - AF2C407F339A947475D8ADDF13CC129E /* Pod */ = { - isa = PBXGroup; - children = ( - AAE8DCB30B0EA6E94F01D081407ED786 /* UMAppLoader.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - AF71A63BC553E74005006B6C641FA1D4 /* Support Files */ = { - isa = PBXGroup; - children = ( - B75908B81A2737C5DE368FF3CE484910 /* BugsnagReactNative.xcconfig */, - 3250010EA1DB72E62D84585E36016E5F /* BugsnagReactNative-dummy.m */, - 970077479703C97353DFB7557864FEA9 /* BugsnagReactNative-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; - sourceTree = ""; - }; AF7916CE69792784B2952A1A6D12AC2E /* GoogleDataTransport */ = { isa = PBXGroup; children = ( @@ -15588,28 +15427,6 @@ path = GoogleDataTransport; sourceTree = ""; }; - AFDEAC54CA1E01F911403E06B758F916 /* EXWebBrowser */ = { - isa = PBXGroup; - children = ( - BC8AFDC2D28A94A4DBA016A94752A911 /* EXWebBrowser.h */, - DA21EB215CBA12D421296269FD826F2D /* EXWebBrowser.m */, - 40715CF8AA65DA50DEE5C3912C2B7BD3 /* Pod */, - 3549DDAB2955BFDB62C9F2DC09D56A22 /* Support Files */, - ); - name = EXWebBrowser; - path = "../../node_modules/expo-web-browser/ios"; - sourceTree = ""; - }; - AFE3948AC31752A57634DA0EFF3F8C8C /* Pod */ = { - isa = PBXGroup; - children = ( - 423C19C06292E448ECBEC29F4F33904F /* LICENSE.md */, - D7CE5CE84F8D09CD32E3E8BC4BB9D526 /* react-native-document-picker.podspec */, - 5DA45948F3B264B4592B83A103D4DB40 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; B002A4D47D1C2F2A7CC609EA66454809 /* Resources */ = { isa = PBXGroup; children = ( @@ -15643,15 +15460,36 @@ name = Resources; sourceTree = ""; }; - B03B99A13062181A7DCFEF31E0F30B07 /* Support Files */ = { + B07DCEC5B87D7C9350BB3CDBE94A1262 /* Pod */ = { isa = PBXGroup; children = ( - F54912BA0DF7BFB83D79B47F083DB054 /* KeyCommands.xcconfig */, - A517FB8CAF4B8334D6617577A534CEAC /* KeyCommands-dummy.m */, - 3F84BFC0298CBD4CB510824140F71440 /* KeyCommands-prefix.pch */, + 49A408345DF37A714779AD3FFCBB21B6 /* RCTTypeSafety.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + B09CE1CED6ED41A93C1F440616D45FDA /* Support Files */ = { + isa = PBXGroup; + children = ( + 10A12DBED3913027E742D5A12B53ADD7 /* Yoga.modulemap */, + 1FAE064E6AFB8845B5FF3B9D0AFC6863 /* Yoga.xcconfig */, + AE644E26D8F04368E378F7B19A941786 /* Yoga-dummy.m */, + 30496EEC07B29FD00B42D064DFA20B22 /* Yoga-prefix.pch */, + 9A9969B4DCAEDA5FDE7CC095E40E1F88 /* Yoga-umbrella.h */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/KeyCommands"; + path = "../../../../ios/Pods/Target Support Files/Yoga"; + sourceTree = ""; + }; + B0C8E59E32D9E87D0FB976FCF301BB08 /* Support Files */ = { + isa = PBXGroup; + children = ( + F8498E65BBEA1AC78421FD1CD28DD3C1 /* RNDeviceInfo.xcconfig */, + C3601DDF73E4E0C163E9C1038E282EC0 /* RNDeviceInfo-dummy.m */, + CB60C8A4B544F593510DB187DC0A069B /* RNDeviceInfo-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; sourceTree = ""; }; B0E54F5744BF4257FE1E438D50A52C89 /* FBDefines */ = { @@ -15662,26 +15500,30 @@ name = FBDefines; sourceTree = ""; }; - B1153DDB0D80CA0A62D3C7199BBCC871 /* Singleline */ = { + B10DDD4F9730AAF7627A0109F2C34C46 /* Support Files */ = { isa = PBXGroup; children = ( - ABBF6EC0DF678369E9D6019CCFCAD659 /* RCTSinglelineTextInputView.h */, - 61C19957AE3CEED64F8195E49B5CA6C6 /* RCTSinglelineTextInputViewManager.h */, - BA5C8C27B1A70FF09C0A1399433E8219 /* RCTUITextField.h */, - ); - name = Singleline; - path = Singleline; - sourceTree = ""; - }; - B2019BA8608178A4AA7D8747C5B800DF /* Support Files */ = { - isa = PBXGroup; - children = ( - DECF35407758CF49A4E429D1542EFC11 /* React-jsiexecutor.xcconfig */, - 0BF2A83643B8FA28BACB7D11BC209D29 /* React-jsiexecutor-dummy.m */, - EE0BF6FC12BA57C8EEE71ED32FB237CB /* React-jsiexecutor-prefix.pch */, + BA32D40EBE0AFE838FD881CE4EE07058 /* react-native-document-picker.xcconfig */, + 4D49C85A499B83A5304FA3A56A2B4282 /* react-native-document-picker-dummy.m */, + 8B630653DF2C7D123BDAACC2154B1C69 /* react-native-document-picker-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; + path = "../../ios/Pods/Target Support Files/react-native-document-picker"; + sourceTree = ""; + }; + B2390E8E4378FE6619A8D76AEBCBF8A3 /* Default */ = { + isa = PBXGroup; + children = ( + EF101346827132AEE9E75EAF863FBD9C /* Base */, + CC5A7B321BEE4F736E178D1AF877EA74 /* CxxBridge */, + 31EEAEF9BB8126F345C6F0940CEBB640 /* CxxModule */, + 800E41EE9ADD1686F7B7593D0C47F491 /* CxxUtils */, + C15CADC6370864CD11E29C48D8214078 /* Modules */, + 05092DF600E7A7957FF4F53F9A3A8149 /* Profiler */, + 1FCC6901162177014F3E1488CF628E09 /* UIUtils */, + D242A5FAE7D2C38C174312DC5E204960 /* Views */, + ); + name = Default; sourceTree = ""; }; B24DDE008E58DB7CA2AC442955C12013 /* Support Files */ = { @@ -15695,27 +15537,27 @@ path = "../Target Support Files/Flipper"; sourceTree = ""; }; - B26DCD7576C0E7001826D5D2C66650DF /* Support Files */ = { + B30DCF40B8113D7FBD77F511662841CF /* event */ = { isa = PBXGroup; children = ( - 5B52090EBAA980BBDDFC4F0036383897 /* ReactNativeKeyboardInput.xcconfig */, - A7BA46CE21B71062894134D5B6EB2C03 /* ReactNativeKeyboardInput-dummy.m */, - 1754487CF8D3E651EBD87BBABDB3A91E /* ReactNativeKeyboardInput-prefix.pch */, + D3E09970D79DFEC086D95A80EEF6D680 /* event.cpp */, + 951BC93835E6D048000E726EC9375F42 /* event.h */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardInput"; + name = event; + path = yoga/event; sourceTree = ""; }; - B355822E474BE8DF219DCCFCFE060054 /* FBLazyVector */ = { + B31CC9B5ABF0346CB1C310E703755CCC /* RNVectorIcons */ = { isa = PBXGroup; children = ( - 09DE74C202CF22C5F34DA4963E3EB4AB /* FBLazyIterator.h */, - F5B7817A42B4D6D475B945CE893A2C8D /* FBLazyVector.h */, - 685624A66EE8AD1FE66D93F6A4267BE3 /* Pod */, - 254F84ED54CCC1FA871E58EA5DDE9D0B /* Support Files */, + B34A9F6EDA96558160E687E2DDA559D2 /* RNVectorIconsManager.h */, + DF7B0433CB697E740BA7B259FE091C76 /* RNVectorIconsManager.m */, + DB4F86AF789CFDB5546FB60A4F64559A /* Pod */, + 28A73EF51796778EE8EAC3A975651DFC /* Resources */, + C4FAA5B2484BC06072052CB0D4AC9B5F /* Support Files */, ); - name = FBLazyVector; - path = "../../node_modules/react-native/Libraries/FBLazyVector"; + name = RNVectorIcons; + path = "../../node_modules/react-native-vector-icons"; sourceTree = ""; }; B3B9CD674C8B830081DAFDB07A8B4FCD /* Support Files */ = { @@ -15729,23 +15571,14 @@ path = "../Target Support Files/Flipper-DoubleConversion"; sourceTree = ""; }; - B40FCC18DDC54E9B874F0A344F25097F /* Pod */ = { + B3C33D99736F5F708364766B1EAD1502 /* UMViewManagerAdapter */ = { isa = PBXGroup; children = ( - E5A6E855025F359B2C6F15CB891373E0 /* KeyCommands.podspec */, - FA092B07C4244B0C8376091844C8C9D5 /* README.md */, + 3112F58816F680D616BEE524C8BA9360 /* UMViewManagerAdapter.h */, + 42F5A0B87ADC713878A1F9951DA416B4 /* UMViewManagerAdapter.m */, ); - name = Pod; - sourceTree = ""; - }; - B480A5AA6D6CE0F1C29AB9D45C73AFB3 /* instanceid */ = { - isa = PBXGroup; - children = ( - 84A6CCE3AE239A289124E91828AA0248 /* RNFirebaseInstanceId.h */, - 0FD6BBD159F5914E10A0DDBD79809389 /* RNFirebaseInstanceId.m */, - ); - name = instanceid; - path = RNFirebase/instanceid; + name = UMViewManagerAdapter; + path = UMReactNativeAdapter/UMViewManagerAdapter; sourceTree = ""; }; B4D0A45A793AB373F9D51054D4F0431D /* nanopb */ = { @@ -15766,24 +15599,34 @@ path = nanopb; sourceTree = ""; }; - B618EDD8C3AE557D38274D530A552C57 /* Pod */ = { + B73F590C037EA64810F70D0F00FD3259 /* UMPermissionsInterface */ = { isa = PBXGroup; children = ( - 74602BD56845E9CE29AC7CBC8C1762E7 /* LICENSE */, - 99E9ADEA7690EC668ABE1197E379480E /* README.md */, - 040BE3382B7334D6BB8897189DBAE420 /* RNDeviceInfo.podspec */, + BE4AC730FBA061A5322A81174F81411B /* UMPermissionsInterface.h */, + 27E6AED9FBDEF38A7FA78B749F80EA24 /* UMPermissionsMethodsDelegate.h */, + 423C28B97E7DA33075093A150B611AE6 /* UMPermissionsMethodsDelegate.m */, + AE8ED7807A76E21DB0AB58FBD57A8F9F /* UMUserNotificationCenterProxyInterface.h */, + 28CEE3B53434016CBAFAF3FFE7C7B5B2 /* Pod */, + C751EA224DAC549B9BD459458C4407BC /* Support Files */, ); - name = Pod; + name = UMPermissionsInterface; + path = "../../node_modules/unimodules-permissions-interface/ios"; sourceTree = ""; }; - B826859F05C845D2468817987029A687 /* Pod */ = { + B77C011FAE805EDCD20822E9F44C0F2C /* React-RCTNetwork */ = { isa = PBXGroup; children = ( - 828283E7EC88A696A69446E108DA4F42 /* LICENSE */, - 76AFF6E2528C7563EF86DA0035297F06 /* react-native-jitsi-meet.podspec */, - DA0BA0D211D92DDD710347FCE69B06FC /* README.md */, + 63CA347E5BAE58E1D36EB34AFEE1CFB0 /* RCTDataRequestHandler.mm */, + 40721705024406AE4E8607335A91AF04 /* RCTFileRequestHandler.mm */, + B9F916A9CD68EB11468EC27D469A2F29 /* RCTHTTPRequestHandler.mm */, + 8BF0077A70654BAC3859123D7D2207EA /* RCTNetworking.mm */, + 8E77041415D1CD541F3146A37A299F94 /* RCTNetworkPlugins.mm */, + 00738B77A5CE05C854F2D2638BD918C2 /* RCTNetworkTask.mm */, + 9616C550EE284ADC18EE45FA6E79539F /* Pod */, + C5C562542E1C23329F20B86637262D18 /* Support Files */, ); - name = Pod; + name = "React-RCTNetwork"; + path = "../../node_modules/react-native/Libraries/Network"; sourceTree = ""; }; B82A1175EC7F5408E2232EF7F89AA16D /* Network */ = { @@ -15803,235 +15646,96 @@ name = Network; sourceTree = ""; }; - B889552A1F43F7D8661BF32776865D5F /* React-RCTImage */ = { + B8875DFCD37D3B35E127C79DA8E94649 /* ReactNativeKeyboardTrackingView */ = { isa = PBXGroup; children = ( - 0476475AE08D9EAE2A07B1E44E0499BD /* RCTAnimatedImage.m */, - 132D217F2F91CB8E2288EA57F6C8A2A0 /* RCTGIFImageDecoder.mm */, - A284F247262CABD5166CD914EFA5FDCE /* RCTImageBlurUtils.m */, - F90F0F691CE420518ECEF0B1E4C56925 /* RCTImageCache.m */, - 884CB87E57BD25F20F59B6060E7A44D3 /* RCTImageEditingManager.mm */, - 2246D8A7E67C1D1932D5CE9417BA86E4 /* RCTImageLoader.mm */, - 6CF7FFD0BAAAEFB8FC6EDB218630B39A /* RCTImagePlugins.mm */, - ED5663CCF67A8ADC4205F4006E899D54 /* RCTImageShadowView.m */, - EC8637804CA80155163BB6D884E701C5 /* RCTImageStoreManager.mm */, - D2073CD7E7818AA59EBB2F655AA624BA /* RCTImageUtils.m */, - 3CE06DDB5C28C8CDBD7DA9C8A8B59571 /* RCTImageView.mm */, - 8FEB764BE874A607248376B9352CB04A /* RCTImageViewManager.mm */, - 90A2F6F0290C0306B85E822A39552736 /* RCTLocalAssetImageLoader.mm */, - 35C2E34985CFA9E525EAE37A33CF8B17 /* RCTResizeMode.m */, - FD71ADB87D8940445C6E93C982C110DC /* RCTUIImageViewAnimated.m */, - 064B892095F1FFC35A5DC8095812BAE7 /* Pod */, - 023EEB0284B8E306707B78AB820AB75A /* Support Files */, + 077E104C263332DB4F4F7BD9DA062B78 /* KeyboardTrackingViewManager.h */, + 6FA0DAC29FA8635BEA326384C7007408 /* KeyboardTrackingViewManager.m */, + 02CA029FB79AF696A740D09145194B3B /* ObservingInputAccessoryView.h */, + A93A9E7A65732180621ADEFAE3CDD08A /* ObservingInputAccessoryView.m */, + 2294975A06913B08D41195CE013BB1C8 /* UIResponder+FirstResponder.h */, + 74B387B68F9239F26E4E1D3379EC1140 /* UIResponder+FirstResponder.m */, + F020484A4D965B457F3A9894F1533253 /* Pod */, + 1B33BBDE85A572343E7D60B37DEBA6B5 /* Support Files */, ); - name = "React-RCTImage"; - path = "../../node_modules/react-native/Libraries/Image"; + name = ReactNativeKeyboardTrackingView; + path = "../../node_modules/react-native-keyboard-tracking-view"; sourceTree = ""; }; - B96B951A941878077AD97490A50A7336 /* storage */ = { + B89AE84D6449A40818C0930A0DEF4233 /* Pod */ = { isa = PBXGroup; children = ( - AF9E3DCB824D3FE11DD933520FD25A36 /* RNFirebaseStorage.h */, - DBE8D77A02F8401126842A093F4E317C /* RNFirebaseStorage.m */, - ); - name = storage; - path = RNFirebase/storage; - sourceTree = ""; - }; - B9C5D90447859DDD6A5342394CF94577 /* Interfaces */ = { - isa = PBXGroup; - children = ( - 4A3B86524E138D9F36C6ABB751E7231E /* UMAppLoaderInterface.h */, - A7121AC45158A096B75EF8997C6BD83E /* UMAppRecordInterface.h */, - ); - name = Interfaces; - path = UMAppLoader/Interfaces; - sourceTree = ""; - }; - B9E028966FA447B85B8EDAB9987D09CD /* Pod */ = { - isa = PBXGroup; - children = ( - E1EEB9FDBCFA3C9413CC61CC77917F72 /* React-RCTNetwork.podspec */, + 3E175DE75BEC8374D35C99F207F91DDC /* LICENSE */, + 63BDC72996A2EA0EC90A0E5F2AA1AF7F /* react-native-background-timer.podspec */, + 27C8EAF9DFEB41BE5E435DD9FD81B42E /* README.md */, ); name = Pod; sourceTree = ""; }; - BA48660DB2684030AF909513027E5283 /* Support Files */ = { + B9314F7A099277D1AC5E63B641B433C5 /* Support Files */ = { isa = PBXGroup; children = ( - D181A2A2F034CDB8578D6DD005EA1974 /* React-Core.xcconfig */, - 7F5B13FF4E57C544291150EFD89A36F6 /* React-Core-dummy.m */, - CB3303AC9DC418ED10F91C0A1885D770 /* React-Core-prefix.pch */, + A222D2976B2D979BDC00DB9FC9C41331 /* EXAppleAuthentication.xcconfig */, + DE6F9E64C16924524823CD9584DAF35A /* EXAppleAuthentication-dummy.m */, + 4B05EA68892A43B772F2291B520793E2 /* EXAppleAuthentication-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React-Core"; + path = "../../../ios/Pods/Target Support Files/EXAppleAuthentication"; sourceTree = ""; }; - BA571E7045BD4EE7C105A3ED77CCB2A4 /* Support Files */ = { + BA46010420227A138838E15187F42456 /* Pod */ = { isa = PBXGroup; children = ( - 9FCA835E28F73B4EAE829581A6D6964D /* ReactNativeART.xcconfig */, - 58854BC93F03FC6A4441F422C42E5A69 /* ReactNativeART-dummy.m */, - 48D03C624A475988A737A006A113A787 /* ReactNativeART-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactNativeART"; - sourceTree = ""; - }; - BAA010600ADC5FD5214A4213B4DAC200 /* KeyCommands */ = { - isa = PBXGroup; - children = ( - A77771380B034725731C6ED12A47FB68 /* RCTKeyCommandConstants.h */, - CB88B79C919878F1B5CD996CF6B8E240 /* RCTKeyCommandConstants.m */, - 9D41A92F6CCFAC36752871F468C42914 /* RCTKeyCommandsManager.h */, - 92CEE13991A2CE7894691032BB099CF6 /* RCTKeyCommandsManager.m */, - B40FCC18DDC54E9B874F0A344F25097F /* Pod */, - B03B99A13062181A7DCFEF31E0F30B07 /* Support Files */, - ); - name = KeyCommands; - path = "../../node_modules/react-native-keycommands"; - sourceTree = ""; - }; - BAD767181699EE6B944F40AB1B048692 /* Pod */ = { - isa = PBXGroup; - children = ( - 7CA92141421806ADF713C093F7CF71D2 /* EXVideoThumbnails.podspec */, + B1EA30D9FCBC11603609FA51E1FC4CD4 /* LICENSE */, + 35CF31EF6370977242F693B963634BA3 /* ReactNativeKeyboardInput.podspec */, + D2B198303EEB7951EA6825BD8F0F5C7C /* README.md */, ); name = Pod; sourceTree = ""; }; - BAF5C24214641C13BE6D890F2E7D6582 /* Pod */ = { + BB112B1428A15475EFB4426A405FF7E2 /* RefreshControl */ = { isa = PBXGroup; children = ( - D1471842601607D30C75EA729FF0081C /* React-RCTAnimation.podspec */, + BDB692241C92CA225252AEABAEC15D9F /* RCTRefreshableProtocol.h */, + 3A0F82FC8E543DE98A2ACB23CE52A960 /* RCTRefreshControl.h */, + 6258E6EF9E8CD1193204427CC6AFFC6E /* RCTRefreshControl.m */, + E3E3D986F55303FD249D648C662FC6A5 /* RCTRefreshControlManager.h */, + 91C9001DC2995C2676B8F6DFFC44F09A /* RCTRefreshControlManager.m */, + ); + name = RefreshControl; + path = RefreshControl; + sourceTree = ""; + }; + BB1ED37B11A273E7ED15884E01A49464 /* ios */ = { + isa = PBXGroup; + children = ( + 6080F667BA4C8DBB344B350BA981E929 /* RCTTurboModule.h */, + 5C756581AB88D6880122C38CC658BCB0 /* RCTTurboModule.mm */, + E974C64B2F6DDAA335304461A064BA87 /* RCTTurboModuleManager.h */, + 1E83938C524F8F5A17A8F7FD3FDD03B6 /* RCTTurboModuleManager.mm */, + ); + name = ios; + path = ios; + sourceTree = ""; + }; + BBA46CC960FEF03FF532D949F317CE03 /* Pod */ = { + isa = PBXGroup; + children = ( + F6C46D21BE0A2441A6384EEFB91F7ACA /* LICENSE */, + B873DE6CCB46CA30C83644140F52C62B /* react-native-safe-area-context.podspec */, + 1A7B039C29307375F1B0ABD08E3E46AF /* README.md */, ); name = Pod; sourceTree = ""; }; - BB1682740D213F76D5CC0918CCF201BA /* React-jsi */ = { + BD01F6F265EAF44ABC9D9C4EF2AA9527 /* analytics */ = { isa = PBXGroup; children = ( - D6902FAFF61CDB772CD2B9E2EB0FE5DD /* JSCRuntime.cpp */, - 4A7FECA96FEB380EA071B4BFFFCB15A9 /* JSCRuntime.h */, - A1FDDFCAA9244F7231AA5067148B2E77 /* jsi */, - EE6C1578FB912C3074D0E3A7355915EF /* Pod */, - 3B0FCD07797E518871CE1C2EFC071D7E /* Support Files */, + E6EEFCFD363248FF906BA5F5B0A32E75 /* RNFirebaseAnalytics.h */, + 7C62E93D5388B7592EDAB0D07709AE40 /* RNFirebaseAnalytics.m */, ); - name = "React-jsi"; - path = "../../node_modules/react-native/ReactCommon/jsi"; - sourceTree = ""; - }; - BB9FCACB8C234318A7C6512C11D084B1 /* Support Files */ = { - isa = PBXGroup; - children = ( - 77B714027C51489C37C0ECE1950450CF /* EXLocalAuthentication.xcconfig */, - 183D03E62E2B7FD69A5607DF2BD1BDA3 /* EXLocalAuthentication-dummy.m */, - 056A6BD326D5FAB3144508859FB38451 /* EXLocalAuthentication-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXLocalAuthentication"; - sourceTree = ""; - }; - BBB7D4BD2880C1A868A07E6BF2C4FA6F /* RCTImageHeaders */ = { - isa = PBXGroup; - children = ( - C60DB03A1BEB387AD1E4E205D611D769 /* RCTAnimatedImage.h */, - 26F885F9B385256D885415C97E0FEF7A /* RCTGIFImageDecoder.h */, - B5BA57AA8E50708A529CC3964645C06C /* RCTImageBlurUtils.h */, - 3C90E9C8356AD9D515C62B9B475FFF36 /* RCTImageCache.h */, - D73EA1F13714137B5168EE848EB8541B /* RCTImageDataDecoder.h */, - 0AF68A599124576AE077A04547C6DB4D /* RCTImageEditingManager.h */, - 4D9E9DA01B712B6C1AE9DFD958EEB593 /* RCTImageLoader.h */, - F784D210DABA667B77C7FDFDDBE86325 /* RCTImageLoaderProtocol.h */, - A683A59BA86B8C72B3D3F79DB23C5458 /* RCTImageLoaderWithAttributionProtocol.h */, - 33F2E207C32422892ADBEA68CD80D69C /* RCTImagePlugins.h */, - 0B03E177185332CDB8914F429FC265C5 /* RCTImageShadowView.h */, - E2734511CCA2D3A8075B4395BEC90893 /* RCTImageStoreManager.h */, - 8945C5CE17048D9A807B3B863A826CAE /* RCTImageURLLoader.h */, - 56603BE6D3B6D9CA90D7AFA32B2E0D34 /* RCTImageURLLoaderWithAttribution.h */, - 12C58830DD213F20169E98FB6CFDD961 /* RCTImageUtils.h */, - 1A54E4C5A5326743B98E955E26C8CEA2 /* RCTImageView.h */, - DE3BC96E6F1E474481D09553639C6CB4 /* RCTImageViewManager.h */, - 5FBD98780BF1CA197F9E5A39E9957DDF /* RCTLocalAssetImageLoader.h */, - 3D7392A2B955C6B6E853ECBBE4E4E3B6 /* RCTResizeMode.h */, - D99499A944AD88FF8F41E2098CF634DA /* RCTUIImageViewAnimated.h */, - ); - name = RCTImageHeaders; - sourceTree = ""; - }; - BCD94DA415ECF19C7FA0DD6DED8E1F8B /* Pod */ = { - isa = PBXGroup; - children = ( - 905BE1915496B1423FD7448814AEA70F /* React-RCTActionSheet.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - BD8B019F126449ECF8776429B9F19B64 /* React-RCTNetwork */ = { - isa = PBXGroup; - children = ( - 74CA5548EB7484D5BC5B01F58002F1ED /* RCTDataRequestHandler.mm */, - 13D2000ABC8C569854622AE56324160D /* RCTFileRequestHandler.mm */, - F84A0A70D8C8A459E9B6E4E5CDC53C5C /* RCTHTTPRequestHandler.mm */, - BAAB4C0E063D404B75B16D827C72E47F /* RCTNetworking.mm */, - 55C26A692C6E7B1A28C474303B2228AD /* RCTNetworkPlugins.mm */, - 8B79FC781979D53C3D281BD06EC26E06 /* RCTNetworkTask.mm */, - B9E028966FA447B85B8EDAB9987D09CD /* Pod */, - 3EA76167C2AFCF802FFABCFF4E40CB32 /* Support Files */, - ); - name = "React-RCTNetwork"; - path = "../../node_modules/react-native/Libraries/Network"; - sourceTree = ""; - }; - BE36DD3E09D244C34A09999220E5B74F /* Protocols */ = { - isa = PBXGroup; - children = ( - B93E9FA86E3780D3E6653301AA02704F /* UMAppLifecycleListener.h */, - EC2EBA67F22FE8D87320EF8DE4937BA8 /* UMAppLifecycleService.h */, - 1404FC0E23413F78C58200069A101F19 /* UMEventEmitter.h */, - 8BBDC55592B966BC42FA09853201E349 /* UMEventEmitterService.h */, - 06DDD034E8BC8B718DEAD16CFEF6DD3F /* UMInternalModule.h */, - 96EC42893AFEDCD3C773C7D9B8D2C506 /* UMJavaScriptContextProvider.h */, - 8F6B28E8C430670ACF08A4C1285BC00F /* UMKernelService.h */, - AB8A67274FA5E93D1BF01ED22075126C /* UMLogHandler.h */, - 59D4C2A89439A00AE1064910F7D0E73C /* UMModuleRegistryConsumer.h */, - 77EBC371CE7BB4992C1E30829A5DFAFB /* UMUIManager.h */, - 4CAB6C95B2964B03804A8F197E0EAD6C /* UMUtilitiesInterface.h */, - ); - name = Protocols; - path = UMCore/Protocols; - sourceTree = ""; - }; - BED1F91D74F54FDDB3CC37232199106A /* database */ = { - isa = PBXGroup; - children = ( - A057974702A7BD2918EA4AFB43389B0A /* RNFirebaseDatabase.h */, - 4779773EF55D080D7D37F93B44724406 /* RNFirebaseDatabase.m */, - 2DF2DACD43667A6FD9B3079D72946763 /* RNFirebaseDatabaseReference.h */, - 031EF52C51F3F057FE42F641F96CDF2F /* RNFirebaseDatabaseReference.m */, - ); - name = database; - path = RNFirebase/database; - sourceTree = ""; - }; - BF28AFD053B658109B3F90B19FA28EFA /* Pod */ = { - isa = PBXGroup; - children = ( - BAF2BF7D3F103A8DE76360EA80DE38B2 /* EXHaptics.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - C01B11EFEA80BFE3D255E2D91AF178B6 /* EXVideoThumbnails */ = { - isa = PBXGroup; - children = ( - A6E221352DAC18D65D9D0334F3806602 /* EXVideoThumbnailsModule.h */, - 0773A1266A8E3BCC9A3C57CC7DC04F95 /* EXVideoThumbnailsModule.m */, - BAD767181699EE6B944F40AB1B048692 /* Pod */, - 88A6F68455DF19BA0E304927A6DA52F9 /* Support Files */, - ); - name = EXVideoThumbnails; - path = "../../node_modules/expo-video-thumbnails/ios"; + name = analytics; + path = RNFirebase/analytics; sourceTree = ""; }; C0E7A22E5C445960EED35B0EAEC61E96 /* FlipperKitNetworkPlugin */ = { @@ -16053,44 +15757,59 @@ name = FlipperKitNetworkPlugin; sourceTree = ""; }; - C0E86BEA4090BF9BCD532F71626347D3 /* RNImageCropPicker */ = { + C15CADC6370864CD11E29C48D8214078 /* Modules */ = { isa = PBXGroup; children = ( - FF4D0177051F3C8574727C95777EB117 /* Compression.h */, - A990BAE7D466511110AB4D9393EEA548 /* Compression.m */, - D81E1612834A84D6B03A94D54645119C /* ImageCropPicker.h */, - 8D2700DF3CF92D5D0959C6DECB90A629 /* ImageCropPicker.m */, - 304C00D0EA7A1B47B55F546B89E7306D /* UIImage+Extension.h */, - AE37BEE29245D1F694B7B7742DD10A94 /* UIImage+Extension.m */, - DD7B73D7FEC435308A3D05DA19880F93 /* UIImage+Resize.h */, - A68DB5CA0A99508DCB1E2CBBD5D98521 /* UIImage+Resize.m */, - 6FF0AF91F44712D37109D0D96264384F /* Pod */, - E9146DFE6DCA2A7FA812788EBEB3D6B1 /* QBImagePickerController */, - 5C5A3B1D8F6EA362B0CF5F056546022F /* Support Files */, + 7B6D26A831CE82E291EBDB3E08181A0B /* RCTEventEmitter.h */, + 381EE808730B845CBEACA73A6C0A99BB /* RCTEventEmitter.m */, + 76562F5F8706D4210AA85753CB3215FA /* RCTI18nUtil.h */, + 2D1897FAFE5D5F8C700B53AD1E489BE0 /* RCTI18nUtil.m */, + B9EAE944D077E66FA8DEE13865B489B0 /* RCTLayoutAnimation.h */, + 6B6C97675A37EFAC4203BE9D24797F2D /* RCTLayoutAnimation.m */, + AFD37B29F35DDD37893B7883D8662A56 /* RCTLayoutAnimationGroup.h */, + A2C604A5CBE7F32526D81258BAF2A7CE /* RCTLayoutAnimationGroup.m */, + 8E9324CC0326A8408FF7A078995E113D /* RCTRedBoxExtraDataViewController.h */, + FDD46653AD02B0C0FB80E8DD6D577764 /* RCTRedBoxExtraDataViewController.m */, + F5DBA3F2E8CDCBEF00EBF286758F73E4 /* RCTSurfacePresenterStub.h */, + C0CDD00DDFA68C0DF72E3957B9D462CF /* RCTSurfacePresenterStub.m */, + E53AEEF65E5EA757BE3F9EE86AD64F87 /* RCTUIManager.h */, + C4819B006A4CB7BDE21A5A4D9D1239BF /* RCTUIManager.m */, + 06A065E51F4D81504E316C27A77D26C1 /* RCTUIManagerObserverCoordinator.h */, + 31544FA1A34C77D66C793534B5D01D8F /* RCTUIManagerObserverCoordinator.mm */, + 3C4A7193D1505AB4E7B8EEB458479E5B /* RCTUIManagerUtils.h */, + 25551C2EFCC1B8A180FFC6ED5CACC156 /* RCTUIManagerUtils.m */, ); - name = RNImageCropPicker; - path = "../../node_modules/react-native-image-crop-picker"; + name = Modules; + path = React/Modules; sourceTree = ""; }; - C115643F3D9F810B548BC1D6AA5B60FC /* Support Files */ = { + C17C119265C79EB985DA81D2CA0DB6D4 /* ViewManagers */ = { isa = PBXGroup; children = ( - 225730C036CA76EEE74CF961CC8DC5F1 /* react-native-orientation-locker.xcconfig */, - C7625BD2DCE02BA140E2D2EF63E9E68C /* react-native-orientation-locker-dummy.m */, - 44EAA3EDED46FF71539A281AF4D1E345 /* react-native-orientation-locker-prefix.pch */, + 2C2F1EF0A75899E0297AE7C0ED554440 /* ARTGroupManager.h */, + A6CB24B50A72644E27C2B50F6A4FD641 /* ARTGroupManager.m */, + 90B5D4FA2839C90675EB5D0AAA62BFF8 /* ARTNodeManager.h */, + 653690A988FDAE65DF8631ABF83513FB /* ARTNodeManager.m */, + 522A8FF859ABCC748887C4355C5DD8BB /* ARTRenderableManager.h */, + 183E61566B54F596580EB43C7A97F866 /* ARTRenderableManager.m */, + 203227B7E5F123C2C18C807954C432A9 /* ARTShapeManager.h */, + CFDE95EB166389A17BCDB994E0C3BE14 /* ARTShapeManager.m */, + FF7A46FBAAA619DA4120EFA07966DA0E /* ARTSurfaceViewManager.h */, + 6709F8F6033B97457E1E19BCF1304EB8 /* ARTSurfaceViewManager.m */, + C1BC8CA70E28EA5EF4D34F254C9D63C3 /* ARTTextManager.h */, + 0B54E1D7B3FDC8FE90C21E035DC2B477 /* ARTTextManager.m */, + ); + name = ViewManagers; + path = ios/ViewManagers; + sourceTree = ""; + }; + C1A9E9980F7D58C16C2CA53D7C41F9ED /* Support Files */ = { + isa = PBXGroup; + children = ( + 6B372B63DDB5329AEF0838FD23034936 /* UMImageLoaderInterface.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; - sourceTree = ""; - }; - C15DB4F384D71C4610154A9C4FFF60CE /* Pod */ = { - isa = PBXGroup; - children = ( - 959B2DCF4104925C477EAE6D0C93A71C /* LICENSE */, - FDE4203A4049DAF1831E9AEA71CB10B8 /* README.md */, - DC85E8E4F779397AABEA666B25C24C1A /* RNScreens.podspec */, - ); - name = Pod; + path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; sourceTree = ""; }; C2044A4BC878759D6A621D958E340462 /* FirebaseAnalytics */ = { @@ -16103,23 +15822,24 @@ path = FirebaseAnalytics; sourceTree = ""; }; - C2E8AE65D5403430F3B0507D5BD46D39 /* Support Files */ = { + C2A1559A5E9E3D2C431B6D27FFB2E82D /* UMImageLoaderInterface */ = { isa = PBXGroup; children = ( - 464DC9CE552F7576266EBADC5015849F /* React-cxxreact.xcconfig */, - F340F9C2AED63055FA30805181544952 /* React-cxxreact-dummy.m */, - 5568E3866E3B4DFC5178DC5C54F13503 /* React-cxxreact-prefix.pch */, + 52AEAC0B41502A6E3712BEB90D9E8EC6 /* UMImageLoaderInterface.h */, + 1B726160768B9D92E1F2C13CF497AE30 /* Pod */, + C1A9E9980F7D58C16C2CA53D7C41F9ED /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; + name = UMImageLoaderInterface; + path = "../../node_modules/unimodules-image-loader-interface/ios"; sourceTree = ""; }; - C30F8E406802B25646A9487500565490 /* Pod */ = { + C2D5468CE3FCDDDAE11CF6D139E212BC /* Support Files */ = { isa = PBXGroup; children = ( - 654982F7690B67462D3B39EA4F1AF5C2 /* UMFileSystemInterface.podspec */, + 5D2B02C30C03507A4EC318CD198E032A /* UMFontInterface.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFontInterface"; sourceTree = ""; }; C445442E593BC4CF59AE90FD35C8AAF5 /* Support Files */ = { @@ -16132,40 +15852,44 @@ path = "../Target Support Files/FirebaseInstallations"; sourceTree = ""; }; - C468EE21EFC5FCA8528BDEE66E6B6183 /* CxxModule */ = { + C447DE37E8999BE13AC6EE5FA7663FAB /* DevSupport */ = { isa = PBXGroup; children = ( - 319366C6B71F1F8B7C58EED5D381E0F9 /* DispatchMessageQueueThread.h */, - 5441B4C5ADD574239F61F0C1050B1BF1 /* RCTCxxMethod.h */, - 1542983A99B8D9A17698A7EC78796E04 /* RCTCxxMethod.mm */, - A4BC56FF6FFDACFE4B24DE4555356F2B /* RCTCxxModule.h */, - F92544970C948867510C6AFE22273CF6 /* RCTCxxModule.mm */, - E4C589314FD6A8D0ED5BC79549896F1E /* RCTCxxUtils.h */, - 5151CE307B385AE5FFB0C4860E43E725 /* RCTCxxUtils.mm */, - 424E59C4F74F5D9FEC58EB8A0417BEB8 /* RCTNativeModule.h */, - 1229A417537FC603DDC0EF7036EDF414 /* RCTNativeModule.mm */, + FA9DD52D3ED759F100B2EDAFDF5E699C /* RCTDevLoadingView.h */, + 443BB3D0D8491A15B4E8DF3A73DE016D /* RCTDevLoadingView.m */, + 3F7005D6F70287937B451E5C38FB180B /* RCTInspectorDevServerHelper.h */, + 5962B2E1763F0298920CAE87F9F6365D /* RCTInspectorDevServerHelper.mm */, + 916C8D170D3596242144EB807F11113B /* RCTPackagerClient.h */, + F5AD7442235FB6BDB4ED75B9F5F8A9DB /* RCTPackagerClient.m */, + C94E090C7AA8B2A12C7852C77FF192F2 /* RCTPackagerConnection.h */, + 92D5EA8127BD486680F99368655E6E32 /* RCTPackagerConnection.mm */, ); - name = CxxModule; - path = React/CxxModule; + name = DevSupport; + path = React/DevSupport; sourceTree = ""; }; - C49DF1796B469AA3C3A16E66D5314A90 /* Pod */ = { + C4FAA5B2484BC06072052CB0D4AC9B5F /* Support Files */ = { isa = PBXGroup; children = ( - 068ADB4B4217E951C5CD2F684E130707 /* React-RCTText.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - C5634E89673A4D643DD73FA9C1A0A1DF /* Support Files */ = { - isa = PBXGroup; - children = ( - FF28FEBCA1A214BC679C2A3CEC9D88AE /* EXAV.xcconfig */, - 31A7914DE812140600E11796F057609E /* EXAV-dummy.m */, - B747CD606F27862FD94FCABDFBF46CD3 /* EXAV-prefix.pch */, + 7D762E43B438E1B0A696CE4CF33E1D2F /* RNVectorIcons.xcconfig */, + 6473A1A5035B1F43BB549E01BEF8EB93 /* RNVectorIcons-dummy.m */, + D85ACF279A6EAE02EC6B4ABCFF66207E /* RNVectorIcons-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAV"; + path = "../../ios/Pods/Target Support Files/RNVectorIcons"; + sourceTree = ""; + }; + C56B6E4DC08FD464B4569419D3E5E42F /* Drivers */ = { + isa = PBXGroup; + children = ( + AA531003DDE8FDDEBA57CA4EAB5089AD /* RCTAnimationDriver.h */, + AC9588F1D3452A95C29AADEAE2654DAC /* RCTDecayAnimation.h */, + D18F95E7F3C8C615CDFB0C61CE2BA37D /* RCTEventAnimation.h */, + 029C1BABC6D0EB3908C82817D94E6D87 /* RCTFrameAnimation.h */, + 07AF9A5578F23EBDE628D7A0CD44EE44 /* RCTSpringAnimation.h */, + ); + name = Drivers; + path = Libraries/NativeAnimation/Drivers; sourceTree = ""; }; C5BC7726B44A676BC4CB5F5335A68A17 /* Support Files */ = { @@ -16177,33 +15901,46 @@ path = "../Target Support Files/OpenSSL-Universal"; sourceTree = ""; }; - C66CF7A5206477EF764125EE06B0A89E /* RNDateTimePicker */ = { + C5C562542E1C23329F20B86637262D18 /* Support Files */ = { isa = PBXGroup; children = ( - DAA03BFCAAA3F1A970DBA3F65D04417D /* RNDateTimePicker.h */, - E21CEE6E01E04D3D223F526D028A9EC8 /* RNDateTimePicker.m */, - 4760EE72B1CEE4B1CC385435319105AD /* RNDateTimePickerManager.h */, - A470EF2D1D522D79860078096BFDAAFB /* RNDateTimePickerManager.m */, - 4191C14440CF614E648051F8C97BB22C /* Pod */, - 71C864E426211213A91F8C634F1D20AC /* Support Files */, + B17F6AAE182AF3E3A8FD25F42D0C1C87 /* React-RCTNetwork.xcconfig */, + 276BFC8506A1910A5AD973FEAEFB2BD6 /* React-RCTNetwork-dummy.m */, + 1A6472F58B3F93C36DF8E6328DB2BC31 /* React-RCTNetwork-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; + sourceTree = ""; + }; + C5CC8AC01C3B8A00A916BE9550337C77 /* Support Files */ = { + isa = PBXGroup; + children = ( + 4149C036165F6D00E7345C44173AC0C4 /* RCTRequired.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/RCTRequired"; + sourceTree = ""; + }; + C63DB56158A40CE847D9504A270AC54A /* RNDateTimePicker */ = { + isa = PBXGroup; + children = ( + 00D1A29C97764FB371DCC4BB85B342F6 /* RNDateTimePicker.h */, + 401D6E755CD3B998E73591B856E4DA14 /* RNDateTimePicker.m */, + A94BEBCFD78E12A3722A2AA65B282DA0 /* RNDateTimePickerManager.h */, + DBB7788A06D05618E07B0B1B9644E3F0 /* RNDateTimePickerManager.m */, + D5B23C46F69BBFCDD5348F47191613D6 /* Pod */, + CD02C23233A6E4047811A64D9564A018 /* Support Files */, ); name = RNDateTimePicker; path = "../../node_modules/@react-native-community/datetimepicker"; sourceTree = ""; }; - C6971C22A33973130D1A193595C515AE /* Resources */ = { + C67A0E6AAA8F1033C8EA52378A6606BC /* Pod */ = { isa = PBXGroup; children = ( - C8521E86AD33BB0048AABF1AEF30C058 /* de.lproj */, - C40A0ADB1BAEB501AF0189643B9C6872 /* en.lproj */, - 6D20B9EE4008AB263B0E263B64819A22 /* es.lproj */, - 76A64D0BAA62182C4D052DCD145ECE3E /* fr.lproj */, - 88438842749627D7FE5120410D9D9F8C /* ja.lproj */, - 9E87EF4B76BB5675D1ADB5E8F4ADDCDA /* pl.lproj */, - E5A6172D2E254824D8A49D6DCA6F94A7 /* QBImagePicker.storyboard */, - 80836B25B6B98EE8A8695874D5CFC00D /* zh-Hans.lproj */, + 65DC7EBD28B2C650FBDC9581AB10F889 /* EXAppleAuthentication.podspec */, ); - name = Resources; + name = Pod; sourceTree = ""; }; C69C7333B7F9E260427AE8725E1FFDCF /* Support Files */ = { @@ -16217,6 +15954,34 @@ path = "../Target Support Files/Flipper-Glog"; sourceTree = ""; }; + C707852EF210B5DD282D40572211E829 /* react-native-safe-area-context */ = { + isa = PBXGroup; + children = ( + 6A3900AA83F87E3377256675111C8DFD /* RCTView+SafeAreaCompat.h */, + A2E4A8E1BBA2C9D7FA64DD67F7403DD0 /* RCTView+SafeAreaCompat.m */, + 0DC98997424B18CC73CB93D3C00FFEDB /* RNCSafeAreaProvider.h */, + B3648D2D15D59DC311C3D5148E86B72A /* RNCSafeAreaProvider.m */, + 75837F0DE68E61DE16C1B5C9520E90BF /* RNCSafeAreaProviderManager.h */, + E555307E8E5A077248C236B23FD72B3D /* RNCSafeAreaProviderManager.m */, + 1A7AEEC1C24F87D64A9A5FB6FD6B6539 /* RNCSafeAreaShadowView.h */, + 473D39B5852C9156257BE56DF22F3A38 /* RNCSafeAreaShadowView.m */, + E481E4C8F8218D44428C1C7ED1AF79F3 /* RNCSafeAreaView.h */, + FC68D9162CBA36911F5898E1AEAA0A3B /* RNCSafeAreaView.m */, + 690389F5E10DA39DE49214507DD19D78 /* RNCSafeAreaViewEdges.h */, + B86E9D751996B3935492481335FA6C60 /* RNCSafeAreaViewEdges.m */, + F7A0FBDCCD90814E8084C90BA1BAA2AB /* RNCSafeAreaViewLocalData.h */, + 379625BE5B27420085234B6B8BF607D0 /* RNCSafeAreaViewLocalData.m */, + 93B71F85D013AD75E8796FA20E4D523C /* RNCSafeAreaViewManager.h */, + 799C66ABBD581DDD88595D23EE45D9DD /* RNCSafeAreaViewManager.m */, + 89B66AA65776D5D011CDADCFCB4F1093 /* RNCSafeAreaViewMode.h */, + BAEAFDD188CD0F7613AD9D7734ADFC80 /* RNCSafeAreaViewMode.m */, + BBA46CC960FEF03FF532D949F317CE03 /* Pod */, + 56CB59F734C755F10DA425C075879FEE /* Support Files */, + ); + name = "react-native-safe-area-context"; + path = "../../node_modules/react-native-safe-area-context"; + sourceTree = ""; + }; C710F78489756BA6EDF2E39408A446B1 /* Support Files */ = { isa = PBXGroup; children = ( @@ -16228,74 +15993,131 @@ path = "../Target Support Files/DoubleConversion"; sourceTree = ""; }; - C8CC67C0FDF563AD9F054D931100C8C5 /* admob */ = { + C751EA224DAC549B9BD459458C4407BC /* Support Files */ = { isa = PBXGroup; children = ( - 38DDD9EC232549F32E09F16BC5D05D82 /* BannerComponent.h */, - 7433DD22EBF954B9D6FE46CBB533A55A /* BannerComponent.m */, - F47CECCB9C254BB8CCA26A017B111BBB /* NativeExpressComponent.h */, - 498C735C0DD0DD70289652F0489A7F4C /* NativeExpressComponent.m */, - E44685111519665E846CACA1020BC749 /* RNFirebaseAdMob.h */, - 67E2295DE9C0FC490AC0417A05326292 /* RNFirebaseAdMob.m */, - 33ED18F3D1D1B71256ED883C0802EB6A /* RNFirebaseAdMobBannerManager.h */, - 80D4810D33665522C8172471CD6F0912 /* RNFirebaseAdMobBannerManager.m */, - 025E2171C4B4BA5572C7E2EEB9C596B2 /* RNFirebaseAdMobInterstitial.h */, - 0215D8AB0FBA29427175CF3D02025890 /* RNFirebaseAdMobInterstitial.m */, - 18EB1EB7F0A4C661429327868B586E7F /* RNFirebaseAdMobNativeExpressManager.h */, - 46EBA374352563CAA6026EE0F163A87B /* RNFirebaseAdMobNativeExpressManager.m */, - 95C9B134F47BA1EED962479CB30D2EE3 /* RNFirebaseAdMobRewardedVideo.h */, - FC6AADDE6E0BF94617EDAB11BCFEB1E1 /* RNFirebaseAdMobRewardedVideo.m */, - ); - name = admob; - path = RNFirebase/admob; - sourceTree = ""; - }; - C8D036CC3D3C7E7CB6920B33CA4716BD /* UIUtils */ = { - isa = PBXGroup; - children = ( - DA26ECBAB6E22E26913F1CB258A12791 /* RCTUIUtils.h */, - 0A15FBDA096B2BD5A70750F661A84F01 /* RCTUIUtils.m */, - ); - name = UIUtils; - path = React/UIUtils; - sourceTree = ""; - }; - C8EAA790EE1C1985F7B99B7DD20B2951 /* Support Files */ = { - isa = PBXGroup; - children = ( - E686DEE7B538D96958303C568BE91EBD /* UMCore.xcconfig */, - BC53DDF1ECA0F532D1A81F71AB1A69FC /* UMCore-dummy.m */, - 50E2FAE6557ADB0DE69C15A5A8ECBD56 /* UMCore-prefix.pch */, + FAE1EDA8C27D4883EC4479E376EDA087 /* UMPermissionsInterface.xcconfig */, + CFE7BFE58F1EC912851ACA188960FAA9 /* UMPermissionsInterface-dummy.m */, + 867CAF5B22EC96C7FAF2D9FEBDE794F8 /* UMPermissionsInterface-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMCore"; + path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; sourceTree = ""; }; - C98CF69E5C2D69E47DC3E287256605D9 /* Support Files */ = { + C77D241DC3FE4B81336FC547EB076024 /* Pod */ = { isa = PBXGroup; children = ( - 8EA6243FC59AB7F33560E5E648406E38 /* RNUserDefaults.xcconfig */, - 9929E6284F7820395CD5D64BE7CF593D /* RNUserDefaults-dummy.m */, - FFAF390021B4E9A6E4177FFC9AF3203F /* RNUserDefaults-prefix.pch */, + AA61A310B696E563645519817B84CD91 /* UMSensorsInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + C7D4753E1A7BCA6EED1A3C255A57F95E /* UMFaceDetectorInterface */ = { + isa = PBXGroup; + children = ( + A5D5568A07B4779107F09DCBA5369C8E /* UMFaceDetectorManager.h */, + 74F235836617F870DA81A96E2071E3F9 /* UMFaceDetectorManagerProvider.h */, + 4532E1AC9DA617EBCF83479C74103116 /* Pod */, + 33E16EF53E0DD3D0E1F253D4EE6F3AA6 /* Support Files */, + ); + name = UMFaceDetectorInterface; + path = "../../node_modules/unimodules-face-detector-interface/ios"; + sourceTree = ""; + }; + C97AD079866FF412E88ADF0012A68C29 /* Support Files */ = { + isa = PBXGroup; + children = ( + 663D2FB7BE11E42950372FC16A69A8DE /* RNFastImage.xcconfig */, + 7C30C30074F4C0A197B79ED68957C6ED /* RNFastImage-dummy.m */, + F7D1D36337ECA72485D5817D13522685 /* RNFastImage-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNUserDefaults"; + path = "../../ios/Pods/Target Support Files/RNFastImage"; sourceTree = ""; }; - C98FCDA93B1998860B3EA15FA1892DB0 /* react-native-webview */ = { + C994F9CA386F5D146AB6275DDA0ACB58 /* Development Pods */ = { isa = PBXGroup; children = ( - 44DD7421AA84BA7B774B3EFE2250ECDB /* RNCWebView.h */, - 2A9430F671659F2F9CC13A57617A5836 /* RNCWebView.m */, - 1898543D12931668DB83E756B14A50CC /* RNCWebViewManager.h */, - 23030DDFBB09C8793CC263DCD249A4C0 /* RNCWebViewManager.m */, - 2B0694334ED556A548C81BDE6C48F957 /* RNCWKProcessPoolManager.h */, - 79D877874616F616FD9B90D000C2EE5C /* RNCWKProcessPoolManager.m */, - 7622934C1D05E152ED6CE1939FE3052F /* Pod */, - 76EBFC862EB5B928AC16B7E305251C76 /* Support Files */, + 0F7067B2B36F003E69A4DAB0A768A9A8 /* BugsnagReactNative */, + 2D08631F78712C1B13DFC454C6A721A9 /* EXAppleAuthentication */, + CFB8C1A208841D481B61B95B463DA117 /* EXAV */, + 247B1300D13C1611C7F59AB97414AD50 /* EXConstants */, + A3B5CCE2A3D44117B0F1B14E2A1BC6B2 /* EXFileSystem */, + 8A14AEF962D8A98A959A8A28FFD80099 /* EXHaptics */, + CF395261A5FB97FBEFAF43E4CEFCAE2C /* EXImageLoader */, + 74B4CC0534C7AFF613170B15DF4E6E22 /* EXKeepAwake */, + 7A69BC9E31B660FD0D04786D5722995B /* EXLocalAuthentication */, + 101FF42C7904DE9D979F50F6F443FB2C /* EXPermissions */, + 7B7D62B3ADBDF5FD943A3683665DE51E /* EXVideoThumbnails */, + 2F0F7BB0491A7C6EB25A3ACC13673717 /* EXWebBrowser */, + ACFAEBF4C6C1A7053D0137F3437085BA /* FBLazyVector */, + 555D4A8EBD4041A0B52AA2F56957D6DA /* FBReactNativeSpec */, + 17FCFBABA3BEE8CE1EDED474A90D781B /* KeyCommands */, + 858CE34E11A8A610E14A8E58A1FDD044 /* RCTRequired */, + 7A39C7AFF8E3B0C1D9204C86F6DA2588 /* RCTTypeSafety */, + 08CA95BACAF838E76E27885FDF146257 /* React */, + 76E31D768139B42A0295F13E40189339 /* React-Core */, + CABEA27C53AFF7C0B514BB1656FD9F5C /* React-CoreModules */, + E8D0130BEEBD865783E051DCCB3D91BB /* React-cxxreact */, + 461D1E9F71F246EA74A92D336F337133 /* React-jsi */, + 22B8878C03FF0E845D30531EF34198D9 /* React-jsiexecutor */, + 022CDCB55D54F00EBD4BB6B240C8815E /* React-jsinspector */, + 1671EB795F52EEEDDD044A9107D7C23A /* react-native-appearance */, + 7174316D001163E013D06DECBF94C1B1 /* react-native-background-timer */, + 6F71257E6B9C99F6C8427C0987236D5A /* react-native-cameraroll */, + 9BBDED08BD901CB1D10B2FFDC62F8F58 /* react-native-document-picker */, + 61A1692F5A4B578EAF8EF4A23F6CD6A4 /* react-native-jitsi-meet */, + 78B6E09563CBBB52D2F5B8C7864D4301 /* react-native-notifications */, + 942026784B56774D5FFBB481548BC399 /* react-native-orientation-locker */, + C707852EF210B5DD282D40572211E829 /* react-native-safe-area-context */, + E39FD8676EB82286378081606B0A6A8D /* react-native-slider */, + F381048309BA1C1901E7EF2C9EEDB38E /* react-native-webview */, + 5BD3CDDAA18AEA0F7499B011397E3CA1 /* React-RCTActionSheet */, + 7BDABBB205135C97CD389299C2BADFF2 /* React-RCTAnimation */, + 8146BA21018A7B2664F3089B667CFA71 /* React-RCTBlob */, + 1A52D4B6AFA8602F4D6E078053FC4B7E /* React-RCTImage */, + 380DBB4F886FD18306B0100941C30DC1 /* React-RCTLinking */, + B77C011FAE805EDCD20822E9F44C0F2C /* React-RCTNetwork */, + 3EC524AB128B75456FB45376D6957A29 /* React-RCTSettings */, + 6DBE6BED24524D3B8AC0D2BE7659AE3B /* React-RCTText */, + 9262A2316A90CB9BDC512EE169A6AB4F /* React-RCTVibration */, + 5CE6AC589C5C4294462A7296BAF6484D /* ReactCommon */, + E5AA62D88ECD11B81CF4F7FC77E43FE8 /* ReactNativeART */, + FD3BA3B7E487DB54EDF067F293B88DDB /* ReactNativeKeyboardInput */, + B8875DFCD37D3B35E127C79DA8E94649 /* ReactNativeKeyboardTrackingView */, + F6FE39A766D890F4EABCFF0EAEDC4CB0 /* rn-extensions-share */, + D666E187BF297B6C04E56F41AE266B43 /* rn-fetch-blob */, + 8730E74AC6EE504B097AE7CB023D437B /* RNBootSplash */, + 3E59569D16CD6F05673EB5DE2284EAF9 /* RNCAsyncStorage */, + A7FE8EE23B062EB05226A784920F4B5F /* RNCMaskedView */, + C63DB56158A40CE847D9504A270AC54A /* RNDateTimePicker */, + 1025CE3A3508A0D6797CC0868926333A /* RNDeviceInfo */, + 18F3B84D071BF6E03A17202E54D4FD0A /* RNFastImage */, + E4D9761352C49BDDDCF1E019B7629188 /* RNFirebase */, + 7568F3FC5805FF88772A35996E118BCA /* RNGestureHandler */, + DAA23F099264B991B61FE60DEF365262 /* RNImageCropPicker */, + 4EEC1118E267BAB027555E67DC4C2B44 /* RNLocalize */, + 4918C3ED866941C93DA3FAEC45EAB269 /* RNReanimated */, + 02E1FA65B159716F1B71BBCBBC48444F /* RNRootView */, + A9102972D0D0EBC24A846628566EDB0C /* RNScreens */, + 3CF1DE621832047911CB90DA773D9C30 /* RNUserDefaults */, + B31CC9B5ABF0346CB1C310E703755CCC /* RNVectorIcons */, + 4A06001556AA7308EA70997ECE34506A /* UMAppLoader */, + F5EA1132D12EBE0D44C88A50126916F9 /* UMBarCodeScannerInterface */, + F5BA84817B455B52937635C1AF266E45 /* UMCameraInterface */, + 663891084B71F8392225208F585031EB /* UMConstantsInterface */, + 4DEDC9B6BA0086EA042F5365E4392AB3 /* UMCore */, + C7D4753E1A7BCA6EED1A3C255A57F95E /* UMFaceDetectorInterface */, + E2FC72AA47DB8A8EF8F6903024EA3D94 /* UMFileSystemInterface */, + 1116BC4E32F4BC8C3355FD27CB06BFAF /* UMFontInterface */, + C2A1559A5E9E3D2C431B6D27FFB2E82D /* UMImageLoaderInterface */, + B73F590C037EA64810F70D0F00FD3259 /* UMPermissionsInterface */, + FF5668EC16B58B916EF561EC6DDA9EEE /* UMReactNativeAdapter */, + 5B08F74F43DB6AA8D2D7C89F425E89D8 /* UMSensorsInterface */, + 82BB307478C72B3DF801D43367453AA5 /* UMTaskManagerInterface */, + 64DF6A39AFBA9668F142BB1022043253 /* Yoga */, ); - name = "react-native-webview"; - path = "../../node_modules/react-native-webview"; + name = "Development Pods"; sourceTree = ""; }; C9ABAAABCFF465BD6C943A24482D145D /* Support Files */ = { @@ -16309,22 +16131,6 @@ path = "../Target Support Files/Flipper-Folly"; sourceTree = ""; }; - C9F08ED693135402B7ADEAE039B65324 /* SafeAreaView */ = { - isa = PBXGroup; - children = ( - 55E40C474A1B8A188FA0EBC0D7B1454C /* RCTSafeAreaShadowView.h */, - 8AB80FA6621336280CCFF2D26D927887 /* RCTSafeAreaShadowView.m */, - B61A241B25DA0F2A7746F4D578280EF9 /* RCTSafeAreaView.h */, - F642EA15A2275B13FEFED3820D09E3B7 /* RCTSafeAreaView.m */, - 49F32FA804DE69B9BF136B2B00E982F3 /* RCTSafeAreaViewLocalData.h */, - C43D53D1AA069BBB72E8F5CFDE1160CB /* RCTSafeAreaViewLocalData.m */, - 5CD859C1D7B68AC31771AF0D074966DA /* RCTSafeAreaViewManager.h */, - 560EC7B7328E44C765D557C465B7C2E6 /* RCTSafeAreaViewManager.m */, - ); - name = SafeAreaView; - path = SafeAreaView; - sourceTree = ""; - }; CA54232A1790A07BC3B1F0ABEED18ECF /* Support Files */ = { isa = PBXGroup; children = ( @@ -16336,6 +16142,52 @@ path = "../Target Support Files/glog"; sourceTree = ""; }; + CABEA27C53AFF7C0B514BB1656FD9F5C /* React-CoreModules */ = { + isa = PBXGroup; + children = ( + F413EB8549ECEB611157781FBA189FF5 /* CoreModulesPlugins.mm */, + 9AF0129EA8B4E8F540AA07097DCCEED4 /* RCTAccessibilityManager.mm */, + 80CF828602B6DB507E88F991AE246BED /* RCTActionSheetManager.mm */, + BD5F3EF6EB0059568C5D5E1ACE4D16DF /* RCTAlertManager.mm */, + 52F3D7704D7909815C5F8B22E38B57D8 /* RCTAppearance.mm */, + E6E736646CFBF4EBA7384B1E486EE94E /* RCTAppState.mm */, + 16663CF894AFA1FC253A61AE2AC172FB /* RCTAsyncLocalStorage.mm */, + 47B935784748CD8C29C62EF1B15E2040 /* RCTClipboard.mm */, + D97E945EAB5262C724CF49D188714044 /* RCTDeviceInfo.mm */, + E183097BAB8F512043C9880F96EC7BE3 /* RCTDevMenu.mm */, + AF9BBCCCA38CF3024A8E55E70FC480AC /* RCTDevSettings.mm */, + 759214E0404777E80647BBF378BB40EA /* RCTExceptionsManager.mm */, + 6741F01CF2C988A856EB20335F1192E4 /* RCTFPSGraph.m */, + 675B2C2AFE90C3AE02FB47A8366ECCD7 /* RCTI18nManager.mm */, + C33745890C9F91ADF6EB4AB0EB5ECE70 /* RCTKeyboardObserver.mm */, + B8FF9CD3EB5A10C3E96DCF23DE830F73 /* RCTLogBox.mm */, + 934A92F5F919E8F07588C83383514BDA /* RCTPerfMonitor.mm */, + D88A67B31EF4DDFDB2555341940D783D /* RCTPlatform.mm */, + A657A818C7D66B71AF1E3C4B05C4962C /* RCTRedBox.mm */, + C1D5A570574B92F76B7BD7A8A1BDF5A3 /* RCTSourceCode.mm */, + BE5EBF9B9E5EF12CBD5AD12B3E6B42B2 /* RCTStatusBarManager.mm */, + 8703D2055FA62C7E75DC2CEC5F8A8D2A /* RCTTiming.mm */, + A844ABFB86195E29719BE7A3A70722D8 /* RCTTVNavigationEventEmitter.mm */, + 7AFD68A83DDE516F3EC744376B026DC2 /* RCTWebSocketExecutor.mm */, + BFF25A5890088FE3163334A7ED4D8814 /* RCTWebSocketModule.mm */, + ACB2DFF2E33E6E5F07A5D80D1C1EF6B8 /* Pod */, + 47C42C77AE6EA8C457516FAE62B37AE9 /* Support Files */, + ); + name = "React-CoreModules"; + path = "../../node_modules/react-native/React/CoreModules"; + sourceTree = ""; + }; + CB3AF880AEAA2464B866814E4AB8B022 /* Support Files */ = { + isa = PBXGroup; + children = ( + 68412A060E9246180930483E6972D374 /* EXFileSystem.xcconfig */, + F82298BC5DBE46DE8B924039E3EB09D6 /* EXFileSystem-dummy.m */, + B4825CFEDB0585F0E10F2E8B16198D66 /* EXFileSystem-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXFileSystem"; + sourceTree = ""; + }; CBC2EDADC6F69074AC9A2B2A628E6E42 /* FirebaseInstallations */ = { isa = PBXGroup; children = ( @@ -16381,88 +16233,41 @@ path = FirebaseInstallations; sourceTree = ""; }; - CBD929C4E7561197C1B113AD47CDE7B5 /* react-native-slider */ = { + CC5A7B321BEE4F736E178D1AF877EA74 /* CxxBridge */ = { isa = PBXGroup; children = ( - EC9EAF5DA4E2A4D2B73A0202D615121E /* RNCSlider.h */, - 88AE2466CE9D3EE389C1998564A9D1E0 /* RNCSlider.m */, - 26CA9C5B027A193D6EE2D654B1850FF7 /* RNCSliderManager.h */, - 3686AB05F2FB2444048AC98F5E5E305E /* RNCSliderManager.m */, - D5DCBC9D45DD04AF9AF3D65E1FD16E39 /* Pod */, - 5F3FA00CDA3087145C5C928EF21C9A08 /* Support Files */, + 4B85BFB057BF705D4CEA4E38A4925154 /* JSCExecutorFactory.h */, + 093068FC0E267C91415EDE13698C369A /* JSCExecutorFactory.mm */, + 0B7FF6573344CDA68FFC6BB1457E8553 /* NSDataBigString.h */, + 035AED08D71C220C5E407091F2A6CC0F /* NSDataBigString.mm */, + 35808B26E361D66266FCEDC142699F57 /* RCTCxxBridge.mm */, + CB247F3BE4B697A22587F15676F850EA /* RCTCxxBridgeDelegate.h */, + 99D5C8C0B6B045FFA224BAC71C1C3860 /* RCTMessageThread.h */, + 9640D0649B16529059D96E55D217B937 /* RCTMessageThread.mm */, + 2C8937263FFB2C59A5E5A48194035D49 /* RCTObjcExecutor.h */, + F52F69A8A78568067E27D7CA98BE4C69 /* RCTObjcExecutor.mm */, ); - name = "react-native-slider"; - path = "../../node_modules/@react-native-community/slider"; + name = CxxBridge; + path = React/CxxBridge; sourceTree = ""; }; - CBE5DE7BDB64E44AB9755BB3A4C4F1B9 /* RCTTypeSafety */ = { + CD02C23233A6E4047811A64D9564A018 /* Support Files */ = { isa = PBXGroup; children = ( - 12458DC7D4DC95957F2754C8A475FC35 /* RCTConvertHelpers.h */, - 15A8E5FC9E7730834F67803F561808D6 /* RCTConvertHelpers.mm */, - A820B573155CF4A018C7D554BF31DE76 /* RCTTypedModuleConstants.h */, - F590FE03FF7424B45E768C3BB84B8D3E /* RCTTypedModuleConstants.mm */, - 5ACB4F600152D8BA486BA640421CF67F /* Pod */, - A3246F403FCF2D393D888D401D4E0428 /* Support Files */, - ); - name = RCTTypeSafety; - path = "../../node_modules/react-native/Libraries/TypeSafety"; - sourceTree = ""; - }; - CC394204770BC52081778C4B5BF1E381 /* rn-extensions-share */ = { - isa = PBXGroup; - children = ( - DF07C711C21BB3F8D7DD7662ECAF5161 /* ReactNativeShareExtension.h */, - 15988DF1C27AC4CD9250DC7E4CE2D05D /* ReactNativeShareExtension.m */, - F6037AE587740A1D54487525AEE497E0 /* Pod */, - 5C7E681F165666BF648A3273C5EE9D6B /* Support Files */, - ); - name = "rn-extensions-share"; - path = "../../node_modules/rn-extensions-share"; - sourceTree = ""; - }; - CC4CABB13BA51AD15C3B5729D2CCFC2D /* EXImageLoader */ = { - isa = PBXGroup; - children = ( - 93B25E3146AE03F63BCDD5F8EF24E9E3 /* EXImageLoader.h */, - B7895CFB93C7B5F81EBA1447DD0077D4 /* EXImageLoader.m */, - 2D8DFDD74CEBA992B7168D40CEB37808 /* Pod */, - A8A0A94D4AC1D9E2E3C7BCC1079F4F99 /* Support Files */, - ); - name = EXImageLoader; - path = "../../node_modules/expo-image-loader/ios"; - sourceTree = ""; - }; - CC86FD01E56D4248464AA2805830DDFD /* Multiline */ = { - isa = PBXGroup; - children = ( - F3A68A2F358F66B3CD2380B5540FF9FB /* RCTMultilineTextInputView.h */, - FB18BE26F612F2CD0FA155922D40231C /* RCTMultilineTextInputViewManager.h */, - BD6094EAE9E1FD35871E0EEF9C2B5E55 /* RCTUITextView.h */, - ); - name = Multiline; - path = Multiline; - sourceTree = ""; - }; - CD2CE5E23897F375F4F6A44ED452C51F /* Requesters */ = { - isa = PBXGroup; - children = ( - 23E36F00A28B7EF5E645D4C398726B77 /* RemoteNotification */, - 6014E7A579507E5D5985C3C06A8B2FD8 /* UserNotification */, - ); - name = Requesters; - path = EXPermissions/Requesters; - sourceTree = ""; - }; - CD392ABDD68E7F320E53F230ABC49D45 /* Support Files */ = { - isa = PBXGroup; - children = ( - EBA37C542872C43350A3E560ADD7274F /* RNLocalize.xcconfig */, - 166D0329EAD73A74AE0A5097E6566379 /* RNLocalize-dummy.m */, - 3223727D3A1CC6B4D7B7E44A1E35ED7E /* RNLocalize-prefix.pch */, + 510DE00B6A6C5033471591E3A351D1AA /* RNDateTimePicker.xcconfig */, + 617926486224D0C074E090159BA81200 /* RNDateTimePicker-dummy.m */, + 36006A5D327E48945D7E0C370C648DE9 /* RNDateTimePicker-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNLocalize"; + path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; + sourceTree = ""; + }; + CD9E977EE1D3C9829E74B5E00AEE7F24 /* Pod */ = { + isa = PBXGroup; + children = ( + DA113318C6CB1B615002F1D963BF9086 /* EXLocalAuthentication.podspec */, + ); + name = Pod; sourceTree = ""; }; CDBD27982F4AECDE29B0BCB0DB89AF94 /* FlipperKitHighlightOverlay */ = { @@ -16474,73 +16279,66 @@ name = FlipperKitHighlightOverlay; sourceTree = ""; }; - CEB022284BF57FE2A438604AA1E29541 /* RNDeviceInfo */ = { + CE334D4FE774D312554D8BD58CB7C00A /* UMModuleRegistryProvider */ = { isa = PBXGroup; children = ( - 5D0C72EA1C1B71ECCF4254E8B27462CA /* DeviceUID.h */, - AD76A6B6CBC241E7C5E8E24BF5EB1795 /* DeviceUID.m */, - C845E76CEB1738E14C6F4ECFE2F38156 /* RNDeviceInfo.h */, - B7BE348A4BE2F57CA5704C782D041C83 /* RNDeviceInfo.m */, - B618EDD8C3AE557D38274D530A552C57 /* Pod */, - A201AB833056B400CA96CCFAFA70CDA3 /* Support Files */, + 0F10B8B6674550EA000A3ABB3BCA9273 /* UMModuleRegistryProvider.h */, + 094B2079D554B45CE52B8DB78B37ADE8 /* UMModuleRegistryProvider.m */, ); - name = RNDeviceInfo; - path = "../../node_modules/react-native-device-info"; + name = UMModuleRegistryProvider; + path = UMCore/UMModuleRegistryProvider; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - D1A9A48455C397E4121C8559B3705137 /* Development Pods */, + C994F9CA386F5D146AB6275DDA0ACB58 /* Development Pods */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, A798E741FBE2780C2247A64322076790 /* Pods */, - AA00CA5040E67394A8968C68F98A95DA /* Products */, + 7580C6647A7E005D0E732BE95D3EDAD8 /* Products */, 85036FAFEB60A7A7F38257AB58E1EC8B /* Targets Support Files */, ); sourceTree = ""; }; - CF535E8DA03A7AC57DAE7165A80B0759 /* React-Core */ = { + CF395261A5FB97FBEFAF43E4CEFCAE2C /* EXImageLoader */ = { isa = PBXGroup; children = ( - 30837435E9258A1A6F71EDF7D8E4FAF8 /* CoreModulesHeaders */, - 5D51901BFB548A56AD90038D48C6322F /* Default */, - 4B6D207E423830A3B70EE5C0F700E254 /* DevSupport */, - 2889EEBBD5FF473E8A2D971F257F8716 /* Pod */, - 6E4159F5BBD253BF8DB6980D883CEE03 /* RCTAnimationHeaders */, - 6FF8F1A7EA1C8FCEC0690B0A87C4125E /* RCTBlobHeaders */, - BBB7D4BD2880C1A868A07E6BF2C4FA6F /* RCTImageHeaders */, - E7C9447A9074E7B20364261E2C7C7C05 /* RCTLinkingHeaders */, - DAF81A68DF6F0C0003C1AAF42BE53E42 /* RCTNetworkHeaders */, - E12A3A1AE8038B8294C408A2170E7914 /* RCTSettingsHeaders */, - 15B961824C36871EDE5B8144D5875EEE /* RCTTextHeaders */, - 42A3430379AA41111163D3C757A7477F /* RCTVibrationHeaders */, - 0B5F23AF887AC5E49F46677871D7CB0A /* RCTWebSocket */, - BA48660DB2684030AF909513027E5283 /* Support Files */, + E721562F74F04D176D6F843613186636 /* EXImageLoader.h */, + BD9BD89BC0C5C60E9EAD7A81AEF71D12 /* EXImageLoader.m */, + 480ECE216EBC9B3B769B95077F785439 /* Pod */, + F7ACBD2E52F57141CB0F91C7B25449FF /* Support Files */, ); - name = "React-Core"; - path = "../../node_modules/react-native"; + name = EXImageLoader; + path = "../../node_modules/expo-image-loader/ios"; sourceTree = ""; }; - D0700DB88A4168F1A45B5C4B8D008CA7 /* Support Files */ = { + CFB8C1A208841D481B61B95B463DA117 /* EXAV */ = { isa = PBXGroup; children = ( - D197676C94A4BE52BDB34A5981A507D5 /* UMTaskManagerInterface.xcconfig */, + E2AED86520903893606E05C7A2D91A43 /* EXAudioRecordingPermissionRequester.h */, + 3486F0BAF3DFB19D0DC2AB86584B4982 /* EXAudioRecordingPermissionRequester.m */, + AFB2F99EB1D0F838AAD992D65571C7EB /* EXAudioSessionManager.h */, + 0BF107D5D9DB209E57E52C2D601BFC40 /* EXAudioSessionManager.m */, + E416310D18DD3D674787588A75E53E4D /* EXAV.h */, + B6704FC3280FC62B58879C7FD72A1BB7 /* EXAV.m */, + E3FD50FC8643C8B1FDABAEB11FCC55B5 /* EXAVObject.h */, + 026D365C03F0738EBB8705648566148D /* EXAVPlayerData.h */, + F49072E3106022C4325A6F7AC7A47024 /* EXAVPlayerData.m */, + 5F703CFEEE07B41A508F85312EA62CFA /* Pod */, + A0B0E69071D422E89F8A9AFF6AECE6B8 /* Support Files */, + 9824DA50CDE37B270C88EFC711EA344C /* Video */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; + name = EXAV; + path = "../../node_modules/expo-av/ios"; sourceTree = ""; }; - D09DB734E8DD225468421356F13E4902 /* FBReactNativeSpec */ = { + D09F2CCCE0B5BECE9759D5AF56E0DC67 /* Pod */ = { isa = PBXGroup; children = ( - 8C052C1FB343F7F0A9BF08D183CFD4EC /* FBReactNativeSpec.h */, - 52D997BDD7AFCA491005AA6906499E08 /* FBReactNativeSpec-generated.mm */, - 72E70123C8843567EDFF21FF53624685 /* Pod */, - 9CB5E0D40D1411C6AF26B43ECEA97048 /* Support Files */, + 25683557B86FEB22A5831C6F008419E1 /* React-RCTActionSheet.podspec */, ); - name = FBReactNativeSpec; - path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; + name = Pod; sourceTree = ""; }; D112AD4DEDECFC9FE9A5F53B8BD63F8C /* FKPortForwarding */ = { @@ -16553,174 +16351,105 @@ name = FKPortForwarding; sourceTree = ""; }; - D17DED71C2A2EB943C6335B35703B8BE /* RNBootSplash */ = { + D2226D46095F80681CDF073214B64209 /* KSCrash */ = { isa = PBXGroup; children = ( - 3B9F7601EED2B0A99FFDA98CF2FA4BA2 /* RNBootSplash.h */, - 96B561AF4F25EF93227A811EE49EB5C1 /* RNBootSplash.m */, - 0197CB8DC838C3BDFFA862776A0F36C7 /* Pod */, - ABD835202B16033ECD0A78822544FF34 /* Support Files */, + 26CB6B03B1B6A74D7E8525B3C972F701 /* Source */, ); - name = RNBootSplash; - path = "../../node_modules/react-native-bootsplash"; + name = KSCrash; + path = KSCrash; sourceTree = ""; }; - D1A9A48455C397E4121C8559B3705137 /* Development Pods */ = { + D242A5FAE7D2C38C174312DC5E204960 /* Views */ = { isa = PBXGroup; children = ( - 4C7A8AD53C41B86BA11BBC83C7C80988 /* BugsnagReactNative */, - AAFA814E161AF1138E2E6300E623F955 /* EXAV */, - 409F7F1718614418CE93A7D3DD08811B /* EXConstants */, - FE7BEEAD50442F771B5CBBF80BE8058A /* EXFileSystem */, - 438027C9C4B027F11B58EBCDC40CF2F2 /* EXHaptics */, - CC4CABB13BA51AD15C3B5729D2CCFC2D /* EXImageLoader */, - 0A694903AF7C12028DF565A1AA873DA2 /* EXKeepAwake */, - 4577FC2E5D2276672B67310D6B2BEC7A /* EXLocalAuthentication */, - ADE2B0CCEA2BBD307A99A974FF8CC747 /* EXPermissions */, - C01B11EFEA80BFE3D255E2D91AF178B6 /* EXVideoThumbnails */, - AFDEAC54CA1E01F911403E06B758F916 /* EXWebBrowser */, - B355822E474BE8DF219DCCFCFE060054 /* FBLazyVector */, - D09DB734E8DD225468421356F13E4902 /* FBReactNativeSpec */, - BAA010600ADC5FD5214A4213B4DAC200 /* KeyCommands */, - 10A4BEBEF0B2C3507B2FB86651F4FBFD /* RCTRequired */, - CBE5DE7BDB64E44AB9755BB3A4C4F1B9 /* RCTTypeSafety */, - EC03EE93CDC52F337E2B2141EAE4B303 /* React */, - CF535E8DA03A7AC57DAE7165A80B0759 /* React-Core */, - 056FD1C87771E904F1C1F09030ABB515 /* React-CoreModules */, - A93C46D5C05B86E41A16F0DC63F68BAA /* React-cxxreact */, - BB1682740D213F76D5CC0918CCF201BA /* React-jsi */, - 367006D8A5B1AE1852A738557D2D6FBD /* React-jsiexecutor */, - 90BD493B653E811B8313E43F153A5218 /* React-jsinspector */, - D289D3D72EDCBE0C7AC90D56CA289E1E /* react-native-appearance */, - 22B7E52AB19E732A7BEA4999F064D9F6 /* react-native-background-timer */, - 3BDC7B2B7913825781920B730C15482C /* react-native-cameraroll */, - 5837BCC1FB4BFABEDAFBA89BEA003D2D /* react-native-document-picker */, - FBBD719C04FBC9C863E20BF262EF0910 /* react-native-jitsi-meet */, - E3D7451514695927E20A9E000A082310 /* react-native-notifications */, - 4684BF9D332BECA27A96A6909C34E708 /* react-native-orientation-locker */, - D26E5245DDBB4000EE237A683B463DE7 /* react-native-safe-area-context */, - CBD929C4E7561197C1B113AD47CDE7B5 /* react-native-slider */, - C98FCDA93B1998860B3EA15FA1892DB0 /* react-native-webview */, - 72283CE36909B0EB92D18C7305C6D725 /* React-RCTActionSheet */, - 13EE3709DE8E1F2A61ED6BDEF210F9D1 /* React-RCTAnimation */, - 75B11E5660E73F80BEA3F8CF9F94189E /* React-RCTBlob */, - B889552A1F43F7D8661BF32776865D5F /* React-RCTImage */, - A537BBD6716D20AAA989B616CAE132A4 /* React-RCTLinking */, - BD8B019F126449ECF8776429B9F19B64 /* React-RCTNetwork */, - 01BCA552A31CF147EF265F68ABACF2BF /* React-RCTSettings */, - 6007012FE1EDFD9D99D53D26DAC0C707 /* React-RCTText */, - A230E064774935F97FF83D731F567152 /* React-RCTVibration */, - ACEC3B85033B2A4A6EC339231799703E /* ReactCommon */, - 2550900BCFD90092E44EBD8775DB3E15 /* ReactNativeART */, - 049B28077B9160008DE08394ACBA7DFA /* ReactNativeKeyboardInput */, - 0AC5AB2EBC04E49E0246D8358516FAFF /* ReactNativeKeyboardTrackingView */, - CC394204770BC52081778C4B5BF1E381 /* rn-extensions-share */, - E07A76AA9CB48251A0348E8C1927A79B /* rn-fetch-blob */, - D17DED71C2A2EB943C6335B35703B8BE /* RNBootSplash */, - 25CD5256C1B8015E47259AB469EA989E /* RNCAsyncStorage */, - 141B1550F380052D097F4CC67A82F022 /* RNCMaskedView */, - C66CF7A5206477EF764125EE06B0A89E /* RNDateTimePicker */, - CEB022284BF57FE2A438604AA1E29541 /* RNDeviceInfo */, - 568A84114214E476D7E8745F4FFBCB25 /* RNFastImage */, - D727A5DA89EE3BE903AE01A98D0F486A /* RNFirebase */, - 494FF9299755CB2A47E65BA3AA8CC914 /* RNGestureHandler */, - C0E86BEA4090BF9BCD532F71626347D3 /* RNImageCropPicker */, - 2FEBB938345F2EC1D79077E6533D1B9E /* RNLocalize */, - 0F524DA95E8E7D2F4E36F6F714915196 /* RNReanimated */, - 82DEAB3BA59E6FBE153B67AB9D349CA7 /* RNRootView */, - F185B45379A02D00A0722D94E8CA4846 /* RNScreens */, - 805BE8A5117C72BB1AFFE5B9A4C0D9BA /* RNUserDefaults */, - 4E1D0B3235FD1E67F4DBEA50BCA77DD1 /* RNVectorIcons */, - FCA5D81760A251D78F709180B689A757 /* UMAppLoader */, - A651B710CD18C0D243BB9C432315CEB5 /* UMBarCodeScannerInterface */, - D5F5E7D1CD0B389967B77081453B9683 /* UMCameraInterface */, - 218CE2D1583E39C60B06BE0E321FFF7B /* UMConstantsInterface */, - 512C5570E8ADC8F326BDA112C15D0B14 /* UMCore */, - 277329F544D890D00A4AA1CBFCE93F73 /* UMFaceDetectorInterface */, - 874C280E4E0C0657581A21EECF9E7A48 /* UMFileSystemInterface */, - 939BA7B5EADFE3904EAB23962E73093F /* UMFontInterface */, - 618FBF0F325F3B07E9F08C73B1CE583B /* UMImageLoaderInterface */, - AD10018EE51B6AA21E78516768713479 /* UMPermissionsInterface */, - 5072BC143B26C83F7DBD9B570A7E2F2E /* UMReactNativeAdapter */, - 3B2C3F070A8EBC809578ED2F92A93078 /* UMSensorsInterface */, - 1C001F2B97F765B4CE3A01381A8A5F08 /* UMTaskManagerInterface */, - 0580F8DBD5D678DB0B125AFE59451F58 /* Yoga */, + 082248F149CA01E5F5092279617FFF33 /* RCTActivityIndicatorView.h */, + BE326A8BBAF4AE76275FB5B30C2D2869 /* RCTActivityIndicatorView.m */, + C0DD9DF6859C411D62FA7DB0B4ADAB70 /* RCTActivityIndicatorViewManager.h */, + AF9C9C70D76802E90418693DC909EBB5 /* RCTActivityIndicatorViewManager.m */, + 24B4674663B10F5919335B67C8807E6E /* RCTAnimationType.h */, + 70B3C3AE5C2CDC52BD74F7C527EF126E /* RCTAutoInsetsProtocol.h */, + 37B394D80684978604DE1A7BBE048EE9 /* RCTBorderDrawing.h */, + 5A81C8324F3038F8CCD8CC6BD84FBE51 /* RCTBorderDrawing.m */, + 9CBBE1E99E32DCF4AAAA2E6EE13B85B3 /* RCTBorderStyle.h */, + AEF05B137E6222CA20F7C962A1AE1E34 /* RCTComponent.h */, + 040AA9DAA7862B475B2E5120A5EEF914 /* RCTComponentData.h */, + 77371F5FF68EF2101F411997A7F2A3DA /* RCTComponentData.m */, + 7E0E27B24E2B25BC67038E12CDDC0EBD /* RCTConvert+CoreLocation.h */, + 739CC36EF22AB6A559FB5581FD5EC465 /* RCTConvert+CoreLocation.m */, + 12EDE432BD3D8860F80EBFF04A6C53E4 /* RCTConvert+Transform.h */, + 418F58C2275BDE975AAB7658A777A532 /* RCTConvert+Transform.m */, + 00A208973A5C820DB58EA49C7ADFEB32 /* RCTDatePicker.h */, + 077B84BC0E5BCB688AF3980FA3447CFC /* RCTDatePicker.m */, + 2394FD30544F1A0E0D6827F674CAFF38 /* RCTDatePickerManager.h */, + 32A66B75467762CA4BE821738EB96B6D /* RCTDatePickerManager.m */, + 3CC873D1D6B745AC90DADC4CB32145AA /* RCTFont.h */, + E5D173BDA9C7CE1F83CBB562AED745EC /* RCTFont.mm */, + FA69A99024BDCBE4333176094838F08B /* RCTLayout.h */, + F5A35DF865955D1D0F752C21439DD2BB /* RCTLayout.m */, + 55A754F94E16C39635E2AF9354FBFA4B /* RCTMaskedView.h */, + 756E6084FBDF051F9DC7F4553649C4B0 /* RCTMaskedView.m */, + E8A93A2F6D99EEE18CCA27D6486437B7 /* RCTMaskedViewManager.h */, + ACB4201D7961B401EC845571B7E1E960 /* RCTMaskedViewManager.m */, + EF3CF074EFB514AB39C2972DA32E2ABA /* RCTModalHostView.h */, + F6D9633881EF5E6D8E4F89C510C6968F /* RCTModalHostView.m */, + 5C14E98BA965F968CFF8E6D76B8CD33C /* RCTModalHostViewController.h */, + 93D5D1140E791F42067DC156835CA7B0 /* RCTModalHostViewController.m */, + 6ABBF6A6D0FACB32AD2FDE3C593A3775 /* RCTModalHostViewManager.h */, + E198EDF62D4D911560F20BC10B47319D /* RCTModalHostViewManager.m */, + D83CB939607381669FBAA5BC805FFD91 /* RCTModalManager.h */, + 63BDBC2D3708BDA03D43E9A7001DDB9D /* RCTModalManager.m */, + 009E1A7B40B535EB77ACA21024028C42 /* RCTPicker.h */, + 2955E1F0E269B00A6DF445737D241CC5 /* RCTPicker.m */, + 70BA231528C44BD9AB5D994D37520985 /* RCTPickerManager.h */, + 2E5F66F8E856DEE00B552564AF706E9D /* RCTPickerManager.m */, + 560D612F81C9E8306A80EFA23F21AFF3 /* RCTPointerEvents.h */, + 5D23D21EB4044F0DCF536F1F68A0615F /* RCTProgressViewManager.h */, + 199009BB4DC631CE1BED656007525A3B /* RCTProgressViewManager.m */, + 7E4E7A3A90D98C8D9583F48BA556A809 /* RCTRootShadowView.h */, + 0D124C870BD1AD4EF03CD7AC69FA610F /* RCTRootShadowView.m */, + 106F6B8D6E0E1D4159EFC59CA49D35ED /* RCTSegmentedControl.h */, + E613C10854AA0E97A10A1F81C1CE65B1 /* RCTSegmentedControl.m */, + 36F1336686CF053FAF0D1F783F28DEDC /* RCTSegmentedControlManager.h */, + 9E7721F7CEB4EB662B6BCEA76FD28E5C /* RCTSegmentedControlManager.m */, + AD6619459190D5772FFED9BDD939E82D /* RCTShadowView.h */, + 08841ACBAD03EBFF0D2F52BD702B6CDA /* RCTShadowView.m */, + CA0BE73E7B2154150E2F4CEAB088D002 /* RCTShadowView+Internal.h */, + 7FBBBFE618BCE4C5D50EB9810A6637CD /* RCTShadowView+Internal.m */, + 359E24958405B6EDF860F722188F7647 /* RCTShadowView+Layout.h */, + 4F9CFEA5DE5CD59C3161B14BC08A7D4C /* RCTShadowView+Layout.m */, + 1E1749F8D2A7A46634E4C9E76C88DA67 /* RCTSlider.h */, + 835EC2AB03939CB3829F05F29BF62A32 /* RCTSlider.m */, + 5613065B221600F128B6FF6153943DAD /* RCTSliderManager.h */, + E37AF67FCF09E4158EF00B66B07F22C3 /* RCTSliderManager.m */, + 4B9AEFF14A0B7431D172233187A20862 /* RCTSwitch.h */, + E68CC1DF95728CD766E101D0963B0270 /* RCTSwitch.m */, + B4423D352B299A86B76B33FB2B911D68 /* RCTSwitchManager.h */, + 55C8AA679A3AD6B024B4E86F3ADE1654 /* RCTSwitchManager.m */, + 3B0BB472098B8C1333572351A2D915B6 /* RCTTextDecorationLineType.h */, + 12760B2ADEEB617BF703F0D43FEFCC77 /* RCTView.h */, + 2701234FB9632D24B2506BBBD4163530 /* RCTView.m */, + F626CA309CF77982C5504E2DAD7F257D /* RCTViewManager.h */, + 91D367B3158E8031400E77558EF77B03 /* RCTViewManager.m */, + B2A5B2891ADB13F1C0DE555A9C630A6F /* RCTWrapperViewController.h */, + D9E75B890724EA1F30A7C8E719D2E280 /* RCTWrapperViewController.m */, + D0D3A712CE905DA36F783872BBCC9C90 /* UIView+Private.h */, + 60124DCD1F20F3DFE9902D3F831F0CFA /* UIView+React.h */, + 4A1C7E7294D784E84D6A63A4ADF99834 /* UIView+React.m */, + BB112B1428A15475EFB4426A405FF7E2 /* RefreshControl */, + FEB30BCEF3A4F49DA247DB58582B834F /* SafeAreaView */, + E6826505C0C84794D1533471916E8641 /* ScrollView */, ); - name = "Development Pods"; + name = Views; + path = React/Views; sourceTree = ""; }; - D26E5245DDBB4000EE237A683B463DE7 /* react-native-safe-area-context */ = { + D5B23C46F69BBFCDD5348F47191613D6 /* Pod */ = { isa = PBXGroup; children = ( - F4EE6D7DAD6DC79060122FC1C638C467 /* RCTView+SafeAreaCompat.h */, - 500EE510AB695EB73B13EE9C3BFA1420 /* RCTView+SafeAreaCompat.m */, - DB53E4FF1C728AC66238D25582F67411 /* RNCSafeAreaProvider.h */, - F33B79E0E950C27327E8712493E25964 /* RNCSafeAreaProvider.m */, - 19A309142A896FF9CE42C80282D3F79D /* RNCSafeAreaProviderManager.h */, - 206538FE572342E6D8BA617EDF631F23 /* RNCSafeAreaProviderManager.m */, - 0E1A31DC6AD24779052F7AD79137C357 /* RNCSafeAreaShadowView.h */, - 34579908D35ED78F87A95AD8D241DBEB /* RNCSafeAreaShadowView.m */, - A0AF3001AC2B881EC1F32AD005471915 /* RNCSafeAreaView.h */, - BA03A3C1BE47AB14B488D08C97240739 /* RNCSafeAreaView.m */, - DAC6C5075251C028E3B56DD1420E8DD9 /* RNCSafeAreaViewEdges.h */, - 6B33829DED995B050E99525F11AF293D /* RNCSafeAreaViewEdges.m */, - 3C463C99F441B3AF65C45BEA1F02881F /* RNCSafeAreaViewLocalData.h */, - 02A9C40501F0D483BFBFA6D239378924 /* RNCSafeAreaViewLocalData.m */, - 317C6299B6027595FDD09D62475F57EE /* RNCSafeAreaViewManager.h */, - 7913982620E849A94716CA7242FFA815 /* RNCSafeAreaViewManager.m */, - 550E11119FDC392C02215EF9CB4B944F /* RNCSafeAreaViewMode.h */, - 9473CFDA5453C71E6ACCD1EFEFBA8291 /* RNCSafeAreaViewMode.m */, - 305BFAE0A35B9564F2460EF5957315D1 /* Pod */, - 1D46DED0E8195A3F959A1951C4FD18DC /* Support Files */, - ); - name = "react-native-safe-area-context"; - path = "../../node_modules/react-native-safe-area-context"; - sourceTree = ""; - }; - D289D3D72EDCBE0C7AC90D56CA289E1E /* react-native-appearance */ = { - isa = PBXGroup; - children = ( - 8B6F81B3B0CD61E1951D55B1ABC4C31C /* RNCAppearance.h */, - 5B60E5A617C4376BA7FD9E6EF8C5EB36 /* RNCAppearance.m */, - D274132B9B76A2FCCA9E7BBE49E3F06F /* RNCAppearanceProvider.h */, - 50DAF5A9BC41E497F4DAFAE985C768B3 /* RNCAppearanceProvider.m */, - F69BA290B8131479B24DB1059F8CDFAF /* RNCAppearanceProviderManager.h */, - 28AFDFAC42099B59DF0310E5A01B0695 /* RNCAppearanceProviderManager.m */, - AC4C4E25ED47E8018739B786EA6F8DF3 /* Pod */, - 83951C6EDC04CCC1DF8CE8AFD2DD89FB /* Support Files */, - ); - name = "react-native-appearance"; - path = "../../node_modules/react-native-appearance"; - sourceTree = ""; - }; - D294F4F52424E2872CF14D8EB0107259 /* BaseText */ = { - isa = PBXGroup; - children = ( - EBC7C02BEC41F548E27C8153F50B6614 /* RCTBaseTextShadowView.m */, - 74054676BA9C8D1B26EACF72E7B7879C /* RCTBaseTextViewManager.m */, - ); - name = BaseText; - path = BaseText; - sourceTree = ""; - }; - D2C273B5DB667887C3B3E64C9D8725AA /* Text */ = { - isa = PBXGroup; - children = ( - 210DCEF81B5A5C5B4EECC6BAC8BCAC40 /* NSTextStorage+FontScaling.h */, - 226F882EA37ABF25B36964BD0F1C3440 /* RCTTextShadowView.h */, - 5ED74A6AC6550A6F60791194E337B0D9 /* RCTTextView.h */, - 8FA0759551B0F3AA16FA22A8A183E46D /* RCTTextViewManager.h */, - ); - name = Text; - path = Libraries/Text/Text; - sourceTree = ""; - }; - D54CAABD300090385C0741A7E7881A7D /* Pod */ = { - isa = PBXGroup; - children = ( - 44336000CC77A697F473138023CD4602 /* LICENSE */, - 17A4D2D64DF2CF0F199284458CA3F95B /* README.md */, - 6CEB20EF4A3E729799CF70E4E8E074CC /* RNLocalize.podspec */, + 2D6D7B9EFBE1AC81F29FC86693A8CAB1 /* LICENSE.md */, + 98FC2A234D724546E17110F349418D27 /* README.md */, + A98B1CDB4B1984AFE972010457F0498B /* RNDateTimePicker.podspec */, ); name = Pod; sourceTree = ""; @@ -16773,53 +16502,40 @@ name = FlipperKitLayoutPlugin; sourceTree = ""; }; - D5DCBC9D45DD04AF9AF3D65E1FD16E39 /* Pod */ = { + D644F66B201D6179F2CDC47D654BE9EE /* RCTCustomInputController */ = { isa = PBXGroup; children = ( - 2C9813749E51B33067875DDE17E0DE94 /* react-native-slider.podspec */, + 4130B32047215C733F9E8513CEBCCE71 /* RCTCustomInputController.h */, + 2874635C8ACF2F545342C9694BF49DC3 /* RCTCustomInputController.m */, + B1B61F997B01F01E1EB62509328A65C4 /* RCTCustomKeyboardViewController.h */, + 4CAE3FAD576DFEF9531504E3694317A5 /* RCTCustomKeyboardViewController.m */, ); - name = Pod; + name = RCTCustomInputController; + path = lib/ios/RCTCustomInputController; sourceTree = ""; }; - D5F5E7D1CD0B389967B77081453B9683 /* UMCameraInterface */ = { + D666E187BF297B6C04E56F41AE266B43 /* rn-fetch-blob */ = { isa = PBXGroup; children = ( - DDF04D2D8F4BD930D1872F471FB53E8E /* UMCameraInterface.h */, - 68C8BA260E0601B049B1CFAD3DFC27B0 /* Pod */, - 933B7BEB89076597C807241DE6A44B58 /* Support Files */, + FC0FBCEDAA524F547423E330109EF828 /* IOS7Polyfill.h */, + 46FC4C5A659A3EED85B9083A283C545B /* RNFetchBlobConst.h */, + DA5D0AA93E7BE6BC076BCC751014EF46 /* RNFetchBlobConst.m */, + 9EEDA8D0F3FF14A8194A586EB92E3B3D /* RNFetchBlobFS.h */, + 31EE61B5B2C4934ACFE959BCEB6D5CAA /* RNFetchBlobFS.m */, + FD61AA0240C1699452A5688EF562C34A /* RNFetchBlobNetwork.h */, + 75C81C87FF4DB6BF91F3159D1B5ECF78 /* RNFetchBlobNetwork.m */, + 1413FFFF6ADE74BB4EC379BF8CDCAFBD /* RNFetchBlobProgress.h */, + 7CA58CB6C1F0627723A8061FDB5F32DA /* RNFetchBlobProgress.m */, + 56053D89CCBFA0BA3CDE1D02E7595E6B /* RNFetchBlobReqBuilder.h */, + 8972D5894EA23710DC85AAD79723BCC6 /* RNFetchBlobReqBuilder.m */, + E2A2C3E229486D9A05F7BD609DCC9FF1 /* RNFetchBlobRequest.h */, + 6F5684FFDE03F8CF2C40486769C419CF /* RNFetchBlobRequest.m */, + 55384BCA896B2711670C68DF64D3D330 /* Pod */, + FA7EAECB9AC9BF29E6D0E9D29F1CC228 /* RNFetchBlob */, + 79D015AEF41FDCF7169B6653196E257B /* Support Files */, ); - name = UMCameraInterface; - path = "../../node_modules/unimodules-camera-interface/ios"; - sourceTree = ""; - }; - D727A5DA89EE3BE903AE01A98D0F486A /* RNFirebase */ = { - isa = PBXGroup; - children = ( - 57B1EF4537388B47E351FE6E8BE007AE /* RNFirebase.h */, - 91BADEE03DFF5F7C3B83BB655A83BCD3 /* RNFirebase.m */, - 9CFCC00BE7585C289372FD36D3938414 /* RNFirebaseEvents.h */, - 7817EF52C29B1D0252EE06D16D36F9AB /* RNFirebaseUtil.h */, - 6FFEB8364E3DE91E8646D1B7BAB23EAD /* RNFirebaseUtil.m */, - C8CC67C0FDF563AD9F054D931100C8C5 /* admob */, - 25F9D907A8EE3B489D5E31FC30CE84BD /* analytics */, - 113F37800DC8644AA909F31DD047B97A /* auth */, - 1CEA22AA5F6E160328B61CE2889325AD /* config */, - 5CBF5862DCE646C71479424BC720C47C /* converters */, - BED1F91D74F54FDDB3CC37232199106A /* database */, - 006B6067055ABF9A8F7A0079EF0932DC /* fabric */, - 63FE9A6158F19C19811B942F9094005B /* firestore */, - A7A0FEFCA21ECB2CD2763B5E90C61541 /* functions */, - B480A5AA6D6CE0F1C29AB9D45C73AFB3 /* instanceid */, - AB1F3048A8AEBCBB864D8B8A8625A202 /* links */, - 0BA53CFD8331699B0984181C32F69AA6 /* messaging */, - 70DEACAB614D1722AD912BCE5A4BA6BF /* notifications */, - 0ADC1887BECB117D4274AEE6291E24EE /* perf */, - 7B1F25D60EA3EBCE50207D9948A28C8B /* Pod */, - B96B951A941878077AD97490A50A7336 /* storage */, - 1C257D09DEDEF6CFEDF8E09482C7EFFC /* Support Files */, - ); - name = RNFirebase; - path = "../../node_modules/react-native-firebase/ios"; + name = "rn-fetch-blob"; + path = "../../node_modules/rn-fetch-blob"; sourceTree = ""; }; D72CCAA127A922673A34F6FA79B55D1C /* Support Files */ = { @@ -16833,15 +16549,14 @@ path = "../Target Support Files/SDWebImage"; sourceTree = ""; }; - D76C1C02B82535906DA0BEE7BE1D30AB /* Support Files */ = { + D7B4E8B0144AA3183FB8B231B57A7330 /* config */ = { isa = PBXGroup; children = ( - 7883AAFEB26215326CC0898BCEBACE5D /* EXHaptics.xcconfig */, - 0EF8BA0AF02A308F427AB4CF2B5A08A9 /* EXHaptics-dummy.m */, - 99894C9CDF8EFFBB5927074BA3BDB226 /* EXHaptics-prefix.pch */, + DCE394A0E0B69B37E3C5223460D02999 /* RNFirebaseRemoteConfig.h */, + 0231B9765D9737322AAC9865EC423544 /* RNFirebaseRemoteConfig.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXHaptics"; + name = config; + path = RNFirebase/config; sourceTree = ""; }; D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { @@ -16851,25 +16566,23 @@ name = Frameworks; sourceTree = ""; }; - D8BD75F0D30C42B8D861CE26DF7DC272 /* Filters */ = { + DAA23F099264B991B61FE60DEF365262 /* RNImageCropPicker */ = { isa = PBXGroup; children = ( - 307C073B29F5AB6D829BC84F233DC00F /* BSG_KSCrashReportFilter.h */, - 7887C82F0C5FEB79528A607A9AF4FDEF /* BSG_KSCrashReportFilterCompletion.h */, + 6A97BA1C32F0EB20E5033FB242187B5D /* Compression.h */, + 8455501E57C734BAE091778D44D2E199 /* Compression.m */, + 3438ADEC6BFD173853DBE02CDB14D4E6 /* ImageCropPicker.h */, + E30318F688F0094C6830361CADB31299 /* ImageCropPicker.m */, + 2E31D2EDC5ECA24821ED9B416DBC9795 /* UIImage+Extension.h */, + 9C3F9D9A17FA6EF6E6CDE166CF171727 /* UIImage+Extension.m */, + F7CB6BF66BCA18F01B9CF33D6B04566E /* UIImage+Resize.h */, + B53AA8B5C803FAFC7AB1D0090127D684 /* UIImage+Resize.m */, + E938CDBCF16E85D6BEAFE779B120AD56 /* Pod */, + 9A120C340496610EC2E5B01FE0CA82C9 /* QBImagePickerController */, + 45EB4CB9D90AACEC24EB02C2E4ABB0AE /* Support Files */, ); - name = Filters; - path = Filters; - sourceTree = ""; - }; - DA268E4A6C27FD7B52722FE86248D94D /* Support Files */ = { - isa = PBXGroup; - children = ( - 62D0D7AE70467C95039ED3A3E7B0CDCE /* React-RCTSettings.xcconfig */, - 8076B39C0DF1D1B8546428FA63CB850A /* React-RCTSettings-dummy.m */, - D75EE709C4F5348137D7EEE7E2A78E96 /* React-RCTSettings-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; + name = RNImageCropPicker; + path = "../../node_modules/react-native-image-crop-picker"; sourceTree = ""; }; DAC6E360B631FEA5DC741AA03E87C2E6 /* Frameworks */ = { @@ -16881,17 +16594,36 @@ name = Frameworks; sourceTree = ""; }; - DAF81A68DF6F0C0003C1AAF42BE53E42 /* RCTNetworkHeaders */ = { + DAF4DBD0285BD09916D0C072B983EA9F /* Surface */ = { isa = PBXGroup; children = ( - 29741389F27E7F7213384B444FD5A6ED /* RCTDataRequestHandler.h */, - 824826292AF68DC62ACAB4F9E1F8EDD9 /* RCTFileRequestHandler.h */, - 8471AF838A55535824F22BA8A9FA0969 /* RCTHTTPRequestHandler.h */, - 2693995EDE501AD0CA7E26234FE363FA /* RCTNetworking.h */, - 73B76E5FD97B79666C2860E073DB45DF /* RCTNetworkPlugins.h */, - 22881003652D995B73026FBCDBA39C82 /* RCTNetworkTask.h */, + 985D6DB3D9A4AE44DF523A65D604550F /* RCTSurface.h */, + 95F07232DD6C43A691C9B7768164DA05 /* RCTSurface.mm */, + 5787EFC5AEE0F00EE6CA2F88DF3F334D /* RCTSurfaceDelegate.h */, + 578E76A091CE645BF475F243B3511735 /* RCTSurfaceRootShadowView.h */, + C04903A37365E963E54413DF6FD9FD6A /* RCTSurfaceRootShadowView.m */, + B3AC8C4510805B6693BC08157D72D931 /* RCTSurfaceRootShadowViewDelegate.h */, + 126199C73856BB1169A9044CA9A5649D /* RCTSurfaceRootView.h */, + B181DF32FCFDFC18F9571FF848A2232D /* RCTSurfaceRootView.mm */, + C4D42313D4DAF406D2817B141A119FA9 /* RCTSurfaceStage.h */, + B3622350A596E3E5F6990B705F2C4E34 /* RCTSurfaceStage.m */, + A5B1AD30F29FFCA73FADF2C224811D06 /* RCTSurfaceView.h */, + 70AB7F4C521B0B8F336CC49326F2D305 /* RCTSurfaceView.mm */, + 03415F6712E38CEF6B5BA9AC87327B01 /* RCTSurfaceView+Internal.h */, + 302FEAE76257008346957632C0FCCEA6 /* SurfaceHostingView */, ); - name = RCTNetworkHeaders; + name = Surface; + path = Surface; + sourceTree = ""; + }; + DB4F86AF789CFDB5546FB60A4F64559A /* Pod */ = { + isa = PBXGroup; + children = ( + DC507D39669E4B322D76C50178A05CC5 /* LICENSE */, + 4422005A2570BE2F6D0A557FB2C06481 /* README.md */, + 5DAE76D5E6A4A89DDADCBA7C79C9D2F9 /* RNVectorIcons.podspec */, + ); + name = Pod; sourceTree = ""; }; DBB14556B7BC813FF0021EA25C03CC50 /* SDWebImageWebPCoder */ = { @@ -16925,17 +16657,6 @@ path = "Flipper-PeerTalk"; sourceTree = ""; }; - DBEE9988B77A4B7CF28C186FFD58F990 /* Support Files */ = { - isa = PBXGroup; - children = ( - 30E493FF1F09264FA743C82D5C7C04CF /* ReactNativeKeyboardTrackingView.xcconfig */, - 192FB3DB5A581D02931D684CE8836984 /* ReactNativeKeyboardTrackingView-dummy.m */, - F4A312455E99C0D9E47AE43182E7BC16 /* ReactNativeKeyboardTrackingView-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardTrackingView"; - sourceTree = ""; - }; DBFDEDED3F398184E7071955D42A3EFF /* Support Files */ = { isa = PBXGroup; children = ( @@ -16946,6 +16667,14 @@ path = "../Target Support Files/PromisesObjC"; sourceTree = ""; }; + DC4E9203EEAAF5AB4FEA8687B1A872E4 /* Pod */ = { + isa = PBXGroup; + children = ( + 185705258B307AF0CBC2F59ED6261B25 /* UMCore.podspec */, + ); + name = Pod; + sourceTree = ""; + }; DC6A71CE51B9234F595DE540300935EC /* Support Files */ = { isa = PBXGroup; children = ( @@ -16957,6 +16686,14 @@ path = "../Target Support Files/Folly"; sourceTree = ""; }; + DC9AB5AC18E12C0261EF0F622A2B6804 /* Pod */ = { + isa = PBXGroup; + children = ( + B1FB70333B2D1B428F8E37FB5295B612 /* UMConstantsInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; DCCC2EF2E1E0DB6FEC9BE8904C110BED /* encode */ = { isa = PBXGroup; children = ( @@ -16964,6 +16701,23 @@ name = encode; sourceTree = ""; }; + DCE7C0512B08275E79393733DD6559DD /* platform */ = { + isa = PBXGroup; + children = ( + BB1ED37B11A273E7ED15884E01A49464 /* ios */, + ); + name = platform; + path = turbomodule/core/platform; + sourceTree = ""; + }; + DD046720E12F5A0A22EDDD4F431A7770 /* Pod */ = { + isa = PBXGroup; + children = ( + 4E686F63A3EC5D34AB3B20235ACBEA07 /* EXVideoThumbnails.podspec */, + ); + name = Pod; + sourceTree = ""; + }; DD8BE39581B027039CA45CB5DB5F5DEB /* Pods-ShareRocketChatRN */ = { isa = PBXGroup; children = ( @@ -16980,6 +16734,16 @@ path = "Target Support Files/Pods-ShareRocketChatRN"; sourceTree = ""; }; + DD933C3C950F07C5529BEABC3E8C5FFF /* Pod */ = { + isa = PBXGroup; + children = ( + 9BA5A3B1BE1BC7C2F0000E120ACE8D69 /* LICENSE */, + 11145ABC1368532AD8C8BAA8E947BA5F /* README.md */, + 1E2AA7FC7161AAC1C25764F3B0C67935 /* RNCAsyncStorage.podspec */, + ); + name = Pod; + sourceTree = ""; + }; DDBEA8E6B1460B9E399A52A6DE8DC407 /* Support Files */ = { isa = PBXGroup; children = ( @@ -16989,6 +16753,15 @@ path = "../Target Support Files/CocoaLibEvent"; sourceTree = ""; }; + DEE486CB55E39DFF0FBE91EFE1146050 /* RCTLinkingHeaders */ = { + isa = PBXGroup; + children = ( + AC0BB14BEB73A57DC8B734160F84C2FF /* RCTLinkingManager.h */, + 3C867FCCE49877A00F3EF1D8BFF334BF /* RCTLinkingPlugins.h */, + ); + name = RCTLinkingHeaders; + sourceTree = ""; + }; DF135E954D745CC65C2C1C45637AA4C0 /* Folly */ = { isa = PBXGroup; children = ( @@ -17013,139 +16786,76 @@ path = Folly; sourceTree = ""; }; - DF6955B135C7170B2AA450C179439B57 /* Pod */ = { + DF2A823F424957A7FF17D40A88D63422 /* Support Files */ = { isa = PBXGroup; children = ( - A89DAEAD06BB665FDD5549EAB3A62EDA /* RCTRequired.podspec */, + C0F313FB5F1E7F6BF4108813F8D2502F /* React-jsi.xcconfig */, + A1361018C52F1CE31D87BA70147752DA /* React-jsi-dummy.m */, + 3D6A6B77DF11FFD47C326907BC67E4D4 /* React-jsi-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsi"; + sourceTree = ""; + }; + E0B0F2B680537CFA8404EBD652D2C36A /* Transitioning */ = { + isa = PBXGroup; + children = ( + F8198A7A6C2B189CB145A78371FA8AA4 /* RCTConvert+REATransition.h */, + EB1E2EDE818FF878E59B569B3AEE6CEC /* RCTConvert+REATransition.m */, + EDCA066DC697E9BEF2EEF64778751C22 /* REAAllTransitions.h */, + E4F0FF6714F5FE177E51FB3A81A96F1F /* REAAllTransitions.m */, + E38F69EED7E21E41AD71AFA75F839F10 /* REATransition.h */, + D406E3712049C5BE639C6990990E7FEF /* REATransition.m */, + 93E8E380CB23AE9CCFCB94F089475E53 /* REATransitionAnimation.h */, + B7931EC6A86AD2739772BCE8C2756096 /* REATransitionAnimation.m */, + D47EB0EB7BBF5533FCDA0908164CB63F /* REATransitionManager.h */, + 74CB6B32052B4980712DC85AF207A391 /* REATransitionManager.m */, + 22AE0F027BA8E662707B93E6A49025BC /* REATransitionValues.h */, + D2546F5A27DAACFE9A10A9538869FCFD /* REATransitionValues.m */, + ); + name = Transitioning; + path = ios/Transitioning; + sourceTree = ""; + }; + E1657A85F442979F755796DE6AB7768F /* Pod */ = { + isa = PBXGroup; + children = ( + 80B9C566904D39AD05752A435EC43878 /* advancedIos.md */, + 229BD827D7F4F590318CD67644EB6FDE /* installation.md */, + 6BEDA019BC58CBE06110408C4101AA6F /* LICENSE */, + A71753D566CA5BDA4BF18B727FAA5C67 /* localNotifications.md */, + BB828946A49B6FEAB8FB73999205B6A0 /* notificationsEvents.md */, + D356A7A9F6E88F519F68C48AC58E7029 /* react-native-notifications.podspec */, + 64BA0011B0C78B7C1CA671E856C9A559 /* README.md */, + 29F3B76C0EF0EF9795762A690523B285 /* subscription.md */, ); name = Pod; sourceTree = ""; }; - E07A76AA9CB48251A0348E8C1927A79B /* rn-fetch-blob */ = { + E2FC72AA47DB8A8EF8F6903024EA3D94 /* UMFileSystemInterface */ = { isa = PBXGroup; children = ( - 7A853EFEC2EDF5845BF738E8A03490A2 /* IOS7Polyfill.h */, - BE1F41BEBC8C3AF6F2D54276A85B7B0E /* RNFetchBlobConst.h */, - 6D2EC814C1E6B56F2E15D7B2A3949020 /* RNFetchBlobConst.m */, - 332DA0451C9A2BC6F61E6CC609379D26 /* RNFetchBlobFS.h */, - FF6E2E1FF7F6BC264EC46C22E249C437 /* RNFetchBlobFS.m */, - 88321BB6A521C719898D84C70174371E /* RNFetchBlobNetwork.h */, - 0BF0B7B11DC9E6EE4E7DC50E16451765 /* RNFetchBlobNetwork.m */, - 2673987317A153F8A38EF758FE02CA9A /* RNFetchBlobProgress.h */, - 9E58B16CFFD0CB4343BF11B6C61194AA /* RNFetchBlobProgress.m */, - 699E43E07780DEE6C0C97E2C1F711943 /* RNFetchBlobReqBuilder.h */, - 1287010DACE738C9B6D1C77358A23353 /* RNFetchBlobReqBuilder.m */, - 5CD1B6365369EEA9B680CF4D1924340D /* RNFetchBlobRequest.h */, - 29E3E89084221292A1F6A511DED075FF /* RNFetchBlobRequest.m */, - 24395B421E59A42359E14DFF38B3F880 /* Pod */, - 4CDDA4135051A8CA5E13E304CE37C880 /* RNFetchBlob */, - 90F3CCF0364BAB2CB8FF6EA76B2184FF /* Support Files */, + 9E2B8CD84A97A366FCD6F728A31C3CE4 /* UMFilePermissionModuleInterface.h */, + 2FD687F7A3E9231B853C6F9BB2506528 /* UMFileSystemInterface.h */, + 88BDC54124484DC24791C6DFCEDBBF43 /* Pod */, + E5C34FC2AAE4FF05CA9B4A222C1C7A21 /* Support Files */, ); - name = "rn-fetch-blob"; - path = "../../node_modules/rn-fetch-blob"; + name = UMFileSystemInterface; + path = "../../node_modules/unimodules-file-system-interface/ios"; sourceTree = ""; }; - E0B29F138497CE9D51938111CE725064 /* Support Files */ = { + E39FD8676EB82286378081606B0A6A8D /* react-native-slider */ = { isa = PBXGroup; children = ( - 6790B66013DE37DFE05846F3F44CA243 /* react-native-background-timer.xcconfig */, - E61D0DA89EFD795E2B6CBD71FE017407 /* react-native-background-timer-dummy.m */, - 79CB65457B5A9912C3FAF90803E9E420 /* react-native-background-timer-prefix.pch */, + EB8FADF2D99C656B2A39992CC07D3C26 /* RNCSlider.h */, + 3190F6F63102777D0B20446986C48AC0 /* RNCSlider.m */, + 60B2F43322E7CC4D115FE92140100910 /* RNCSliderManager.h */, + 09A01FEB7B8297EBB01FB336C4B31A7F /* RNCSliderManager.m */, + 1858AD2396CA758854000DF829897208 /* Pod */, + 4ACB44402D6A5B0462D05663FFC2BAAF /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-background-timer"; - sourceTree = ""; - }; - E12A3A1AE8038B8294C408A2170E7914 /* RCTSettingsHeaders */ = { - isa = PBXGroup; - children = ( - F841028276DE9C8EB754EEB93EA15CED /* RCTSettingsManager.h */, - 47EC3D6763499448EA190DC4E9EFB455 /* RCTSettingsPlugins.h */, - ); - name = RCTSettingsHeaders; - sourceTree = ""; - }; - E1D36DE5B445C5E5EC43BD573AF4DAE2 /* internal */ = { - isa = PBXGroup; - children = ( - 5241F6B1EC453465B9D3899EC8B1A83E /* experiments.cpp */, - B08E0FD4224D3E61C8C95FFF48F334F7 /* experiments.h */, - 35D642116AC975EFBA8D696B1B7BA767 /* experiments-inl.h */, - ); - name = internal; - path = yoga/internal; - sourceTree = ""; - }; - E216610296C04F8931FDCA395C0BB54F /* Drivers */ = { - isa = PBXGroup; - children = ( - 87F971C373C859EE022A86BD8E262928 /* RCTAnimationDriver.h */, - 692B3C780583B0CD54F2309AB4155ABF /* RCTDecayAnimation.h */, - 3E5F3928F91C4971F0D20F7F89AEA223 /* RCTEventAnimation.h */, - 6A57CC8F5AFFF36AD5FC3BFF71CA40F1 /* RCTFrameAnimation.h */, - DB597466A20F0FC5B06343B7DCCBE233 /* RCTSpringAnimation.h */, - ); - name = Drivers; - path = Libraries/NativeAnimation/Drivers; - sourceTree = ""; - }; - E28E7E65EEA3C53244DDC6D6DA3F1E8F /* Support Files */ = { - isa = PBXGroup; - children = ( - E36E0079D005F8451F01A9B25A8F8D54 /* React-RCTVibration.xcconfig */, - AFDF9C0B02DD6A422B9F94F209D82B2C /* React-RCTVibration-dummy.m */, - C76313739107795E9AE762AFAC05B0AB /* React-RCTVibration-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; - sourceTree = ""; - }; - E2988D9ECAEE97FB90FE385E01180CD5 /* Pod */ = { - isa = PBXGroup; - children = ( - 0E320279B3F311301F678F4DDB06C802 /* React-RCTBlob.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - E3D7451514695927E20A9E000A082310 /* react-native-notifications */ = { - isa = PBXGroup; - children = ( - A94F4E5A120213DFCCBC4CF89D839456 /* RCTConvert+RNNotifications.h */, - 20A6380999E9B0D9DED6EDB034D0FE76 /* RCTConvert+RNNotifications.m */, - 7CA01656599DEAD68E4062D94403CCBD /* RNBridgeModule.h */, - 795E438BF19E4722C92E047A204889FD /* RNBridgeModule.m */, - D66D02A8E19CDDD673763161F8DED12A /* RNCommandsHandler.h */, - 37ECD20A2178106F568877ACDFB4944B /* RNCommandsHandler.m */, - FC9F526B388676BF9A6E4B720D850578 /* RNEventEmitter.h */, - CA3015C34E6DA6E89AE27E0E510E2DC3 /* RNEventEmitter.m */, - 3E90831989E76AA375C7D7AA610075B1 /* RNNotificationCenter.h */, - D505434B9FFC228850ABD4D2DB8B3E8A /* RNNotificationCenter.m */, - 2668059D8F1D39DC60444BE60ECFB05A /* RNNotificationCenterListener.h */, - 84261ADE14135309915CABC032892D89 /* RNNotificationCenterListener.m */, - 3253A25054A815CD6D78C4B3270C0AE8 /* RNNotificationCenterMulticast.h */, - 1B55DFA95AF3D4E90C11136AD780D408 /* RNNotificationCenterMulticast.m */, - 1E68C5478055EF90F971AFD8DA96BB21 /* RNNotificationEventHandler.h */, - CF3B9B48F158E7271EDCB245B43E64D3 /* RNNotificationEventHandler.m */, - 3C04B222BADBF278384BF00FEFC6B141 /* RNNotificationParser.h */, - 41B263499C915410519F6D1081B02DC3 /* RNNotificationParser.m */, - 4EDA136A98B0D1CC8C14B696C3CA3288 /* RNNotifications.h */, - 4AB1EBB47E53C76A8E3693A4D910C045 /* RNNotifications.m */, - BE95B25CC742C1479D59951E1A79870E /* RNNotificationsStore.h */, - C818EB36F01E79DDBCD64734BB197383 /* RNNotificationsStore.m */, - 1B6FE6D4BBBC604D1805CF59A5685007 /* RNNotificationUtils.h */, - 4CD7A9462008C27F5CF0A2FDA1F655E8 /* RNNotificationUtils.m */, - EDEE3C93966A5F017F71513355D2C5CA /* RNPushKit.h */, - 29AEF47D2DDBC9C79C53A60A730C0E32 /* RNPushKit.m */, - 4FFE70B961CBDF7B7F2617C1ADD9EC53 /* RNPushKitEventHandler.h */, - E8D6A4BABB59CC73FA2DA3B0A230C3DE /* RNPushKitEventHandler.m */, - AD21C48C0E69A04B917E8EF1224C8383 /* RNPushKitEventListener.h */, - 91BAF91C77005E5A5BF8EB37B17CB1CC /* RNPushKitEventListener.m */, - 18D577403E2ABE9E63B63E9D89470AFF /* Pod */, - 5F2E577FACAEC47FC4941B7DDE69F0C4 /* Support Files */, - ); - name = "react-native-notifications"; - path = "../../node_modules/react-native-notifications"; + name = "react-native-slider"; + path = "../../node_modules/@react-native-community/slider"; sourceTree = ""; }; E49C0A05DA62BEEB2D9F143654CD0C04 /* YogaKit */ = { @@ -17163,17 +16873,73 @@ path = YogaKit; sourceTree = ""; }; - E57EEB220F986123CCDFABB0319C6E1E /* RefreshControl */ = { + E4D9761352C49BDDDCF1E019B7629188 /* RNFirebase */ = { isa = PBXGroup; children = ( - 654BD82E2D1F44FC0B5EC15518EAADBC /* RCTRefreshableProtocol.h */, - 18FD9E2CBD18D0E5921C04F1483C3BB6 /* RCTRefreshControl.h */, - 6954833138665D07AC2B39F0B5A47B08 /* RCTRefreshControl.m */, - 39446EDAFFBB0FF7075E0DAA4CCB0CC1 /* RCTRefreshControlManager.h */, - C8AC77AFFBFD52A772536E5AE2009BC7 /* RCTRefreshControlManager.m */, + 3FE10C005ADB64B0306F9E69FE080DBB /* RNFirebase.h */, + 1D32B0B459AAE9F44209A8B2B4D7350D /* RNFirebase.m */, + DA8A3EE127539AED404FDA1002228B72 /* RNFirebaseEvents.h */, + 041999B01F33F5728EADE2E9A551CF9B /* RNFirebaseUtil.h */, + 33A0B92651A94B287FDE6B14359D92F7 /* RNFirebaseUtil.m */, + 575672154DAAF25A043C03758C7ACC82 /* admob */, + BD01F6F265EAF44ABC9D9C4EF2AA9527 /* analytics */, + 50C581FD4D8D9DCF06347AE8C8F2ECE8 /* auth */, + D7B4E8B0144AA3183FB8B231B57A7330 /* config */, + 112B87124D6DD86DB98C788B1A15D9D8 /* converters */, + 2BCD39FFC62C1C72493B04CB4BE77F10 /* database */, + 3C5E6BAEAC84F75A9778746E8E78E13A /* fabric */, + FD406D539F70993503632EB7C6FA592B /* firestore */, + EE65B4D0AA6B0373DC94EF18B6FEECFB /* functions */, + FC2007B2E0D345AEFB91F15E753E2B8C /* instanceid */, + 8304FCCCE6BCBB13152C7B49243442D1 /* links */, + 7DEB487513949393BDCD443560AA995E /* messaging */, + 886DEAD4CD6EF8212FA4449DDF2D7D64 /* notifications */, + FC3E6C674406C765F6FD7B111CF7DBCE /* perf */, + 00B176A437B84AD0E5FF29B7160CFAC4 /* Pod */, + 1B3879BDE51988479417A1B4943A6069 /* storage */, + F2A223D05F18CE3A60AE0A64BDE71432 /* Support Files */, ); - name = RefreshControl; - path = RefreshControl; + name = RNFirebase; + path = "../../node_modules/react-native-firebase/ios"; + sourceTree = ""; + }; + E5AA62D88ECD11B81CF4F7FC77E43FE8 /* ReactNativeART */ = { + isa = PBXGroup; + children = ( + 8E738DA767C7CE949F8736ECD117A1FC /* ARTCGFloatArray.h */, + CBBC38F9624D3BDEC7BF597C25BABD18 /* ARTContainer.h */, + 3EAC43B84F9547719B73E62784E57016 /* ARTGroup.h */, + 52C61D7A22F52E9650234D81BBB72159 /* ARTGroup.m */, + 68F052FA093CABB36D1690961D6FAD17 /* ARTNode.h */, + 07C4828CD0AFEB81ABBE1417846D2AAB /* ARTNode.m */, + C019C5E38C06F44F4D7C9B8CA3265E20 /* ARTRenderable.h */, + BCC9E8E36491D208809DBABC0A43343D /* ARTRenderable.m */, + 94B935719C753F605BEFC3442F21321C /* ARTShadow.h */, + 43F70EEC92DC6532FEB97B8FB47495B5 /* ARTShape.h */, + 15C31B504AFEF2F1081FAA0B4C5C45FE /* ARTShape.m */, + A8161AF7903D5BD9636CBDBFD812B802 /* ARTSurfaceView.h */, + 5048C882B6B24ACED251F005937C600C /* ARTSurfaceView.m */, + EEB527A333FF5A4AEF63DF312B770FA7 /* ARTText.h */, + 136C438561B6D5CB3D1286C9153B7C31 /* ARTText.m */, + 02BC12FC7B6F443A4F115B707678242C /* ARTTextFrame.h */, + 4391A5FFBDF8ABD0DBF0BD40A41B7DA8 /* RCTConvert+ART.h */, + DE30E8B82C1AD9F0CD3F2D5D4CD5A950 /* RCTConvert+ART.m */, + 843AB984121E158AFAE94E519F12AFF6 /* Brushes */, + 7CE66DB324C180CD6469517639A4571B /* Pod */, + 1632A3616DC0CFF32A742A24767312F9 /* Support Files */, + C17C119265C79EB985DA81D2CA0DB6D4 /* ViewManagers */, + ); + name = ReactNativeART; + path = "../../node_modules/@react-native-community/art"; + sourceTree = ""; + }; + E5C34FC2AAE4FF05CA9B4A222C1C7A21 /* Support Files */ = { + isa = PBXGroup; + children = ( + 6FA1BE721DD739533ED82AD189404F48 /* UMFileSystemInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; sourceTree = ""; }; E63D645CC0A83B796700091ABBBC125A /* glog */ = { @@ -17197,116 +16963,131 @@ path = glog; sourceTree = ""; }; - E661352C9045B5ACA33A6CE1BAA8C127 /* Inspector */ = { + E6826505C0C84794D1533471916E8641 /* ScrollView */ = { isa = PBXGroup; children = ( - 6FFBCD0B7DE6F43541E299E6CFEBEDEB /* RCTInspector.h */, - 86BEE8A41433AAEDC75A9C8F9334E12C /* RCTInspector.mm */, - 6A3BFC7E5E6C8E6EEA1460CA6496D339 /* RCTInspectorPackagerConnection.h */, - 674E63ABDA8BF6B7033B9F3D41F3CC30 /* RCTInspectorPackagerConnection.m */, + 0BD21030CD3C2076216E327F1F2AB1A2 /* RCTScrollableProtocol.h */, + 73FDEBC4D7AB872C43D0B328CA04F2C4 /* RCTScrollContentShadowView.h */, + D43403F0933FFC1A5067920E9A1085A0 /* RCTScrollContentShadowView.m */, + 0BFB651D0748DF11336DEDB9ED0D4468 /* RCTScrollContentView.h */, + D1D70E1B0FB4018A3A748137894CFA0F /* RCTScrollContentView.m */, + 02C81FEA3987E502AC2FE0D8F1CA6DE2 /* RCTScrollContentViewManager.h */, + 7C654678F23645C68953FBF5656D65B5 /* RCTScrollContentViewManager.m */, + 64E7F1F10D01964468F070DE8D4DF3A6 /* RCTScrollEvent.h */, + 903382244D64A1D81775D162DD79F692 /* RCTScrollEvent.m */, + 8A4DEC464191F28F0E9ADFCAF7A6F699 /* RCTScrollView.h */, + 2B6B94978324A1717A292F62AC242F43 /* RCTScrollView.m */, + CE82D196E79A1F0F729CFA3631A98AF1 /* RCTScrollViewManager.h */, + 65ED8E6D61F888582FD232F2EF962FE9 /* RCTScrollViewManager.m */, ); - name = Inspector; - path = React/Inspector; + name = ScrollView; + path = ScrollView; sourceTree = ""; }; - E7C9447A9074E7B20364261E2C7C7C05 /* RCTLinkingHeaders */ = { + E68A45510D3D2214B0D208BC8E5F233A /* CoreModulesHeaders */ = { isa = PBXGroup; children = ( - CF9248AAEE858B7E3EE90E4F7D2E29D7 /* RCTLinkingManager.h */, - 32D3AAEC3A19B32B24B56FD58AAF3CFB /* RCTLinkingPlugins.h */, + A3EB9FAAF052112714D0C5942EFF1010 /* CoreModulesPlugins.h */, + 42CEC327588106C76B062F4A34140ACC /* RCTAccessibilityManager.h */, + F4D44A24E665E939DDBC6BAB72EAC6BC /* RCTActionSheetManager.h */, + 4045917217D1231943C756B745F1F8E7 /* RCTAlertManager.h */, + 2C5CE9C01B4C47DC2AF69CC5D89C02F9 /* RCTAppearance.h */, + 7C9A64743CE64AB168ABC1325EEA9023 /* RCTAppState.h */, + AD296C57DB3D2B54D892B4F48C13E137 /* RCTAsyncLocalStorage.h */, + DDBB08E3D181710D8A5354CE16AA64E3 /* RCTClipboard.h */, + 8E787D7856136E44A7AEABFC6D199618 /* RCTDeviceInfo.h */, + F71FB544BCBA56AEDEF822FD83066F59 /* RCTDevMenu.h */, + 5D7193CF5CA94828C6A59C143EB401FD /* RCTDevSettings.h */, + 26E2B81D847EE92831E2B4214E2580F8 /* RCTExceptionsManager.h */, + EE149B93DC504931B021DFE29EBC4CF1 /* RCTFPSGraph.h */, + E3289749F213D3A834E919489BE3C09C /* RCTI18nManager.h */, + 86063991790753F559A821BD48B65DF7 /* RCTKeyboardObserver.h */, + 752EBEF4EC71B1AA44A5C0D90110F58E /* RCTLogBox.h */, + 0E07A1EA86C3DEBCE81DC09370DFC974 /* RCTPlatform.h */, + C8D1B31BC5FDE2E2292F2D47E7079016 /* RCTRedBox.h */, + E86A3DEE59098AEA0F18200A1B624959 /* RCTSourceCode.h */, + A40454307D55504010728E2F84CC410A /* RCTStatusBarManager.h */, + B4709D727E040593EF466742C728E8C8 /* RCTTiming.h */, + 96989709EBA4251565F487F8F55924DA /* RCTTVNavigationEventEmitter.h */, + 44F9B6AFD75F2837103BC8793D42A32A /* RCTWebSocketExecutor.h */, + D388AAA7C7F5EDA01A9A47721D674723 /* RCTWebSocketModule.h */, ); - name = RCTLinkingHeaders; + name = CoreModulesHeaders; sourceTree = ""; }; - E8A3C71255DE9484A37D7B2EBA1EC9CC /* Singleline */ = { + E6F7914799F07EF468AF568F9B8008DF /* Support Files */ = { isa = PBXGroup; children = ( - 6DBC5EBC6E2BFB4DFF65BD1AA4B5DADB /* RCTSinglelineTextInputView.m */, - 4B11BFB4326D12F848BD7A8912FA1F14 /* RCTSinglelineTextInputViewManager.m */, - E25C7892696C7C07A200D8F5822EBB70 /* RCTUITextField.m */, + B8CAC0F1215C8A25A9642BA111595AAD /* UMTaskManagerInterface.xcconfig */, ); - name = Singleline; - path = Singleline; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; sourceTree = ""; }; - E9146DFE6DCA2A7FA812788EBEB3D6B1 /* QBImagePickerController */ = { + E72A2C8168FA7019CBF069BDE9C23983 /* Support Files */ = { isa = PBXGroup; children = ( - E75A726D38AFEF0BEBC7E43DC881A636 /* QBAlbumCell.h */, - BF8476CA10BDD78496BF6B5FE11FA585 /* QBAlbumCell.m */, - F399B9AD5BD896AD6C74ED682AA7C653 /* QBAlbumsViewController.h */, - D5AB6C21D7AB113125EDF1CA73380A64 /* QBAlbumsViewController.m */, - 950CFD46F0F8E50BD36073718C8AF851 /* QBAssetCell.h */, - 497E9AEBEF0D663C31A57A11ED059DEB /* QBAssetCell.m */, - B31120ECF4100E36158AEE0982AD2906 /* QBAssetsViewController.h */, - 8260B0F23481C9CD023F0941B574C39D /* QBAssetsViewController.m */, - B4BBABE66C8774602DBF6B4F7D49B876 /* QBCheckmarkView.h */, - DAC4DE851CC31B2CEA097900F722DBE2 /* QBCheckmarkView.m */, - A28827BF9180CFBAEE15B996E90B6370 /* QBImagePickerController.h */, - 64383462462BC346BA81FDCE07437F49 /* QBImagePickerController.m */, - 2C74A1CB781F3A9CA9D729DAD82BE6CD /* QBSlomoIconView.h */, - 8223153CA67171EE8985EB32DB277F5B /* QBSlomoIconView.m */, - 9A083A0A26F9BDF36FE634C9868B7C02 /* QBVideoIconView.h */, - E0355B86395EC51BEAE33CDA925E34F2 /* QBVideoIconView.m */, - 44D591BAAD65EC439B6F1A7304E89BD4 /* QBVideoIndicatorView.h */, - F30AF17564906D1A6005AFC0ABF10B35 /* QBVideoIndicatorView.m */, - C6971C22A33973130D1A193595C515AE /* Resources */, + 23920DCA27BEDAE8BD8AAC64F3753841 /* React-RCTVibration.xcconfig */, + 94AF4CF0A65C8AB152607484CCCA5A2C /* React-RCTVibration-dummy.m */, + E69C5BF678C8C6208B7F3FABB874E845 /* React-RCTVibration-prefix.pch */, ); - name = QBImagePickerController; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; sourceTree = ""; }; - E9CA97DE5AB07581D7ECE3BFE8528991 /* Modules */ = { + E8D0130BEEBD865783E051DCCB3D91BB /* React-cxxreact */ = { isa = PBXGroup; children = ( - A068C60548B3929A9BBDE30C56222B1A /* RCTEventEmitter.h */, - E3247465BCC6955B408BFF4EC092D33D /* RCTEventEmitter.m */, - C062C81E288BE7F7C964C37229959E1F /* RCTI18nUtil.h */, - 8761C23869921628249F9F2A1491B422 /* RCTI18nUtil.m */, - FB68E0127B353641B19807A9875D913C /* RCTLayoutAnimation.h */, - CF4C8905C8FDE1862761861AABE7F880 /* RCTLayoutAnimation.m */, - 6A4C36C1AC8ECB65B803B2BC396193E8 /* RCTLayoutAnimationGroup.h */, - 8E68EB32E11F89353AF2156EF1A22C38 /* RCTLayoutAnimationGroup.m */, - 0841B0DCBAE83C09DAADCF0C30099F81 /* RCTRedBoxExtraDataViewController.h */, - F328C8DCCC1F139440AF2C1AFCEA66CA /* RCTRedBoxExtraDataViewController.m */, - 9C6D08ED23005FE63E709D7D5FDFBF69 /* RCTSurfacePresenterStub.h */, - 76C453A0922214A7FEBB03A02B38B6B5 /* RCTSurfacePresenterStub.m */, - D28287FD55284D13DCF366850B6C6B3A /* RCTUIManager.h */, - DCC97EC97FBD04FF4EFA55A517103EF6 /* RCTUIManager.m */, - D53828826E4AC107E693903B244C7418 /* RCTUIManagerObserverCoordinator.h */, - E6D3A5A64B6A649599713F3ED1785CBE /* RCTUIManagerObserverCoordinator.mm */, - FD2FC124BB9B7CBC155CA9E0A2447336 /* RCTUIManagerUtils.h */, - BF32DA60165813B0B946ADA23D419902 /* RCTUIManagerUtils.m */, + D466A4F271A3AC7DCC2FF8D781077753 /* CxxModule.h */, + 276C646216FB007F4DA63A5EA1E23167 /* CxxNativeModule.cpp */, + 03C971251727F36F630D77196BF3442A /* CxxNativeModule.h */, + 61227F156D2BAF36E0807BBD1DBC487C /* Instance.cpp */, + 0C4E83823B124CE4BEA4F71B475706AD /* Instance.h */, + 2E7E8B77C5E49902748BAC6FD806AE7F /* JsArgumentHelpers.h */, + 5A3E41456E3005A4422ADF8711F097AF /* JsArgumentHelpers-inl.h */, + C0270F97695905D849A9C64C389F5E31 /* JSBigString.cpp */, + 85684341D05B09C596F5F3B29156D604 /* JSBigString.h */, + 6E498CD5CA0351C79B920D298531B9D9 /* JSBundleType.cpp */, + 43172E33D97ACB9262B3896A1C8EEA25 /* JSBundleType.h */, + 6B26DEFDF2E6A80D97F00BBDFE7FF911 /* JSDeltaBundleClient.cpp */, + F315CF8B919693216DB3F453348507C8 /* JSDeltaBundleClient.h */, + 8ABCD543DFDA4EF993833E21A010BD22 /* JSExecutor.cpp */, + 025E0CDFD18867BDA9A8DB9B3184A6C1 /* JSExecutor.h */, + 9F28B4595538423795CA3120E3354615 /* JSIndexedRAMBundle.cpp */, + 53126359D02D735A3E1AC5815EF5ACB5 /* JSIndexedRAMBundle.h */, + 4152E8E084F479AC464AB66097CCDDFD /* JSModulesUnbundle.h */, + A6635C4C480B1A9D8C117CA1FCC87D13 /* MessageQueueThread.h */, + 287C8A93C301A3B7B63F622356930F97 /* MethodCall.cpp */, + 3DBF61F838B1097FD62D7591FEB07A99 /* MethodCall.h */, + 12CD988AB5526B4808905AE557BF0F4D /* ModuleRegistry.cpp */, + 631EE7042AECD78F7ADF02C610C56469 /* ModuleRegistry.h */, + 0553A531F07D4AE16DD483083B42D7A9 /* NativeModule.h */, + 4FFCF1FC0664854C3FB32F39781917B1 /* NativeToJsBridge.cpp */, + B1897F8260B9D094F9D17905153180F8 /* NativeToJsBridge.h */, + 84B6CA5103C86DFBDF45453A429A0B28 /* RAMBundleRegistry.cpp */, + 90B17DBDA0609D754ECFFCA38F7E5BDD /* RAMBundleRegistry.h */, + 4712A829EE1ADFA4F46D1872DA3A3A90 /* ReactMarker.cpp */, + 8F3A9328D29018CCFA541797D682CE25 /* ReactMarker.h */, + 5EEBBF2B34ED0914BFAEA5DEDD08585C /* RecoverableError.h */, + DAAFD3BEED2FCC9A7E213213A3D52304 /* SharedProxyCxxModule.h */, + 65AF201D1A2210CCBBA39FB03570C461 /* SystraceSection.h */, + 331FB15FFDC76C6F4701C2909CFFE04D /* Pod */, + 6B0CAB366CC3BD5C6ED31F3A127D4025 /* Support Files */, ); - name = Modules; - path = React/Modules; + name = "React-cxxreact"; + path = "../../node_modules/react-native/ReactCommon/cxxreact"; sourceTree = ""; }; - E9EAC3DDFAB1D4C1175CE6027CD54248 /* Pod */ = { + E938CDBCF16E85D6BEAFE779B120AD56 /* Pod */ = { isa = PBXGroup; children = ( - 65344F96C3253F34D11A8BE7E8C06D2D /* UMFaceDetectorInterface.podspec */, + 0C1D0B760CCF24755B2727D31B9EDCE0 /* LICENSE */, + F420C626CAFF3E6735E6F77B8167E9C5 /* README.md */, + E5230453CA59337317E8DD208589185E /* RNImageCropPicker.podspec */, ); name = Pod; sourceTree = ""; }; - EB933F5A080E1259BECB4DD8BB491FAC /* Pod */ = { - isa = PBXGroup; - children = ( - 3E4D592C2AF43FA97F8D82ABED2664A3 /* React-RCTLinking.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - EC03EE93CDC52F337E2B2141EAE4B303 /* React */ = { - isa = PBXGroup; - children = ( - 8C210E60FFE17AC14E4D8AC561DC65FD /* Pod */, - 4DCF3844FD4CE93DF8A01B1AEC2F04FC /* Support Files */, - ); - name = React; - path = "../../node_modules/react-native"; - sourceTree = ""; - }; ECD0922592F9E143FAB024BCFD8A027C /* Support Files */ = { isa = PBXGroup; children = ( @@ -17320,111 +17101,211 @@ path = "../Target Support Files/YogaKit"; sourceTree = ""; }; - EE59B10A87112CE90DC474A3DA182FFA /* bugsnag-cocoa */ = { + ED39A00065888605FC9737FD399E8FEB /* Support Files */ = { isa = PBXGroup; children = ( - 8ABE44A8BA2A2D294A46134B09438F07 /* Source */, - ); - name = "bugsnag-cocoa"; - path = "bugsnag-cocoa"; - sourceTree = ""; - }; - EE6C1578FB912C3074D0E3A7355915EF /* Pod */ = { - isa = PBXGroup; - children = ( - F655D6B7595A5C60A15A421084FFE186 /* React-jsi.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - F185B45379A02D00A0722D94E8CA4846 /* RNScreens */ = { - isa = PBXGroup; - children = ( - 25DD3BD753CD74DB2E3C40564A14E7D5 /* RNSScreen.h */, - 1F91CF2E77582F31F5D3AFC2BEB8F4A3 /* RNSScreen.m */, - F8FFFBE4222FE774F650412487F4845C /* RNSScreenContainer.h */, - 44A34EF8A3DF63476DA59F2D53176758 /* RNSScreenContainer.m */, - BCC4FCA814ED1A0EB6FD44AC80CFB537 /* RNSScreenStack.h */, - F20181471778C07CFADEE98BA8D45FDC /* RNSScreenStack.m */, - 23770BBC56FF093593705E2DF83EAF1E /* RNSScreenStackHeaderConfig.h */, - 09B325A9595679D5E72539CD1ADB40FC /* RNSScreenStackHeaderConfig.m */, - C15DB4F384D71C4610154A9C4FFF60CE /* Pod */, - 60FAA5274D0CFB9A9C7958AD337B5B43 /* Support Files */, - ); - name = RNScreens; - path = "../../node_modules/react-native-screens"; - sourceTree = ""; - }; - F18E9C5D3FDEE3E0E34B84EC806C612E /* Pod */ = { - isa = PBXGroup; - children = ( - 628A837DBD480E99C79F62E2F09F92DE /* React-cxxreact.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - F2C56EF63B80DB12D27DBCE82EE8F424 /* platform */ = { - isa = PBXGroup; - children = ( - 8E825D1787A03DC60D026ED5E475B181 /* ios */, - ); - name = platform; - path = turbomodule/core/platform; - sourceTree = ""; - }; - F2D6561EFC6ACF63F93471C163C26253 /* Pod */ = { - isa = PBXGroup; - children = ( - 2EB385FF646BC1607B6A982D874C1AD3 /* UMImageLoaderInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - F2F52E0655E0013AA440234B03F1C587 /* Pod */ = { - isa = PBXGroup; - children = ( - 6686EA9CE579D887304C1A93CCB0B8F0 /* UMFontInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - F3337BD4703A9F2A4645B1948EACE318 /* Pod */ = { - isa = PBXGroup; - children = ( - 9B27C54D93CA023C0958039F32F6AEDD /* React-jsinspector.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - F334F3BD628C0C35029B400E9FDD3025 /* RawText */ = { - isa = PBXGroup; - children = ( - F860760280FC4E58205ACB717DCAEF1F /* RCTRawTextShadowView.m */, - F8CE013B9C53E37CCC0233A7D43F027B /* RCTRawTextViewManager.m */, - ); - name = RawText; - path = RawText; - sourceTree = ""; - }; - F37E21D8FD6D2D88A8B16A5F8ED14993 /* event */ = { - isa = PBXGroup; - children = ( - 8674838230E26E5E95763F4CF0FB79F0 /* event.cpp */, - 9640473061AFF5CE841BEAFA0AAA690C /* event.h */, - ); - name = event; - path = yoga/event; - sourceTree = ""; - }; - F43A0B0436D4ABA89BEA98DE90707A24 /* Support Files */ = { - isa = PBXGroup; - children = ( - C428ED2EF4E3284A25BE7C348B0CEEFE /* React-jsinspector.xcconfig */, - 2DE2311C8B2580FDCA375908C56C7D36 /* React-jsinspector-dummy.m */, - 436E2826F32B431657C2556FA61074FF /* React-jsinspector-prefix.pch */, + 87652A5B57CFCE1AE72BF7CAE1484B6F /* react-native-background-timer.xcconfig */, + 4D11220ABDB67C6C08B65828ED1B9A50 /* react-native-background-timer-dummy.m */, + BF0174832FA170F6A181A9B8FD01957F /* react-native-background-timer-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; + path = "../../ios/Pods/Target Support Files/react-native-background-timer"; + sourceTree = ""; + }; + EE65B4D0AA6B0373DC94EF18B6FEECFB /* functions */ = { + isa = PBXGroup; + children = ( + 22FAF742CB5CC4C9D7C3DC50F3094EAB /* RNFirebaseFunctions.h */, + 852FE4D4C630CDD04A0F67358C135738 /* RNFirebaseFunctions.m */, + ); + name = functions; + path = RNFirebase/functions; + sourceTree = ""; + }; + EF101346827132AEE9E75EAF863FBD9C /* Base */ = { + isa = PBXGroup; + children = ( + 8115FE918D09220F2DE70FDF0B87A2E1 /* RCTAssert.h */, + A3FC3367489FCDCEAAFAC08B10599EC1 /* RCTAssert.m */, + 2E72E9D52F37CD871C6EFA0C46E5899D /* RCTBridge.h */, + ABF3E02DF86394EF28191B22D5FB3F12 /* RCTBridge.m */, + 8B6A582F34B9B493FF15016EE89BE48F /* RCTBridge+Private.h */, + 80448D56DD2B463BCDBFBB3E5763237E /* RCTBridgeDelegate.h */, + F3A0A2FEF9B77CEC928875C842D41586 /* RCTBridgeMethod.h */, + 2B816DA2D6F8861904EA446D74DFF951 /* RCTBridgeModule.h */, + 3B71A920C29887C22EF38F089AC74AC3 /* RCTBundleURLProvider.h */, + DF22B26A42CCFCCA352128CBD25F0A45 /* RCTBundleURLProvider.m */, + AEF51B0C250F3801E5F3D379897E6638 /* RCTComponentEvent.h */, + 6D4954EAB8F90824EDE56AB510D5EE73 /* RCTComponentEvent.m */, + 0A0CD1151988E642F6763E1E0FEBC062 /* RCTConstants.h */, + 1701BB16E424CF991A1E406CC52B285A /* RCTConstants.m */, + E75FF60B158B1B011137F71422617F65 /* RCTConvert.h */, + FF797AFF7642211A0E1F523358E1D58F /* RCTConvert.m */, + 6C5289DEFC56ED39BD71D8EC5B4C8A94 /* RCTCxxConvert.h */, + C04CAF1C9D2A557190D23C05A5E1215A /* RCTCxxConvert.m */, + 16086B523FED7F06189654E0468CA934 /* RCTDefines.h */, + B20198EFA4160D60463C44CAC66050AB /* RCTDisplayLink.h */, + 6A450AD5397BFD2E0D6FDB4F0F6450FE /* RCTDisplayLink.m */, + FE2D90C34D9C0A9A6644DEAEDC0436CB /* RCTErrorCustomizer.h */, + 9B1F98A9F2248FB8361C4DE18FFAF51F /* RCTErrorInfo.h */, + 326D36A3C74DC68345558AC3A851ADC9 /* RCTErrorInfo.m */, + 04368F41390E638813991BAD65E58B7B /* RCTEventDispatcher.h */, + 95549270A926FC4112B9DB87B1B81B07 /* RCTEventDispatcher.m */, + 63CC07745CC112A9D0FD8C382B2E4996 /* RCTFrameUpdate.h */, + A20E0FF6E32A8014393A252BE69DCB70 /* RCTFrameUpdate.m */, + 0ACC86BFC387731739DC830B7201E00D /* RCTImageSource.h */, + 5153E4056ECE5A55050793F2F68FFE44 /* RCTImageSource.m */, + D6C4E57C2A32AB291E71C5C57F0003C6 /* RCTInvalidating.h */, + 0A3B08539A1E5B0286CB3F069942B8C7 /* RCTJavaScriptExecutor.h */, + 8F5772719D832396BF64A57BE9B84093 /* RCTJavaScriptLoader.h */, + AC06E8BB8CABAFF99B9F61176E5F56DA /* RCTJavaScriptLoader.mm */, + 85402553C855BA51F1055005117A39FF /* RCTJSStackFrame.h */, + 91D62D79BF728D7D47458B94EDD49343 /* RCTJSStackFrame.m */, + CFF32CC3D0FB184C73F3C51E065F5D86 /* RCTKeyCommands.h */, + 03D7B85BCC7288374F354DCD44FC86E9 /* RCTKeyCommands.m */, + 033AEAAFCE60615AF48A038283404C6B /* RCTLog.h */, + BF7626FC6716B8FFD496BE502D49929E /* RCTLog.mm */, + 67F39C23F14E1B6B3DD1CDCE99A24B17 /* RCTManagedPointer.h */, + 3121408745595749887D41BA8C1D4AB2 /* RCTManagedPointer.mm */, + 4D38B1CF0BD847B29727942342B11073 /* RCTModuleData.h */, + 24A7EE7C1875E720E6FD85B5EEE4C368 /* RCTModuleData.mm */, + 1DD31C9CD7C36C6C05AA5884262620D1 /* RCTModuleMethod.h */, + 4E79E7C4475819BE6183F64D6F78755E /* RCTModuleMethod.mm */, + B618191C488469517862C07BD8B81C74 /* RCTMultipartDataTask.h */, + 828FBD145761D75B0E31ABC077DB5116 /* RCTMultipartDataTask.m */, + C90E0C7B1D9E78D0B532D1E356CCD82E /* RCTMultipartStreamReader.h */, + 33663800333B2DE3B96EF0EC3C8A7306 /* RCTMultipartStreamReader.m */, + 9FDF17D3E268D3800790669D4706ECD0 /* RCTNullability.h */, + 3BA5BEBF5EA5AEAF9C55ADFDF12357EB /* RCTParserUtils.h */, + 78292FDA999C9C32726C8A5E4C3A1CE8 /* RCTParserUtils.m */, + 5BED72909D9D39B0BB048E44A539BCCF /* RCTPerformanceLogger.h */, + 7EEF847DAF7DFCB10B8D9F2F6AD2C9AB /* RCTPerformanceLogger.m */, + 5C2D2383D87C2AA4BF53D7569872A92E /* RCTRedBoxSetEnabled.h */, + B6650A0AD796D6E7B79B515E7D756EF7 /* RCTRedBoxSetEnabled.m */, + 708760842867F929E52FEE8EF9CB114F /* RCTReloadCommand.h */, + D1C1E335ECAE091937087AEF551B8518 /* RCTReloadCommand.m */, + EA772201825DCD0D0BD240A7017BAF9F /* RCTRootContentView.h */, + 35D65F11FB88FBD45804F6317971486A /* RCTRootContentView.m */, + 36CBBA01812843981C3B21BD724C267F /* RCTRootView.h */, + B71CC676F795E509843A7A323A901A01 /* RCTRootView.m */, + 6C01B0B04ED5559FDBFB6896F2E1CD1B /* RCTRootViewDelegate.h */, + EB0503C4040CB6D5AB321E65307863ED /* RCTRootViewInternal.h */, + 3DC4C8830B7C0D76E6F9DEF1FE64BC05 /* RCTTouchEvent.h */, + 6C64BF2A1D2437CA52AEE039EF8792AA /* RCTTouchEvent.m */, + C0A3B1DB40C9E348BFB3FE22BA06305C /* RCTTouchHandler.h */, + 41949BFA1C03419EA1DBC94919B131BF /* RCTTouchHandler.m */, + 085AB487C8EB644BA63C60DAF68D9AC4 /* RCTURLRequestDelegate.h */, + 2151AAB814BA4694A87F13FCB2CE314C /* RCTURLRequestHandler.h */, + 52D70E6A6AE650734FECF0BA7B5B3005 /* RCTUtils.h */, + 389456A7DF76B1A6643347A601988A77 /* RCTUtils.m */, + 811549BA5884DCB69CBD81DD7841462B /* RCTUtilsUIOverride.h */, + B8236816F9EF6C835ADEF7EBD8A51FEE /* RCTUtilsUIOverride.m */, + E38BAD38A31B5ED29F98169234AC11AF /* RCTVersion.h */, + 495A5EEC39F246A0D653BAFDC490350C /* RCTVersion.m */, + 5050A1FCDE105C0CA29E4FD8D2768331 /* RCTWeakProxy.h */, + 920FAF2B438559869A6D0190293E50AC /* RCTWeakProxy.m */, + DAF4DBD0285BD09916D0C072B983EA9F /* Surface */, + ); + name = Base; + path = React/Base; + sourceTree = ""; + }; + F020484A4D965B457F3A9894F1533253 /* Pod */ = { + isa = PBXGroup; + children = ( + 03EFB66160C26CFADD86A2D0EF4170B2 /* LICENSE */, + 87B71FD51EA1572EA6A630BDD7648867 /* ReactNativeKeyboardTrackingView.podspec */, + 58B93084D8745E5D0FB2F92B61D24F47 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + F0D24934AB932CFE3017CF97EC12DCD7 /* Pod */ = { + isa = PBXGroup; + children = ( + F8D8807D2F9F38A8B1D0137B955713B0 /* React-RCTVibration.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + F10C7E5318941DCA2B337E21F2877404 /* Support Files */ = { + isa = PBXGroup; + children = ( + 0CBE6A03E32FC26465FCF0F3AF1DFDEB /* FBReactNativeSpec.xcconfig */, + 60858CE18B6F41A28DF33F05A605755F /* FBReactNativeSpec-dummy.m */, + DB4C55ACA9CBDCF6D9EC77EA48215B9D /* FBReactNativeSpec-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; + sourceTree = ""; + }; + F235A942234865F3EF20F2D0B41AD9D0 /* Services */ = { + isa = PBXGroup; + children = ( + 5E7CB605C99232859478956B9F5666B1 /* UMReactFontManager.h */, + C5F49D1EC24C9C8AD979AEF0E0EFFCA9 /* UMReactFontManager.m */, + 12D61B0E0EB973297C194764B16CFAC9 /* UMReactLogHandler.h */, + 3472323B1AEFB0C13EE49F7103F6F7E0 /* UMReactLogHandler.m */, + BB81AFF45CB95797F486992B1E8100EA /* UMReactNativeAdapter.h */, + B97BDA6F53DC963FFDAB0486599E7CE5 /* UMReactNativeAdapter.m */, + 5D2517773353E46D53822F93FCD03A52 /* UMReactNativeEventEmitter.h */, + 567A0387E0B73D92544B9B6AE5BD82B3 /* UMReactNativeEventEmitter.m */, + ); + name = Services; + path = UMReactNativeAdapter/Services; + sourceTree = ""; + }; + F2A223D05F18CE3A60AE0A64BDE71432 /* Support Files */ = { + isa = PBXGroup; + children = ( + 2EA97B926A768539C6BAA099C794686B /* RNFirebase.xcconfig */, + 7C618878BFD5F90425C57D631F36882B /* RNFirebase-dummy.m */, + DA3AA52165A726BA9E523EDA3D56A8F6 /* RNFirebase-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNFirebase"; + sourceTree = ""; + }; + F2C96C477D8226F4791C9F63C3A28860 /* Pod */ = { + isa = PBXGroup; + children = ( + F39A5404AA239D0E75CB950CF411FE80 /* LICENSE */, + F5389A68C398F18674C3B6301B3D9BE9 /* README.md */, + 82534E17B8C568B7A4B034494BFCFCDA /* RNFastImage.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + F328997D35C107D877CD77AF7AE95930 /* turbomodule */ = { + isa = PBXGroup; + children = ( + 4A3EF155D81E1A88F1BB2F484ECAD67B /* core */, + ); + name = turbomodule; + sourceTree = ""; + }; + F381048309BA1C1901E7EF2C9EEDB38E /* react-native-webview */ = { + isa = PBXGroup; + children = ( + 813969899FF7A97B2580ECA23BEF72A2 /* RNCWebView.h */, + 564AA92D57D9228644E3BE9F170936B2 /* RNCWebView.m */, + 2A825626709AF13F75D065EFCC2E9178 /* RNCWebViewManager.h */, + 57339AC3E4854CA0132274F301561DC6 /* RNCWebViewManager.m */, + DE47BFDAFC0E663561F7E81427C0C6FD /* RNCWKProcessPoolManager.h */, + E282F321953E292EEE8FEE03D7E56028 /* RNCWKProcessPoolManager.m */, + 834362F1E8D1719B6D969EE019EFAFEE /* Pod */, + 7F2C4C41C3FC2FECB5F6E4E3750C45D1 /* Support Files */, + ); + name = "react-native-webview"; + path = "../../node_modules/react-native-webview"; + sourceTree = ""; + }; + F444A175FD45C81AC68FA64C4A9C5211 /* Pod */ = { + isa = PBXGroup; + children = ( + 3128C28642D3ACDF91F0A1B18869FF79 /* Yoga.podspec */, + ); + name = Pod; sourceTree = ""; }; F4D615014D307CD94C9909174108B919 /* Support Files */ = { @@ -17437,112 +17318,323 @@ path = "../Target Support Files/GoogleDataTransportCCTSupport"; sourceTree = ""; }; - F4E51F4BE8CADB9EA880D18457D26138 /* UMModuleRegistry */ = { + F4F451FE4EC5499630858AEFD9F886B9 /* UMModuleRegistry */ = { isa = PBXGroup; children = ( - B3AAB5138A7F354A051FCBC5DE02A06A /* UMModuleRegistry.h */, - 18EA6B6BFB191F4006C3102D8E1E7B45 /* UMModuleRegistry.m */, - 3402802DDA99A7E5C6EEC15699A7B8F0 /* UMModuleRegistryDelegate.h */, + FC60657ABF083F4E205C72EFD4A89ED6 /* UMModuleRegistry.h */, + 9DDEACF6D9F9C551705FE0806A63C8A8 /* UMModuleRegistry.m */, + B9FEEC4F1C841ACAA260B57643E7C1DC /* UMModuleRegistryDelegate.h */, ); name = UMModuleRegistry; path = UMCore/UMModuleRegistry; sourceTree = ""; }; - F6037AE587740A1D54487525AEE497E0 /* Pod */ = { + F54F8A9C7509943B758510D02EB572D7 /* Support Files */ = { isa = PBXGroup; children = ( - 0B0A24DE9F10C66203FFC2F813929497 /* LICENSE */, - B26F94F4AA80C9973CABFF08A3570CAA /* README.md */, - 04CDD11E2851BA524D515400C91BF246 /* rn-extensions-share.podspec */, + AC7AD2E3DC6B86D1E8C1603D810A6621 /* EXKeepAwake.xcconfig */, + E9102DC33F063D111268F43954462C5F /* EXKeepAwake-dummy.m */, + C80F0E598D55849543372327E7C3B29C /* EXKeepAwake-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXKeepAwake"; + sourceTree = ""; + }; + F5517A089DAB12A29DF2BAF32329221A /* Pod */ = { + isa = PBXGroup; + children = ( + 4DD8F5BBEF8845E9E86F103F6C46EAEB /* React-RCTSettings.podspec */, ); name = Pod; sourceTree = ""; }; - F7621C8D6925471357864034BECB6C63 /* KSCrash */ = { + F5BA84817B455B52937635C1AF266E45 /* UMCameraInterface */ = { isa = PBXGroup; children = ( - 36B1FEAAB627597BA59F1C5BBA467E50 /* Source */, + 3C414E485D7D4519F47F6D97898A8A82 /* UMCameraInterface.h */, + 00A079864AD33771F2A53BCE5E0B145F /* Pod */, + 317BE13528C9A8D44F3F0482124D3ABA /* Support Files */, ); - name = KSCrash; - path = KSCrash; + name = UMCameraInterface; + path = "../../node_modules/unimodules-camera-interface/ios"; sourceTree = ""; }; - F800671DBE74B243992B1C53FA601798 /* Drivers */ = { + F5E16C2C6E06593544B52720DB25D207 /* Inspector */ = { isa = PBXGroup; children = ( - 6641C46BF58C0584E90F4ED8952CAB43 /* RCTDecayAnimation.m */, - 6400F14B0985BAF839D98DDF669659C3 /* RCTEventAnimation.m */, - 9FA89CBEC2D3F43DE735B1B41BF1E577 /* RCTFrameAnimation.m */, - AD6688EC2CE33D6B45E08DE00102B8DA /* RCTSpringAnimation.m */, + 517ABDB6A1D22F90BC800E73D1E05B81 /* RCTInspector.h */, + 89720CB68A82B2FF5B98EE4FA09BF861 /* RCTInspector.mm */, + FC6F87B7F612DF3143D29D6AE4896240 /* RCTInspectorPackagerConnection.h */, + 0A3AF7F862CC74712717A4D37F702C87 /* RCTInspectorPackagerConnection.m */, ); - name = Drivers; - path = Drivers; + name = Inspector; + path = React/Inspector; sourceTree = ""; }; - FBBD719C04FBC9C863E20BF262EF0910 /* react-native-jitsi-meet */ = { + F5EA1132D12EBE0D44C88A50126916F9 /* UMBarCodeScannerInterface */ = { isa = PBXGroup; children = ( - 6E761FABBF5226B09C636381833E9B22 /* RNJitsiMeetView.h */, - 2EBF213AD28C0D37DA0C69E3D7234ED9 /* RNJitsiMeetView.m */, - 4C380B27939E20F7DE2BD841434C5E74 /* RNJitsiMeetViewManager.h */, - 965334195410C45ED40C12C361B2EBB7 /* RNJitsiMeetViewManager.m */, - B826859F05C845D2468817987029A687 /* Pod */, - 1BF64DFE79FC198AAD112732DFEEE4D2 /* Support Files */, + EC8C4041B73C5CB3A45BA4332D46F52A /* UMBarCodeScannerInterface.h */, + A013810CEF6D83C459DDA3977033960D /* UMBarCodeScannerProviderInterface.h */, + 4B0E585FE0E1E6F4CE16345AA3F74056 /* Pod */, + F7105646CA276323D0626FCD34A9F27B /* Support Files */, ); - name = "react-native-jitsi-meet"; - path = "../../node_modules/react-native-jitsi-meet"; + name = UMBarCodeScannerInterface; + path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; sourceTree = ""; }; - FBFEC2C3260DCD636BDF920375CD21AB /* Pod */ = { + F6FE39A766D890F4EABCFF0EAEDC4CB0 /* rn-extensions-share */ = { isa = PBXGroup; children = ( - 72F85FE6B7A3576DA1307366EC84716E /* README.md */, - 4CBCE895F8E553C0130CFBD89AD27A1A /* RNRootView.podspec */, + E0AD1427763970DC8ED1AC36E05D631A /* ReactNativeShareExtension.h */, + 54D49797DB034BD9AFCF33501341C011 /* ReactNativeShareExtension.m */, + 05BE414C0768A61070674D2FE684EF11 /* Pod */, + 23C007FAAC3BF44C6DCDF0FA37F53CBF /* Support Files */, + ); + name = "rn-extensions-share"; + path = "../../node_modules/rn-extensions-share"; + sourceTree = ""; + }; + F7105646CA276323D0626FCD34A9F27B /* Support Files */ = { + isa = PBXGroup; + children = ( + 761EAF3FCA2645F60BC33C873CD2F36A /* UMBarCodeScannerInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; + sourceTree = ""; + }; + F715E9434EC6EF1E33CA6D85BD7F95C6 /* Pod */ = { + isa = PBXGroup; + children = ( + 3780662E1E04FF442BC6E58B98F204FF /* UMTaskManagerInterface.podspec */, ); name = Pod; sourceTree = ""; }; - FCA5D81760A251D78F709180B689A757 /* UMAppLoader */ = { + F7A3EE7BE439217096ED1A8E4053E51B /* Pod */ = { isa = PBXGroup; children = ( - 5C9213CB9BA11B93640DB8311E10DCB0 /* UMAppLoaderProvider.h */, - 3A724A619FAA448EC4AEE88396B3CCE1 /* UMAppLoaderProvider.m */, - B9C5D90447859DDD6A5342394CF94577 /* Interfaces */, - AF2C407F339A947475D8ADDF13CC129E /* Pod */, - 9845326DFAE7D6A44CFE45D706DFF6F3 /* Support Files */, - ); - name = UMAppLoader; - path = "../../node_modules/unimodules-app-loader/ios"; - sourceTree = ""; - }; - FD7910AB663ED853AA4CD970F42AE0FB /* Pod */ = { - isa = PBXGroup; - children = ( - 90BC77683308DA62A6B096858082B1AD /* LICENCE */, - 442F20D680362A19BEE6E307E407F4DF /* react-native-cameraroll.podspec */, - 0EDFC6E8E64DE90936068C27466892BF /* README.md */, + 703A7C3217E38DACDBE6920B34456205 /* UMReactNativeAdapter.podspec */, ); name = Pod; sourceTree = ""; }; - FE7BEEAD50442F771B5CBBF80BE8058A /* EXFileSystem */ = { + F7ACBD2E52F57141CB0F91C7B25449FF /* Support Files */ = { isa = PBXGroup; children = ( - 29B0E2ADD93FF665A396F2BBD086349C /* EXDownloadDelegate.h */, - 62F5DA0068164F0A41F4AEB61BF8D8A3 /* EXDownloadDelegate.m */, - D494C8BC75A68D579762CB0BB903EB1D /* EXFilePermissionModule.h */, - 9816BD7EC824AFD30066D0241E412B38 /* EXFilePermissionModule.m */, - 63761C28DFE094BC78D2A70C600EE1BA /* EXFileSystem.h */, - 5D9C142FA045994E18AF7EB623943D58 /* EXFileSystem.m */, - 9E43BFBCC1924828AFD25D36B713CBF0 /* EXFileSystemAssetLibraryHandler.h */, - 6E6E0F10C86207CB38336C65B85A89C5 /* EXFileSystemAssetLibraryHandler.m */, - BF533A7F650FB87F22D890DE1ECAF559 /* EXFileSystemLocalFileHandler.h */, - 0ECAA28A148DEBDCEADACA33912091EB /* EXFileSystemLocalFileHandler.m */, - 5DF30D12C08D644CF416FE8F8251EF9F /* Pod */, - 7BF1C6A62D7279E8352F855487BBC4A4 /* Support Files */, + 9EFD597556152014E460AB59EA35433F /* EXImageLoader.xcconfig */, + 14DB85DA281E7406A95457602CC430B7 /* EXImageLoader-dummy.m */, + E099E92E0B7F38EA63EE0169305F4CF8 /* EXImageLoader-prefix.pch */, ); - name = EXFileSystem; - path = "../../node_modules/expo-file-system/ios"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXImageLoader"; + sourceTree = ""; + }; + F83F66880ABE8AF483C777FA6360A013 /* Support Files */ = { + isa = PBXGroup; + children = ( + 3E35514A3865F337BAB34807B357E24B /* RNRootView.xcconfig */, + 9D82889CC21A3DDC1621A270CDF87004 /* RNRootView-dummy.m */, + 110E77A6AB839639D0BB6E6E11CA239A /* RNRootView-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNRootView"; + sourceTree = ""; + }; + FA020F1D7148238F70324A38FC757611 /* BaseText */ = { + isa = PBXGroup; + children = ( + 969B6F69D32F2EB84CFA0A410BDA47DF /* RCTBaseTextShadowView.h */, + F31B10DD59C3075F35A0B2716A3B6DFB /* RCTBaseTextViewManager.h */, + ); + name = BaseText; + path = Libraries/Text/BaseText; + sourceTree = ""; + }; + FA7EAECB9AC9BF29E6D0E9D29F1CC228 /* RNFetchBlob */ = { + isa = PBXGroup; + children = ( + 8794386314BC0C939B3CB5F62BEF3F43 /* RNFetchBlob.h */, + 54F82C1E638911B9626F6A00BAF5B246 /* RNFetchBlob.m */, + ); + name = RNFetchBlob; + path = ios/RNFetchBlob; + sourceTree = ""; + }; + FBEFC76A7AA91C7D536FD1FC328DDB4C /* LNInterpolation */ = { + isa = PBXGroup; + children = ( + C6276349EE478C396F4BC9158E31AE4F /* Color+Interpolation.h */, + CB96AF637F193EB9518FE01E94128B9C /* Color+Interpolation.m */, + 29338AFC017E7E5A79D48DB5F1F97991 /* LNAnimator.h */, + 080EC6C50A948DD67F2B8A2304C6EB5F /* LNAnimator.m */, + 73AA7F6FDD0109D9B53978B88A0903BA /* LNInterpolable.h */, + F9E2008C989F4237835E3833036DF057 /* LNInterpolable.m */, + 4069652AA03B0E7510525C531D945EC2 /* LNInterpolation.h */, + 37A782E342242AD117AB051759601D63 /* NSValue+Interpolation.h */, + ); + name = LNInterpolation; + path = lib/ios/LNInterpolation; + sourceTree = ""; + }; + FC1A2AC9EADFDB33FC36BABAA944D95E /* Sentry */ = { + isa = PBXGroup; + children = ( + 11124971ECBA9E121883A6EF7A92CE49 /* BSG_KSCrashSentry.c */, + 2932CAE48B908051425DCA562EFACA17 /* BSG_KSCrashSentry.h */, + A7798071B7755EBB888C05B185A09583 /* BSG_KSCrashSentry_CPPException.h */, + E38BCF23A3F366BF569AA51ED7A07FD0 /* BSG_KSCrashSentry_CPPException.mm */, + 902655D099DB95E0ABE2787457DD2742 /* BSG_KSCrashSentry_MachException.c */, + A3A2A3F1F5208C1B538ADD5DFDB74382 /* BSG_KSCrashSentry_MachException.h */, + E1A6DDD38250927F90533C1838189EAE /* BSG_KSCrashSentry_NSException.h */, + B09BEB8BF8B9A86ECDA18517AA7D8677 /* BSG_KSCrashSentry_NSException.m */, + F6E605DA6AFD3BC9439BAE111882C82E /* BSG_KSCrashSentry_Private.h */, + 42F77A23ED4C373C3DC6188163D412D8 /* BSG_KSCrashSentry_Signal.c */, + 8054C319CDF752742F2FD0C739ED8E1E /* BSG_KSCrashSentry_Signal.h */, + 4B7280DC6FED85AD9589A66AC5647B62 /* BSG_KSCrashSentry_User.c */, + 167E5DDA48F3A4D87178E63BE121B4F0 /* BSG_KSCrashSentry_User.h */, + ); + name = Sentry; + path = Sentry; + sourceTree = ""; + }; + FC2007B2E0D345AEFB91F15E753E2B8C /* instanceid */ = { + isa = PBXGroup; + children = ( + BD4ECE5FE09353799C30DF0C2A06044D /* RNFirebaseInstanceId.h */, + BEE2BAEED37A6A2D75DE4F8C9C7D1970 /* RNFirebaseInstanceId.m */, + ); + name = instanceid; + path = RNFirebase/instanceid; + sourceTree = ""; + }; + FC3E6C674406C765F6FD7B111CF7DBCE /* perf */ = { + isa = PBXGroup; + children = ( + B88FACE80867F4D89F910D7379D7C891 /* RNFirebasePerformance.h */, + 8F720EC32BC0BA1F12D5E70A9617F5BC /* RNFirebasePerformance.m */, + ); + name = perf; + path = RNFirebase/perf; + sourceTree = ""; + }; + FC58C2812ADC3931119894A3085D7C9B /* Interfaces */ = { + isa = PBXGroup; + children = ( + 2A4F57D2ACE402704AF6C758AA83E669 /* UMAppLoaderInterface.h */, + 5FFF96ABF69D0252C424846E63667455 /* UMAppRecordInterface.h */, + ); + name = Interfaces; + path = UMAppLoader/Interfaces; + sourceTree = ""; + }; + FC6A41A889E0B1DFAC58BC9611C90F15 /* Support Files */ = { + isa = PBXGroup; + children = ( + CC8B8994A39160475530121E7891B407 /* react-native-cameraroll.xcconfig */, + 39CDDF3FC6F08B54E8F1E21067DD7181 /* react-native-cameraroll-dummy.m */, + 0BF0F433723BD9A207365B72398890D4 /* react-native-cameraroll-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; + sourceTree = ""; + }; + FD3BA3B7E487DB54EDF067F293B88DDB /* ReactNativeKeyboardInput */ = { + isa = PBXGroup; + children = ( + FBEFC76A7AA91C7D536FD1FC328DDB4C /* LNInterpolation */, + BA46010420227A138838E15187F42456 /* Pod */, + D644F66B201D6179F2CDC47D654BE9EE /* RCTCustomInputController */, + A82D8687F061DD3E30BBF64E4CDDE8FD /* Support Files */, + ); + name = ReactNativeKeyboardInput; + path = "../../node_modules/react-native-keyboard-input"; + sourceTree = ""; + }; + FD406D539F70993503632EB7C6FA592B /* firestore */ = { + isa = PBXGroup; + children = ( + 456B93874F92763985E86C307582D5DE /* RNFirebaseFirestore.h */, + 9583CF8EFBACFAE010E25C678AF3E5BF /* RNFirebaseFirestore.m */, + C8D4187F04A5CB8410455373AE01BFCC /* RNFirebaseFirestoreCollectionReference.h */, + 442EA89BCAF0FF088622BB0E7290853A /* RNFirebaseFirestoreCollectionReference.m */, + B2A65FAA3A125CE2669673364E022301 /* RNFirebaseFirestoreDocumentReference.h */, + 9B0CD0417F916A41DD2426DD4B7A9391 /* RNFirebaseFirestoreDocumentReference.m */, + ); + name = firestore; + path = RNFirebase/firestore; + sourceTree = ""; + }; + FDF367A413F3FF61D6DA07F3B6BFB869 /* Support Files */ = { + isa = PBXGroup; + children = ( + FD6B34FC6E26776DA0EBE08258EAB0FF /* RNReanimated.xcconfig */, + 34F0B89001764776FAF3677B7137DC39 /* RNReanimated-dummy.m */, + 8D5E73822210E38DB75755A0BBD9557B /* RNReanimated-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNReanimated"; + sourceTree = ""; + }; + FE0CEFE039C99D812D1C87353FD3ACB8 /* jsi */ = { + isa = PBXGroup; + children = ( + 750EE3CC561AB7E2DC7055E64BC1C283 /* decorator.h */, + 496E921652C2248A6FFB1951C61E9A2D /* instrumentation.h */, + 60446DD3F09C36183FC3DA8D35698A06 /* jsi.cpp */, + 34D5C6524B5EECBE4308D60A0177C1B9 /* jsi.h */, + 56E325018147BA656AC7A8A93CB4E276 /* jsi-inl.h */, + 226258FFBB4B604235CD4E538EFD58C3 /* JSIDynamic.cpp */, + 5A86E589764F933047B0A925C146591B /* JSIDynamic.h */, + 8FA90F039328C541D138AE86D8DC0093 /* jsilib.h */, + D4991175000D7060B41FF0388F84CD7B /* jsilib-posix.cpp */, + 55A1D43E300473C503149B12A5DF80D5 /* jsilib-windows.cpp */, + 4FC3B717C83FAC114AB040CD800E0E06 /* threadsafe.h */, + ); + name = jsi; + path = jsi; + sourceTree = ""; + }; + FEB30BCEF3A4F49DA247DB58582B834F /* SafeAreaView */ = { + isa = PBXGroup; + children = ( + 750F7D35BE6E5845F73D68C57008522E /* RCTSafeAreaShadowView.h */, + CDE35C2B2F1E4560292F5C3E61E299BD /* RCTSafeAreaShadowView.m */, + 59E809009F32F76F6EC89317B89936F2 /* RCTSafeAreaView.h */, + FDC5BC8B851B9E5FF7B416AB1BDD8C10 /* RCTSafeAreaView.m */, + CB369CFCAECE6DD313C9B476C0BE97F6 /* RCTSafeAreaViewLocalData.h */, + CCD0F420A8164C8556D141806692A281 /* RCTSafeAreaViewLocalData.m */, + 0021AAD20B41A86FC16C442527F9535C /* RCTSafeAreaViewManager.h */, + 7E124D38A17FD4250EBC351A8C9F437C /* RCTSafeAreaViewManager.m */, + ); + name = SafeAreaView; + path = SafeAreaView; + sourceTree = ""; + }; + FEEADD289671AB3FDE86B26916E5686A /* Pod */ = { + isa = PBXGroup; + children = ( + B61ECFB3E9BAFBC3D9925A972D6B2E97 /* LICENSE */, + 4B653310B719340E4D330E97918BFC1B /* README.md */, + F2FC7D21C4F7A9EFE1B819387B07DCF2 /* RNScreens.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + FF5668EC16B58B916EF561EC6DDA9EEE /* UMReactNativeAdapter */ = { + isa = PBXGroup; + children = ( + B393A8351F43494FB8EE8EEAADD868EF /* UMBridgeModule.h */, + F7A3EE7BE439217096ED1A8E4053E51B /* Pod */, + F235A942234865F3EF20F2D0B41AD9D0 /* Services */, + 4E3FDB910F80273D04FC0A3423061974 /* Support Files */, + 342D5BA51ADE304F60B4392CA06F18D6 /* UMModuleRegistryAdapter */, + 7165973A2EC6C3767F453FFD0D325345 /* UMNativeModulesProxy */, + B3C33D99736F5F708364766B1EAD1502 /* UMViewManagerAdapter */, + ); + name = UMReactNativeAdapter; + path = "../../node_modules/@unimodules/react-native-adapter/ios"; sourceTree = ""; }; /* End PBXGroup section */ @@ -17753,6 +17845,17 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 1C9E07DF5976F798E2F4DAD9C3B89962 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + C88239BAB97F0174A93D4CEBCD773F0F /* EXAppleAuthentication.h in Headers */, + 953FC9B45339E991D954682AE264CCD2 /* EXAppleAuthenticationButton.h in Headers */, + 663337925169CB5C493A0FE71172B792 /* EXAppleAuthenticationMappings.h in Headers */, + A6742224DEEE6116B21884597417C6A4 /* EXAppleAuthenticationRequest.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 1E4ACAD149C74B00A7AA9EB780AAD1D6 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -18107,6 +18210,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 7A3FDB20A900464ED444BA8E50672D72 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 2F130EEE4A67FFFF1EA597F7391EC78D /* Pods-ShareRocketChatRN-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 7B55BA24513B2A019C80BEB84E33E1C0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -18114,6 +18225,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 7C95D89A6E17A04084498A74DB55067F /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 9910F5FE4D2C0D432E4ABF9C0054E469 /* Pods-RocketChatRN-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 7EF07C480ABE3D91ED2FDAE296CFD717 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -18382,14 +18501,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A639DE377FBA4669901A56C239564F19 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 1E5E294D972047A3B8B0715544F8C276 /* Pods-ShareRocketChatRN-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; A8BEA32AAE9143E154E9EEC60E93D9AE /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -19078,14 +19189,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - BBF7F74EDD10A77F8C966AA5500BAB6A /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 6077601C50D858E04CB2AB7E1570C8E3 /* Pods-RocketChatRN-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; BF37F488C0CDA7CCBD618CDF6B427799 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -20061,6 +20164,24 @@ productReference = 17772905A5DCAAE05D22C2CC78ABB63D /* libReactNativeKeyboardTrackingView.a */; productType = "com.apple.product-type.library.static"; }; + 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */ = { + isa = PBXNativeTarget; + buildConfigurationList = B4A029012259B85738C33266EB0CE758 /* Build configuration list for PBXNativeTarget "EXAppleAuthentication" */; + buildPhases = ( + 1C9E07DF5976F798E2F4DAD9C3B89962 /* Headers */, + A9C288CBF92F866968FB14B02B6E9821 /* Sources */, + 9E2477DE970409A306ED4294FF4EB008 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 6298DCDD90053BAFC6CEAE719941BCD0 /* PBXTargetDependency */, + ); + name = EXAppleAuthentication; + productName = EXAppleAuthentication; + productReference = 7E7E46B76D0AFE3DFC477DC55C5DB326 /* libEXAppleAuthentication.a */; + productType = "com.apple.product-type.library.static"; + }; 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */ = { isa = PBXNativeTarget; buildConfigurationList = 1E2570CBD957DAC9B171CFCC005A2409 /* Build configuration list for PBXNativeTarget "DoubleConversion" */; @@ -20899,126 +21020,127 @@ }; 9C801345ED2C78BD1674053E7BE5D6ED /* Pods-ShareRocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = F6F1D2BBA3C823C6DFC36528123177A5 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; + buildConfigurationList = 10D42D233F7CFECA596C3D1D5B6F7D96 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; buildPhases = ( - A639DE377FBA4669901A56C239564F19 /* Headers */, - 85196F10742AEC60470F8C4471EBC5B8 /* Sources */, - 3DEABC4F374DEC737213E004079BB599 /* Frameworks */, + 7A3FDB20A900464ED444BA8E50672D72 /* Headers */, + 1FA2DECB6501299DDD5EDE7F123E08A3 /* Sources */, + E452B408AA12069A6A63B01BE53E43D4 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 09A91972BA1AA05D54ED26562EAAF9E2 /* PBXTargetDependency */, - 06D8EA8847249C156F4E747156316B63 /* PBXTargetDependency */, - 150261849B3B273511C33006C804A841 /* PBXTargetDependency */, - 9707DDB49B71947F58A41639C932F141 /* PBXTargetDependency */, - B7DE1FF9360BCA637D388DDB8302E491 /* PBXTargetDependency */, - 152646761168AB8E750A70D0757BB319 /* PBXTargetDependency */, - BD3819CBD453142389C17D479D9E6989 /* PBXTargetDependency */, - B18AF213679E23BA588A5D1716095B08 /* PBXTargetDependency */, - 3A4BEE6407B76FF69341C06CCDE003F5 /* PBXTargetDependency */, - F6F33EC24BCDE745AC4D53C220E0E94F /* PBXTargetDependency */, - 03B34BC6170E2FD26290061FE909A87A /* PBXTargetDependency */, - BCBDE98F10056D63A1B7839DA62A8D67 /* PBXTargetDependency */, - 9FFA043447FA5AB743DD40AD8F559BA7 /* PBXTargetDependency */, - A9598E6235ACBA08CB89BC69BE8B73CF /* PBXTargetDependency */, - 0DEA1D94389E2D91C61C34366B9B1872 /* PBXTargetDependency */, - 0155BE95F8BBD41714EB9615602C0443 /* PBXTargetDependency */, - 0D12270DD1FC0ADBAC2E5165118BBD7C /* PBXTargetDependency */, - 6D76087269F873A674A76C15F3A81018 /* PBXTargetDependency */, - FE2B588C716845E5D0559D1A87268A00 /* PBXTargetDependency */, - 8741AE6C7B4E3B937EC6889E0D9C7DE4 /* PBXTargetDependency */, - 4B00B98F127847EEEA340C6922C0F41E /* PBXTargetDependency */, - E6CA5595B7183B34C17E9E5766C6C6EA /* PBXTargetDependency */, - E9D6DC173FBEDC4F7EB3B004D9CD2BAF /* PBXTargetDependency */, - 3153C945F46207A093C02862BF7A5869 /* PBXTargetDependency */, - E2105E5F6DD24E21E72615721EFEB318 /* PBXTargetDependency */, - EB53B84D59D225EE91FC6E2D49BEC2C8 /* PBXTargetDependency */, - A2C02D68E0A5EB5F71E0E2E21E33A151 /* PBXTargetDependency */, - 7FB1306D5BB2A95695F8405E97C5A73E /* PBXTargetDependency */, - 61DAFFD29606A59E3C80CA0333819260 /* PBXTargetDependency */, - 4B81974A8A6E9C76EE7DCCDA8DBD1071 /* PBXTargetDependency */, - 081617C62B706A86E86FEF1F3901915A /* PBXTargetDependency */, - 5F6EC6A56DA79A4BD79E8742107567D3 /* PBXTargetDependency */, - 0535766F456A05E52087F7223254D040 /* PBXTargetDependency */, - B4916A6B8ECCF4C7F3A9C3AF65D124BE /* PBXTargetDependency */, - DF0DD34F41CA4B08E6E56F332EA0216C /* PBXTargetDependency */, - 0D7B301C97C7F917CE8656E9CBF72961 /* PBXTargetDependency */, - 1B4174B3E587CD1E32E95C2A9563C535 /* PBXTargetDependency */, - E3E088DD505D534F454E49CC080E9FBD /* PBXTargetDependency */, - C9513E73B75DF7E00458C1D76F67517A /* PBXTargetDependency */, - C944F1DA4118D4A63DE8407B8844C793 /* PBXTargetDependency */, - D914AA15806642C947016D6E443A194C /* PBXTargetDependency */, - 9FFD28F316737BFEE6085F5B668958CE /* PBXTargetDependency */, - A17A0137A4BCC7C84A329539EEDC2847 /* PBXTargetDependency */, - 74FFC0F6866CD07042946CF144598357 /* PBXTargetDependency */, - AB97E3209DEC392127AC6CC0AD76F6FF /* PBXTargetDependency */, - 0A2B4ACB49AA36B418589C0388E92756 /* PBXTargetDependency */, - 59AAF25A99AF0C6CE72A38167A3F799B /* PBXTargetDependency */, - 3629A10B750B496AB327830A7A564E55 /* PBXTargetDependency */, - A855C2899596771FBECDAAB7CA8EAA80 /* PBXTargetDependency */, - 44BB1D4203CD9FFAABE0719191FEB7D7 /* PBXTargetDependency */, - 5970DB7B6EED5FB66B4AD48C0A15EB33 /* PBXTargetDependency */, - E6F8D9077F9E33AAD24CF21BADDAA33F /* PBXTargetDependency */, - 29391E60EB54A7FF73E2925B6F67BA5F /* PBXTargetDependency */, - 35A5DC2371006D077FFAC71FDBAE39DA /* PBXTargetDependency */, - 2AACE6974A339102FC152B8CE0CB19CB /* PBXTargetDependency */, - ADC9FF7A405C09E9EA3D677792C0CCCE /* PBXTargetDependency */, - 8E437911596B5C6B824D94DCD7DD870C /* PBXTargetDependency */, - 3F021831F0AC641A6FFEC29CEE06DC44 /* PBXTargetDependency */, - 47A2DFFF2153D348146D67153967C23F /* PBXTargetDependency */, - F80D9581C9BDDCBAF7BAB768BE49AB17 /* PBXTargetDependency */, - 6D32ECC9F3C3E82F50D664D4FA3193B4 /* PBXTargetDependency */, - C44A8D139CD923D0CC5148BBE8CA4984 /* PBXTargetDependency */, - BC2CEEC33FEB662BC2EE9AED822FC60A /* PBXTargetDependency */, - 16F410453CB723B6BCE3B1E3E5DBC653 /* PBXTargetDependency */, - 3D63EE734798F797375D0CF95A29BB9D /* PBXTargetDependency */, - C6C33C40F09DF83E8AE25FF9181B93A7 /* PBXTargetDependency */, - 4EF7911DF9BFDF01CC4BBEE7869A769C /* PBXTargetDependency */, - 6E1B121F8DF6D6ED7652DCCE30302F0D /* PBXTargetDependency */, - 2DF2C5E78991A7E6B88F5637B8ADA64F /* PBXTargetDependency */, - 8973B4D23AE8CD15CE316EE7BCE0250A /* PBXTargetDependency */, - B76AB5AFC8EC209F7238DA9E143CABA5 /* PBXTargetDependency */, - 0BF3FFB9289FAB263DEB38E68F2E212F /* PBXTargetDependency */, - 8936BC513FB1E13C41264589F743897E /* PBXTargetDependency */, - FC56C0EF1AC743BBB48E199911C499B1 /* PBXTargetDependency */, - D63E2697606CE2FE907B7308F9791038 /* PBXTargetDependency */, - 61A6C67026BDCD1F93C22B02FCD55832 /* PBXTargetDependency */, - EFF0B6270DFDF07667A17685C39FAAF6 /* PBXTargetDependency */, - 3A0B008618BB1DD65A10432F4D749A55 /* PBXTargetDependency */, - 45A239B9B3DA96B4DEFA20D9E436AA42 /* PBXTargetDependency */, - A3577EDC1549685C659FDE8106817071 /* PBXTargetDependency */, - 49619C14E8CF7A817F6DEE2BE6541297 /* PBXTargetDependency */, - 3BCA1489849A5D4E4DACC765DF6E7CDD /* PBXTargetDependency */, - 4B0837B9822D26CE7F7127B053B1D430 /* PBXTargetDependency */, - 3EDFBC20E7648BF5CF811448AB9422D1 /* PBXTargetDependency */, - 32000BC5C7CA383EEE290979DA0D920A /* PBXTargetDependency */, - 85EBFAF6FC8B4E4BDB0EA1169E78B316 /* PBXTargetDependency */, - BEBE50973D71DE93908D0F1F68643CB6 /* PBXTargetDependency */, - EDFA22230FE975C2EA63A25B836B6DD7 /* PBXTargetDependency */, - E3773F37FEDFEB41BAB95A064B280C59 /* PBXTargetDependency */, - 47869A08D032171B877B4B36D0DD7959 /* PBXTargetDependency */, - A35C80209A81EE921A3D77F6D0FEA37C /* PBXTargetDependency */, - 826327812DA4B63523514D5C6A140E1A /* PBXTargetDependency */, - A4E0889AF618A6BD29E1F0F8BE0B3815 /* PBXTargetDependency */, - D152EE4ACF4C3F5CFBCBDC9572839E81 /* PBXTargetDependency */, - E11F65912B8A2AB4E29892F2ABFC5E1A /* PBXTargetDependency */, - 1A4C3EE7D9011AD096224F9B0D01CEE5 /* PBXTargetDependency */, - 17A32C4F3BC6772FC6CCE284C7C849B8 /* PBXTargetDependency */, - 24AEE16CBF54D34A6DE6DE0A35BBFDFC /* PBXTargetDependency */, - 7DBEC408D9C1F4D0B75E6F195C792281 /* PBXTargetDependency */, - 97BE3D04C877055B79A65D7086EE82E5 /* PBXTargetDependency */, - 4CD77D35412C2D9CC23075280AAAC498 /* PBXTargetDependency */, - C1AC758DDBC26A3E566419728688E230 /* PBXTargetDependency */, - 819A5CD7E69F9D47B99315732FDB54EF /* PBXTargetDependency */, - 0337AA07AE8E0A1E6F556B5DC00369A7 /* PBXTargetDependency */, - B3C0E29A0D7EBCE2D6239917C9470F07 /* PBXTargetDependency */, - 0B1E99FA451C0414DD3AD2A005785C64 /* PBXTargetDependency */, - 10504A15758B926901A8EFFD6D56ACE3 /* PBXTargetDependency */, - C5C8DCC7188A7A96BCC3CF1CF200A93C /* PBXTargetDependency */, - 591E92B29A5F6A969C9B8D2B6091879C /* PBXTargetDependency */, - EECF6EB6F95DE3CB0DE1F375BC573F94 /* PBXTargetDependency */, - 90B83116673A623B225BE28B3101263D /* PBXTargetDependency */, + C55C5BB84991908B0923E9B290D7CB55 /* PBXTargetDependency */, + A1791A6A75AB384583B152A09B039B71 /* PBXTargetDependency */, + 5785A5719FB26E01FC0F9280195B60B9 /* PBXTargetDependency */, + 6657896AEB5FD6B3521509A3CEE7D26D /* PBXTargetDependency */, + 3F4BD3118DED049B8794AC98BD6A8F92 /* PBXTargetDependency */, + 07286ABCC53F9BDBC99F0CF72EC3F6E4 /* PBXTargetDependency */, + 506968D3574844C763A818C4356C49E6 /* PBXTargetDependency */, + FBB3B9E5D9C44DF4748FEC2C73596EFA /* PBXTargetDependency */, + 839EA15F3B1A9C591B6AC3A45D64B614 /* PBXTargetDependency */, + 12F4533E4E5CAD05A1161268D99F5651 /* PBXTargetDependency */, + 571C3B5994B0FC2C5B95939DB9FF4C15 /* PBXTargetDependency */, + BB9AD74E9672BD9342A98756E82C9DF8 /* PBXTargetDependency */, + 41E567D75A9FEA84E51EF8AD468B8E84 /* PBXTargetDependency */, + 0E93397AF55C2185A2AF94180454A235 /* PBXTargetDependency */, + 110345DCB247131B740DB18A3007956A /* PBXTargetDependency */, + 50B6E388FD3148A5C4C60D3D88ED123E /* PBXTargetDependency */, + 40A73A360E0CE4C702E19F03FBB418CB /* PBXTargetDependency */, + AF76C5164288B02CF20D1C65DEEE65B0 /* PBXTargetDependency */, + CF48E1A28E4E6940F4C0A4B5FC821B12 /* PBXTargetDependency */, + 0B015477CFB23CE67F67675063638188 /* PBXTargetDependency */, + 6990039169C9756023BAC19AD9D796F9 /* PBXTargetDependency */, + 9D82B961330FE85E6AA62139E678B672 /* PBXTargetDependency */, + 1FF5CC5D2C7F22E5CA560BD25365D949 /* PBXTargetDependency */, + F7E01F3433CBAE087300160476808FDD /* PBXTargetDependency */, + FA445EFBC7334E0C12A19113BB30B99C /* PBXTargetDependency */, + 83FF23BBA506B5C7A2F4B758F1326C79 /* PBXTargetDependency */, + 824D7CECE73D4B18AF1E98932D6B429D /* PBXTargetDependency */, + 611E3703AF85938D4C1F28BB4D5362BE /* PBXTargetDependency */, + D241ACA0B6CF639211F4D365A0E8DD04 /* PBXTargetDependency */, + 76B6E1DC8519474EA74F646E3F556AA1 /* PBXTargetDependency */, + 5F7A34E398CBEF9613553BBD109F46B3 /* PBXTargetDependency */, + 8F7D7E28AD1D4060AED07E630B95441A /* PBXTargetDependency */, + DE0161DCFC96EE300166960C1D9A61B2 /* PBXTargetDependency */, + D200979970E18C6F97816F384EFA39BB /* PBXTargetDependency */, + 59E96040ADC1376A00DE9FA7428DFC83 /* PBXTargetDependency */, + 884C06AA137648215C7E010C592F8792 /* PBXTargetDependency */, + 73224D39C7F036DA4CE4B85E17C19A12 /* PBXTargetDependency */, + 147F949F13FF56A4C64412E5EB7F37C8 /* PBXTargetDependency */, + CEC644163826B090477FD38D6EC8BCD6 /* PBXTargetDependency */, + 11D8699F7BEC41FCFB3DC2DEF0BB2CD6 /* PBXTargetDependency */, + E2DD8646B66B46B8680CF2F5C2CFDFEF /* PBXTargetDependency */, + BA56BF0E3C5F05FA022FFB520C5BD148 /* PBXTargetDependency */, + F2D81646311FD9B09A76264FD27B3FF8 /* PBXTargetDependency */, + AC2CACAA4D1229E251CC597C1B3CC812 /* PBXTargetDependency */, + F4255B8C704DFBF41CE6C7FAEDE073DA /* PBXTargetDependency */, + B71337757C9E28361A44E0B0539A2CF8 /* PBXTargetDependency */, + C6D30E3BA6A1DB5170C1099AE9F1A3F9 /* PBXTargetDependency */, + 935B8398C076D462A7623571890B9840 /* PBXTargetDependency */, + C584D1782B96C3184604DF003A8FA5EA /* PBXTargetDependency */, + AF23DFE7CB7FBA52AF251D4ABB4CA228 /* PBXTargetDependency */, + 0FA308A7F787BD1D5E2A47933D634FF6 /* PBXTargetDependency */, + 3B50D6536D1B24429C11C1B3A54BA294 /* PBXTargetDependency */, + A05BA6D83059192EF34F1AF89949CE2F /* PBXTargetDependency */, + C6E41234372A50E15C8CBF2B01114A7E /* PBXTargetDependency */, + B563377FEAF86214C201008716F1D5BE /* PBXTargetDependency */, + CBE23E81E242F8BD4D9D7D7F146900BF /* PBXTargetDependency */, + EFDF15FE7774834BD8FED59FEE3F449E /* PBXTargetDependency */, + 2FC8608372A1F9D68EC6D9820DB8824C /* PBXTargetDependency */, + 7F345F730BCAC227659B0B7F8382345C /* PBXTargetDependency */, + F912D6953D23D2A50AC78A21923C2426 /* PBXTargetDependency */, + 3956D2B6EB220EF37836D5A4A71C44F3 /* PBXTargetDependency */, + 5BB8724800DDD3C1F7D417F93250BA23 /* PBXTargetDependency */, + 83465F4DB840BD9DE1CE382E5BFC760C /* PBXTargetDependency */, + E950674DA81475815C64A8FEFE521D77 /* PBXTargetDependency */, + 642EB5FC43D71B61DA568E05D2C1296D /* PBXTargetDependency */, + E642D28394B15C220AC296277E080B15 /* PBXTargetDependency */, + DCFEEC46DD4B42C7D86C6518A65DDD61 /* PBXTargetDependency */, + C46FF6C1AF2FA27A1054257CE3824EF2 /* PBXTargetDependency */, + A9E23070BDA6139CA665A6AC69C386D1 /* PBXTargetDependency */, + DF3832062656B57D51DCB680A1C254A9 /* PBXTargetDependency */, + 852E752598269FB469D4099BA60A5158 /* PBXTargetDependency */, + 40BEC7951B04238B7AE03F4E58AC4CDF /* PBXTargetDependency */, + F34B1C39648A5CCA1D44A435B5AC5D41 /* PBXTargetDependency */, + 49FAF5260F6CA326E0A59808AF8B447F /* PBXTargetDependency */, + 6489AFAE03C376C71BA2B9962E77D33C /* PBXTargetDependency */, + 30FB76CCCCF5E1BC1EBE101C5992B679 /* PBXTargetDependency */, + 106178C2DADEB9C642DC0B548B3397D9 /* PBXTargetDependency */, + 5060212CBAC66129E4C6A252920F7048 /* PBXTargetDependency */, + C91CB8D5200C70CB49C639C2B0B9844C /* PBXTargetDependency */, + 73985DE59327348E643E4DEF0EE3A68C /* PBXTargetDependency */, + 99B06D10D5DF4008227C3348B3F5C5E6 /* PBXTargetDependency */, + BA02A1CD7ADA6D521B7473622CC61B51 /* PBXTargetDependency */, + 50E0113BBF13AE22CC35BBC09CE6959B /* PBXTargetDependency */, + B59FA3E656FEEF983D4979C82193DB31 /* PBXTargetDependency */, + 2795F0BAA141D0FCA95F95EF9F8519CB /* PBXTargetDependency */, + C7901B2B59B8BA0BE752B1AA6702ADEE /* PBXTargetDependency */, + 82343A6A4B4FF386595CD4DF461C8372 /* PBXTargetDependency */, + 16D7952F74E1E3C3FC3A43CDF19BF51D /* PBXTargetDependency */, + FEC3D3B3FD1D0900965945BF0209214D /* PBXTargetDependency */, + 22EDBAF49DD7D1F34B949E69CA1F8155 /* PBXTargetDependency */, + 4E31E2BA1D8FFE06A53258A0A71FCBB1 /* PBXTargetDependency */, + DEC7009FFBFA6554B3EE22023AE4A922 /* PBXTargetDependency */, + A040D23B3A09767E4C546CDB33FEDE55 /* PBXTargetDependency */, + 98C395750D9AA45AF3015A4D38C376D2 /* PBXTargetDependency */, + ECCA39AC3945A7728F55F752D54F106B /* PBXTargetDependency */, + F15F3947092D1E45CB5DF1728BA837AD /* PBXTargetDependency */, + 49198F50230A17603DC1CA69ACC9C606 /* PBXTargetDependency */, + 0FCD2511D7D96AE12FC35F756553F838 /* PBXTargetDependency */, + 73779EB8A02810AC9ACCD3BC9C82A185 /* PBXTargetDependency */, + 0441535E951DD4CDABED92EAB991394F /* PBXTargetDependency */, + D8719B222660358D8FC5B99043C3CD1C /* PBXTargetDependency */, + D8AE9CA31E61C4ECEA77C966BF92C0DA /* PBXTargetDependency */, + 48C20EF9DE21D8DC7BE5DEC9F390892D /* PBXTargetDependency */, + C811B7FEA98038CFA817E0AC3654A794 /* PBXTargetDependency */, + E4194A03026D672F03BCCD0C65F167AC /* PBXTargetDependency */, + F531F2C76356DCBA479B725515405927 /* PBXTargetDependency */, + 826917CE5F9F256A55648156D4327CF2 /* PBXTargetDependency */, + 909201D639424C206227CDC0518B11D7 /* PBXTargetDependency */, + D4382423802ABF988E0851A512485403 /* PBXTargetDependency */, + 070E710221BC3E672BD79D21AF081C9D /* PBXTargetDependency */, + E3E06389CB62E8E9DE057ECED6C792E5 /* PBXTargetDependency */, + 048213B16C80ED284DDFCFD3B8DCB10D /* PBXTargetDependency */, ); name = "Pods-ShareRocketChatRN"; productName = "Pods-ShareRocketChatRN"; @@ -21122,126 +21244,127 @@ }; B37ECF22F1589E28F59BC9990B4DC476 /* Pods-RocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = 833AADDDF36AF7AFCF3C64CF1CAFF6AF /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; + buildConfigurationList = 4D251C1CF8066BE84DB44CDF7CC248C3 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; buildPhases = ( - BBF7F74EDD10A77F8C966AA5500BAB6A /* Headers */, - AFE23AC19BB8E39EBC9E4ACC18EF61F1 /* Sources */, - 9112B2FA6FBD5F34050AEFD07777349C /* Frameworks */, + 7C95D89A6E17A04084498A74DB55067F /* Headers */, + 818071A41C73298AAB39123FEC7F04BE /* Sources */, + D563EB3270259541A1E8EC0EAB7C3771 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 58520DBB32C9E50CB6FA8FB92C8305ED /* PBXTargetDependency */, - 2DF32F7BF518E256CA9CACE25F68D9E1 /* PBXTargetDependency */, - B0A80C748D7D58A8ADDED4B1C4CBF1E3 /* PBXTargetDependency */, - A3031C41B0FD53294AD931705ABCD05B /* PBXTargetDependency */, - A57F39922E738B7E091839CC31B529B7 /* PBXTargetDependency */, - 5167C09243CD582902B6E5D5B4F4ACAA /* PBXTargetDependency */, - D5DB0B9129FCECC63A971D6A64169554 /* PBXTargetDependency */, - 5309F8BD2DDD7BEF5A133AF669B5AEB2 /* PBXTargetDependency */, - C10926E3CCDC540CC9C5B51CADE9970E /* PBXTargetDependency */, - 3162BA0FA007FEC35ACB64478EF40E0D /* PBXTargetDependency */, - 463EFB446ED33B945EBE91391ADBC20A /* PBXTargetDependency */, - 8962A2F6B4EFAB4B937C32053EB124FD /* PBXTargetDependency */, - F6C620A8F1F05B312F13146720C29E55 /* PBXTargetDependency */, - B9C23564A4A732606D72939BA7E99725 /* PBXTargetDependency */, - ED3E48262AE1AB0BE376BE5F2C268102 /* PBXTargetDependency */, - 38EDFE5BB5E0B335964996DF9CB244D4 /* PBXTargetDependency */, - C909B446DAB2CFEFC2830A7679694FE6 /* PBXTargetDependency */, - 26CED561A45F585CC689C23FD5E0BE66 /* PBXTargetDependency */, - 9DB185F54EA16C01A70DAC79B0F3DF5B /* PBXTargetDependency */, - 055FAB8FB12684AE9D3E97BB9F74FD80 /* PBXTargetDependency */, - 41FF18B3ACA0A74DE70EC06C4898A027 /* PBXTargetDependency */, - 57B80F0048291FC0645CE2A304B1C796 /* PBXTargetDependency */, - 228BCCFD2019950E19E1DC6A9C6FF439 /* PBXTargetDependency */, - 6C3E1891894949B14B6F3ED240634668 /* PBXTargetDependency */, - FB82D79CFD7728AF7BE70C0B67EFDC2D /* PBXTargetDependency */, - C05E6F470CFDC5F5E81B3C682673BFBE /* PBXTargetDependency */, - 7550729D8295E93CD355FEA0245B7FBE /* PBXTargetDependency */, - F2EEACC2B596D488290479E6BD157307 /* PBXTargetDependency */, - A59B04B59BBCD840DA07F437FBCAAE2C /* PBXTargetDependency */, - 153824B19799E67E369B0ECB36B3370C /* PBXTargetDependency */, - 7C319FE58F3B07EC6165A8400495A006 /* PBXTargetDependency */, - E829F97D5B8C3C37A451C0EA5E0DE6DB /* PBXTargetDependency */, - 2924E5AFA8A17FD6D4B9449C1D5E57AC /* PBXTargetDependency */, - 209A1E90848274D4CF67BF20793A31BC /* PBXTargetDependency */, - 5647BFBC2697BA6754F966394FDB8D1D /* PBXTargetDependency */, - 751AD533EA347CE58D58073B71662D0F /* PBXTargetDependency */, - 5C1609CCB14C3F018E0FF7BAC181C027 /* PBXTargetDependency */, - 1EBF278CCA660464B5CB2CE3BCFB8FF4 /* PBXTargetDependency */, - 19FE758428D0DD2B34F8DCA834B910B8 /* PBXTargetDependency */, - 680C9CB5F4F5FD43408E0823FE67B132 /* PBXTargetDependency */, - EA92FC10B7D2D16B1A1B1F20B86FC6C0 /* PBXTargetDependency */, - A44F2BB8E04515055E13AC34F86FB2BB /* PBXTargetDependency */, - B62A07939BCA75A2E4D2D2F993A587A0 /* PBXTargetDependency */, - C8D6D5D0AA3822CB153BC50E85CB5B3A /* PBXTargetDependency */, - B9DA365970E58AA44208395DB3295A66 /* PBXTargetDependency */, - 091F9D9784017D09E88F58D12722AA84 /* PBXTargetDependency */, - 750E1026A715264D0C389F7874091E4F /* PBXTargetDependency */, - C9B9F6E0CBAA63EC85F7B41B849DBE3E /* PBXTargetDependency */, - 90AEDC59B2B247162422B70AF464CA7F /* PBXTargetDependency */, - 6938B5C70C2EC6EDB717449094A567B9 /* PBXTargetDependency */, - D515DEACC344665DEA45616A314DBE6C /* PBXTargetDependency */, - B0875F499F1E4C6F1C4E8DD9509C207D /* PBXTargetDependency */, - D5E700A3041105FF6DD00601CC0A59AB /* PBXTargetDependency */, - 25E1CFA8414B92F22FCCD46DCB4E3D29 /* PBXTargetDependency */, - 0175C01EF26FDF3BA3C9140D1CD87BC2 /* PBXTargetDependency */, - C28844D4E8E3E260E3B23A4B6159858A /* PBXTargetDependency */, - 8E847DBF6AF9AA8342269C876310214B /* PBXTargetDependency */, - 078A78DF8436E19371E782D0A6C2E04B /* PBXTargetDependency */, - A84F34DCB4994BECB3940194C8730B78 /* PBXTargetDependency */, - E98ADB947C4212DFCD0A1E72B7D0C379 /* PBXTargetDependency */, - C10945A336C0D5271ED68FB1C69B91A5 /* PBXTargetDependency */, - 9F16CCD10CCAED15A8BED80FA92E3149 /* PBXTargetDependency */, - BCA9B641AE9A2B397F0A92A6367A5332 /* PBXTargetDependency */, - B5FD7DA7AE0B588442BF898A61C7542C /* PBXTargetDependency */, - A60350C14CB05AA3E1EA921A3A5EC1AD /* PBXTargetDependency */, - CB89FD2194E2AE63843DB920DB1D3E95 /* PBXTargetDependency */, - 00B12292D6E9DB81564F7FD934136989 /* PBXTargetDependency */, - CD44F6D31134053DF53F996535050F5E /* PBXTargetDependency */, - 5368D1A60EC18B750CA3B08FA560D599 /* PBXTargetDependency */, - 310900168BA1525D29992DF099685620 /* PBXTargetDependency */, - 95DF595F1B16181C60F9FCD2EE766634 /* PBXTargetDependency */, - 31E2C2A74004A6C539DBC6DD63CE60C7 /* PBXTargetDependency */, - 27FE4AEDBB502EDED9F623D84FC67306 /* PBXTargetDependency */, - 2CEE046F87160FF8B3BA4FE8F895F703 /* PBXTargetDependency */, - 521CFCA42274D8374B3FAE76A7D5B8B3 /* PBXTargetDependency */, - E5536ADC1AA4057F5320256403A522B3 /* PBXTargetDependency */, - A6DADA02EA898F3C07DDCA9A6C0E18EF /* PBXTargetDependency */, - B5E20DF940BB2A7A531E40B40DAFA82E /* PBXTargetDependency */, - D12776BDEB493A77D3B65628192585A8 /* PBXTargetDependency */, - EB76CAE1DD58B0FDE6B8BBA1393F6280 /* PBXTargetDependency */, - 0343342C650DCF1179739E63291A3C05 /* PBXTargetDependency */, - CD4B2FE928E1B0A1E83F2132DF200FC6 /* PBXTargetDependency */, - 289EB7BB57A006E83F0277E4F438A251 /* PBXTargetDependency */, - 229979BCC10A643F883BF7CCBC37870A /* PBXTargetDependency */, - 982ED00C5B9F9C5F89D5DE2426525C76 /* PBXTargetDependency */, - 9F33399C0AA85CD6EF480BC76CCA6EB6 /* PBXTargetDependency */, - 02FE5970C62FF0645B3C78B1F9C0DB95 /* PBXTargetDependency */, - 42B9030D510232C413EBEDEDA171EAA7 /* PBXTargetDependency */, - D79D95B5BF7A9CA732D552B35F8EF975 /* PBXTargetDependency */, - BEB163EA4C3C31B4DF0789A942116584 /* PBXTargetDependency */, - 11722063AF931958AC21E2DA8FBA8C95 /* PBXTargetDependency */, - 54EB3D48258EA1F297E021AF428EAF2A /* PBXTargetDependency */, - 9F250EF31EBB9F26273C29EDE1C31B03 /* PBXTargetDependency */, - F6B44BE82AC8378B2497F100A7A17E14 /* PBXTargetDependency */, - 9AD7705635689AF2AFBE0A41F745FF99 /* PBXTargetDependency */, - 797CEBF3E23F490A7B8565172F18DD3B /* PBXTargetDependency */, - 63FBBAEB8D85932DC05CE50E24E58AB9 /* PBXTargetDependency */, - 0DB82453916296BE3C43F606A963B86D /* PBXTargetDependency */, - 769B9E3AF436CD6DA64147DDDE206B0A /* PBXTargetDependency */, - D3292936339FA9A4E8B692DE48D38B46 /* PBXTargetDependency */, - B6C97C1B981A9D9BF740E9338C6BD0BE /* PBXTargetDependency */, - 6CB923BB053D4B91F755B64CDBF8881A /* PBXTargetDependency */, - 603D43A43A86DA17660533F143A2D442 /* PBXTargetDependency */, - 754CD2E3BC85B53BA1D1054E95C37D54 /* PBXTargetDependency */, - 554F319B48D62EBC75BE59420F250D97 /* PBXTargetDependency */, - 17BCFA3B1FE346530E7DEFDE7B726FC6 /* PBXTargetDependency */, - 9D658A9E5684BCB66FE8F38EC06C9167 /* PBXTargetDependency */, - FBAEE210213EFC801666765D5F19BE45 /* PBXTargetDependency */, - BF87D2DAE2CE704C60ED948F87B81C43 /* PBXTargetDependency */, - A8A51CB4F015120D1693831276612551 /* PBXTargetDependency */, - 02A7559011D3F5A233BCB5F92AE1C0CB /* PBXTargetDependency */, + 2C92F6A8F7DCD574427C0DAD11488DD2 /* PBXTargetDependency */, + E903292D72D0E281ABA4A65D48703476 /* PBXTargetDependency */, + 736F32A41648B4F76450D3CE5CEC56DC /* PBXTargetDependency */, + 33BFC3B9602A197EB084D4467E7C8A32 /* PBXTargetDependency */, + 3CD4D15D7C1BB8492BA702B45BDF60E4 /* PBXTargetDependency */, + 6BDE822D0B562922FE0B99FCB4009EAF /* PBXTargetDependency */, + F80DA36E562B02943821C5ED1531E540 /* PBXTargetDependency */, + B244FC9EF991261C0AF85B91C2CF80C0 /* PBXTargetDependency */, + BC764552688A4E90E094DDE75DBA7BBC /* PBXTargetDependency */, + D4F99A41A86ADE2FD4DE4E23D534C47B /* PBXTargetDependency */, + E63308839E36981E74DE81E250C7C1DA /* PBXTargetDependency */, + AB2A22EF115D9D0D47EE5A074CF9A07D /* PBXTargetDependency */, + A20EE984C8026188C77E0234BFB5CD83 /* PBXTargetDependency */, + 20C188D0556DD3230A2F719CA0A92890 /* PBXTargetDependency */, + C664C4ACEC5F9114D9E62A6DA55E5D6A /* PBXTargetDependency */, + 460A7C861D55C3E02E7C8EBEB9BD23D6 /* PBXTargetDependency */, + CC0DF643CA8315D764C10C95B505B8C1 /* PBXTargetDependency */, + 95C57A00E51DD6CD8F66BDD7905886A3 /* PBXTargetDependency */, + 23FC19D5718AE55130DF3FF20E2B836E /* PBXTargetDependency */, + B03748261FA73B60A3780440D14ACB00 /* PBXTargetDependency */, + 16AAF8DC6A6EC3C5803482AC24CD469A /* PBXTargetDependency */, + 4D5E95B5D3E242A1B57BB51565E95A80 /* PBXTargetDependency */, + 0995FF24CBA3429758D3ACB92FF1EC31 /* PBXTargetDependency */, + 5C9D3291F3324CF2D4CF82F7BD57ECEC /* PBXTargetDependency */, + 853932537A73C69B4BDA8729452AEE5A /* PBXTargetDependency */, + 402CE4D8523879B63D9C5E2318DB6152 /* PBXTargetDependency */, + E6CCB492F1E19AD1AEB391CDE773F273 /* PBXTargetDependency */, + 9A4414BEA44DEA58DAD2E7F6BEA028E8 /* PBXTargetDependency */, + 43A6BEDD795D84E4E85FB0D613CD451D /* PBXTargetDependency */, + FB658DBAB449B370222C6FB7803E48BC /* PBXTargetDependency */, + 57120606464E48DCFC22F9DE5F1623D8 /* PBXTargetDependency */, + 0991FF3547006C3A1D043C7EB9D885B0 /* PBXTargetDependency */, + 3DD675DA51EC5C275989A92C924919BF /* PBXTargetDependency */, + DDF07C25E1E40E2B001196A215E4484D /* PBXTargetDependency */, + 2E011C65C71B088BC7EBCF7706BA1013 /* PBXTargetDependency */, + 1C70D2E7AE35D9BF386A038BF3C36BFE /* PBXTargetDependency */, + 04534E46F5870362FE41155D52B7BB9D /* PBXTargetDependency */, + 990618ECB299113BE3926AF6FC914661 /* PBXTargetDependency */, + 759DB3D4F206590938AE71E9AD5AD226 /* PBXTargetDependency */, + 2B351EC3B588C1118485544D6E2702B9 /* PBXTargetDependency */, + 7DC00A9FEB298BA9CE698F4736DDB2F5 /* PBXTargetDependency */, + CC0CFBD012B168BB83B4F5C8F2781FB9 /* PBXTargetDependency */, + 9C62EB83A214B4401F7E6A4FD286242A /* PBXTargetDependency */, + 691B9BDB3556483D189B437A52863EF0 /* PBXTargetDependency */, + 0EA61D86DEAE681F85D27A112D3A81A6 /* PBXTargetDependency */, + 7F0C6AF96C625D866C1F89353D28325F /* PBXTargetDependency */, + BA3225F04697A95E8CD2875B804C85A8 /* PBXTargetDependency */, + 8CC810663EE3B16D1B3298390CAACAA1 /* PBXTargetDependency */, + 774940C7DCC8ED759314AD6C1F3708D1 /* PBXTargetDependency */, + 191B701AF42B8CBB4FB1E1D759AC35D2 /* PBXTargetDependency */, + E62B43E37D4970699E57A2A4EFAEDB1C /* PBXTargetDependency */, + C3A33A2C6C6C23DDB0D6D9840A9B9011 /* PBXTargetDependency */, + 5600C13D8EE46E7C700CDE4CA3C79755 /* PBXTargetDependency */, + 2062301EF610A6E1D2D3287DDD439811 /* PBXTargetDependency */, + BCAAD5394D00D27B6D8758475EF441BF /* PBXTargetDependency */, + 3D87CD04706B6D88B7C679C507C89270 /* PBXTargetDependency */, + 884D4B4132DB5C5F5FBBDBA864003759 /* PBXTargetDependency */, + 34ED56ED6BE5685523FF8EB43FC16CEC /* PBXTargetDependency */, + 4679E69439F3825035AFA11B44BF1C25 /* PBXTargetDependency */, + D324D85A4D8AC7D0E992CBE647D512B4 /* PBXTargetDependency */, + 6F59B0834224DEBE6943202F6148355B /* PBXTargetDependency */, + 22929DA02818F7126EA099C4A73AC96F /* PBXTargetDependency */, + 2DD5F8BFE0AD5B46EED8D65FEF28B9A8 /* PBXTargetDependency */, + A50595322AED9C680FB2393994E79756 /* PBXTargetDependency */, + 14962FBA84F69DDC89B0A1C791D91030 /* PBXTargetDependency */, + EB66B9773D6F1647189FF6D55EECADB5 /* PBXTargetDependency */, + 55246C1609C74E17B8C19C0C2DCA391B /* PBXTargetDependency */, + A0CE85A692FBF92DFB157C92CAE182B1 /* PBXTargetDependency */, + 26A4B6269AA7F57DF356FEB6ADE84412 /* PBXTargetDependency */, + D96754786F145C928DD66FDB82AD6945 /* PBXTargetDependency */, + 51C6B9DBF4772F4E9D76106EF094BCF6 /* PBXTargetDependency */, + 215A21320585080F06CFF5410B01F186 /* PBXTargetDependency */, + 310660EF2F2C2FC7FD56744A876A7964 /* PBXTargetDependency */, + 325BE8F852DC7871BB848286477093C7 /* PBXTargetDependency */, + 45B5B3D58806EA6198440D49B1368392 /* PBXTargetDependency */, + 826CB7A1F9885CD8946DF99F4E85A99D /* PBXTargetDependency */, + CA1E1053994D00D7A2D11B90E3A94782 /* PBXTargetDependency */, + 1C6EA93C1D2EC52092DD487FBA3AEB8C /* PBXTargetDependency */, + 877A218B88515B8798E10E433D5921BB /* PBXTargetDependency */, + 0E711789D17C92D9CE818E4104CEF226 /* PBXTargetDependency */, + 8F92812DF2330343BBECFC2F0256B59B /* PBXTargetDependency */, + 944243CB01417A4278103E67D52C24A9 /* PBXTargetDependency */, + 94090A8ADEA09529CCA1DEF63B1C422C /* PBXTargetDependency */, + 8DF0AD6EC5ACF1637AEB4E9B819C91D4 /* PBXTargetDependency */, + 5987199C8FC66E6F8BA731AFBD61FCAE /* PBXTargetDependency */, + D0780D1B343914E95EB260149B744C97 /* PBXTargetDependency */, + E1AF04BD5A9BC06826B473843596E59D /* PBXTargetDependency */, + E27A4EA46A7511B83465500FFF2CA877 /* PBXTargetDependency */, + 629394BA42EB7EC7B33661A7BE0403F9 /* PBXTargetDependency */, + 780D99A454D6BBC0EE453918C7D61CC2 /* PBXTargetDependency */, + 083F4E01DB6320DC4B9BAC6E6E79D6EC /* PBXTargetDependency */, + C3A607EC59187867F816C297B3D89BF8 /* PBXTargetDependency */, + 52E36D642E2332E4C344F401FA518C41 /* PBXTargetDependency */, + 4C11700A8BE27AF556D417C31EC649E5 /* PBXTargetDependency */, + 9FE3416D7458157689C4668857F1ACE8 /* PBXTargetDependency */, + 23B76AF1A6230F69B7DE323041CEA7FC /* PBXTargetDependency */, + 93D73267749CB174AE0B59E077915DAF /* PBXTargetDependency */, + C82D7927F46DDC9F20DBAFFA20327326 /* PBXTargetDependency */, + 67E802AA17742F7680065CE683198234 /* PBXTargetDependency */, + 741F17987DF6EEF2FCADBEACE72DB0EA /* PBXTargetDependency */, + D4829C3853020C07990EF43C41C9CB5C /* PBXTargetDependency */, + 63244211A36F84E9F0AD1EB2F27AD519 /* PBXTargetDependency */, + FE3983E7904CAED576F2DCAD6CC992CA /* PBXTargetDependency */, + B882E31B00E79C662DA71AFE211C81F9 /* PBXTargetDependency */, + 9CEAC98B0FD099AD9A4CD45FBDE7365C /* PBXTargetDependency */, + FF686E17AB71124982ABE104B260F97D /* PBXTargetDependency */, + CEB86F447943A38EBEE1CE6C356A596B /* PBXTargetDependency */, + E7337653671E34C595A515E9B254D5DF /* PBXTargetDependency */, + 32E85FC550382C91E7B87D1BF474BCFC /* PBXTargetDependency */, + CD1C64891423DD19D5D03283746FA332 /* PBXTargetDependency */, + 341B6726E184D1B3FC1AB459CC1FFFEC /* PBXTargetDependency */, + 27E31C2777D259DD1D7925A4BB9CC492 /* PBXTargetDependency */, ); name = "Pods-RocketChatRN"; productName = "Pods-RocketChatRN"; @@ -21778,7 +21901,7 @@ Base, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = AA00CA5040E67394A8968C68F98A95DA /* Products */; + productRefGroup = 7580C6647A7E005D0E732BE95D3EDAD8 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -21788,6 +21911,7 @@ D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */, C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */, 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */, + 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */, 13D7009C3736FB694854D88BAD4742B6 /* EXAV */, 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */, 868B90C74770285449C60DBA82181479 /* EXFileSystem */, @@ -22240,6 +22364,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 1FA2DECB6501299DDD5EDE7F123E08A3 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 72C57949DABD3BDC557C1B6AAAA05918 /* Pods-ShareRocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 214C4C45537C4A7BCCB5D24C0C34245E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -22900,6 +23032,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 818071A41C73298AAB39123FEC7F04BE /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 85114B4F37CDF58D3E92F188AE212B93 /* Pods-RocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 825EBE184F03ECE4CE0DA4942F3F3B2A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -22980,14 +23120,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 85196F10742AEC60470F8C4471EBC5B8 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - F7635F19EFECA17CCA8B34B1FE4B0A41 /* Pods-ShareRocketChatRN-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 8554764A2D1C1901709057D3B8ABEBB9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -23421,6 +23553,19 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + A9C288CBF92F866968FB14B02B6E9821 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 8D1B7E50CCEA46357C7172266EDE1D76 /* EXAppleAuthentication-dummy.m in Sources */, + 0C2C18E15224239E99EFA26C3E1489F5 /* EXAppleAuthentication.m in Sources */, + 688FA3D713B354BBB54CD152A7B7BF54 /* EXAppleAuthenticationButton.m in Sources */, + 318291D218B6B634DED9426B8388A64B /* EXAppleAuthenticationButtonViewManagers.m in Sources */, + 7CCFEA95B919EC2A0D5B7A413D55859F /* EXAppleAuthenticationMappings.m in Sources */, + 896B6ABB97CB90770CC46B3066F4C004 /* EXAppleAuthenticationRequest.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; AABBC016A58479851F5E22666161CED9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -23439,14 +23584,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - AFE23AC19BB8E39EBC9E4ACC18EF61F1 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 2A7A969DD863D6692F21198F477E7BBE /* Pods-RocketChatRN-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; B51F78987118852BF217A49D2E0485AB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -23861,66 +23998,18 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 00B12292D6E9DB81564F7FD934136989 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = DFB5C67925F4E263504F38498A934366 /* PBXContainerItemProxy */; - }; 00BD32E2F437972466D5FEAB55C61EF8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 2E1E454B327932AE914124C66C371526 /* PBXContainerItemProxy */; }; - 0155BE95F8BBD41714EB9615602C0443 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 7D6E2E84219248A0B3D4C8D1AA859E73 /* PBXContainerItemProxy */; - }; - 0175C01EF26FDF3BA3C9140D1CD87BC2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = 481C26762652A3ED23B8618AD20F0E7D /* PBXContainerItemProxy */; - }; 023955AC36E92DE48F0B6670771E8769 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTActionSheet"; target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; targetProxy = 2FEE8079F6A6AAB7EF261D76B867F043 /* PBXContainerItemProxy */; }; - 02A7559011D3F5A233BCB5F92AE1C0CB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 89B2623F7869C7E9D0D43A8A48C947DF /* PBXContainerItemProxy */; - }; - 02FE5970C62FF0645B3C78B1F9C0DB95 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = 317A344C7E9C1AEDDC75B120EABE2CEF /* PBXContainerItemProxy */; - }; - 0337AA07AE8E0A1E6F556B5DC00369A7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = 2ECCD98146CA451C78B2BA873BC0620D /* PBXContainerItemProxy */; - }; - 0343342C650DCF1179739E63291A3C05 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMAppLoader; - target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; - targetProxy = A77B106A1C9CC159EBBD1F6886FB8168 /* PBXContainerItemProxy */; - }; - 03B34BC6170E2FD26290061FE909A87A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXKeepAwake; - target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; - targetProxy = EB19CB7D9F00528401CE9736964AAE7F /* PBXContainerItemProxy */; - }; 03C5D1361123B1B19A913F4F89661FDB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; @@ -23933,29 +24022,41 @@ target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 90A863AAA5E405464866F689B43DA4E0 /* PBXContainerItemProxy */; }; + 0441535E951DD4CDABED92EAB991394F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 706833155F95699A64764C9E85FDCE5D /* PBXContainerItemProxy */; + }; + 04534E46F5870362FE41155D52B7BB9D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 092D5D93A4BE95E389BE905BEB806868 /* PBXContainerItemProxy */; + }; 047D4E0D4AFA3202E8B85875CD42FFF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBReactNativeSpec; target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 4EFDA9ABE3CE71234F681C27E6E67E0C /* PBXContainerItemProxy */; }; - 0535766F456A05E52087F7223254D040 /* PBXTargetDependency */ = { + 048213B16C80ED284DDFCFD3B8DCB10D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 720408A1D31B175413586576DCCCC475 /* PBXContainerItemProxy */; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = E87AC16A9662BEF88FF2E2BAAAFEBDBA /* PBXContainerItemProxy */; }; - 055FAB8FB12684AE9D3E97BB9F74FD80 /* PBXTargetDependency */ = { + 070E710221BC3E672BD79D21AF081C9D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = F043312E230596AB95D2D17693A9DE42 /* PBXContainerItemProxy */; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = CAA23E0DD6E27DB6CF11EA13C866C7CA /* PBXContainerItemProxy */; }; - 06D8EA8847249C156F4E747156316B63 /* PBXTargetDependency */ = { + 07286ABCC53F9BDBC99F0CF72EC3F6E4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CocoaAsyncSocket; - target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; - targetProxy = C5A1B9ADEB84E33D04F1F9A0E7F619E5 /* PBXContainerItemProxy */; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = CA3DFA2162ADE9515B93098FB2BB06EF /* PBXContainerItemProxy */; }; 073CD2E5F0971C9A28E591F6289C48BA /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23963,29 +24064,17 @@ target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; targetProxy = 70056FCB7FB870FB7D91F161A3B6F84F /* PBXContainerItemProxy */; }; - 078A78DF8436E19371E782D0A6C2E04B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 3A64E280F9CAC21F0AF9EB146CF51057 /* PBXContainerItemProxy */; - }; - 081617C62B706A86E86FEF1F3901915A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FlipperKit; - target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; - targetProxy = 1F02FA0831737414CC4F7A8CE051B029 /* PBXContainerItemProxy */; - }; 0819D4E8DCB748F652F6C3216F88A453 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 449D79087AC8EFD285D3D6948D363A86 /* PBXContainerItemProxy */; }; - 091F9D9784017D09E88F58D12722AA84 /* PBXTargetDependency */ = { + 083F4E01DB6320DC4B9BAC6E6E79D6EC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = B978B475810C4FD7869B954D06A2016C /* PBXContainerItemProxy */; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = FD94CEE5407A7A65AFADEEF368B33E91 /* PBXContainerItemProxy */; }; 09548539F9B55DB83B7CFF0A3382B178 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23993,17 +24082,17 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = 924025D4D8E604372CC80524DD2E97F8 /* PBXContainerItemProxy */; }; - 09A91972BA1AA05D54ED26562EAAF9E2 /* PBXTargetDependency */ = { + 0991FF3547006C3A1D043C7EB9D885B0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = 6B919EC005ED5007D390107A6AD1CBEA /* PBXContainerItemProxy */; + name = FlipperKit; + target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; + targetProxy = E284AB23F847DDF014D356A1EAE33869 /* PBXContainerItemProxy */; }; - 0A2B4ACB49AA36B418589C0388E92756 /* PBXTargetDependency */ = { + 0995FF24CBA3429758D3ACB92FF1EC31 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = D6F0A9F1849492F459148B90BB24465E /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = 170D54C326C002FD03C550DB01721559 /* PBXContainerItemProxy */; }; 0AB8C204827951DC76A0DEA96828FC98 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24011,11 +24100,11 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 437B65583B16B649BD8F25DF7359E61D /* PBXContainerItemProxy */; }; - 0B1E99FA451C0414DD3AD2A005785C64 /* PBXTargetDependency */ = { + 0B015477CFB23CE67F67675063638188 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = 793AE50DCD18BF30EAE713EAD69D4598 /* PBXContainerItemProxy */; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 354C239E304DD331D683C8EFA1A02739 /* PBXContainerItemProxy */; }; 0B6CE01049FAA34EEDB7B041E1C159D1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24023,35 +24112,23 @@ target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; targetProxy = 6F3BFA1700F4AD8B8AB51F4F7A157858 /* PBXContainerItemProxy */; }; - 0BF3FFB9289FAB263DEB38E68F2E212F /* PBXTargetDependency */ = { + 0E711789D17C92D9CE818E4104CEF226 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = 56F2E5DA9C49C6133084D6AC9DC743B2 /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = 4B87DA8B5938D22B8D51C124BD488706 /* PBXContainerItemProxy */; }; - 0D12270DD1FC0ADBAC2E5165118BBD7C /* PBXTargetDependency */ = { + 0E93397AF55C2185A2AF94180454A235 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = D4F2E6E9387DC06F3EEF3B428A229E6E /* PBXContainerItemProxy */; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = E7B06BC27E7E38FF0A88678908AB6CAE /* PBXContainerItemProxy */; }; - 0D7B301C97C7F917CE8656E9CBF72961 /* PBXTargetDependency */ = { + 0EA61D86DEAE681F85D27A112D3A81A6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 05433F69140BFF84EEC14F8BBB6945CB /* PBXContainerItemProxy */; - }; - 0DB82453916296BE3C43F606A963B86D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = 47FC2A1F1B631E19D28534C6C4AA85AE /* PBXContainerItemProxy */; - }; - 0DEA1D94389E2D91C61C34366B9B1872 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXWebBrowser; - target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; - targetProxy = 629C5807B00C50D54974153BC0A76121 /* PBXContainerItemProxy */; + name = RNCAsyncStorage; + target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; + targetProxy = 31DA2ED95B4C7793CD007B9126068447 /* PBXContainerItemProxy */; }; 0F0BDC8FEB853569FB1BF7ACAD504741 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24059,11 +24136,23 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = B3F501C8895365B2E84048FB6C665944 /* PBXContainerItemProxy */; }; - 10504A15758B926901A8EFFD6D56ACE3 /* PBXTargetDependency */ = { + 0FA308A7F787BD1D5E2A47933D634FF6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-safe-area-context"; - target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; - targetProxy = 2A808EEBB3550A71B033A7E0FFD411F1 /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = 0B7A345282316D55B1AD772ECDE5A000 /* PBXContainerItemProxy */; + }; + 0FCD2511D7D96AE12FC35F756553F838 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = C687E0F2A84310D36737FAFF93DC681C /* PBXContainerItemProxy */; + }; + 106178C2DADEB9C642DC0B548B3397D9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactNativeKeyboardInput; + target = 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */; + targetProxy = 2765E79995E24E3217CCF2849AEF4DA5 /* PBXContainerItemProxy */; }; 109AAD7F89F41A04284880BB80B4C074 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24071,11 +24160,17 @@ target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; targetProxy = 9BAAC27A785084FD67CA13B8EDA42C7D /* PBXContainerItemProxy */; }; - 11722063AF931958AC21E2DA8FBA8C95 /* PBXTargetDependency */ = { + 110345DCB247131B740DB18A3007956A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = F518DF2618C642FE54AEA6CD462109C5 /* PBXContainerItemProxy */; + name = EXVideoThumbnails; + target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; + targetProxy = B14B15692E4311A408CA364CFD65AB4D /* PBXContainerItemProxy */; + }; + 11D8699F7BEC41FCFB3DC2DEF0BB2CD6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "OpenSSL-Universal"; + target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; + targetProxy = 006FFD111E6A8FAE31D391B1258ECE73 /* PBXContainerItemProxy */; }; 11F238A9B52D1449196113F8D64A42B1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24083,47 +24178,47 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = 69F31C657CAAFD3F29F09AA817462D1B /* PBXContainerItemProxy */; }; + 12F4533E4E5CAD05A1161268D99F5651 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = 834EA5F02787C22CE4D03C8DEE00D1C1 /* PBXContainerItemProxy */; + }; 13D1447CBB44B0928F9CC7C4F753C88D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 25511591901776CBD4A6CC6BDD1BD233 /* PBXContainerItemProxy */; }; + 147F949F13FF56A4C64412E5EB7F37C8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = F67FCF59E786704810F16F9736B0290B /* PBXContainerItemProxy */; + }; + 14962FBA84F69DDC89B0A1C791D91030 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = 598B1FA2EC7A69C105906F84BB488F2F /* PBXContainerItemProxy */; + }; 14D04125E2284DB6D632FA2146727F98 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = YogaKit; target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; targetProxy = 14FABE1DA2D29D5AE8EE8EE26F763525 /* PBXContainerItemProxy */; }; - 150261849B3B273511C33006C804A841 /* PBXTargetDependency */ = { + 16AAF8DC6A6EC3C5803482AC24CD469A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CocoaLibEvent; - target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; - targetProxy = 5236A234E25B2CFE6A52B5DEE538DBFC /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = 8531074ABCB5C05FC66BED6C6BB53DD6 /* PBXContainerItemProxy */; }; - 152646761168AB8E750A70D0757BB319 /* PBXTargetDependency */ = { + 16D7952F74E1E3C3FC3A43CDF19BF51D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = E9CB8EC8A37394D48521504782B91B5E /* PBXContainerItemProxy */; - }; - 153824B19799E67E369B0ECB36B3370C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-RSocket"; - target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; - targetProxy = 3FF1F1F1DC51D56F1EA3FD69647ADC80 /* PBXContainerItemProxy */; - }; - 16F410453CB723B6BCE3B1E3E5DBC653 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 898E476F8C830571E10C8552078EC323 /* PBXContainerItemProxy */; - }; - 17A32C4F3BC6772FC6CCE284C7C849B8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 6D3FE13E3E025E0A30C7C1C6B873A7F5 /* PBXContainerItemProxy */; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = 0C40A8447D42BDF8AC8721B21735CA7E /* PBXContainerItemProxy */; }; 17B0305E08C7EF9ED292AA9014450AF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24131,11 +24226,11 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */; }; - 17BCFA3B1FE346530E7DEFDE7B726FC6 /* PBXTargetDependency */ = { + 191B701AF42B8CBB4FB1E1D759AC35D2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = F003B85F651199B31EC150EC74BEED0D /* PBXContainerItemProxy */; + name = RNFirebase; + target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; + targetProxy = A4D09E583FAD7EE7C96D582BD6FCBC69 /* PBXContainerItemProxy */; }; 19297402BCBD687406D317002BE87D26 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24143,29 +24238,23 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = C5792CABC007D0A7A4E11F4A976C441D /* PBXContainerItemProxy */; }; - 19FE758428D0DD2B34F8DCA834B910B8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "OpenSSL-Universal"; - target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = 381062F03A2B27DA90748720242455D0 /* PBXContainerItemProxy */; - }; - 1A4C3EE7D9011AD096224F9B0D01CEE5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = A4386E72B48087BCD0D6F184CA71381B /* PBXContainerItemProxy */; - }; 1AB5E32532E3403A1A4C0821215EE208 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = FA5C86A90420903CA42E08EC8584B824 /* PBXContainerItemProxy */; }; - 1B4174B3E587CD1E32E95C2A9563C535 /* PBXTargetDependency */ = { + 1C6EA93C1D2EC52092DD487FBA3AEB8C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = 46EE37F6E4BB094CDCE20D1E1C7A579C /* PBXContainerItemProxy */; + name = ReactNativeKeyboardTrackingView; + target = 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */; + targetProxy = 7F2668ECFE31EF908445AC97603E131C /* PBXContainerItemProxy */; + }; + 1C70D2E7AE35D9BF386A038BF3C36BFE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = D56D8A502B7D2CAE553F9A5412C1C754 /* PBXContainerItemProxy */; }; 1CB5826B04A12E8E43187A497C73FA8E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24185,35 +24274,53 @@ target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; targetProxy = A86A3721252494F286B714B8A88F95BA /* PBXContainerItemProxy */; }; - 1EBF278CCA660464B5CB2CE3BCFB8FF4 /* PBXTargetDependency */ = { + 1FF5CC5D2C7F22E5CA560BD25365D949 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = D03CA778A6E244BE04E5AF75E924F041 /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = F86AC551D0AF61605964F573ADB4FFDE /* PBXContainerItemProxy */; }; - 209A1E90848274D4CF67BF20793A31BC /* PBXTargetDependency */ = { + 2062301EF610A6E1D2D3287DDD439811 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 795D7742E58C6A0E87A73A538EBBE907 /* PBXContainerItemProxy */; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = B115C105B3BFACB74789A91278CA57A1 /* PBXContainerItemProxy */; }; - 228BCCFD2019950E19E1DC6A9C6FF439 /* PBXTargetDependency */ = { + 20C188D0556DD3230A2F719CA0A92890 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnosticsInterop; - target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; - targetProxy = 99837D434906DCCE1752A26D4E5B4AF6 /* PBXContainerItemProxy */; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = C645A03D6705940515BE53A4CD154F62 /* PBXContainerItemProxy */; }; - 229979BCC10A643F883BF7CCBC37870A /* PBXTargetDependency */ = { + 215A21320585080F06CFF5410B01F186 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = D044FF13830E865D08E4620199940F43 /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = EE16F29907E7D566487750CF1E5309B8 /* PBXContainerItemProxy */; }; - 24AEE16CBF54D34A6DE6DE0A35BBFDFC /* PBXTargetDependency */ = { + 22929DA02818F7126EA099C4A73AC96F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = 8C39DD71EE6CA0BF8F945B662CE21295 /* PBXContainerItemProxy */; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = B2899726ABDAC8715657D03D2A0A223B /* PBXContainerItemProxy */; + }; + 22EDBAF49DD7D1F34B949E69CA1F8155 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = 59609326015762E5E6F343117D40AD1A /* PBXContainerItemProxy */; + }; + 23B76AF1A6230F69B7DE323041CEA7FC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = YogaKit; + target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; + targetProxy = F88D6413693A80E2630BAF025843AE0F /* PBXContainerItemProxy */; + }; + 23FC19D5718AE55130DF3FF20E2B836E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Fabric; + target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; + targetProxy = D6D9D9C76D7E941EBAB22197BAE3D1BD /* PBXContainerItemProxy */; }; 24B55147C941BE9797F6BC794F57308C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24233,41 +24340,29 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 56C91901D2770AB6795E24C1123C4FCC /* PBXContainerItemProxy */; }; - 25E1CFA8414B92F22FCCD46DCB4E3D29 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = EB2FDC9DDA1AF82A434970FF9CE0D680 /* PBXContainerItemProxy */; - }; 25FF94CB1F0E40824E1E6AF9F1F0421A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 113CDDB809E5888DDC4ACE47ACB7FEB3 /* PBXContainerItemProxy */; }; - 26CED561A45F585CC689C23FD5E0BE66 /* PBXTargetDependency */ = { + 26A4B6269AA7F57DF356FEB6ADE84412 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Fabric; - target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; - targetProxy = 2B3BE131DA476AF8BE4B50F1FA83049F /* PBXContainerItemProxy */; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = 3BDF6D95E20D7F6DE120BE857C141E15 /* PBXContainerItemProxy */; }; - 27FE4AEDBB502EDED9F623D84FC67306 /* PBXTargetDependency */ = { + 2795F0BAA141D0FCA95F95EF9F8519CB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 4BEA71D832BF1E5BC7807D8691C385D6 /* PBXContainerItemProxy */; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = C004D8AE90263EF8D0830369C0DAFA6C /* PBXContainerItemProxy */; }; - 289EB7BB57A006E83F0277E4F438A251 /* PBXTargetDependency */ = { + 27E31C2777D259DD1D7925A4BB9CC492 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCameraInterface; - target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; - targetProxy = 0116B2737E089344989450E6E1B69A0B /* PBXContainerItemProxy */; - }; - 2924E5AFA8A17FD6D4B9449C1D5E57AC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 57F3CBA300AC408A19126D6BB9FFA6C8 /* PBXContainerItemProxy */; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = ABB803B08A445DBEE22F586C47A9EC15 /* PBXContainerItemProxy */; }; 2925383A3851E8CB0EB2C4380F4B3D13 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24275,24 +24370,18 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = A948FF4AC90480FCBFC7BBA8916F351F /* PBXContainerItemProxy */; }; - 29391E60EB54A7FF73E2925B6F67BA5F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = 2E0DF34D5B789464B1D97696AE2D67A9 /* PBXContainerItemProxy */; - }; - 2AACE6974A339102FC152B8CE0CB19CB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = 10462D2FB8734AC0498462246ACC9159 /* PBXContainerItemProxy */; - }; 2ADC78EE47A1B88A86148BD4DAF07642 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTVibration"; target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; targetProxy = 38EA73CE3C061B8768A17C136BC136B7 /* PBXContainerItemProxy */; }; + 2B351EC3B588C1118485544D6E2702B9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "OpenSSL-Universal"; + target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; + targetProxy = 202440C7FF13158AF71424C4D654A141 /* PBXContainerItemProxy */; + }; 2B4E428FC4CDB24E2744F835DF50671A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTTypeSafety; @@ -24311,11 +24400,11 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = AD772911BB22AACF6D82C7659AC43148 /* PBXContainerItemProxy */; }; - 2CEE046F87160FF8B3BA4FE8F895F703 /* PBXTargetDependency */ = { + 2C92F6A8F7DCD574427C0DAD11488DD2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 94E5603CE4B3BA9ADE043A69466BE569 /* PBXContainerItemProxy */; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = B0078FBBA4435D1A82DFF2541CA9203E /* PBXContainerItemProxy */; }; 2D365469B1B38573CE4598BD17A86096 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24323,23 +24412,29 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = D1B6676933B6091F594BD94DE1B18D11 /* PBXContainerItemProxy */; }; + 2DD5F8BFE0AD5B46EED8D65FEF28B9A8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = 9D222BA2EE84A4ECD28EDF8CA8EBC20B /* PBXContainerItemProxy */; + }; 2DEC0DE01DA6493268B04579B21C8297 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-DoubleConversion"; target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; targetProxy = 9E534D42CEE0BAE16AFBC5CDD1AE05CE /* PBXContainerItemProxy */; }; - 2DF2C5E78991A7E6B88F5637B8ADA64F /* PBXTargetDependency */ = { + 2E011C65C71B088BC7EBCF7706BA1013 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 3F21E2D881324022A742C5BBCA8DD8CA /* PBXContainerItemProxy */; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = 4BAA84BFF9B20E3F8F4184185BE52A6B /* PBXContainerItemProxy */; }; - 2DF32F7BF518E256CA9CACE25F68D9E1 /* PBXTargetDependency */ = { + 2FC8608372A1F9D68EC6D9820DB8824C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CocoaAsyncSocket; - target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; - targetProxy = AE813DC2F2E66E205C125C30C04712D5 /* PBXContainerItemProxy */; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = 80E967EA332943BEC384D7675F823134 /* PBXContainerItemProxy */; }; 303A329EFE63F98C76E1F88C1909DC69 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24347,11 +24442,17 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = F56EBC18CB64EE0482444624DFEC06A2 /* PBXContainerItemProxy */; }; - 310900168BA1525D29992DF099685620 /* PBXTargetDependency */ = { + 30FB76CCCCF5E1BC1EBE101C5992B679 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = F4E509105FDE73580318BDB17A2F6C75 /* PBXContainerItemProxy */; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = 694D509D479FFBBBF10A1B48B42481E5 /* PBXContainerItemProxy */; + }; + 310660EF2F2C2FC7FD56744A876A7964 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = C2D52719141EB853EF6FA0F32FDE142B /* PBXContainerItemProxy */; }; 3152722E87FC29CE2F09059093E805D7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24359,29 +24460,23 @@ target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; targetProxy = 286C7DA34EBE9F8A3EC10424B36A30C8 /* PBXContainerItemProxy */; }; - 3153C945F46207A093C02862BF7A5869 /* PBXTargetDependency */ = { + 325BE8F852DC7871BB848286477093C7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 632707EE8DA31E2A93D47FEF8EDDE1AA /* PBXContainerItemProxy */; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = 30F41A6855AF507791D562D68F0705EA /* PBXContainerItemProxy */; }; - 3162BA0FA007FEC35ACB64478EF40E0D /* PBXTargetDependency */ = { + 32E85FC550382C91E7B87D1BF474BCFC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXImageLoader; - target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; - targetProxy = BE7535E51A4A486A7DA2F76C8FD89AEB /* PBXContainerItemProxy */; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = ED0F6455624CB20903964C51B6AAF98B /* PBXContainerItemProxy */; }; - 31E2C2A74004A6C539DBC6DD63CE60C7 /* PBXTargetDependency */ = { + 33BFC3B9602A197EB084D4467E7C8A32 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = 8A6D22F0AFA16615424D80A71C9845A6 /* PBXContainerItemProxy */; - }; - 32000BC5C7CA383EEE290979DA0D920A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = E926C664359DC5CB9521170529335640 /* PBXContainerItemProxy */; + name = Crashlytics; + target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; + targetProxy = BECFBFB611A1E96DCC768C2CEC0F2500 /* PBXContainerItemProxy */; }; 33F5B6A58855F2016450517E03B74C4E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24389,11 +24484,17 @@ target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; targetProxy = D466E30F6A7C6BA97286EAE8358F3B63 /* PBXContainerItemProxy */; }; - 35A5DC2371006D077FFAC71FDBAE39DA /* PBXTargetDependency */ = { + 341B6726E184D1B3FC1AB459CC1FFFEC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = 3DE80F8E0B71E3524D479F7EE7B0E363 /* PBXContainerItemProxy */; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = EF23D762D0E80AF622A44B955C09860C /* PBXContainerItemProxy */; + }; + 34ED56ED6BE5685523FF8EB43FC16CEC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = FF5CD573CD2CA46046A23A9661ECBD02 /* PBXContainerItemProxy */; }; 362889F28F9982FC90A7E35964352495 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24401,12 +24502,6 @@ target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; targetProxy = 68398EDCB17F0A6D8CEE83EC1EB7E137 /* PBXContainerItemProxy */; }; - 3629A10B750B496AB327830A7A564E55 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = 3C770ECC535BF84D20FB0220C85C8609 /* PBXContainerItemProxy */; - }; 366795C32FDD23000EF31475425A89E1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-PeerTalk"; @@ -24419,29 +24514,17 @@ target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; targetProxy = 884D4E9F643132CA763055003CE8B51B /* PBXContainerItemProxy */; }; - 38EDFE5BB5E0B335964996DF9CB244D4 /* PBXTargetDependency */ = { + 3956D2B6EB220EF37836D5A4A71C44F3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 7145415F600675F5E72D0C732809AED9 /* PBXContainerItemProxy */; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = ED8929F0D66DACF7D445CE27EF09DF71 /* PBXContainerItemProxy */; }; - 3A0B008618BB1DD65A10432F4D749A55 /* PBXTargetDependency */ = { + 3B50D6536D1B24429C11C1B3A54BA294 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 4196171600955B9E27E99E6261CC6E96 /* PBXContainerItemProxy */; - }; - 3A4BEE6407B76FF69341C06CCDE003F5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = 1BBBC893DBD938F4DFC60A3408267F40 /* PBXContainerItemProxy */; - }; - 3BCA1489849A5D4E4DACC765DF6E7CDD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; - targetProxy = 222A9C67ED7439D98C5B4144344B0060 /* PBXContainerItemProxy */; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = B33C12D2E768A6A3D86F7FCCFEE6566B /* PBXContainerItemProxy */; }; 3BDD26DF1C76A2717767412BFEFD633E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24455,6 +24538,12 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = C9A96638BA1FF6B3D2046312346C0E9B /* PBXContainerItemProxy */; }; + 3CD4D15D7C1BB8492BA702B45BDF60E4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 0C760DE2C342A8BC39EC77E846EF71A1 /* PBXContainerItemProxy */; + }; 3CDE7CA6B5E8DC488FDB8E4812131AE4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMPermissionsInterface; @@ -24467,29 +24556,35 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = BF6D3B39A50224068CD35E1C88D41C69 /* PBXContainerItemProxy */; }; - 3D63EE734798F797375D0CF95A29BB9D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = D4C14BAAE12A6ABF46BAD7E39BA62AEE /* PBXContainerItemProxy */; - }; 3D7548438D5EE5426CCA93D860C31396 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = B016F73616BD062B510476739F12C437 /* PBXContainerItemProxy */; }; - 3EDFBC20E7648BF5CF811448AB9422D1 /* PBXTargetDependency */ = { + 3D87CD04706B6D88B7C679C507C89270 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = CA5914A72D30A9A8FDDE07F91E9D7495 /* PBXContainerItemProxy */; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = 189FAE730F2AD443DA6ED7896B411E85 /* PBXContainerItemProxy */; }; - 3F021831F0AC641A6FFEC29CEE06DC44 /* PBXTargetDependency */ = { + 3DD675DA51EC5C275989A92C924919BF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 5F5B0DE477C61F987CF8142B3CF588D0 /* PBXContainerItemProxy */; + name = Folly; + target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; + targetProxy = 7167E4A0BD1718C1F6B24C44834A819D /* PBXContainerItemProxy */; + }; + 3F4BD3118DED049B8794AC98BD6A8F92 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 1AB665C5E636E2F8919C09E5D379B6F0 /* PBXContainerItemProxy */; + }; + 402CE4D8523879B63D9C5E2318DB6152 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Flipper; + target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; + targetProxy = 227B8D1EC7D0321A6B7F9ED5A1743ED0 /* PBXContainerItemProxy */; }; 408548483766B59D87684AF72638B1FE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24497,6 +24592,18 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = F13412B1EC8D97A0134A577EFE4FFBFA /* PBXContainerItemProxy */; }; + 40A73A360E0CE4C702E19F03FBB418CB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = DC0B40CA4F3802AD32801D2F549975F9 /* PBXContainerItemProxy */; + }; + 40BEC7951B04238B7AE03F4E58AC4CDF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = F6EC57AB926F92C2799983D4DB7DE9EF /* PBXContainerItemProxy */; + }; 41693E96081D863AA597AB8B46CF3F00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTRequired; @@ -24515,11 +24622,11 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = 65F1482F271C028DB3676FA82CE9C9EC /* PBXContainerItemProxy */; }; - 41FF18B3ACA0A74DE70EC06C4898A027 /* PBXTargetDependency */ = { + 41E567D75A9FEA84E51EF8AD468B8E84 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 3F31754C30988FEDE2676752BAF1B877 /* PBXContainerItemProxy */; + name = EXLocalAuthentication; + target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; + targetProxy = E83DAA721CA5B6F643752FA5682547F9 /* PBXContainerItemProxy */; }; 41FF68034D509FCE39317463A46EE39D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24527,11 +24634,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = B40AA08577F30A00FD2A25A08341964A /* PBXContainerItemProxy */; }; - 42B9030D510232C413EBEDEDA171EAA7 /* PBXTargetDependency */ = { + 43A6BEDD795D84E4E85FB0D613CD451D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = 943AB19ECCBB088EA73DD87CC1784089 /* PBXContainerItemProxy */; + name = "Flipper-Glog"; + target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; + targetProxy = 252E71DE0991E80B542EA10DA3A25289 /* PBXContainerItemProxy */; }; 43E169AEDF03426697FA963504C2AB59 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24539,17 +24646,11 @@ target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; targetProxy = 35A10B7FC1F84462218C13545EB7FB88 /* PBXContainerItemProxy */; }; - 44BB1D4203CD9FFAABE0719191FEB7D7 /* PBXTargetDependency */ = { + 45B5B3D58806EA6198440D49B1368392 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = 6959BDE814EE634BBFC694E5B0C1A67B /* PBXContainerItemProxy */; - }; - 45A239B9B3DA96B4DEFA20D9E436AA42 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = 3C9785616804C9DEDCB45622F3C482BD /* PBXContainerItemProxy */; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 40B80BD704FDA147F57257B6F5D6315E /* PBXContainerItemProxy */; }; 45E6BC946DC4674AE9C022050299B84F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24557,23 +24658,17 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = C266DDB269EE618DE8FA720583C9C81B /* PBXContainerItemProxy */; }; - 463EFB446ED33B945EBE91391ADBC20A /* PBXTargetDependency */ = { + 460A7C861D55C3E02E7C8EBEB9BD23D6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXKeepAwake; - target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; - targetProxy = 27A74937B06F884A86943CF9C90580BF /* PBXContainerItemProxy */; + name = EXWebBrowser; + target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; + targetProxy = D516B0FB4F3EAB4591E0F4942A3A033D /* PBXContainerItemProxy */; }; - 47869A08D032171B877B4B36D0DD7959 /* PBXTargetDependency */ = { + 4679E69439F3825035AFA11B44BF1C25 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = F0DF7E5E5BA1D21DE25056C1ABF3B6AD /* PBXContainerItemProxy */; - }; - 47A2DFFF2153D348146D67153967C23F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 408A871D2AB7B868CA034AE6E1ED6D14 /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = C673100DE0464C758420BC59FBCB47CC /* PBXContainerItemProxy */; }; 48076A1E02117E39C56513D1F085E022 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24581,11 +24676,17 @@ target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; targetProxy = BFD1349A73D002FF8BADA635DB23EA34 /* PBXContainerItemProxy */; }; - 49619C14E8CF7A817F6DEE2BE6541297 /* PBXTargetDependency */ = { + 48C20EF9DE21D8DC7BE5DEC9F390892D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMAppLoader; - target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; - targetProxy = 188E6DF3DB8E81B4E6E29CE517BDD087 /* PBXContainerItemProxy */; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = 9445C87FDF7818E193B036F782FA708C /* PBXContainerItemProxy */; + }; + 49198F50230A17603DC1CA69ACC9C606 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = C336E00A5FB732ED9C591A771122B06A /* PBXContainerItemProxy */; }; 49AC31079F8A8A1CB4A6E1E09B034C7F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24599,41 +24700,29 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 2539C386890D7883A108FF4E3829524A /* PBXContainerItemProxy */; }; + 49FAF5260F6CA326E0A59808AF8B447F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = 6A3D5FC42F6B13BCE34B6B8DE37A5CC8 /* PBXContainerItemProxy */; + }; 49FF0E01B2E6C594A989F60389EABF30 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = CBBD408BB7D70EE08646E3F8BD770069 /* PBXContainerItemProxy */; }; - 4B00B98F127847EEEA340C6922C0F41E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 9197328BE9F47A8375085B22B0969CF0 /* PBXContainerItemProxy */; - }; - 4B0837B9822D26CE7F7127B053B1D430 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCameraInterface; - target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; - targetProxy = 060ED10C2EBCFE34D69703A51C63C6C7 /* PBXContainerItemProxy */; - }; - 4B81974A8A6E9C76EE7DCCDA8DBD1071 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-RSocket"; - target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; - targetProxy = 5F8EB664C2A12DD7A33B25F3869F691B /* PBXContainerItemProxy */; - }; 4B92E472400E59291AA9A2C4B7798BF1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = C6FB783E0F0B781F24F3E63FACA0E42A /* PBXContainerItemProxy */; }; - 4CD77D35412C2D9CC23075280AAAC498 /* PBXTargetDependency */ = { + 4C11700A8BE27AF556D417C31EC649E5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = A1CC74FCBFDCFF1D1A2FC002E53B7EFE /* PBXContainerItemProxy */; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = 9637208698DA30F2A71CCD8891C19BCA /* PBXContainerItemProxy */; }; 4CF06059EAB58EC36AFC1EB383725395 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24647,6 +24736,18 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = E2A7D57EF8EAB020233EDC68A9ECF68D /* PBXContainerItemProxy */; }; + 4D5E95B5D3E242A1B57BB51565E95A80 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 298636FFF0001105699F1548C6BBC7CD /* PBXContainerItemProxy */; + }; + 4E31E2BA1D8FFE06A53258A0A71FCBB1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = 105FDB31D94C66C04F3E0D41406A4BB6 /* PBXContainerItemProxy */; + }; 4E7A54EBDEED5E1498EB0028BFC71740 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -24659,12 +24760,6 @@ target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = 1202CD0D4E7F78CCFBB9BAF05625B5D2 /* PBXContainerItemProxy */; }; - 4EF7911DF9BFDF01CC4BBEE7869A769C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = 1A25A47716C421B0C6927B3070A9EF50 /* PBXContainerItemProxy */; - }; 4F7FBAA168FB752BC980C4CB37D4732D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMFileSystemInterface; @@ -24677,17 +24772,35 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 0DBDC3964B7166E1CC00C4929706C8F0 /* PBXContainerItemProxy */; }; - 5167C09243CD582902B6E5D5B4F4ACAA /* PBXTargetDependency */ = { + 5060212CBAC66129E4C6A252920F7048 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = AE43FA96D15DAFADF4684DFE82A47739 /* PBXContainerItemProxy */; + name = ReactNativeKeyboardTrackingView; + target = 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */; + targetProxy = C177E5B32F71C9BB8F16DA67BCE37C85 /* PBXContainerItemProxy */; }; - 521CFCA42274D8374B3FAE76A7D5B8B3 /* PBXTargetDependency */ = { + 506968D3574844C763A818C4356C49E6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = A921776BC2F14D2D5B734DEFF9D0A717 /* PBXContainerItemProxy */; + name = EXAppleAuthentication; + target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; + targetProxy = 5E72E2807316BEBE675D079C59C7DBA6 /* PBXContainerItemProxy */; + }; + 50B6E388FD3148A5C4C60D3D88ED123E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXWebBrowser; + target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; + targetProxy = C04C07C309466878C915DC6353256A77 /* PBXContainerItemProxy */; + }; + 50E0113BBF13AE22CC35BBC09CE6959B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMBarCodeScannerInterface; + target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; + targetProxy = 404A852F60FF9546CEA9CD2C0281B22A /* PBXContainerItemProxy */; + }; + 51C6B9DBF4772F4E9D76106EF094BCF6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = 20143E36D25D64437DA7043058ADBE44 /* PBXContainerItemProxy */; }; 524568FE4D02E31C1BD2A7E91C5DB04B /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24701,17 +24814,11 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 531AEE2AD8DFFD598D97E440C81B6FA9 /* PBXContainerItemProxy */; }; - 5309F8BD2DDD7BEF5A133AF669B5AEB2 /* PBXTargetDependency */ = { + 52E36D642E2332E4C344F401FA518C41 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = 70AD287B1950F749FDEE7B3610E6E049 /* PBXContainerItemProxy */; - }; - 5368D1A60EC18B750CA3B08FA560D599 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = EF8EC92F22C3003E9D6BE6F9454A61C8 /* PBXContainerItemProxy */; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = 88E1F938A885FA85DE4D3CABDB731469 /* PBXContainerItemProxy */; }; 53E8383D1F4AA7480989633C67AD27FE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24719,23 +24826,29 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 01C9B473BC5FF516A57C61FAAAD8049F /* PBXContainerItemProxy */; }; - 54EB3D48258EA1F297E021AF428EAF2A /* PBXTargetDependency */ = { + 55246C1609C74E17B8C19C0C2DCA391B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; - targetProxy = 3946F854D475D0BF7D3C7F0621194BDF /* PBXContainerItemProxy */; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = 7CC1385DDB15071C21AFB05B229FC1B4 /* PBXContainerItemProxy */; }; - 554F319B48D62EBC75BE59420F250D97 /* PBXTargetDependency */ = { + 5600C13D8EE46E7C700CDE4CA3C79755 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = FE16F8027274ECF3315E626AA73E496B /* PBXContainerItemProxy */; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = 9AEF888E619C66D8E123A0BED97ADE94 /* PBXContainerItemProxy */; }; - 5647BFBC2697BA6754F966394FDB8D1D /* PBXTargetDependency */ = { + 57120606464E48DCFC22F9DE5F1623D8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = C82885FA3259C59A556AF708E76F94E5 /* PBXContainerItemProxy */; + name = "Flipper-RSocket"; + target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; + targetProxy = 9ACEDD1B5FDD5104C25CA5999EA35B62 /* PBXContainerItemProxy */; + }; + 571C3B5994B0FC2C5B95939DB9FF4C15 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXImageLoader; + target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; + targetProxy = 8900FE856EF905CBCD785BF94E7A6BF1 /* PBXContainerItemProxy */; }; 57208D0D75A784D7D6459DDE64924E2A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24749,17 +24862,11 @@ target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; targetProxy = 0ABA41EE7B3250B41F236C99879E22DF /* PBXContainerItemProxy */; }; - 57B80F0048291FC0645CE2A304B1C796 /* PBXTargetDependency */ = { + 5785A5719FB26E01FC0F9280195B60B9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = F8D85C4D530ACA778BAF25964E5DF846 /* PBXContainerItemProxy */; - }; - 58520DBB32C9E50CB6FA8FB92C8305ED /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = EFC2E89E7AC251CD5F2C0200CF3B4D49 /* PBXContainerItemProxy */; + name = CocoaLibEvent; + target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; + targetProxy = 9AD2EFCF2E241006927958B1D18596C2 /* PBXContainerItemProxy */; }; 58EB016622ABE5A31A364D8F7F8E67EB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24767,35 +24874,35 @@ target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; targetProxy = 36984564ED77D3FA35292387EE92F363 /* PBXContainerItemProxy */; }; - 591E92B29A5F6A969C9B8D2B6091879C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = 4D543F8C0B229D78E400529D026C4593 /* PBXContainerItemProxy */; - }; 593EED89BEA0A6FAB5FB78DAF42A92C3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 592671C6C3F74111AF89BE688E45B730 /* PBXContainerItemProxy */; }; - 5970DB7B6EED5FB66B4AD48C0A15EB33 /* PBXTargetDependency */ = { + 5987199C8FC66E6F8BA731AFBD61FCAE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = 2EBA48794C05ABFBA6153F0D902F9861 /* PBXContainerItemProxy */; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = 549F714D928A8A50086DA38418737940 /* PBXContainerItemProxy */; }; - 59AAF25A99AF0C6CE72A38167A3F799B /* PBXTargetDependency */ = { + 59E96040ADC1376A00DE9FA7428DFC83 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = 5B14C1044AF0849B28C9E976B1585789 /* PBXContainerItemProxy */; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = A22369E227C889A95186EF385C7C166B /* PBXContainerItemProxy */; }; - 5C1609CCB14C3F018E0FF7BAC181C027 /* PBXTargetDependency */ = { + 5BB8724800DDD3C1F7D417F93250BA23 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = E329011C07D23B48175E14DF9F6D4695 /* PBXContainerItemProxy */; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = E4F93203EDABFFC91685A5A65687BCA3 /* PBXContainerItemProxy */; + }; + 5C9D3291F3324CF2D4CF82F7BD57ECEC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnosticsInterop; + target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; + targetProxy = 4FCE8BE543358CAA504BE25009D695D4 /* PBXContainerItemProxy */; }; 5E5771F5CD476657DAB39DF1A27D5193 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24803,11 +24910,11 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = D5A54583BF0127DD21B8A44510CBB36D /* PBXContainerItemProxy */; }; - 5F6EC6A56DA79A4BD79E8742107567D3 /* PBXTargetDependency */ = { + 5F7A34E398CBEF9613553BBD109F46B3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = 78B10C6F2FA81F30731B4748D97F5BD8 /* PBXContainerItemProxy */; + name = "Flipper-RSocket"; + target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; + targetProxy = F317CDE17FB2CAE098CA97F0CCF4FBAA /* PBXContainerItemProxy */; }; 5FD0C4F9D97C88847DCFF62E51086938 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24821,29 +24928,29 @@ target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; targetProxy = 8074B236F0C465FFAA342F8D44BC108D /* PBXContainerItemProxy */; }; - 603D43A43A86DA17660533F143A2D442 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = 6260F1B7C1477694069FB3B572F5E8CD /* PBXContainerItemProxy */; - }; 60717C142FFF1F5557A702D7D28CD665 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 3002EB76A6ED5F1FB34B5AB5DC3C2068 /* PBXContainerItemProxy */; }; - 61A6C67026BDCD1F93C22B02FCD55832 /* PBXTargetDependency */ = { + 611E3703AF85938D4C1F28BB4D5362BE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeKeyboardInput; - target = 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */; - targetProxy = 7895C6701AB756D4BFF112C5836924EE /* PBXContainerItemProxy */; + name = "Flipper-Folly"; + target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; + targetProxy = B24BCD8B194323E1A21283709EDA199C /* PBXContainerItemProxy */; }; - 61DAFFD29606A59E3C80CA0333819260 /* PBXTargetDependency */ = { + 629394BA42EB7EC7B33661A7BE0403F9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-PeerTalk"; - target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; - targetProxy = 9693F79DBB15E1DA6F060060DA0EB898 /* PBXContainerItemProxy */; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = 67A8546D74124EC298648150DA451BDE /* PBXContainerItemProxy */; + }; + 6298DCDD90053BAFC6CEAE719941BCD0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 51BB17051B552032F9321C6BC8CFAD27 /* PBXContainerItemProxy */; }; 62D1D88A1695760F638E66025F47B496 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24851,11 +24958,17 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = CAAFA5AEF75D91014E0A847946B5CD1B /* PBXContainerItemProxy */; }; - 63FBBAEB8D85932DC05CE50E24E58AB9 /* PBXTargetDependency */ = { + 63244211A36F84E9F0AD1EB2F27AD519 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 8953C20239212D028F00C92ACE3CF2AF /* PBXContainerItemProxy */; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = 706D386EA4641163A5A187A413A39C47 /* PBXContainerItemProxy */; + }; + 642EB5FC43D71B61DA568E05D2C1296D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = 8C5C7CA39F6AF729677ECBF53C1A2266 /* PBXContainerItemProxy */; }; 6451B8973D840A0A374086225070784F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24863,6 +24976,12 @@ target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; targetProxy = 72AEF3DC8768694E58AE665D174CE14F /* PBXContainerItemProxy */; }; + 6489AFAE03C376C71BA2B9962E77D33C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = B4F2BE960A3EB94B2C1047BE3C921FBC /* PBXContainerItemProxy */; + }; 649AC6EA8518B9675E9BEEE9269BF98F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTTypeSafety; @@ -24881,11 +25000,17 @@ target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; targetProxy = B6677D6DAB197C7676A97F624A434B26 /* PBXContainerItemProxy */; }; - 680C9CB5F4F5FD43408E0823FE67B132 /* PBXTargetDependency */ = { + 6657896AEB5FD6B3521509A3CEE7D26D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 06EBA32A34CCB8C9B7BAD688DBAC6D7F /* PBXContainerItemProxy */; + name = Crashlytics; + target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; + targetProxy = 07B6F9E3541C3F8BCB338E03FEC8AFFC /* PBXContainerItemProxy */; + }; + 67E802AA17742F7680065CE683198234 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = B094776F3A9B5E05CD8DDD7688EA0C42 /* PBXContainerItemProxy */; }; 687C7745B0C9D33906DF6031B3231B04 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24899,11 +25024,17 @@ target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; targetProxy = A7E5D397C11338DEED5E896EF959836C /* PBXContainerItemProxy */; }; - 6938B5C70C2EC6EDB717449094A567B9 /* PBXTargetDependency */ = { + 691B9BDB3556483D189B437A52863EF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = 5812E690C68386B0A60C2218B5A3A726 /* PBXContainerItemProxy */; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = E85B95ADC8BE1478B8D23355ADD1F227 /* PBXContainerItemProxy */; + }; + 6990039169C9756023BAC19AD9D796F9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = D1F6C742E10F479A07F22A0DE95D9802 /* PBXContainerItemProxy */; }; 6A6C1E99508C762B0559F6CE02D79C21 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24911,35 +25042,11 @@ target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; targetProxy = CBD51A45D388152438D56522530F9232 /* PBXContainerItemProxy */; }; - 6C3E1891894949B14B6F3ED240634668 /* PBXTargetDependency */ = { + 6BDE822D0B562922FE0B99FCB4009EAF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = D04EB8D2EBFD2C318BFAB21E15C68445 /* PBXContainerItemProxy */; - }; - 6CB923BB053D4B91F755B64CDBF8881A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = 7ADA24622F8FE4F0304606BC02619C3C /* PBXContainerItemProxy */; - }; - 6D32ECC9F3C3E82F50D664D4FA3193B4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = 0A5CEF3A16E0391B3D8A34D784325872 /* PBXContainerItemProxy */; - }; - 6D76087269F873A674A76C15F3A81018 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Fabric; - target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; - targetProxy = 74A2763575472BC381AE45C212EE91BD /* PBXContainerItemProxy */; - }; - 6E1B121F8DF6D6ED7652DCCE30302F0D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = 26B83CBC371CF41D1302ADF5DFE24988 /* PBXContainerItemProxy */; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = C68864A3DE9DC26D441E45BF15E2BECC /* PBXContainerItemProxy */; }; 6F06AF75AD0361C1DB54FE0842FB5A20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24947,6 +25054,12 @@ target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; targetProxy = E679399E70A1302F64F34F5147A0D753 /* PBXContainerItemProxy */; }; + 6F59B0834224DEBE6943202F6148355B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = 734191857EDB7891885172A64AA896AA /* PBXContainerItemProxy */; + }; 7074AB64938AFE46C3B792B65FC0AE8B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-Folly"; @@ -24965,47 +25078,53 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 914920FE125E08820136442E6C40FF7E /* PBXContainerItemProxy */; }; + 73224D39C7F036DA4CE4B85E17C19A12 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 56E0EB5C58A2EEC8DF59B35227006F62 /* PBXContainerItemProxy */; + }; + 736F32A41648B4F76450D3CE5CEC56DC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CocoaLibEvent; + target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; + targetProxy = F8258A98BA9CCE965E391202E1897942 /* PBXContainerItemProxy */; + }; + 73779EB8A02810AC9ACCD3BC9C82A185 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = C53CF983E39A5F8C2F252BFD3933BB88 /* PBXContainerItemProxy */; + }; + 73985DE59327348E643E4DEF0EE3A68C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = 8B8F3734E854EA42124817D5A1677D76 /* PBXContainerItemProxy */; + }; 741686727E05FB8600BB0643B2B0AFED /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 1F6D1D516291934964CB96DF667AC71C /* PBXContainerItemProxy */; }; + 741F17987DF6EEF2FCADBEACE72DB0EA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 224CE05F4D19F823EB1006D63050CBDD /* PBXContainerItemProxy */; + }; 74F58832B6EE859ACAC8329A38B23E43 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMFileSystemInterface; target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; targetProxy = 02884AC05BC4B650EBE6E310CA3916B7 /* PBXContainerItemProxy */; }; - 74FFC0F6866CD07042946CF144598357 /* PBXTargetDependency */ = { + 759DB3D4F206590938AE71E9AD5AD226 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNCAsyncStorage; - target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; - targetProxy = B9F2E86227A638EC5082DD61A3FBFE5A /* PBXContainerItemProxy */; - }; - 750E1026A715264D0C389F7874091E4F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = 8F48ACE2B527E4126DD10C79571644A9 /* PBXContainerItemProxy */; - }; - 751AD533EA347CE58D58073B71662D0F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 30C7F6A92B04FE790A4E7968CC78579F /* PBXContainerItemProxy */; - }; - 754CD2E3BC85B53BA1D1054E95C37D54 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = 4D3DFEC9C67C33E29DAA6D88F1FC1E91 /* PBXContainerItemProxy */; - }; - 7550729D8295E93CD355FEA0245B7FBE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-Folly"; - target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = 9E72363DA6C1591DFAF38CB02D03EB05 /* PBXContainerItemProxy */; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = 89420211A78AD85A2D86E7650595251B /* PBXContainerItemProxy */; }; 7664562D0E375C5B355684F6B8AF62D1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25013,17 +25132,23 @@ target = 6D979AB5FDA2E858850D9903776A30B3 /* RNImageCropPicker-QBImagePicker */; targetProxy = 2EEDA8CE75E6D0DC62A3B88EAA06ADD9 /* PBXContainerItemProxy */; }; - 769B9E3AF436CD6DA64147DDDE206B0A /* PBXTargetDependency */ = { + 76B6E1DC8519474EA74F646E3F556AA1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = AA694DF82A10F0AFD276ED63989B5923 /* PBXContainerItemProxy */; + name = "Flipper-PeerTalk"; + target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; + targetProxy = 9FB6D195AFD22A8ACEAAFAECB06E2949 /* PBXContainerItemProxy */; }; - 797CEBF3E23F490A7B8565172F18DD3B /* PBXTargetDependency */ = { + 774940C7DCC8ED759314AD6C1F3708D1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = 5EB1D3D0AFE32D6A6C975AC9E5AF6D5B /* PBXContainerItemProxy */; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = 232986BB47C322C30D1143857049D54D /* PBXContainerItemProxy */; + }; + 780D99A454D6BBC0EE453918C7D61CC2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = 453240879BFC423EA480A7E604AD26B8 /* PBXContainerItemProxy */; }; 7A115CFBA518CCFA1088361489F7D53D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25043,23 +25168,17 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 53E2A1BD19729C2293AB46582C686251 /* PBXContainerItemProxy */; }; - 7C319FE58F3B07EC6165A8400495A006 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FlipperKit; - target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; - targetProxy = 5AF248A1FD104CDFD0250F53DD56127A /* PBXContainerItemProxy */; - }; 7CDFAC77C9B2E078C4776F6D7DA9941C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMConstantsInterface; target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; targetProxy = 81B20C29D8DE0AECFEEA7BFC3548E125 /* PBXContainerItemProxy */; }; - 7DBEC408D9C1F4D0B75E6F195C792281 /* PBXTargetDependency */ = { + 7DC00A9FEB298BA9CE698F4736DDB2F5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 4E4DE69D3FCACC81D796FEAC7191B165 /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = CB543409C4BB73D6C08A911A71CA3587 /* PBXContainerItemProxy */; }; 7DCE32D473F4F7CC77F17725D7C937C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25067,11 +25186,17 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 882BEE9E8FCF0A6BD665F01DFBEF822B /* PBXContainerItemProxy */; }; - 7FB1306D5BB2A95695F8405E97C5A73E /* PBXTargetDependency */ = { + 7F0C6AF96C625D866C1F89353D28325F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Glog"; - target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; - targetProxy = 78F7FD224F81708BF91847A2E37B0075 /* PBXContainerItemProxy */; + name = RNCMaskedView; + target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; + targetProxy = 3A12BA06CA4CF168BEE7C6E7F3897F9C /* PBXContainerItemProxy */; + }; + 7F345F730BCAC227659B0B7F8382345C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 4141964F22C9138F9AFF848D76DFD172 /* PBXContainerItemProxy */; }; 8006C1B350C45E4A3E439F4B4C5D9C26 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25085,23 +25210,35 @@ target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; targetProxy = 6B208C6A49DF0227CFB52DEC61D41F38 /* PBXContainerItemProxy */; }; - 819A5CD7E69F9D47B99315732FDB54EF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = A75D3837E228F472566132F7582CFE05 /* PBXContainerItemProxy */; - }; 819BAF10584B377A2216A0F89DF68CEA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 256A3233D39C474C08913C7F1FE396E2 /* PBXContainerItemProxy */; }; - 826327812DA4B63523514D5C6A140E1A /* PBXTargetDependency */ = { + 82343A6A4B4FF386595CD4DF461C8372 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; - targetProxy = 1237B4612BF07E2FE2C447645E528444 /* PBXContainerItemProxy */; + name = UMFaceDetectorInterface; + target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; + targetProxy = F76F980ED32FE5AEC1552E2BFA5AE826 /* PBXContainerItemProxy */; + }; + 824D7CECE73D4B18AF1E98932D6B429D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-DoubleConversion"; + target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; + targetProxy = 303CEF21791850427C498FE2B7DFB7A4 /* PBXContainerItemProxy */; + }; + 826917CE5F9F256A55648156D4327CF2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = AF2AC1522D1372FC04283E4C84C01AD4 /* PBXContainerItemProxy */; + }; + 826CB7A1F9885CD8946DF99F4E85A99D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = BF606E13E2A1959F7B63E64798921746 /* PBXContainerItemProxy */; }; 82877F99355D080CE20A36AE96108AFD /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25115,17 +25252,41 @@ target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; targetProxy = 729C920815C311E1D586861019E10612 /* PBXContainerItemProxy */; }; + 83465F4DB840BD9DE1CE382E5BFC760C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = C7ECDDDAAD607FD244CCECC1FDA62E66 /* PBXContainerItemProxy */; + }; + 839EA15F3B1A9C591B6AC3A45D64B614 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = F311A539394BA353F92B4272130FAA6B /* PBXContainerItemProxy */; + }; + 83FF23BBA506B5C7A2F4B758F1326C79 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Flipper; + target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; + targetProxy = DFD14860E14161EA0C449996EF960AC6 /* PBXContainerItemProxy */; + }; 8484740BEE2FEF19B15C8D2BF292645F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 6C2F4A0DAC27B8CC1550B7060BBD3B66 /* PBXContainerItemProxy */; }; - 85EBFAF6FC8B4E4BDB0EA1169E78B316 /* PBXTargetDependency */ = { + 852E752598269FB469D4099BA60A5158 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; - targetProxy = 679042776339ABEEA2D119CB3784C799 /* PBXContainerItemProxy */; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = 06FBA034F5D3AFA9DBD729820C204661 /* PBXContainerItemProxy */; + }; + 853932537A73C69B4BDA8729452AEE5A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 4F619D8AB0503D069E026C32F5C950F4 /* PBXContainerItemProxy */; }; 8605B4632FC60A9F80261EF9A8ED244C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25139,11 +25300,11 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 734EDC79ECD7EB645E49FCFEECA93782 /* PBXContainerItemProxy */; }; - 8741AE6C7B4E3B937EC6889E0D9C7DE4 /* PBXTargetDependency */ = { + 877A218B88515B8798E10E433D5921BB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = C7B05112030597801ED7542D38391D76 /* PBXContainerItemProxy */; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 936BB6ACA83A2417F513B8A8D187E568 /* PBXContainerItemProxy */; }; 87AEF2C8DFA51306ED9C9AB1DE0F546C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25157,23 +25318,17 @@ target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; targetProxy = 55D53B02C446F60245427454DCA9546F /* PBXContainerItemProxy */; }; - 8936BC513FB1E13C41264589F743897E /* PBXTargetDependency */ = { + 884C06AA137648215C7E010C592F8792 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 2C16BCDBAA64743DD91ABA9157CE6AD6 /* PBXContainerItemProxy */; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = 77264277B54709FEF7037E98BCBC4655 /* PBXContainerItemProxy */; }; - 8962A2F6B4EFAB4B937C32053EB124FD /* PBXTargetDependency */ = { + 884D4B4132DB5C5F5FBBDBA864003759 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXLocalAuthentication; - target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; - targetProxy = 93A0620EBAF14E638910C7A9ADEBD6EF /* PBXContainerItemProxy */; - }; - 8973B4D23AE8CD15CE316EE7BCE0250A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = A406CAD384FAD0994073A19BA2E9AC74 /* PBXContainerItemProxy */; + name = RNUserDefaults; + target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; + targetProxy = 77E20C5AE1531D5EDB82E8E438BD8EE6 /* PBXContainerItemProxy */; }; 8B45BA9683C0AE1D7149D313D4FDC461 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25181,17 +25336,29 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 8D04B36B23A984DDD45F643F1C461D61 /* PBXContainerItemProxy */; }; - 8E437911596B5C6B824D94DCD7DD870C /* PBXTargetDependency */ = { + 8CC810663EE3B16D1B3298390CAACAA1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = F31E1194E8FA65F9209DFC2EEA928D0F /* PBXContainerItemProxy */; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = B9296716273ADCFA2BF4726F57CCE47A /* PBXContainerItemProxy */; }; - 8E847DBF6AF9AA8342269C876310214B /* PBXTargetDependency */ = { + 8DF0AD6EC5ACF1637AEB4E9B819C91D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = B3E14BF8F3E60443BCDBB39A66B40306 /* PBXContainerItemProxy */; + name = UMCameraInterface; + target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; + targetProxy = E3249D63E224AEC58C5C2721FB305F90 /* PBXContainerItemProxy */; + }; + 8F7D7E28AD1D4060AED07E630B95441A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FlipperKit; + target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; + targetProxy = A58413346B6A6C7BC090C0902BBCFB6E /* PBXContainerItemProxy */; + }; + 8F92812DF2330343BBECFC2F0256B59B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = TOCropViewController; + target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; + targetProxy = C4C66FA1E8F92FF7213B3DF7B6D0B802 /* PBXContainerItemProxy */; }; 9013A0482FB9B15D0A32499D01A68C65 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25199,17 +25366,11 @@ target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = 9F5139B580DB48CBB546E5DA6213CF53 /* PBXContainerItemProxy */; }; - 90AEDC59B2B247162422B70AF464CA7F /* PBXTargetDependency */ = { + 909201D639424C206227CDC0518B11D7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFirebase; - target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; - targetProxy = 6AE7CBCAE558A0E6F4B1ABAB5A3B9315 /* PBXContainerItemProxy */; - }; - 90B83116673A623B225BE28B3101263D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = EFE407E385D7036745EFE2953E06F9D4 /* PBXContainerItemProxy */; + name = "react-native-safe-area-context"; + target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; + targetProxy = EE0C95B13996AEABA9923914B989BF5C /* PBXContainerItemProxy */; }; 92A1446A84FF6C166A2D47791865DC09 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25223,54 +25384,72 @@ target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; targetProxy = B56678A4474A9DE17802BB174F7A946D /* PBXContainerItemProxy */; }; + 935B8398C076D462A7623571890B9840 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = 3FAFF19B5B13947E38D0BDF59C572CF9 /* PBXContainerItemProxy */; + }; + 93D73267749CB174AE0B59E077915DAF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 8CE71AA8781B71C9704B47DE20532E37 /* PBXContainerItemProxy */; + }; + 94090A8ADEA09529CCA1DEF63B1C422C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMBarCodeScannerInterface; + target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; + targetProxy = 286AFF2A09BE8B7E3EB73D6714F627B6 /* PBXContainerItemProxy */; + }; + 944243CB01417A4278103E67D52C24A9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMAppLoader; + target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; + targetProxy = C096062354C4BC8A36FEE5FBD640EA09 /* PBXContainerItemProxy */; + }; 9552E6513B331715442754BEE5068F0A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 01B7E2B77CFBD925BCAA5EE41E2360D6 /* PBXContainerItemProxy */; }; + 95C57A00E51DD6CD8F66BDD7905886A3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 92CA885640DD6EEF8330F1670757BFF2 /* PBXContainerItemProxy */; + }; 95C5BE71331808A0FB06387AADD5E734 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTNetwork"; target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = F02CC3076A54CCCA5F221E28F3E20FAE /* PBXContainerItemProxy */; }; - 95DF595F1B16181C60F9FCD2EE766634 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = F767A206A3EA93D29A277C6E8F7B8A73 /* PBXContainerItemProxy */; - }; 96DA387B98978C2974700F14ACFDEBCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */; }; - 9707DDB49B71947F58A41639C932F141 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Crashlytics; - target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; - targetProxy = BE6B7E74326E637C60B0CEFB1055878C /* PBXContainerItemProxy */; - }; - 97BE3D04C877055B79A65D7086EE82E5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = 676D2695BED8212BBD74D56E41F71B23 /* PBXContainerItemProxy */; - }; - 982ED00C5B9F9C5F89D5DE2426525C76 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = 90C535ADA3DE6665B3F7671A9D2E102D /* PBXContainerItemProxy */; - }; 987D3E640745DCE5518F2C282606AB1D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = A21650743E2C37A78D811B8920A0B860 /* PBXContainerItemProxy */; }; + 98C395750D9AA45AF3015A4D38C376D2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = 85B27E89404135AD56F6FEAEF3401400 /* PBXContainerItemProxy */; + }; + 990618ECB299113BE3926AF6FC914661 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = EA5DEEA02CC150FBAE6FC947A1BC58E5 /* PBXContainerItemProxy */; + }; 9944716ED82209B066C56C02B90FA94B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -25283,89 +25462,77 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 28E9E87BF06330725E1FF3E5A023FE61 /* PBXContainerItemProxy */; }; + 99B06D10D5DF4008227C3348B3F5C5E6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = TOCropViewController; + target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; + targetProxy = E1EBE8BC66E64E8969A36A99FF847642 /* PBXContainerItemProxy */; + }; 9A1ED1EA0C27682218626A2105C226FC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 91EE084DD583BBFC5B94D7F82B78A6A8 /* PBXContainerItemProxy */; }; - 9AD7705635689AF2AFBE0A41F745FF99 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = YogaKit; - target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; - targetProxy = 344036EC19227C4285CC2EE8F664ECDC /* PBXContainerItemProxy */; - }; - 9D658A9E5684BCB66FE8F38EC06C9167 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-safe-area-context"; - target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; - targetProxy = E37B960537EA420BF9C0195E81ED785C /* PBXContainerItemProxy */; - }; - 9DB185F54EA16C01A70DAC79B0F3DF5B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 7B45BC810DAF0AC05041ED3FCC16A428 /* PBXContainerItemProxy */; - }; - 9F16CCD10CCAED15A8BED80FA92E3149 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 9A1F148BB9741CF28367FC9447D154BF /* PBXContainerItemProxy */; - }; - 9F250EF31EBB9F26273C29EDE1C31B03 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; - targetProxy = 48BD7CFAC9003DBE551DFAF720242C0F /* PBXContainerItemProxy */; - }; - 9F33399C0AA85CD6EF480BC76CCA6EB6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; - targetProxy = C8AB2AB5A9917BB0107587489D2CC0EE /* PBXContainerItemProxy */; - }; - 9FFA043447FA5AB743DD40AD8F559BA7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXPermissions; - target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; - targetProxy = 55DD6890666763EBEADAC1EC6EBEDAD4 /* PBXContainerItemProxy */; - }; - 9FFD28F316737BFEE6085F5B668958CE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 3CB4F9C318EE73F9F4AB2300E045B9F8 /* PBXContainerItemProxy */; - }; - A17A0137A4BCC7C84A329539EEDC2847 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = 045925F6CA8BD00EF0B2D37DD16FA8C3 /* PBXContainerItemProxy */; - }; - A2C02D68E0A5EB5F71E0E2E21E33A151 /* PBXTargetDependency */ = { + 9A4414BEA44DEA58DAD2E7F6BEA028E8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-Folly"; target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = B40CEA861DFE9F3D3D13E19E12D4934B /* PBXContainerItemProxy */; + targetProxy = F2C10956405A63CDC97CDC6FE68A3802 /* PBXContainerItemProxy */; }; - A3031C41B0FD53294AD931705ABCD05B /* PBXTargetDependency */ = { + 9C62EB83A214B4401F7E6A4FD286242A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Crashlytics; - target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; - targetProxy = 3B027DD0F8DCA6E67401418460AFC338 /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 1D023B10F0C7CE36A473A29B07710EF9 /* PBXContainerItemProxy */; }; - A3577EDC1549685C659FDE8106817071 /* PBXTargetDependency */ = { + 9CEAC98B0FD099AD9A4CD45FBDE7365C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = TOCropViewController; - target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; - targetProxy = 25362ACD74E89C105C9D080C6542652F /* PBXContainerItemProxy */; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = B4C669C525BDF8D44C43DCE8C3C0F8DD /* PBXContainerItemProxy */; }; - A35C80209A81EE921A3D77F6D0FEA37C /* PBXTargetDependency */ = { + 9D82B961330FE85E6AA62139E678B672 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = 82236DF17F5C942521120295D080F7D1 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = B02DC2AB2266E41305F739C1736DF09C /* PBXContainerItemProxy */; + }; + 9FE3416D7458157689C4668857F1ACE8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = ECEDAA251C2E2D3C28E78D46B9A1D203 /* PBXContainerItemProxy */; + }; + A040D23B3A09767E4C546CDB33FEDE55 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = 6B60C34FBF652D002088E96812A26589 /* PBXContainerItemProxy */; + }; + A05BA6D83059192EF34F1AF89949CE2F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = BE62512199D0FE802C91821E5181CDB3 /* PBXContainerItemProxy */; + }; + A0CE85A692FBF92DFB157C92CAE182B1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = D77004465F7ADDFEDA4CA46A7B673A89 /* PBXContainerItemProxy */; + }; + A1791A6A75AB384583B152A09B039B71 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CocoaAsyncSocket; + target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; + targetProxy = AAC6F0E65E53BA5F06941709D33E8BAB /* PBXContainerItemProxy */; + }; + A20EE984C8026188C77E0234BFB5CD83 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXLocalAuthentication; + target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; + targetProxy = 7A79CE40C71C08A6C869EA0B717CF2CD /* PBXContainerItemProxy */; }; A3F4258D4EA27D6C88C15BCDA4CDEDA4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25373,23 +25540,17 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = DDFCA674E1FE8DC1DB86D5A0C0A1FB6A /* PBXContainerItemProxy */; }; - A44F2BB8E04515055E13AC34F86FB2BB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = C202376E2BA0A81D605ECB42DD1D03C8 /* PBXContainerItemProxy */; - }; A4B4D14FC869AC54FADAAD5F5963BD28 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = CD3509DBFFF8BB18722CE453F9003BD4 /* PBXContainerItemProxy */; }; - A4E0889AF618A6BD29E1F0F8BE0B3815 /* PBXTargetDependency */ = { + A50595322AED9C680FB2393994E79756 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; - targetProxy = F650FC1B94E34A921FA3719203A1275F /* PBXContainerItemProxy */; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = 75E62958F06E1D20EBBB2155728C859F /* PBXContainerItemProxy */; }; A5351590EF2D946171B0ECC1142DED94 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25403,42 +25564,18 @@ target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = DF12C5D7BB68C2724D2F39A531F2A52A /* PBXContainerItemProxy */; }; - A57F39922E738B7E091839CC31B529B7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 1D8407A38C27AB9C26D52006D102E706 /* PBXContainerItemProxy */; - }; - A59B04B59BBCD840DA07F437FBCAAE2C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-PeerTalk"; - target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; - targetProxy = B5714FB9EE5DB4D83825D87B997EA29E /* PBXContainerItemProxy */; - }; A5FD8CAF96DE3B315C846C82927DBB68 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = C5C74D9E7DA1AA3DC76770DCBD7CC27C /* PBXContainerItemProxy */; }; - A60350C14CB05AA3E1EA921A3A5EC1AD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = 04C8E33CA50AA775BD16865431B2E464 /* PBXContainerItemProxy */; - }; A671FD9C71751CB6B884B7B271E0707D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 10C2BEA52A3170A3F51CFAF499B2C693 /* PBXContainerItemProxy */; }; - A6DADA02EA898F3C07DDCA9A6C0E18EF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeKeyboardTrackingView; - target = 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */; - targetProxy = 47C045DC4CD83E83CD76D1A727484876 /* PBXContainerItemProxy */; - }; A7EDAB3B9A47E48FB675B49879F59C87 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTBlob"; @@ -25451,29 +25588,11 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 5BE1625FF2C73ACD1127D4A9DDADF1AF /* PBXContainerItemProxy */; }; - A84F34DCB4994BECB3940194C8730B78 /* PBXTargetDependency */ = { + A9E23070BDA6139CA665A6AC69C386D1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 7DBC5C5357C6AC596498CDA40CEF508E /* PBXContainerItemProxy */; - }; - A855C2899596771FBECDAAB7CA8EAA80 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFirebase; - target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; - targetProxy = 3DAF60C10A17A33CFA1179FF2D513171 /* PBXContainerItemProxy */; - }; - A8A51CB4F015120D1693831276612551 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = 4DFD4EF8EC82659EDD4E4665F1129D0A /* PBXContainerItemProxy */; - }; - A9598E6235ACBA08CB89BC69BE8B73CF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXVideoThumbnails; - target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; - targetProxy = 0BFAC62C90DB34E5EB165821CBA3F39F /* PBXContainerItemProxy */; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = 8EA2DFF5F72EEE22237A70596D36994C /* PBXContainerItemProxy */; }; AA3AF74C71F85490722FC8CF0F9DA99E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25493,11 +25612,11 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = E8524B7128B54F7936616A550BEB7203 /* PBXContainerItemProxy */; }; - AB97E3209DEC392127AC6CC0AD76F6FF /* PBXTargetDependency */ = { + AB2A22EF115D9D0D47EE5A074CF9A07D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNCMaskedView; - target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; - targetProxy = 4F1706FEE6346280404E29235C8384F6 /* PBXContainerItemProxy */; + name = EXKeepAwake; + target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; + targetProxy = 2958B2C92CD9984F2826D3D7750AFC8D /* PBXContainerItemProxy */; }; ABA77A0C4CABFF7D7D6BF44195A1D093 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25505,11 +25624,11 @@ target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; targetProxy = C8CA4B534CE37351B06EDF9C3744C014 /* PBXContainerItemProxy */; }; - ADC9FF7A405C09E9EA3D677792C0CCCE /* PBXTargetDependency */ = { + AC2CACAA4D1229E251CC597C1B3CC812 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNUserDefaults; - target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; - targetProxy = B267C3EE30846CAF55C6680E5B3596E8 /* PBXContainerItemProxy */; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = EB36A0FE3F91D25A7DD9B93149D836E9 /* PBXContainerItemProxy */; }; AE2135E39D7AC4E181788F79286CC4E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25517,29 +25636,29 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 5BE488B88EB1D7B8BFE4A63D278D4B18 /* PBXContainerItemProxy */; }; + AF23DFE7CB7FBA52AF251D4ABB4CA228 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFirebase; + target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; + targetProxy = 804563040BAECCEA04FB968F4C280422 /* PBXContainerItemProxy */; + }; + AF76C5164288B02CF20D1C65DEEE65B0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = B2A034C6B05291BF4E2511A8293DA9C8 /* PBXContainerItemProxy */; + }; B019EB5AD49776AF1318C9F7D52D6018 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 15369A0EF6EA635BE4072AAC14FB2D68 /* PBXContainerItemProxy */; }; - B0875F499F1E4C6F1C4E8DD9509C207D /* PBXTargetDependency */ = { + B03748261FA73B60A3780440D14ACB00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = 28D48E2C4D25C55FAD60DCBC9982C765 /* PBXContainerItemProxy */; - }; - B0A80C748D7D58A8ADDED4B1C4CBF1E3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CocoaLibEvent; - target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; - targetProxy = D6B403831851DA671398380B9C6F3A2F /* PBXContainerItemProxy */; - }; - B18AF213679E23BA588A5D1716095B08 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = E3DFD6C753374EC37EF82E29BEBD7560 /* PBXContainerItemProxy */; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = DF3633FAA5EC90229E46CFE87B60C7F0 /* PBXContainerItemProxy */; }; B23CDB6D7BF1577FE6B1620607BAB790 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25547,17 +25666,11 @@ target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; targetProxy = 687A049B2D3DF03B5F595D44592357B0 /* PBXContainerItemProxy */; }; - B3C0E29A0D7EBCE2D6239917C9470F07 /* PBXTargetDependency */ = { + B244FC9EF991261C0AF85B91C2CF80C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = 54048EF4931DB398FA94A206710CDD56 /* PBXContainerItemProxy */; - }; - B4916A6B8ECCF4C7F3A9C3AF65D124BE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = A8BBCC97D63E3AE230C84D64111B127D /* PBXContainerItemProxy */; + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = 9D762FF5E68DCE5D238CD3E8BBFD4AD2 /* PBXContainerItemProxy */; }; B522C45997E90058E7BACAB65C97DDE3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25571,47 +25684,35 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = AE7111F2927DD7B05F869FBCAFD506C0 /* PBXContainerItemProxy */; }; + B563377FEAF86214C201008716F1D5BE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = 5DB01B2BF93496C026B42AA6FF9CEF6A /* PBXContainerItemProxy */; + }; B58CF1FEA4024B58557DC96FA1284F62 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "OpenSSL-Universal"; target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; targetProxy = 3B2CB4C09D3A44183329A2C1357EC2EF /* PBXContainerItemProxy */; }; - B5E20DF940BB2A7A531E40B40DAFA82E /* PBXTargetDependency */ = { + B59FA3E656FEEF983D4979C82193DB31 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 718E0D3CE26B1FB2B97E28083667C52D /* PBXContainerItemProxy */; + name = UMCameraInterface; + target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; + targetProxy = 7A29A65755D65CFC19E13093AC0952EC /* PBXContainerItemProxy */; }; - B5FD7DA7AE0B588442BF898A61C7542C /* PBXTargetDependency */ = { + B71337757C9E28361A44E0B0539A2CF8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = FBA6C9DE7B3B074641632813762887B5 /* PBXContainerItemProxy */; + name = RNCMaskedView; + target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; + targetProxy = B7F34BBFB480A7E845CF82ABC4C1ADC6 /* PBXContainerItemProxy */; }; - B62A07939BCA75A2E4D2D2F993A587A0 /* PBXTargetDependency */ = { + B882E31B00E79C662DA71AFE211C81F9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = 52E1388521F34C28255CEBB9D98A8563 /* PBXContainerItemProxy */; - }; - B6C97C1B981A9D9BF740E9338C6BD0BE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = C67EE3D12E433241D320DB94508DA063 /* PBXContainerItemProxy */; - }; - B76AB5AFC8EC209F7238DA9E143CABA5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = C0C0992BAE4527DAA7E8AC3E4F3CF74A /* PBXContainerItemProxy */; - }; - B7DE1FF9360BCA637D388DDB8302E491 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 30384FB97F0D9671BE2258C4BE541A17 /* PBXContainerItemProxy */; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = C4DAA5E6CB24D3776ABA958A85BBBE9E /* PBXContainerItemProxy */; }; B8B73617617104E7103760F1AB0FDDAD /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25625,17 +25726,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = AA5B8F43EAD114EE3717346D55C72BE5 /* PBXContainerItemProxy */; }; - B9C23564A4A732606D72939BA7E99725 /* PBXTargetDependency */ = { + BA02A1CD7ADA6D521B7473622CC61B51 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXVideoThumbnails; - target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; - targetProxy = EFD81B6EF818BC0265E3E1F274D86213 /* PBXContainerItemProxy */; - }; - B9DA365970E58AA44208395DB3295A66 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNCMaskedView; - target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; - targetProxy = 9A28EC5DBE039C7D890EEADDAE1671A0 /* PBXContainerItemProxy */; + name = UMAppLoader; + target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; + targetProxy = 63B9A99436D7584090F856E1D13DA648 /* PBXContainerItemProxy */; }; BA241D5679EFEE167EE2F6CED9B54AF4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25643,6 +25738,18 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 77650DB9BCD15D3DBD659DF4437F2533 /* PBXContainerItemProxy */; }; + BA3225F04697A95E8CD2875B804C85A8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = D683C0E379FACDFD3EFD2ED1415D1F24 /* PBXContainerItemProxy */; + }; + BA56BF0E3C5F05FA022FFB520C5BD148 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = 864F216D2EB2762793A57CF0AAE46942 /* PBXContainerItemProxy */; + }; BABF0E4239ACD0E5B2ED1C561C7F1F0D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTNetwork"; @@ -25661,29 +25768,23 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 2F33AF4C1C0B51002BC93979F647366E /* PBXContainerItemProxy */; }; - BC2CEEC33FEB662BC2EE9AED822FC60A /* PBXTargetDependency */ = { + BB9AD74E9672BD9342A98756E82C9DF8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = F1F9C17FC0F0BE1E038F8A015D56F6FD /* PBXContainerItemProxy */; + name = EXKeepAwake; + target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; + targetProxy = 9D1D10FB6C759428691CCC399809693C /* PBXContainerItemProxy */; }; - BCA9B641AE9A2B397F0A92A6367A5332 /* PBXTargetDependency */ = { + BC764552688A4E90E094DDE75DBA7BBC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 90AFF999E29DAAAEA7C958EAE957D9F0 /* PBXContainerItemProxy */; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = 4F849012C23837E88D876BD9AEE9149C /* PBXContainerItemProxy */; }; - BCBDE98F10056D63A1B7839DA62A8D67 /* PBXTargetDependency */ = { + BCAAD5394D00D27B6D8758475EF441BF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXLocalAuthentication; - target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; - targetProxy = 1D9D179E4E7BF38554B980D44D77C5CF /* PBXContainerItemProxy */; - }; - BD3819CBD453142389C17D479D9E6989 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXConstants; - target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; - targetProxy = 796799DD587C5E10C47ADC4985169543 /* PBXContainerItemProxy */; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = 0E690F84AA7AA6530F0CBB3905FDDD4B /* PBXContainerItemProxy */; }; BE7D0958FA0D61A89ADF1137F78DA078 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25691,77 +25792,53 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 7CBA093BB5F4F39B712F2AF488BEEC02 /* PBXContainerItemProxy */; }; - BEB163EA4C3C31B4DF0789A942116584 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = 3179B42BF8C305E2F4B1A5E7173BFD7B /* PBXContainerItemProxy */; - }; - BEBE50973D71DE93908D0F1F68643CB6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = A3D9435A8EBCF8F8790B859CCA724EC3 /* PBXContainerItemProxy */; - }; BF23376B1A7E5DFDD5B71433E58CDDA1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 2284921B4FC397971FFFACC555D01A18 /* PBXContainerItemProxy */; }; - BF87D2DAE2CE704C60ED948F87B81C43 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = B6A8CE4D4B0075915C1D5434617E466B /* PBXContainerItemProxy */; - }; BFDF94603630E69B318F5F405972A285 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 302C794E2B3640352D4037D8E0366B5D /* PBXContainerItemProxy */; }; - C05E6F470CFDC5F5E81B3C682673BFBE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-DoubleConversion"; - target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; - targetProxy = E53FEEE02F1680E78E75A94EF79D3275 /* PBXContainerItemProxy */; - }; - C10926E3CCDC540CC9C5B51CADE9970E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = 9AB7B0FDEA6B6742C4103A0952C92B4D /* PBXContainerItemProxy */; - }; - C10945A336C0D5271ED68FB1C69B91A5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = C4925555C5F1CD71488BFAB78DC9E016 /* PBXContainerItemProxy */; - }; - C1AC758DDBC26A3E566419728688E230 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = 5F69953284D0882B021B3E6D980E06F0 /* PBXContainerItemProxy */; - }; C217101135EFE0403239B5B2FC6C3632 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = F2E57867E76DED400D1A4035EF3D8735 /* PBXContainerItemProxy */; }; - C28844D4E8E3E260E3B23A4B6159858A /* PBXTargetDependency */ = { + C3A33A2C6C6C23DDB0D6D9840A9B9011 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNUserDefaults; - target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; - targetProxy = 431E6B3839368D55719D0A35F07E898C /* PBXContainerItemProxy */; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = F67926210B7A7552C183FFC2C056582E /* PBXContainerItemProxy */; }; - C44A8D139CD923D0CC5148BBE8CA4984 /* PBXTargetDependency */ = { + C3A607EC59187867F816C297B3D89BF8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 68F37D20E1C74E44E4CE4423DF48E942 /* PBXContainerItemProxy */; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = E2E441DBF8E075DDC51B4F16D210B36C /* PBXContainerItemProxy */; + }; + C46FF6C1AF2FA27A1054257CE3824EF2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = 65C77DAC2D2C060E5DB6865ADCAC128E /* PBXContainerItemProxy */; + }; + C55C5BB84991908B0923E9B290D7CB55 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = 40D2745D9F6D71BEFB9C792CB5B43850 /* PBXContainerItemProxy */; + }; + C584D1782B96C3184604DF003A8FA5EA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = 24D5C13D178CF0802FCEF10E057941CB /* PBXContainerItemProxy */; }; C5A0E011AD4DDD3DB47BE2A057285067 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25769,17 +25846,41 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 1B209875BE1A2519F69D4DFF0948FFAC /* PBXContainerItemProxy */; }; - C5C8DCC7188A7A96BCC3CF1CF200A93C /* PBXTargetDependency */ = { + C664C4ACEC5F9114D9E62A6DA55E5D6A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = DBB6C8F12B0797C8326E1FC9BFB721F4 /* PBXContainerItemProxy */; + name = EXVideoThumbnails; + target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; + targetProxy = 3B68398C682F15F5E65918B86248E49A /* PBXContainerItemProxy */; }; - C6C33C40F09DF83E8AE25FF9181B93A7 /* PBXTargetDependency */ = { + C6D30E3BA6A1DB5170C1099AE9F1A3F9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = A4FFCF7C5B93AA0EF08295EE0D326644 /* PBXContainerItemProxy */; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = 170F8250F261AD6425C56FFCC9DCBF4D /* PBXContainerItemProxy */; + }; + C6E41234372A50E15C8CBF2B01114A7E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = B848B0EFAFC4D5E803108781586DF435 /* PBXContainerItemProxy */; + }; + C7901B2B59B8BA0BE752B1AA6702ADEE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = B1D8A0A14ED718FA3B98B6700E35F2B6 /* PBXContainerItemProxy */; + }; + C811B7FEA98038CFA817E0AC3654A794 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = 749A20BB057EED14FD05DB0753D957C3 /* PBXContainerItemProxy */; + }; + C82D7927F46DDC9F20DBAFFA20327326 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 576B7133DDAFDFDCEF71AFA635A63C72 /* PBXContainerItemProxy */; }; C85153279823DD6D83526F6B511CE44D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25787,23 +25888,11 @@ target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; targetProxy = 13791CBAE3B4CCAF1FC636BA2BBD9DE4 /* PBXContainerItemProxy */; }; - C8D6D5D0AA3822CB153BC50E85CB5B3A /* PBXTargetDependency */ = { + C91CB8D5200C70CB49C639C2B0B9844C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNCAsyncStorage; - target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; - targetProxy = 2972809194259C35A82F0A5C069EFCEB /* PBXContainerItemProxy */; - }; - C909B446DAB2CFEFC2830A7679694FE6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 3ABEC2868A0BAD054ED2D717850F163B /* PBXContainerItemProxy */; - }; - C944F1DA4118D4A63DE8407B8844C793 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = AC6C67A4A9B052ED45C188DAEB9BE4E2 /* PBXContainerItemProxy */; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = FBFE6A1909A4826A7FA75D8CF1EB9C21 /* PBXContainerItemProxy */; }; C94D432895D486C9508FB387F74AE1DB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25811,24 +25900,18 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = D19900A8FD578E00B4FDAFCE6EE7C8CC /* PBXContainerItemProxy */; }; - C9513E73B75DF7E00458C1D76F67517A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "OpenSSL-Universal"; - target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = FD2126BE964A674B026672DB69726EEC /* PBXContainerItemProxy */; - }; - C9B9F6E0CBAA63EC85F7B41B849DBE3E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = 4D9C7DF46A51FBF89A10C9A270BADABC /* PBXContainerItemProxy */; - }; C9CEFEFAAAEDB8CD947737FA56C849D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Fabric; target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; targetProxy = D465047540D12FD9D95291AE82A76DB9 /* PBXContainerItemProxy */; }; + CA1E1053994D00D7A2D11B90E3A94782 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactNativeKeyboardInput; + target = 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */; + targetProxy = 42A2D3112486CB4681FE2C2D2EF8707D /* PBXContainerItemProxy */; + }; CA20CC0CC8595F02B384BCF03BBE9452 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; @@ -25841,23 +25924,35 @@ target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = F6A14184DE3C02C257A7298719E4FD9B /* PBXContainerItemProxy */; }; - CB89FD2194E2AE63843DB920DB1D3E95 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 6BEF6A163642DC8E1EC60F38AD926F66 /* PBXContainerItemProxy */; - }; CBCED9CB448C55E858853770E18D9CA1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 22906590CC5A956C3E20ACC35B78D306 /* PBXContainerItemProxy */; }; - CD44F6D31134053DF53F996535050F5E /* PBXTargetDependency */ = { + CBE23E81E242F8BD4D9D7D7F146900BF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = 9763D40CC5D02A42112AE30CC6CD7D86 /* PBXContainerItemProxy */; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = 37714EEC18131C97FABBE62171FA67B6 /* PBXContainerItemProxy */; + }; + CC0CFBD012B168BB83B4F5C8F2781FB9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = 97187704D8204A2C5C8776824B73B031 /* PBXContainerItemProxy */; + }; + CC0DF643CA8315D764C10C95B505B8C1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = 97894FFD854495B3BFAF3BE04A1CA0CF /* PBXContainerItemProxy */; + }; + CD1C64891423DD19D5D03283746FA332 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = 297FC80123F1DFC24A03D665820093EC /* PBXContainerItemProxy */; }; CD4A90C407C044A72171FE0E08BE8CBF /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25865,29 +25960,47 @@ target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = 370DE049C383B99628BC1490AE7AF5A6 /* PBXContainerItemProxy */; }; - CD4B2FE928E1B0A1E83F2132DF200FC6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; - targetProxy = 5E9E4991CB68CBDE236966D0406D7CE5 /* PBXContainerItemProxy */; - }; CDF9E458CE5417481CDC4BABE348B377 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = PromisesObjC; target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; targetProxy = 82B12BA2AABCF09A5F85DF84C0BDD0AE /* PBXContainerItemProxy */; }; - D12776BDEB493A77D3B65628192585A8 /* PBXTargetDependency */ = { + CEB86F447943A38EBEE1CE6C356A596B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = 1EF5F695EA2DEA7EF97626D25839C70C /* PBXContainerItemProxy */; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = D21021B0C1B79DCD785D11FE6F9FD2F0 /* PBXContainerItemProxy */; }; - D152EE4ACF4C3F5CFBCBDC9572839E81 /* PBXTargetDependency */ = { + CEC644163826B090477FD38D6EC8BCD6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 47404D8ABE78883247C8DCCB6E35FE2D /* PBXContainerItemProxy */; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = 25826E5D56FD9E01AD102B12D7A61A2E /* PBXContainerItemProxy */; + }; + CF48E1A28E4E6940F4C0A4B5FC821B12 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Fabric; + target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; + targetProxy = F22AB42A9DBEC7E21E8087F5BFF4D7DC /* PBXContainerItemProxy */; + }; + D0780D1B343914E95EB260149B744C97 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 2E4F89230AF3B1CF459EC6D2378511C5 /* PBXContainerItemProxy */; + }; + D200979970E18C6F97816F384EFA39BB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 3D2E71249F7E43576E7C316A5E1D69FF /* PBXContainerItemProxy */; + }; + D241ACA0B6CF639211F4D365A0E8DD04 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-Glog"; + target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; + targetProxy = 71D43E1A76C8403FDA8250720EB71196 /* PBXContainerItemProxy */; }; D2E8899B6358167269542AB9F6844F35 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25895,11 +26008,11 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 88BF67064CFFE8794B0B07782EB28354 /* PBXContainerItemProxy */; }; - D3292936339FA9A4E8B692DE48D38B46 /* PBXTargetDependency */ = { + D324D85A4D8AC7D0E992CBE647D512B4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = 3BE1C4009D8A45802CFFB79116407EDC /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = CF4EE2A449FC18BDA0C3F2736A03DE64 /* PBXContainerItemProxy */; }; D38B23A869C5F0B4893BAAB33F170973 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25907,29 +26020,29 @@ target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = C9BCCF707D9DCF8AEA6E8C8B78FECA9E /* PBXContainerItemProxy */; }; + D4382423802ABF988E0851A512485403 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = BA907D770E77E9C34D66DB36F5A3DEC9 /* PBXContainerItemProxy */; + }; + D4829C3853020C07990EF43C41C9CB5C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = BBCAA45653EAD052AE277467CF3A88B6 /* PBXContainerItemProxy */; + }; D499516EE5DA748087C7EF2C94543BA3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; targetProxy = 91345979BEE4768EF9136EE4EE3D00FB /* PBXContainerItemProxy */; }; - D515DEACC344665DEA45616A314DBE6C /* PBXTargetDependency */ = { + D4F99A41A86ADE2FD4DE4E23D534C47B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = 77C760CAC899BDAB7B43C7A2B6A33CD4 /* PBXContainerItemProxy */; - }; - D5DB0B9129FCECC63A971D6A64169554 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXConstants; - target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; - targetProxy = EBB6248729E41BC2F278396E7C52771E /* PBXContainerItemProxy */; - }; - D5E700A3041105FF6DD00601CC0A59AB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = 4B40A2C79A28E34CDB7203C80264E65D /* PBXContainerItemProxy */; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = 11A497FC73C58260E8E0E0AEB542CC12 /* PBXContainerItemProxy */; }; D5F43FE63F1F6C96E0D9F953258FAE9D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25937,12 +26050,6 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = E79050B7B79BB88D74178F90A19D9ECF /* PBXContainerItemProxy */; }; - D63E2697606CE2FE907B7308F9791038 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = E0CFB39BD8E717D560D89235C08E1CF5 /* PBXContainerItemProxy */; - }; D67D869DAC3427BD2240CE9268D233B8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; @@ -25955,11 +26062,11 @@ target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; targetProxy = D487DCE2CE3859F38B4F09019E83312D /* PBXContainerItemProxy */; }; - D79D95B5BF7A9CA732D552B35F8EF975 /* PBXTargetDependency */ = { + D8719B222660358D8FC5B99043C3CD1C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = 36B6F866548C04AD2B2D225EF8CFEBD6 /* PBXContainerItemProxy */; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = 8D3BCC32C8E13A767F88ED3763D7011D /* PBXContainerItemProxy */; }; D8AE89FD45EA95F81B10A418DCEE2BC4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25967,17 +26074,23 @@ target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; targetProxy = 95D6942673DEF26CD96965BD3A7F39D6 /* PBXContainerItemProxy */; }; + D8AE9CA31E61C4ECEA77C966BF92C0DA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = 0DF774A81A20F68BC500FF8CF0A4EF7E /* PBXContainerItemProxy */; + }; D8CA56F98BEF43CC6BCB3D698CD4CF24 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = D57C0DD9800DB5B6699D08359FEF3AEE /* PBXContainerItemProxy */; }; - D914AA15806642C947016D6E443A194C /* PBXTargetDependency */ = { + D96754786F145C928DD66FDB82AD6945 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 8710DAA9C6D5F3955888357F15A9418E /* PBXContainerItemProxy */; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = 2A3E974D156992FA7F66E2A9F0B19765 /* PBXContainerItemProxy */; }; DB428F9B87F61672189FE93818C7346C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25997,6 +26110,12 @@ target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; targetProxy = 59A6F7E541C545C99CA82678B8F26212 /* PBXContainerItemProxy */; }; + DCFEEC46DD4B42C7D86C6518A65DDD61 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = 98179CF85CEA7AE85A44B6F6495FA671 /* PBXContainerItemProxy */; + }; DD359522E3672EC40F8549AE739EAC05 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTTypeSafety; @@ -26015,23 +26134,41 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 43F72BBBD9D74426F5F93DE6CCE70C64 /* PBXContainerItemProxy */; }; + DDF07C25E1E40E2B001196A215E4484D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 5958F3A2AEF622CEB166C8D0FA937D67 /* PBXContainerItemProxy */; + }; + DE0161DCFC96EE300166960C1D9A61B2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Folly; + target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; + targetProxy = 725894CF4367EF746E78A3359D8D449F /* PBXContainerItemProxy */; + }; + DEC7009FFBFA6554B3EE22023AE4A922 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = 153A0189C24DBD77067A3268550023E9 /* PBXContainerItemProxy */; + }; DF072AA82B95EF5DD4445A2E27AEC5E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 21B7FFD1A14C9DCA797642821E09A7B1 /* PBXContainerItemProxy */; }; - DF0DD34F41CA4B08E6E56F332EA0216C /* PBXTargetDependency */ = { + DF3832062656B57D51DCB680A1C254A9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = 962344F4FA79C5EBC91075ED318244D5 /* PBXContainerItemProxy */; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = 33E63CEAEBF09E105836CE4DF66472C2 /* PBXContainerItemProxy */; }; - E11F65912B8A2AB4E29892F2ABFC5E1A /* PBXTargetDependency */ = { + E1AF04BD5A9BC06826B473843596E59D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = YogaKit; - target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; - targetProxy = 74A0D298AE5BCE1D79985AF66C6FBDBE /* PBXContainerItemProxy */; + name = UMFaceDetectorInterface; + target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; + targetProxy = 447C988D5D9EF2BC5A598401905BF069 /* PBXContainerItemProxy */; }; E1C36B9799A50B414371514062896CF7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26039,41 +26176,47 @@ target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; targetProxy = 4C6653A5CA1CE41FC050930288153C50 /* PBXContainerItemProxy */; }; - E2105E5F6DD24E21E72615721EFEB318 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Flipper; - target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; - targetProxy = 7A9EF5282137CF199A626635891B394C /* PBXContainerItemProxy */; - }; E26B7B4B003AA78BCF9CBD540687E3DB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTNetwork"; target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = 7CC878764E325DF5D6D1F598241F3FC1 /* PBXContainerItemProxy */; }; + E27A4EA46A7511B83465500FFF2CA877 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = BB39212FA65A9AE0EFEB7CDC6F1F2617 /* PBXContainerItemProxy */; + }; + E2DD8646B66B46B8680CF2F5C2CFDFEF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 06357C575172F4B5451C3E739080442F /* PBXContainerItemProxy */; + }; E364FC183F2618C9D12C99E67143417F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 0FD6A4ED78388214475895E97458EB68 /* PBXContainerItemProxy */; }; - E3773F37FEDFEB41BAB95A064B280C59 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = 7559A8317D80704586EAB8B887C304FE /* PBXContainerItemProxy */; - }; E3D1654B918455824279631C48CD8D36 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = F142B4DF83D0AEA677D3ABE7D7E5BA0C /* PBXContainerItemProxy */; }; - E3E088DD505D534F454E49CC080E9FBD /* PBXTargetDependency */ = { + E3E06389CB62E8E9DE057ECED6C792E5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = C0B020E7689352D13F595A01CC8AADBF /* PBXContainerItemProxy */; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = 63DAEB7942186CACF16D74E2E99979E6 /* PBXContainerItemProxy */; + }; + E4194A03026D672F03BCCD0C65F167AC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = 06C70D25B96AEE012200733CF6F48730 /* PBXContainerItemProxy */; }; E463467A75682C4E7C346610654E375B /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26087,23 +26230,35 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 39CD33DB7DC4569D42431023259B76CF /* PBXContainerItemProxy */; }; - E5536ADC1AA4057F5320256403A522B3 /* PBXTargetDependency */ = { + E62B43E37D4970699E57A2A4EFAEDB1C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeKeyboardInput; - target = 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */; - targetProxy = 550F5146FC3B6531E02C9A8B5AA23DDA /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = 72963B3761D0107E3EC9C2EE08B1D4E4 /* PBXContainerItemProxy */; }; - E6CA5595B7183B34C17E9E5766C6C6EA /* PBXTargetDependency */ = { + E63308839E36981E74DE81E250C7C1DA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 31DDFAC27156F8372B2A145F5AC0437E /* PBXContainerItemProxy */; + name = EXImageLoader; + target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; + targetProxy = 77DF3CFFD128403CEDF05414E1AEC356 /* PBXContainerItemProxy */; }; - E6F8D9077F9E33AAD24CF21BADDAA33F /* PBXTargetDependency */ = { + E642D28394B15C220AC296277E080B15 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = 7A98E3501C5AAE10C2EAE0879EE1DBAD /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = 14732642223C3A0E210DAC0D0A7AE603 /* PBXContainerItemProxy */; + }; + E6CCB492F1E19AD1AEB391CDE773F273 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-DoubleConversion"; + target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; + targetProxy = F64CFEDA3CBAD6894333563BAA894554 /* PBXContainerItemProxy */; + }; + E7337653671E34C595A515E9B254D5DF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-safe-area-context"; + target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; + targetProxy = D082D73FF4A8F73D44DA21DD186C6AAD /* PBXContainerItemProxy */; }; E7D36BFE6E30CE57D9BAA1151633F937 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26111,12 +26266,6 @@ target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; targetProxy = AC4A774AD4298B03F7153D4FC3C59F8D /* PBXContainerItemProxy */; }; - E829F97D5B8C3C37A451C0EA5E0DE6DB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = B20FDC1003CFB464227B383816B8E303 /* PBXContainerItemProxy */; - }; E8740A2B879F18CF356E4FD2B9498953 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TOCropViewController-TOCropViewControllerBundle"; @@ -26129,47 +26278,35 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = CC6DE0595B3D05492642740BF8582E76 /* PBXContainerItemProxy */; }; + E903292D72D0E281ABA4A65D48703476 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CocoaAsyncSocket; + target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; + targetProxy = 51E4FD0F7A487DE201F67A95E826854D /* PBXContainerItemProxy */; + }; + E950674DA81475815C64A8FEFE521D77 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = 3977589164DE9F1C55A614BA750357EC /* PBXContainerItemProxy */; + }; E95EB877E138BF8C3C3FC7A9DFA3601D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = AFBC06851050FD0681A66F16BA170F39 /* PBXContainerItemProxy */; }; - E98ADB947C4212DFCD0A1E72B7D0C379 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 4E378DDDE83C64819C7A986FE09F853E /* PBXContainerItemProxy */; - }; - E9D6DC173FBEDC4F7EB3B004D9CD2BAF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreDiagnosticsInterop; - target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; - targetProxy = B6CD73604E0150FC8D50830C4723D0D4 /* PBXContainerItemProxy */; - }; - EA92FC10B7D2D16B1A1B1F20B86FC6C0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = F3A4A95C9F3B130E7E75D71CB63F10B5 /* PBXContainerItemProxy */; - }; EB53484F3FBF4931B107838DAA5960B1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = D290869CE5E3CD1EF4C5525BBBF8EC9C /* PBXContainerItemProxy */; }; - EB53B84D59D225EE91FC6E2D49BEC2C8 /* PBXTargetDependency */ = { + EB66B9773D6F1647189FF6D55EECADB5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-DoubleConversion"; - target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; - targetProxy = 49FE2B4A0C52CFE08486E147D72C26FF /* PBXContainerItemProxy */; - }; - EB76CAE1DD58B0FDE6B8BBA1393F6280 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = TOCropViewController; - target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; - targetProxy = D7C25C0FB255A19858D8DDB603B65AAD /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = C16728EE85969BC632204C2133DD829A /* PBXContainerItemProxy */; }; EB9FA6F585C535B87FED8F313CC4B3DC /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26177,11 +26314,11 @@ target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; targetProxy = 6514B943829E36F02B9A139465155A84 /* PBXContainerItemProxy */; }; - ED3E48262AE1AB0BE376BE5F2C268102 /* PBXTargetDependency */ = { + ECCA39AC3945A7728F55F752D54F106B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXWebBrowser; - target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; - targetProxy = 762C669FFCAA00C1034D8CE4F859C0CE /* PBXContainerItemProxy */; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = 91FC7F0156F2BC52272424A1F1452D05 /* PBXContainerItemProxy */; }; EDE4622A231D7E4C637C51459B075FDC /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26189,35 +26326,23 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = F1D31400DE78E76FE461920F078645F1 /* PBXContainerItemProxy */; }; - EDFA22230FE975C2EA63A25B836B6DD7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = C1D65FCB157FEF43F833E6201ED09DCC /* PBXContainerItemProxy */; - }; EE1CC51893DCF92DD4E8E26E4F3526E4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 8110DAB12235E146C76645C74A703974 /* PBXContainerItemProxy */; }; - EECF6EB6F95DE3CB0DE1F375BC573F94 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = 1E1B2A23EF447B10FEDF2178D18D978E /* PBXContainerItemProxy */; - }; EEECA2119359F0719F75A44F609D35F3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 8E91990EDE03926388322CD5BC7E9596 /* PBXContainerItemProxy */; }; - EFF0B6270DFDF07667A17685C39FAAF6 /* PBXTargetDependency */ = { + EFDF15FE7774834BD8FED59FEE3F449E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeKeyboardTrackingView; - target = 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */; - targetProxy = C06F36EE31EC164977BF22B3CBDAFAB8 /* PBXContainerItemProxy */; + name = RNUserDefaults; + target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; + targetProxy = 79ACBF25A5CD389C24D321946680253D /* PBXContainerItemProxy */; }; F0D16B338A371FF62450A81F3EB9800D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26225,17 +26350,29 @@ target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; targetProxy = 8E0CE3BCFC23F708AABA713FFB149206 /* PBXContainerItemProxy */; }; + F15F3947092D1E45CB5DF1728BA837AD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = YogaKit; + target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; + targetProxy = 36233BA523D9887690672B17A116B11B /* PBXContainerItemProxy */; + }; F2166478FE82B374E2933089EF0F5912 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBReactNativeSpec; target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 7B4E5E1C683AA4C9D6520E9A4748E8B3 /* PBXContainerItemProxy */; }; - F2EEACC2B596D488290479E6BD157307 /* PBXTargetDependency */ = { + F2D81646311FD9B09A76264FD27B3FF8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Glog"; - target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; - targetProxy = 67CB15584E0A1370B7562305B26A6521 /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 067DD36D9804D714A3F2FCD90B3DE7E6 /* PBXContainerItemProxy */; + }; + F34B1C39648A5CCA1D44A435B5AC5D41 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = BF4C4D9D4341EB49D3D729EE5C98D764 /* PBXContainerItemProxy */; }; F3EDC9308CCDE762F70BB11464CE0441 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26249,6 +26386,12 @@ target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; targetProxy = 8CD598B3122E1B5D5E0411E9F8DFF385 /* PBXContainerItemProxy */; }; + F4255B8C704DFBF41CE6C7FAEDE073DA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNCAsyncStorage; + target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; + targetProxy = 9325A41A02CB2579B98997066B923F71 /* PBXContainerItemProxy */; + }; F4ABC2B3D06CA044325DADC1ED59161D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -26261,6 +26404,12 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 7D9A4DEA0175BC4538E1272B3B0504FD /* PBXContainerItemProxy */; }; + F531F2C76356DCBA479B725515405927 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = 20E777755AF765F21E7F5E5DB8B7A6B6 /* PBXContainerItemProxy */; + }; F6258EC7EA780DA17A9BB7DEC0186247 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -26273,24 +26422,6 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 69C4D7766C312F032D5267A5354EEDFE /* PBXContainerItemProxy */; }; - F6B44BE82AC8378B2497F100A7A17E14 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = DADC14A7A8BCB45E728E9CD9AE3F8220 /* PBXContainerItemProxy */; - }; - F6C620A8F1F05B312F13146720C29E55 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXPermissions; - target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; - targetProxy = A127D21EBA71C57FCB79D5306ADDA618 /* PBXContainerItemProxy */; - }; - F6F33EC24BCDE745AC4D53C220E0E94F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXImageLoader; - target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; - targetProxy = D4EB8A4D0EC7A8D9BFC5A641A65D5F65 /* PBXContainerItemProxy */; - }; F7584C8C1825DEDF9A742D3A3F75CC27 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -26303,11 +26434,17 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 5EED9A44D7E37951C7239080722062AE /* PBXContainerItemProxy */; }; - F80D9581C9BDDCBAF7BAB768BE49AB17 /* PBXTargetDependency */ = { + F7E01F3433CBAE087300160476808FDD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 8ECDA4EB40594393E21F07C27E2B1B7E /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnosticsInterop; + target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; + targetProxy = 5AE51F009A33D1B7331DF1D9381F2C55 /* PBXContainerItemProxy */; + }; + F80DA36E562B02943821C5ED1531E540 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXAppleAuthentication; + target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; + targetProxy = 0BD54CE7E69CD00194A61C45BA9BF88F /* PBXContainerItemProxy */; }; F8C33BCE34AF86F557AC08D445941D34 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26315,6 +26452,18 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 2FECF1896BBEFF162E79DB1B4AE97494 /* PBXContainerItemProxy */; }; + F912D6953D23D2A50AC78A21923C2426 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 2D1E565BFE779CCD691BD8B2A18F8996 /* PBXContainerItemProxy */; + }; + FA445EFBC7334E0C12A19113BB30B99C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 29B365CFAFF9C370252AF30147EFD2ED /* PBXContainerItemProxy */; + }; FA7DDF48211586BFBE7CB3854A998999 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; @@ -26327,23 +26476,17 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 47CDAF2090697A38D58C4D7A13E2CC2F /* PBXContainerItemProxy */; }; - FB82D79CFD7728AF7BE70C0B67EFDC2D /* PBXTargetDependency */ = { + FB658DBAB449B370222C6FB7803E48BC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Flipper; - target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; - targetProxy = 5FE63AA05536D7C5E67000168D143713 /* PBXContainerItemProxy */; + name = "Flipper-PeerTalk"; + target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; + targetProxy = 500A80D035300BA35B899BD5A8517DF5 /* PBXContainerItemProxy */; }; - FBAEE210213EFC801666765D5F19BE45 /* PBXTargetDependency */ = { + FBB3B9E5D9C44DF4748FEC2C73596EFA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = E1C1C58E0BC414F1D20EEC983F1810DD /* PBXContainerItemProxy */; - }; - FC56C0EF1AC743BBB48E199911C499B1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 174B7075A6ABFB1AFF801224DFF77F4F /* PBXContainerItemProxy */; + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = 46B960A1C091E45C696686A79117B4B8 /* PBXContainerItemProxy */; }; FCBBDE5072F765F25DAA24ED21AEE7B3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26363,11 +26506,23 @@ target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = C6B6F02506FCA9766276DEF5FAE04229 /* PBXContainerItemProxy */; }; - FE2B588C716845E5D0559D1A87268A00 /* PBXTargetDependency */ = { + FE3983E7904CAED576F2DCAD6CC992CA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = D2C0DCB291335C1579D740F152A3BBAC /* PBXContainerItemProxy */; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = 5553C1EE342EFF4901FB5728164EB396 /* PBXContainerItemProxy */; + }; + FEC3D3B3FD1D0900965945BF0209214D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = 5FF43511BE60159BE089A2C5E493EECB /* PBXContainerItemProxy */; + }; + FF686E17AB71124982ABE104B260F97D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = 9CD3CFAE0EEC3EED2DC6B4FF7CD95119 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ @@ -26392,7 +26547,7 @@ }; 0346FF986F79C64343F99C0325D2CB9F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8B8D7C247710F589A7D5C33233C3917F /* React-RCTNetwork.xcconfig */; + baseConfigurationReference = B17F6AAE182AF3E3A8FD25F42D0C1C87 /* React-RCTNetwork.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26417,31 +26572,6 @@ }; name = Release; }; - 051FEF99046AC52DAD7A0AA0E3976BE7 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 57B1BBC643E020C8DFA80AEB7F9E636A /* 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 = "iPhone Developer"; - "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; - }; 063B4ECD86F2BA016C2152B08AD51D62 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = FD4CBEB374B0D3ABC89AA41A573F7D51 /* FirebaseCore.xcconfig */; @@ -26469,7 +26599,7 @@ }; 06A7CD67A76F686A2A1D8F830D20E552 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 75D42886A8D8EE19739010B6AE86A9C4 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 36DD59698462AF3BB58AFA0B87ACAA45 /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26494,35 +26624,9 @@ }; name = Release; }; - 075B9D94F6D35259C44D380315337920 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 852DC564997734F4D539E66A2B03F20B /* 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 = "iPhone Developer"; - "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; - }; 07FADC14E782992AFF2F7671E2E7D23A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1822FEE04D7DC86E792297283A876EB3 /* react-native-slider.xcconfig */; + baseConfigurationReference = BD696F1412B23F77ADFF152EF3F0A69D /* react-native-slider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26549,7 +26653,7 @@ }; 082626AE56C49C40C14786925EB6EE61 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 95D339445817B79D848F5AD6B2AA6F61 /* RCTRequired.xcconfig */; + baseConfigurationReference = 4149C036165F6D00E7345C44173AC0C4 /* RCTRequired.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26565,7 +26669,7 @@ }; 0A4A6F8962251341E9A322BE1EC5E4B1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3ADFD7C87D38BB59A7251CDABC626E6A /* rn-fetch-blob.xcconfig */; + baseConfigurationReference = 7CB50B1B70E1F32BA1A0D0477F868DBE /* rn-fetch-blob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26618,7 +26722,7 @@ }; 0C325883D859D958B8BEF24647A7BD7E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8B8D7C247710F589A7D5C33233C3917F /* React-RCTNetwork.xcconfig */; + baseConfigurationReference = B17F6AAE182AF3E3A8FD25F42D0C1C87 /* React-RCTNetwork.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26644,7 +26748,7 @@ }; 0DDF703E0A1E8E05DBFA959C12ECD11B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D197676C94A4BE52BDB34A5981A507D5 /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = B8CAC0F1215C8A25A9642BA111595AAD /* UMTaskManagerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26684,9 +26788,35 @@ }; name = Debug; }; + 116C36F1D240A372876FACF9CD64BF91 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 852DC564997734F4D539E66A2B03F20B /* 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 = "iPhone Developer"; + "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; + }; 119D978732EA272928680A1EDD57368C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 95B6DCE2C3D8FA240DB90EA5D4505BA9 /* EXVideoThumbnails.xcconfig */; + baseConfigurationReference = 45739967460E2D1904354C494EDEEB86 /* EXVideoThumbnails.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26714,7 +26844,7 @@ }; 136DC5B10B3129544C45EAD704C682CB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AF11E03D5B5336362E177A24DBF7096F /* RCTTypeSafety.xcconfig */; + baseConfigurationReference = 36C3AB77231D2DA03640B39959D39D09 /* RCTTypeSafety.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26741,7 +26871,7 @@ }; 144C8D6F5DFCD73347E4C70832E1FA51 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E686DEE7B538D96958303C568BE91EBD /* UMCore.xcconfig */; + baseConfigurationReference = 0B64EEB3F7933A5B2098647909E0ED92 /* UMCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26795,7 +26925,7 @@ }; 172823DAC41CFBCABEA0BA03135BB51D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6790B66013DE37DFE05846F3F44CA243 /* react-native-background-timer.xcconfig */; + baseConfigurationReference = 87652A5B57CFCE1AE72BF7CAE1484B6F /* react-native-background-timer.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26847,7 +26977,7 @@ }; 1833671E22AD2D6ED73818E0AE2D1ECB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1A9D65778FDC48595F6A4B3E574F8ADB /* react-native-cameraroll.xcconfig */; + baseConfigurationReference = CC8B8994A39160475530121E7891B407 /* react-native-cameraroll.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26874,7 +27004,7 @@ }; 192F2140D8D96CFD79CCDC6126BDC355 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FD536FA8CE7E4CF9FD689C9CFEA9B5EF /* RNBootSplash.xcconfig */; + baseConfigurationReference = 3E330A0088F6483DE33FAE71EA483B80 /* RNBootSplash.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26901,7 +27031,7 @@ }; 1C6A4450E4C8F8FB4972753A2432DD29 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E71A285B6E54E2E7954A6ED16E689A84 /* RNScreens.xcconfig */; + baseConfigurationReference = 8F7080514B2DC132D8D9E4F8F6B307F3 /* RNScreens.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26971,7 +27101,7 @@ }; 1FD730E1AED9B4A80890683689AF92CC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8EA6243FC59AB7F33560E5E648406E38 /* RNUserDefaults.xcconfig */; + baseConfigurationReference = D0AB169A9A57CF2E1200E72299D75C26 /* RNUserDefaults.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26998,7 +27128,7 @@ }; 211C4C82F5DF1D82CBB2D407761ED06C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 708047505D149B936C021E2B459E36C3 /* UMCameraInterface.xcconfig */; + baseConfigurationReference = 69AE13D23811D322D270415DA06E5638 /* UMCameraInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27030,7 +27160,7 @@ }; 21993510FEBBBB050D27D176EF7FF12B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 05F68EE13E6ED5837AA2208FCCA1B7A8 /* Yoga.xcconfig */; + baseConfigurationReference = 1FAE064E6AFB8845B5FF3B9D0AFC6863 /* Yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27057,7 +27187,7 @@ }; 21F38FCE8441AA400CC5BD4C4317A9AD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4902917D498A6B50F1CC8A63FC284F56 /* UMReactNativeAdapter.xcconfig */; + baseConfigurationReference = 6F0EF6046A20A68989C5B5B8DD839E33 /* UMReactNativeAdapter.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27111,7 +27241,7 @@ }; 23CBFB3E266E8CF21EFE823F989A526F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4E7317E7709F95AD4EBE3D146EF52949 /* FBReactNativeSpec.xcconfig */; + baseConfigurationReference = 0CBE6A03E32FC26465FCF0F3AF1DFDEB /* FBReactNativeSpec.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27138,7 +27268,7 @@ }; 2460F60985C3F210DF73337B5546844A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A111BF72E62C135E8A32E92280B57856 /* React-RCTImage.xcconfig */; + baseConfigurationReference = E4B85E9CA9529BA3CA89A024EF880435 /* React-RCTImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27225,7 +27355,7 @@ }; 26953C374A7AE6B44C19B0BB19DFC360 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1CE0E0D6483E6B6D67A06256495BE46E /* EXKeepAwake.xcconfig */; + baseConfigurationReference = AC7AD2E3DC6B86D1E8C1603D810A6621 /* EXKeepAwake.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27279,7 +27409,7 @@ }; 27866C9CAFA37084A2F8A2BC5470991B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DECF35407758CF49A4E429D1542EFC11 /* React-jsiexecutor.xcconfig */; + baseConfigurationReference = B4DB9002992F6C1F1B0D7325578F65D8 /* React-jsiexecutor.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27305,7 +27435,7 @@ }; 2B8D1445F622D4CF87B5619297A4C3DE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6EB856FA7C6C6417ABD9B03F599C7003 /* react-native-appearance.xcconfig */; + baseConfigurationReference = E1B0203EEAA6794298B1232415B345A3 /* react-native-appearance.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27357,7 +27487,7 @@ }; 2BF6C04CA0DC7A51799793311AEF60EE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F62EF4ACB422422947F7AE2E10B72B6A /* React-jsi.xcconfig */; + baseConfigurationReference = C0F313FB5F1E7F6BF4108813F8D2502F /* React-jsi.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27384,7 +27514,7 @@ }; 2CEF953D9176553A03F12772D7854FEF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1822FEE04D7DC86E792297283A876EB3 /* react-native-slider.xcconfig */; + baseConfigurationReference = BD696F1412B23F77ADFF152EF3F0A69D /* react-native-slider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27410,7 +27540,7 @@ }; 2D6B15879D8FB32EFD2AF3EBD2EED716 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5B52090EBAA980BBDDFC4F0036383897 /* ReactNativeKeyboardInput.xcconfig */; + baseConfigurationReference = 06AAD9D0F4DA3DB3A4910B53E9778504 /* ReactNativeKeyboardInput.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27437,7 +27567,7 @@ }; 2DBC10DC0499C957FD1EEE4576D28990 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AC3C0AF66923CD6AA182BCD2B3B77A1F /* RNVectorIcons.xcconfig */; + baseConfigurationReference = 7D762E43B438E1B0A696CE4CF33E1D2F /* RNVectorIcons.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27479,7 +27609,7 @@ }; 2E8F188D8D8AA7A857EB6C00C0EE6BF1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EA1DF787EC4E0D5B279B321E210A10F7 /* RNGestureHandler.xcconfig */; + baseConfigurationReference = 90C9BF5355CE3D22296D117057869FA9 /* RNGestureHandler.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27506,7 +27636,7 @@ }; 32773B018020B1C9C403484A17245B36 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F54912BA0DF7BFB83D79B47F083DB054 /* KeyCommands.xcconfig */; + baseConfigurationReference = CEAB7B1C6528C25F32EC288834418C84 /* KeyCommands.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27558,7 +27688,7 @@ }; 3524DD9801CA7FE1979B90B7C11ECF82 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AF11E03D5B5336362E177A24DBF7096F /* RCTTypeSafety.xcconfig */; + baseConfigurationReference = 36C3AB77231D2DA03640B39959D39D09 /* RCTTypeSafety.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27599,7 +27729,7 @@ }; 39C67524A03DCAD424A71B388F938D6E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DECF35407758CF49A4E429D1542EFC11 /* React-jsiexecutor.xcconfig */; + baseConfigurationReference = B4DB9002992F6C1F1B0D7325578F65D8 /* React-jsiexecutor.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27626,7 +27756,7 @@ }; 3A0C36DCF0D838792ACADCA351DA7239 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2F8A02485800C6E27383CAEF19BAB5B5 /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = 4E535088C379402A8A0165AE84AC64BA /* UMConstantsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27643,7 +27773,7 @@ }; 3A37BE7A73D51BAA2813B529FEE9E8EA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9FCA835E28F73B4EAE829581A6D6964D /* ReactNativeART.xcconfig */; + baseConfigurationReference = 9DF547BCD14061CD62E58880D6A92DB5 /* ReactNativeART.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27696,7 +27826,7 @@ }; 3F8E658BE58823DB07092F62E68AE9C3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2AC48C614EF608D8A8ECADA5403E7886 /* UMFaceDetectorInterface.xcconfig */; + baseConfigurationReference = 6F8655AEBCB33048C58824700009949B /* UMFaceDetectorInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27765,7 +27895,7 @@ }; 415A52154C0D00BB5981E4CD6EE8982B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FF28FEBCA1A214BC679C2A3CEC9D88AE /* EXAV.xcconfig */; + baseConfigurationReference = 2649E0E14CC40301FE5BC5CBCFE7C60C /* EXAV.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27793,7 +27923,7 @@ }; 41B932A40AFCEBA056F809ED2D43CBA4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 75D42886A8D8EE19739010B6AE86A9C4 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 36DD59698462AF3BB58AFA0B87ACAA45 /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -27811,7 +27941,7 @@ }; 41E11E8C21A52C694A4D3BEE864D9AEC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D3CB7593538589D725451D196525C08D /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = 6B372B63DDB5329AEF0838FD23034936 /* UMImageLoaderInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27975,7 +28105,7 @@ }; 4DC88F1B94BA98100CCC2DBFCBF1170B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BD56167A610A2BAE73BE6C8C6502DB56 /* React-RCTBlob.xcconfig */; + baseConfigurationReference = ACAF80EA5DCDD687AEC7BBCB213D0F14 /* React-RCTBlob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28017,7 +28147,7 @@ }; 4FC0A3ABC7C0A55EBAEB07FFC1BFEBC4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 05F68EE13E6ED5837AA2208FCCA1B7A8 /* Yoga.xcconfig */; + baseConfigurationReference = 1FAE064E6AFB8845B5FF3B9D0AFC6863 /* Yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28045,7 +28175,7 @@ }; 50BCB5F1EEE1F97FD0276478C777BCB0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F77C8987370E646D1FE60087AC86D072 /* react-native-notifications.xcconfig */; + baseConfigurationReference = 0489DFAD8CDFB314CDC540B95FD79C84 /* react-native-notifications.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28071,7 +28201,7 @@ }; 5147D2DB0A11697EDFA27B87341E852B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FF28FEBCA1A214BC679C2A3CEC9D88AE /* EXAV.xcconfig */; + baseConfigurationReference = 2649E0E14CC40301FE5BC5CBCFE7C60C /* EXAV.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28098,7 +28228,7 @@ }; 52A007D721D1D2D6BD14B70C9FABE5B1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7891744027814EB6F7BBB3EEA8244492 /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = 6FA1BE721DD739533ED82AD189404F48 /* UMFileSystemInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28114,7 +28244,7 @@ }; 54BE9E0B8B40988719562072F53CDD1C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7891744027814EB6F7BBB3EEA8244492 /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = 6FA1BE721DD739533ED82AD189404F48 /* UMFileSystemInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28129,35 +28259,9 @@ }; name = Release; }; - 56B6B5C4B27A94557C0003AB9D0F70BD /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 01CF13B9D679B7BC88155AD55F3DD540 /* Pods-RocketChatRN.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 = "iPhone Developer"; - "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-RocketChatRN/Pods-RocketChatRN.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; - }; 57DC61FA52A3832C2CBAB748125714DE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2F8A02485800C6E27383CAEF19BAB5B5 /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = 4E535088C379402A8A0165AE84AC64BA /* UMConstantsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28173,7 +28277,7 @@ }; 57F7DAB4A25A41E7061089F35621D18B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F54912BA0DF7BFB83D79B47F083DB054 /* KeyCommands.xcconfig */; + baseConfigurationReference = CEAB7B1C6528C25F32EC288834418C84 /* KeyCommands.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28199,7 +28303,7 @@ }; 590C90EE6FEA01582AE180BFEBD3DCA9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 952A3BC9205F6FD09AE396E20B9AF967 /* react-native-webview.xcconfig */; + baseConfigurationReference = 35F091C33CF755F5204262A08B542402 /* react-native-webview.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28225,7 +28329,7 @@ }; 598007DCBC5363C8FDBF87E241969ABE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 154930B5CD237788D51995410631A451 /* rn-extensions-share.xcconfig */; + baseConfigurationReference = 4170EA930CC1710E8CD10295F5027F00 /* rn-extensions-share.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28251,7 +28355,7 @@ }; 59F8A83A04EE60686800B304A0A1B420 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 480DF966BAF372D6D54BEF2B856081DD /* react-native-safe-area-context.xcconfig */; + baseConfigurationReference = 51EDE4A352C03CEEFF24BC91E49758F7 /* react-native-safe-area-context.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28277,7 +28381,7 @@ }; 5A602A4A591A93C2FE3885D6F59E423D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FD536FA8CE7E4CF9FD689C9CFEA9B5EF /* RNBootSplash.xcconfig */; + baseConfigurationReference = 3E330A0088F6483DE33FAE71EA483B80 /* RNBootSplash.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28303,7 +28407,7 @@ }; 5B681A10D993A1880ECC76BA11C8D827 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D0D1ABF3B89914EBBBDF00360294DDAC /* EXImageLoader.xcconfig */; + baseConfigurationReference = 9EFD597556152014E460AB59EA35433F /* EXImageLoader.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28359,7 +28463,7 @@ }; 5DA74E72D8EDEBC4C5FEDBE4BC3A7400 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1F6EEF03AB61BA96B505482C5AB6E1F0 /* EXPermissions.xcconfig */; + baseConfigurationReference = 9B11399D7D9C0CC421366F0B70405608 /* EXPermissions.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28387,7 +28491,7 @@ }; 5EDF89B6E42E865A92E659ED341FB36C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E686DEE7B538D96958303C568BE91EBD /* UMCore.xcconfig */; + baseConfigurationReference = 0B64EEB3F7933A5B2098647909E0ED92 /* UMCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28414,7 +28518,7 @@ }; 5FC3252789FC71BD4F07FF10A84D89FB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A266A310E438F6D6275F6951C789F666 /* React-RCTAnimation.xcconfig */; + baseConfigurationReference = 27740AED39B856AD14E9D9FEF84F85D7 /* React-RCTAnimation.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28440,7 +28544,7 @@ }; 61013CC5330326ECBBE24E236D4756ED /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D3DB106B54E595AA69BA58A90616528C /* react-native-jitsi-meet.xcconfig */; + baseConfigurationReference = E0495102CDC8237B6AC8990EE9CE248D /* react-native-jitsi-meet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28467,7 +28571,7 @@ }; 614D9852037C48BC510E8CD382C526C1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 95B6DCE2C3D8FA240DB90EA5D4505BA9 /* EXVideoThumbnails.xcconfig */; + baseConfigurationReference = 45739967460E2D1904354C494EDEEB86 /* EXVideoThumbnails.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28520,7 +28624,7 @@ }; 630D3143C493E80D71A24FDEC5E714D1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 480DF966BAF372D6D54BEF2B856081DD /* react-native-safe-area-context.xcconfig */; + baseConfigurationReference = 51EDE4A352C03CEEFF24BC91E49758F7 /* react-native-safe-area-context.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28547,7 +28651,7 @@ }; 646D288F19E706EE0C7FEF68D7AA7A08 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 97202E31DFB9D2A4A85FE4E09EDF51E0 /* RNFirebase.xcconfig */; + baseConfigurationReference = 2EA97B926A768539C6BAA099C794686B /* RNFirebase.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28574,7 +28678,7 @@ }; 6587E0E85E50C6129418B61EE75243F0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 225730C036CA76EEE74CF961CC8DC5F1 /* react-native-orientation-locker.xcconfig */; + baseConfigurationReference = 756DB69AC60ABE66C85FA7A50F750FED /* react-native-orientation-locker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28601,7 +28705,7 @@ }; 65E4EE47AAD5F8BE136CFEA39BC3B696 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8EA6243FC59AB7F33560E5E648406E38 /* RNUserDefaults.xcconfig */; + baseConfigurationReference = D0AB169A9A57CF2E1200E72299D75C26 /* RNUserDefaults.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28627,7 +28731,7 @@ }; 68189F95B1543CA95038FD98447B904A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A05AE19536392AABB7ABBE60ACC487A2 /* FBLazyVector.xcconfig */; + baseConfigurationReference = 7B819EFA3A99D5AFE206DDF40E01CCE0 /* FBLazyVector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28712,7 +28816,7 @@ }; 6B8AFF9E35F50BAC0DE697F5E0C3EFA9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6790B66013DE37DFE05846F3F44CA243 /* react-native-background-timer.xcconfig */; + baseConfigurationReference = 87652A5B57CFCE1AE72BF7CAE1484B6F /* react-native-background-timer.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28739,7 +28843,7 @@ }; 6D620E1574035BE4B178936002B7BC8F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BCC3839F4CB33F4464C762E8EAA62FE6 /* RNFastImage.xcconfig */; + baseConfigurationReference = 663D2FB7BE11E42950372FC16A69A8DE /* RNFastImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28766,7 +28870,7 @@ }; 6DC1143AC9B3ADDDE273AD03BC717821 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 95D339445817B79D848F5AD6B2AA6F61 /* RCTRequired.xcconfig */; + baseConfigurationReference = 4149C036165F6D00E7345C44173AC0C4 /* RCTRequired.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28781,7 +28885,7 @@ }; 6E1EED754019B0D2FD4071647DD2554A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D0D1ABF3B89914EBBBDF00360294DDAC /* EXImageLoader.xcconfig */; + baseConfigurationReference = 9EFD597556152014E460AB59EA35433F /* EXImageLoader.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28808,7 +28912,7 @@ }; 6FF5942A55CB716386FB81B3A661E7FB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D197676C94A4BE52BDB34A5981A507D5 /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = B8CAC0F1215C8A25A9642BA111595AAD /* UMTaskManagerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28825,7 +28929,7 @@ }; 71E8415D6468DFBF796F1039C1E97625 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 62D0D7AE70467C95039ED3A3E7B0CDCE /* React-RCTSettings.xcconfig */; + baseConfigurationReference = B85F14B1A3321F67D57FB3E5D50DEF80 /* React-RCTSettings.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28851,7 +28955,7 @@ }; 7282579EA97D587611013797E31B73E6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C428ED2EF4E3284A25BE7C348B0CEEFE /* React-jsinspector.xcconfig */; + baseConfigurationReference = 0E4627AF647F69A0666BB332B99DFB32 /* React-jsinspector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28878,7 +28982,7 @@ }; 764669D8236F7BDD2D5A7B8E1528A8B9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CD82F2671948DC1907B3DF01C331072B /* UMFontInterface.xcconfig */; + baseConfigurationReference = 5D2B02C30C03507A4EC318CD198E032A /* UMFontInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28895,7 +28999,7 @@ }; 79C3DC195028717BB3D7DDD12A46B8DF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7EBD9A7B592CFA429F02C49F03CF346F /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = FAE1EDA8C27D4883EC4479E376EDA087 /* UMPermissionsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28949,7 +29053,7 @@ }; 7B7C0755F8375DAF3EF185586C94D369 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0DCCA917653E3FB19DCC244BC113C5FD /* RNCMaskedView.xcconfig */; + baseConfigurationReference = B349A54F4D2FD519D2D0B5F20BE0EC7E /* RNCMaskedView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28975,7 +29079,7 @@ }; 7BAAF8357658CAC4B5D6D0C4B80A3994 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1C254DDF760CFE1B957F1285F8E05730 /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = 85AC90391ADECD53E3556D7003D3A23F /* UMSensorsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28991,7 +29095,7 @@ }; 7DB17BC8E09831F39FB08A7D81AA5907 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B75908B81A2737C5DE368FF3CE484910 /* BugsnagReactNative.xcconfig */; + baseConfigurationReference = F04F96BD284F3D632696C76096959613 /* BugsnagReactNative.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29017,7 +29121,7 @@ }; 7E677923F364581870FA8D124AFACE60 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1C254DDF760CFE1B957F1285F8E05730 /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = 85AC90391ADECD53E3556D7003D3A23F /* UMSensorsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29034,7 +29138,7 @@ }; 80E28D6632D5DE4EF8E68CF8C231AFAC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D9FD0FC7CB7998DF02AD942B6A276DC1 /* React-CoreModules.xcconfig */; + baseConfigurationReference = 5401F36DD46724F06EC804A065EE1E28 /* React-CoreModules.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29129,7 +29233,7 @@ }; 8870C3F12DF20A8A79E4B0A817E80111 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2E080D7510CAB789BD804E9F7C16E8F9 /* EXConstants.xcconfig */; + baseConfigurationReference = 0004CD2B1C7A554C35DAB64B5EBAE612 /* EXConstants.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29157,7 +29261,7 @@ }; 8904A84B684086F0B016083093CE07FE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DBD668FA503318593178E4546569639B /* React-RCTText.xcconfig */; + baseConfigurationReference = 050293ECCB39238309F20D196347F57D /* React-RCTText.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29184,7 +29288,7 @@ }; 8A594744D753D19412FBE936E712B047 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B26A5CD70C5B2AD2B50E546B29A49624 /* RNCAsyncStorage.xcconfig */; + baseConfigurationReference = C23CD0A21EBD2999A882F84B9F233AD5 /* RNCAsyncStorage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29211,7 +29315,7 @@ }; 8B4C75AB2077821412B0BEABB795B133 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 519E60F210A4D0FBF513E0A6BD2CE3B3 /* React-RCTActionSheet.xcconfig */; + baseConfigurationReference = E61CF60153E47AD3BE61F120E5496976 /* React-RCTActionSheet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29226,7 +29330,7 @@ }; 8B55720C1BD1EFE406E82A759744EB7A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1CE0E0D6483E6B6D67A06256495BE46E /* EXKeepAwake.xcconfig */; + baseConfigurationReference = AC7AD2E3DC6B86D1E8C1603D810A6621 /* EXKeepAwake.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29347,7 +29451,7 @@ }; 8D6C7A34D73E3808BBA4673B8AE0C087 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 77B714027C51489C37C0ECE1950450CF /* EXLocalAuthentication.xcconfig */; + baseConfigurationReference = E91AD6284DD4AB7F771C29815C3A0022 /* EXLocalAuthentication.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29375,7 +29479,7 @@ }; 8DE4E46184828C3AC9AE2F483CAEEB62 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B75908B81A2737C5DE368FF3CE484910 /* BugsnagReactNative.xcconfig */; + baseConfigurationReference = F04F96BD284F3D632696C76096959613 /* BugsnagReactNative.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29402,7 +29506,7 @@ }; 8FC7CBDFE142209F416AC981FCB80953 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C428ED2EF4E3284A25BE7C348B0CEEFE /* React-jsinspector.xcconfig */; + baseConfigurationReference = 0E4627AF647F69A0666BB332B99DFB32 /* React-jsinspector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29444,7 +29548,7 @@ }; 91D4E468815E5E97CFA73772ED20A135 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2AC48C614EF608D8A8ECADA5403E7886 /* UMFaceDetectorInterface.xcconfig */; + baseConfigurationReference = 6F8655AEBCB33048C58824700009949B /* UMFaceDetectorInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29458,9 +29562,37 @@ }; name = Debug; }; + 92F00FF914CF5E1A4B27BF701A3F98EB /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A222D2976B2D979BDC00DB9FC9C41331 /* EXAppleAuthentication.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/EXAppleAuthentication/EXAppleAuthentication-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = EXAppleAuthentication; + PRODUCT_NAME = EXAppleAuthentication; + 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; + }; 94F96B3181B5C4A55422960AE29B071C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 464DC9CE552F7576266EBADC5015849F /* React-cxxreact.xcconfig */; + baseConfigurationReference = B99C9BB3EF243DDDCB218744CD0C9125 /* React-cxxreact.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29486,7 +29618,7 @@ }; 952D998029472DC4C4DFD6B66EFD440F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 61ADB19C6EE0AA9766F8AE7C7CF953B6 /* React-RCTLinking.xcconfig */; + baseConfigurationReference = 6DF84C4AC2FF0FD8AF3C923CCBCA3EEB /* React-RCTLinking.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29513,7 +29645,7 @@ }; 962FD9D12A679DF0DA56E883AA397314 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F77C8987370E646D1FE60087AC86D072 /* react-native-notifications.xcconfig */; + baseConfigurationReference = 0489DFAD8CDFB314CDC540B95FD79C84 /* react-native-notifications.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29540,7 +29672,7 @@ }; 96BCE63753F828171C3FD05BBAA1ECCA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A266A310E438F6D6275F6951C789F666 /* React-RCTAnimation.xcconfig */; + baseConfigurationReference = 27740AED39B856AD14E9D9FEF84F85D7 /* React-RCTAnimation.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29594,7 +29726,7 @@ }; 97B00E3BBA0AECB29905C5EC1B0E87EC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 468209B3D9E7F6D309269585FAC537A8 /* EXFileSystem.xcconfig */; + baseConfigurationReference = 68412A060E9246180930483E6972D374 /* EXFileSystem.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29622,7 +29754,7 @@ }; 98371860A139A358FA6303DE392398B7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 75D42886A8D8EE19739010B6AE86A9C4 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 36DD59698462AF3BB58AFA0B87ACAA45 /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -29640,7 +29772,7 @@ }; 995061D0C062167E8B6C0490A5125265 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 75D42886A8D8EE19739010B6AE86A9C4 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 36DD59698462AF3BB58AFA0B87ACAA45 /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29666,7 +29798,7 @@ }; 9A256B0D575C1B9903CAA284900CEFE5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D181A2A2F034CDB8578D6DD005EA1974 /* React-Core.xcconfig */; + baseConfigurationReference = 079F6E76299A18536226AD3A42E9764F /* React-Core.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29693,7 +29825,7 @@ }; 9B4801DC8D6EB696AFFB6202AEAC0D6D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7EBD9A7B592CFA429F02C49F03CF346F /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = FAE1EDA8C27D4883EC4479E376EDA087 /* UMPermissionsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29747,7 +29879,7 @@ }; 9D09360779C91B7CD5A5D701B0D29033 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A111BF72E62C135E8A32E92280B57856 /* React-RCTImage.xcconfig */; + baseConfigurationReference = E4B85E9CA9529BA3CA89A024EF880435 /* React-RCTImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29788,7 +29920,7 @@ }; 9DEEE31A23BEFA95B0F652A29164D233 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 925BE885B1BF4BBCEE831EDCC702C665 /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = 761EAF3FCA2645F60BC33C873CD2F36A /* UMBarCodeScannerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29805,7 +29937,7 @@ }; A27739C2B1814FAB77CC3AD01C44D6A9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AC3C0AF66923CD6AA182BCD2B3B77A1F /* RNVectorIcons.xcconfig */; + baseConfigurationReference = 7D762E43B438E1B0A696CE4CF33E1D2F /* RNVectorIcons.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29832,7 +29964,7 @@ }; A55D5C7C42C605BFB77735B7507A3903 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F62EF4ACB422422947F7AE2E10B72B6A /* React-jsi.xcconfig */; + baseConfigurationReference = C0F313FB5F1E7F6BF4108813F8D2502F /* React-jsi.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29858,7 +29990,7 @@ }; A58FA93F97A296717115907AA968DDAB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A05AE19536392AABB7ABBE60ACC487A2 /* FBLazyVector.xcconfig */; + baseConfigurationReference = 7B819EFA3A99D5AFE206DDF40E01CCE0 /* FBLazyVector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29873,7 +30005,7 @@ }; A79F89732A48D404FA27EC70182FC350 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 30E493FF1F09264FA743C82D5C7C04CF /* ReactNativeKeyboardTrackingView.xcconfig */; + baseConfigurationReference = 63738A7284C8997966EA3B6F6B1C94BE /* ReactNativeKeyboardTrackingView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29957,7 +30089,7 @@ }; A892379D8DBD903F9F5299ACE5AB9573 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DBD668FA503318593178E4546569639B /* React-RCTText.xcconfig */; + baseConfigurationReference = 050293ECCB39238309F20D196347F57D /* React-RCTText.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30052,7 +30184,7 @@ }; AB6916FCBFF289595BB1FD37CB4239A6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EBA37C542872C43350A3E560ADD7274F /* RNLocalize.xcconfig */; + baseConfigurationReference = 6E1662013842AD470983BDAD74E96EAE /* RNLocalize.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30079,7 +30211,7 @@ }; AB765F75D361A75CB79E1D9700DDB0D4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E71A285B6E54E2E7954A6ED16E689A84 /* RNScreens.xcconfig */; + baseConfigurationReference = 8F7080514B2DC132D8D9E4F8F6B307F3 /* RNScreens.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30132,7 +30264,7 @@ }; AC2FA42C6AC72075B90CD2FF1B790DDC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EA1DF787EC4E0D5B279B321E210A10F7 /* RNGestureHandler.xcconfig */; + baseConfigurationReference = 90C9BF5355CE3D22296D117057869FA9 /* RNGestureHandler.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30158,7 +30290,7 @@ }; AC3CF821ABE60EA5B1E7BE05E64047F0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D9FD0FC7CB7998DF02AD942B6A276DC1 /* React-CoreModules.xcconfig */; + baseConfigurationReference = 5401F36DD46724F06EC804A065EE1E28 /* React-CoreModules.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30184,7 +30316,7 @@ }; AC4775936C29D295B6450EC08CEA5829 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4E7317E7709F95AD4EBE3D146EF52949 /* FBReactNativeSpec.xcconfig */; + baseConfigurationReference = 0CBE6A03E32FC26465FCF0F3AF1DFDEB /* FBReactNativeSpec.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30210,7 +30342,7 @@ }; AD2FB5912891BCBB6C51DA8334CE98B9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46A907BB0135556D38312BEE62A0C3B4 /* RNDateTimePicker.xcconfig */; + baseConfigurationReference = 510DE00B6A6C5033471591E3A351D1AA /* RNDateTimePicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30236,7 +30368,7 @@ }; ADB0CDDE1827CA646C52C523066D211C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 51D92DB69D49FE06B70EB88A24CEAB3B /* RNReanimated.xcconfig */; + baseConfigurationReference = FD6B34FC6E26776DA0EBE08258EAB0FF /* RNReanimated.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30262,7 +30394,7 @@ }; AE7A4B8707442677FE1CD9E0498C5BDD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C416C41A74FED4CB533D8AD84CA11923 /* EXWebBrowser.xcconfig */; + baseConfigurationReference = 22F817D447B0FBFC5E919D280677C049 /* EXWebBrowser.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30290,7 +30422,7 @@ }; AECEBCE712AC0C128D865D4E39988C78 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BCC3839F4CB33F4464C762E8EAA62FE6 /* RNFastImage.xcconfig */; + baseConfigurationReference = 663D2FB7BE11E42950372FC16A69A8DE /* RNFastImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30316,7 +30448,7 @@ }; AFBC9B2636EE1DA9119ED359CF5814C8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 519E60F210A4D0FBF513E0A6BD2CE3B3 /* React-RCTActionSheet.xcconfig */; + baseConfigurationReference = E61CF60153E47AD3BE61F120E5496976 /* React-RCTActionSheet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30347,7 +30479,7 @@ }; B3CD22B7EC2C67CFA2FB701F29289AD1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2E080D7510CAB789BD804E9F7C16E8F9 /* EXConstants.xcconfig */; + baseConfigurationReference = 0004CD2B1C7A554C35DAB64B5EBAE612 /* EXConstants.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30372,9 +30504,34 @@ }; name = Debug; }; + B4265D28B2ABB86810657F9E98829E9A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 57B1BBC643E020C8DFA80AEB7F9E636A /* 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 = "iPhone Developer"; + "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; + }; B44A36D415BFFEFF1BD92163209EAAD0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BD56167A610A2BAE73BE6C8C6502DB56 /* React-RCTBlob.xcconfig */; + baseConfigurationReference = ACAF80EA5DCDD687AEC7BBCB213D0F14 /* React-RCTBlob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30400,7 +30557,7 @@ }; B54A78056E8E8F777325DFAD36EB43D4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 51D92DB69D49FE06B70EB88A24CEAB3B /* RNReanimated.xcconfig */; + baseConfigurationReference = FD6B34FC6E26776DA0EBE08258EAB0FF /* RNReanimated.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30427,7 +30584,7 @@ }; B61F008C099CB869F5B3E38B4D075F48 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AD80B6E773902F36BD6C9760017E9F2D /* UMAppLoader.xcconfig */; + baseConfigurationReference = CD89CF5BA6AB187F237B8A20B4CFA470 /* UMAppLoader.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30455,7 +30612,7 @@ }; B7AD6090725057CB46AA61569BE0CCC1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5B52090EBAA980BBDDFC4F0036383897 /* ReactNativeKeyboardInput.xcconfig */; + baseConfigurationReference = 06AAD9D0F4DA3DB3A4910B53E9778504 /* ReactNativeKeyboardInput.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30481,7 +30638,7 @@ }; BBEBA8BC8D45B72A1F7C78820819ED5B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E15558B9219D94CF1F5657740ACDE9C5 /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = F8498E65BBEA1AC78421FD1CD28DD3C1 /* RNDeviceInfo.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30507,7 +30664,7 @@ }; BD4DAD572553882617A36503DAE72BB1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1A9D65778FDC48595F6A4B3E574F8ADB /* react-native-cameraroll.xcconfig */; + baseConfigurationReference = CC8B8994A39160475530121E7891B407 /* react-native-cameraroll.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30533,7 +30690,7 @@ }; BD8C555F387DC02E6524EA86AE69C7E4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 30E493FF1F09264FA743C82D5C7C04CF /* ReactNativeKeyboardTrackingView.xcconfig */; + baseConfigurationReference = 63738A7284C8997966EA3B6F6B1C94BE /* ReactNativeKeyboardTrackingView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30557,6 +30714,31 @@ }; name = Debug; }; + BF3733A4861C84DBCEB62B140FABDBCB /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5F2C9D4A4102266BF3CBD25EF6756A16 /* Pods-RocketChatRN.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 = "iPhone Developer"; + "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-RocketChatRN/Pods-RocketChatRN.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; + }; C0A9F73A9B09181AF1EAB8747A47637C /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = C2ACAFF2EC9798E22920AFC52340CFA5 /* Flipper-Folly.xcconfig */; @@ -30586,7 +30768,7 @@ }; C0AB43CFD0B16DF72729061865BC82A3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C416C41A74FED4CB533D8AD84CA11923 /* EXWebBrowser.xcconfig */; + baseConfigurationReference = 22F817D447B0FBFC5E919D280677C049 /* EXWebBrowser.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30613,7 +30795,7 @@ }; C2140C4487286D40FDDDE672BB0F8DC8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EBA37C542872C43350A3E560ADD7274F /* RNLocalize.xcconfig */; + baseConfigurationReference = 6E1662013842AD470983BDAD74E96EAE /* RNLocalize.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30666,7 +30848,7 @@ }; C55480815892F9BB7C7BF102985FB172 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B26A5CD70C5B2AD2B50E546B29A49624 /* RNCAsyncStorage.xcconfig */; + baseConfigurationReference = C23CD0A21EBD2999A882F84B9F233AD5 /* RNCAsyncStorage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30718,7 +30900,7 @@ }; C7608D4BF5509F4421796B0625F9EE31 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E36E0079D005F8451F01A9B25A8F8D54 /* React-RCTVibration.xcconfig */; + baseConfigurationReference = 23920DCA27BEDAE8BD8AAC64F3753841 /* React-RCTVibration.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30744,7 +30926,7 @@ }; CBE349CFB950987CBC1021A4C612051B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8AF5C046C9FEA5644E462470FB169CF8 /* RNRootView.xcconfig */; + baseConfigurationReference = 3E35514A3865F337BAB34807B357E24B /* RNRootView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30768,9 +30950,35 @@ }; name = Debug; }; + CD16679EEEB05ED586FF452E4412ACB3 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 01CF13B9D679B7BC88155AD55F3DD540 /* Pods-RocketChatRN.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 = "iPhone Developer"; + "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-RocketChatRN/Pods-RocketChatRN.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; + }; CD63E8958EC6FBA71ED080060B3C3DA1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 225730C036CA76EEE74CF961CC8DC5F1 /* react-native-orientation-locker.xcconfig */; + baseConfigurationReference = 756DB69AC60ABE66C85FA7A50F750FED /* react-native-orientation-locker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30796,7 +31004,7 @@ }; CE86BC8747547C114C1EF56E764850DF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AD80B6E773902F36BD6C9760017E9F2D /* UMAppLoader.xcconfig */; + baseConfigurationReference = CD89CF5BA6AB187F237B8A20B4CFA470 /* UMAppLoader.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30823,7 +31031,7 @@ }; CF8A82D2305CC4EB7BF73381C538A5E9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6EB856FA7C6C6417ABD9B03F599C7003 /* react-native-appearance.xcconfig */; + baseConfigurationReference = E1B0203EEAA6794298B1232415B345A3 /* react-native-appearance.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30850,7 +31058,7 @@ }; CFF0829E30F943E442923B3BFABD26BA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CD82F2671948DC1907B3DF01C331072B /* UMFontInterface.xcconfig */; + baseConfigurationReference = 5D2B02C30C03507A4EC318CD198E032A /* UMFontInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30866,7 +31074,7 @@ }; D44AE23116BFC459841E46F78A7D18D4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6D55422F96B86133BA39796E3E0BFAE1 /* ReactCommon.xcconfig */; + baseConfigurationReference = 0B0A67F61C92A74A973F3AD157FF31AE /* ReactCommon.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30935,7 +31143,7 @@ }; D6462DB5908EF31119072DF180707EFF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9FCA835E28F73B4EAE829581A6D6964D /* ReactNativeART.xcconfig */; + baseConfigurationReference = 9DF547BCD14061CD62E58880D6A92DB5 /* ReactNativeART.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30961,7 +31169,7 @@ }; D6BAF1C6FB468A07A014451F2079E77B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 97202E31DFB9D2A4A85FE4E09EDF51E0 /* RNFirebase.xcconfig */; + baseConfigurationReference = 2EA97B926A768539C6BAA099C794686B /* RNFirebase.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30987,7 +31195,7 @@ }; D73FFAC8B9760363DD94D0DD18099667 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 708047505D149B936C021E2B459E36C3 /* UMCameraInterface.xcconfig */; + baseConfigurationReference = 69AE13D23811D322D270415DA06E5638 /* UMCameraInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31031,7 +31239,7 @@ }; D8B2A5C994FAA699F9AB034F417CA033 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 952A3BC9205F6FD09AE396E20B9AF967 /* react-native-webview.xcconfig */; + baseConfigurationReference = 35F091C33CF755F5204262A08B542402 /* react-native-webview.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31058,7 +31266,7 @@ }; D8D246725C7020402ADBA119535596A9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 39B28B1988D29E1DF313B43FBF1F2507 /* react-native-document-picker.xcconfig */; + baseConfigurationReference = BA32D40EBE0AFE838FD881CE4EE07058 /* react-native-document-picker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31084,7 +31292,7 @@ }; DC2F76B5BB2274BFAA8345C2A93DC1CE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E36E0079D005F8451F01A9B25A8F8D54 /* React-RCTVibration.xcconfig */; + baseConfigurationReference = 23920DCA27BEDAE8BD8AAC64F3753841 /* React-RCTVibration.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31152,7 +31360,7 @@ }; DD42D07940E9CC1333330CCEC47EDB63 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E15558B9219D94CF1F5657740ACDE9C5 /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = F8498E65BBEA1AC78421FD1CD28DD3C1 /* RNDeviceInfo.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31243,7 +31451,7 @@ }; DE7D558F8B19FD2028AA1A619EF12C1C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 925BE885B1BF4BBCEE831EDCC702C665 /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = 761EAF3FCA2645F60BC33C873CD2F36A /* UMBarCodeScannerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31286,7 +31494,7 @@ }; E002F01A244490EC2D7BE0B5908EF609 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 154930B5CD237788D51995410631A451 /* rn-extensions-share.xcconfig */; + baseConfigurationReference = 4170EA930CC1710E8CD10295F5027F00 /* rn-extensions-share.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31313,7 +31521,7 @@ }; E0407D5E33F8D74FFACAF38B739C8B29 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D3CB7593538589D725451D196525C08D /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = 6B372B63DDB5329AEF0838FD23034936 /* UMImageLoaderInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31330,7 +31538,7 @@ }; E042A1F3DA2D655DF64065BDE71EEF04 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4902917D498A6B50F1CC8A63FC284F56 /* UMReactNativeAdapter.xcconfig */; + baseConfigurationReference = 6F0EF6046A20A68989C5B5B8DD839E33 /* UMReactNativeAdapter.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31401,7 +31609,7 @@ }; E2343B210AF75F7D3FAFF5A1ADAA8E2B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8AF5C046C9FEA5644E462470FB169CF8 /* RNRootView.xcconfig */; + baseConfigurationReference = 3E35514A3865F337BAB34807B357E24B /* RNRootView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31428,7 +31636,7 @@ }; E2D24AA18608BA090376E86DB7BCB26E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0DCCA917653E3FB19DCC244BC113C5FD /* RNCMaskedView.xcconfig */; + baseConfigurationReference = B349A54F4D2FD519D2D0B5F20BE0EC7E /* RNCMaskedView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31455,7 +31663,7 @@ }; E2D6EA909158F38D23E09480CFC0012B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D181A2A2F034CDB8578D6DD005EA1974 /* React-Core.xcconfig */; + baseConfigurationReference = 079F6E76299A18536226AD3A42E9764F /* React-Core.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31507,7 +31715,7 @@ }; E3C29AEA11F3223722658CFAD4CED5A3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3FA7B179A187CA9F095E596EB65561A6 /* React.xcconfig */; + baseConfigurationReference = 00E976495F86A5FC584B964CB92ADF63 /* React.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31523,7 +31731,7 @@ }; E4994CD19B3CE26912637B9AE5C584F6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D3DB106B54E595AA69BA58A90616528C /* react-native-jitsi-meet.xcconfig */; + baseConfigurationReference = E0495102CDC8237B6AC8990EE9CE248D /* react-native-jitsi-meet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31547,34 +31755,9 @@ }; name = Debug; }; - E94D2630D32266AB91F9AA4B1D82C3DC /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5F2C9D4A4102266BF3CBD25EF6756A16 /* Pods-RocketChatRN.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 = "iPhone Developer"; - "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-RocketChatRN/Pods-RocketChatRN.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; - }; EA78216D413AEF5509BC7B4DBF691BAC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3ADFD7C87D38BB59A7251CDABC626E6A /* rn-fetch-blob.xcconfig */; + baseConfigurationReference = 7CB50B1B70E1F32BA1A0D0477F868DBE /* rn-fetch-blob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31600,7 +31783,7 @@ }; EB22789E6D5BAB3E3F969EDF91DE9BC1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3FA7B179A187CA9F095E596EB65561A6 /* React.xcconfig */; + baseConfigurationReference = 00E976495F86A5FC584B964CB92ADF63 /* React.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31615,7 +31798,7 @@ }; EF837CE35B7A473EFD08BF3C094E6D28 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1F6EEF03AB61BA96B505482C5AB6E1F0 /* EXPermissions.xcconfig */; + baseConfigurationReference = 9B11399D7D9C0CC421366F0B70405608 /* EXPermissions.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31642,7 +31825,7 @@ }; EFBC1B2B4FDA4EAFF967FBC3A5455A23 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 62D0D7AE70467C95039ED3A3E7B0CDCE /* React-RCTSettings.xcconfig */; + baseConfigurationReference = B85F14B1A3321F67D57FB3E5D50DEF80 /* React-RCTSettings.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31669,7 +31852,7 @@ }; F110780FDF9D939A972D53231EE6FA24 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 468209B3D9E7F6D309269585FAC537A8 /* EXFileSystem.xcconfig */; + baseConfigurationReference = 68412A060E9246180930483E6972D374 /* EXFileSystem.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31741,7 +31924,7 @@ }; F3D3F652EF48BAA51EBC8E2B8BF33B10 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 464DC9CE552F7576266EBADC5015849F /* React-cxxreact.xcconfig */; + baseConfigurationReference = B99C9BB3EF243DDDCB218744CD0C9125 /* React-cxxreact.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31768,7 +31951,7 @@ }; F557FCBDFC24296FDD3F0B44C274A253 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46A907BB0135556D38312BEE62A0C3B4 /* RNDateTimePicker.xcconfig */; + baseConfigurationReference = 510DE00B6A6C5033471591E3A351D1AA /* RNDateTimePicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31795,7 +31978,7 @@ }; F7F7649CBC7C19196B8BBEF0DD2B193F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6D55422F96B86133BA39796E3E0BFAE1 /* ReactCommon.xcconfig */; + baseConfigurationReference = 0B0A67F61C92A74A973F3AD157FF31AE /* ReactCommon.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31929,7 +32112,7 @@ }; FA75107B9FA4AEC31421192228EAF167 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 61ADB19C6EE0AA9766F8AE7C7CF953B6 /* React-RCTLinking.xcconfig */; + baseConfigurationReference = 6DF84C4AC2FF0FD8AF3C923CCBCA3EEB /* React-RCTLinking.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31955,7 +32138,7 @@ }; FC4DE0C4A8D93C86E058BD266AD33FA9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 77B714027C51489C37C0ECE1950450CF /* EXLocalAuthentication.xcconfig */; + baseConfigurationReference = E91AD6284DD4AB7F771C29815C3A0022 /* EXLocalAuthentication.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32007,9 +32190,36 @@ }; name = Release; }; + FE406AD08760612EC992CA3361C500ED /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A222D2976B2D979BDC00DB9FC9C41331 /* EXAppleAuthentication.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/EXAppleAuthentication/EXAppleAuthentication-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = EXAppleAuthentication; + PRODUCT_NAME = EXAppleAuthentication; + 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; + }; FE5DF526A592397782C99673E1056E52 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7883AAFEB26215326CC0898BCEBACE5D /* EXHaptics.xcconfig */; + baseConfigurationReference = F04329074D27EAB622ADF38E5694313D /* EXHaptics.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32036,7 +32246,7 @@ }; FEE2A6B5E74B79501495E1D072804DE2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 39B28B1988D29E1DF313B43FBF1F2507 /* react-native-document-picker.xcconfig */; + baseConfigurationReference = BA32D40EBE0AFE838FD881CE4EE07058 /* react-native-document-picker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32063,7 +32273,7 @@ }; FFB88A23A6CBC95B90E15C63EDA3D2A9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7883AAFEB26215326CC0898BCEBACE5D /* EXHaptics.xcconfig */; + baseConfigurationReference = F04329074D27EAB622ADF38E5694313D /* EXHaptics.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32164,6 +32374,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 10D42D233F7CFECA596C3D1D5B6F7D96 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B4265D28B2ABB86810657F9E98829E9A /* Debug */, + 116C36F1D240A372876FACF9CD64BF91 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 113D383E046FFCF273C81CD6C69E2912 /* Build configuration list for PBXNativeTarget "React-CoreModules" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -32425,6 +32644,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 4D251C1CF8066BE84DB44CDF7CC248C3 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + BF3733A4861C84DBCEB62B140FABDBCB /* Debug */, + CD16679EEEB05ED586FF452E4412ACB3 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 4DF727221AD9FF26D886A692473C2675 /* Build configuration list for PBXNativeTarget "KeyCommands" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -32614,15 +32842,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 833AADDDF36AF7AFCF3C64CF1CAFF6AF /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - E94D2630D32266AB91F9AA4B1D82C3DC /* Debug */, - 56B6B5C4B27A94557C0003AB9D0F70BD /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 8417A30F41F3B13FAC489DB285895AE0 /* Build configuration list for PBXNativeTarget "RNReanimated" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -32812,6 +33031,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + B4A029012259B85738C33266EB0CE758 /* Build configuration list for PBXNativeTarget "EXAppleAuthentication" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FE406AD08760612EC992CA3361C500ED /* Debug */, + 92F00FF914CF5E1A4B27BF701A3F98EB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; B5D8DF5F4E162F0641753F2401CB301E /* Build configuration list for PBXNativeTarget "Flipper-RSocket" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -33091,15 +33319,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F6F1D2BBA3C823C6DFC36528123177A5 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 051FEF99046AC52DAD7A0AA0E3976BE7 /* Debug */, - 075B9D94F6D35259C44D380315337920 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; F7B9206E26DEB0994836EBA1FC0E2DE6 /* Build configuration list for PBXAggregateTarget "FirebaseAnalytics" */ = { isa = XCConfigurationList; buildConfigurations = ( diff --git a/ios/Pods/Target Support Files/EXAppleAuthentication/EXAppleAuthentication-dummy.m b/ios/Pods/Target Support Files/EXAppleAuthentication/EXAppleAuthentication-dummy.m new file mode 100644 index 000000000..2c18d8eef --- /dev/null +++ b/ios/Pods/Target Support Files/EXAppleAuthentication/EXAppleAuthentication-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_EXAppleAuthentication : NSObject +@end +@implementation PodsDummy_EXAppleAuthentication +@end diff --git a/ios/Pods/Target Support Files/EXAppleAuthentication/EXAppleAuthentication-prefix.pch b/ios/Pods/Target Support Files/EXAppleAuthentication/EXAppleAuthentication-prefix.pch new file mode 100644 index 000000000..beb2a2441 --- /dev/null +++ b/ios/Pods/Target Support Files/EXAppleAuthentication/EXAppleAuthentication-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/ios/Pods/Target Support Files/EXAppleAuthentication/EXAppleAuthentication.xcconfig b/ios/Pods/Target Support Files/EXAppleAuthentication/EXAppleAuthentication.xcconfig new file mode 100644 index 000000000..96cfb62ff --- /dev/null +++ b/ios/Pods/Target Support Files/EXAppleAuthentication/EXAppleAuthentication.xcconfig @@ -0,0 +1,11 @@ +APPLICATION_EXTENSION_API_ONLY = YES +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/EXAppleAuthentication +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/UMCore" +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/expo-apple-authentication/ios +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig index cfd421aa6..5d60f81e0 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=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/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${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/FirebaseCoreDiagnosticsInterop" "${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/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${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/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${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/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${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/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${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/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-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${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)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${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/FirebaseCoreDiagnosticsInterop" "${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/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${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/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${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/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${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/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${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/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-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${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)/Headers/Private/React-Core" 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}/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}/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}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${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}/RNUserDefaults" "${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}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${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}/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-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${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" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" +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}/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}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${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}/RNUserDefaults" "${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}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${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}/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-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${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" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -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"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -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"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +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"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -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"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.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-RocketChatRN/Pods-RocketChatRN.release.xcconfig b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig index 7661bbcfe..6ab664375 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=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/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${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/FirebaseCoreDiagnosticsInterop" "${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/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${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/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${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/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${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/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${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/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-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${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)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${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/FirebaseCoreDiagnosticsInterop" "${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/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${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/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${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/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${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/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${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/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-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${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)/Headers/Private/React-Core" 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}/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}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${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}/RNUserDefaults" "${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}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${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}/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-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${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" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" +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}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${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}/RNUserDefaults" "${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}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${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}/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-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${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" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -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"FirebaseInstallations" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -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"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +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"FirebaseInstallations" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -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"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.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-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig index 75c2f420f..b88c8a227 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig @@ -1,10 +1,10 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=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/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${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/FirebaseCoreDiagnosticsInterop" "${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/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${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/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${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/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${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/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${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/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-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${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)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${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/FirebaseCoreDiagnosticsInterop" "${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/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${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/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${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/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${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/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${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/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-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${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)/Headers/Private/React-Core" 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}/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}/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}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${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}/RNUserDefaults" "${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}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${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}/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-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${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" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" +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}/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}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${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}/RNUserDefaults" "${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}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${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}/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-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${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" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -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"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -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"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +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"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -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"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.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-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig index d2416238d..8bc8f8abe 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig @@ -1,10 +1,10 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=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/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${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/FirebaseCoreDiagnosticsInterop" "${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/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${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/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${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/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${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/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${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/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-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${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)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${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/FirebaseCoreDiagnosticsInterop" "${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/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${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/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${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/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${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/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${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/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-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${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)/Headers/Private/React-Core" 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}/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}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${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}/RNUserDefaults" "${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}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${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}/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-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${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" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" +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}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${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}/RNUserDefaults" "${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}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${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}/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-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${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" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -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"FirebaseInstallations" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -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"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +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"FirebaseInstallations" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -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"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"TOCropViewController" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.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 3e9792842..fd54dd488 100644 --- a/ios/RocketChatRN.xcodeproj/project.pbxproj +++ b/ios/RocketChatRN.xcodeproj/project.pbxproj @@ -738,7 +738,7 @@ ); PRODUCT_BUNDLE_IDENTIFIER = chat.rocket.reactnative; PRODUCT_NAME = RocketChatRN; - PROVISIONING_PROFILE_SPECIFIER = "Development chat.rocket.reactnative"; + PROVISIONING_PROFILE_SPECIFIER = "chat.rocket.reactnative Development"; SWIFT_OBJC_BRIDGING_HEADER = "RocketChatRN-Bridging-Header.h"; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 5.0; @@ -841,7 +841,7 @@ "$(inherited)", "$(SRCROOT)/../node_modules/rn-extensions-share/ios/**", "$(SRCROOT)/../node_modules/react-native-firebase/ios/RNFirebase/**", - "$PODS_CONFIGURATION_BUILD_DIR/Firebase", + $PODS_CONFIGURATION_BUILD_DIR/Firebase, ); INFOPLIST_FILE = ShareRocketChatRN/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 11.0; @@ -907,7 +907,7 @@ "$(inherited)", "$(SRCROOT)/../node_modules/rn-extensions-share/ios/**", "$(SRCROOT)/../node_modules/react-native-firebase/ios/RNFirebase/**", - "$PODS_CONFIGURATION_BUILD_DIR/Firebase", + $PODS_CONFIGURATION_BUILD_DIR/Firebase, ); INFOPLIST_FILE = ShareRocketChatRN/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 11.0; diff --git a/ios/RocketChatRN/RocketChatRN.entitlements b/ios/RocketChatRN/RocketChatRN.entitlements index dce5d2dec..70e740449 100644 --- a/ios/RocketChatRN/RocketChatRN.entitlements +++ b/ios/RocketChatRN/RocketChatRN.entitlements @@ -4,6 +4,10 @@ aps-environment development + com.apple.developer.applesignin + + Default + com.apple.developer.associated-domains applinks:go.rocket.chat diff --git a/package.json b/package.json index 8f4e28d4f..fbf329990 100644 --- a/package.json +++ b/package.json @@ -43,6 +43,7 @@ "deep-equal": "2.0.3", "ejson": "2.2.0", "eslint-config-airbnb": "^18.1.0", + "expo-apple-authentication": "^2.2.1", "expo-av": "^8.1.0", "expo-file-system": "^8.1.0", "expo-haptics": "^8.1.0", diff --git a/yarn.lock b/yarn.lock index 8082c436d..074b967d0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6098,6 +6098,11 @@ expect@^24.9.0: jest-message-util "^24.9.0" jest-regex-util "^24.9.0" +expo-apple-authentication@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/expo-apple-authentication/-/expo-apple-authentication-2.2.1.tgz#4f515183a385bb2681d8f7bf1064251016d05b97" + integrity sha512-BD4tKhoUWm99RTbFjf8IZo/CIOKFhjUej54mci1djOao770TVXl4Eq8IYDgwHEqK5v8UAySVwxAzgJBmQl9XIw== + expo-asset@~8.1.0: version "8.1.5" resolved "https://registry.yarnpkg.com/expo-asset/-/expo-asset-8.1.5.tgz#6d0e3504cd719e9b888d32978d419d6522eed799"