From 8fa6c725a1f74d0cc1b4ab0a79e6f312e3fbcd94 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Thu, 6 Aug 2020 15:06:17 -0300 Subject: [PATCH 001/158] Add E2EKey to Subscription Model --- app/lib/database/model/Subscription.js | 2 ++ app/lib/database/model/migrations.js | 11 +++++++++++ app/lib/database/schema/app.js | 5 +++-- app/lib/methods/helpers/findSubscriptionsRooms.js | 3 ++- app/lib/methods/subscriptions/rooms.js | 3 ++- 5 files changed, 20 insertions(+), 4 deletions(-) diff --git a/app/lib/database/model/Subscription.js b/app/lib/database/model/Subscription.js index a94e09423a..9219b502a6 100644 --- a/app/lib/database/model/Subscription.js +++ b/app/lib/database/model/Subscription.js @@ -109,4 +109,6 @@ export default class Subscription extends Model { @json('livechat_data', sanitizer) livechatData; @json('tags', sanitizer) tags; + + @field('e2e_key') E2EKey; } diff --git a/app/lib/database/model/migrations.js b/app/lib/database/model/migrations.js index db3b92dc3a..62473189e6 100644 --- a/app/lib/database/model/migrations.js +++ b/app/lib/database/model/migrations.js @@ -129,6 +129,17 @@ export default schemaMigrations({ ] }) ] + }, + { + toVersion: 10, + steps: [ + addColumns({ + table: 'subscriptions', + columns: [ + { name: 'e2e_key', type: 'string', isOptional: true } + ] + }) + ] } ] }); diff --git a/app/lib/database/schema/app.js b/app/lib/database/schema/app.js index 59336e3f04..6e4b9b7818 100644 --- a/app/lib/database/schema/app.js +++ b/app/lib/database/schema/app.js @@ -1,7 +1,7 @@ import { appSchema, tableSchema } from '@nozbe/watermelondb'; export default appSchema({ - version: 9, + version: 10, tables: [ tableSchema({ name: 'subscriptions', @@ -49,7 +49,8 @@ export default appSchema({ { name: 'department_id', type: 'string', isOptional: true }, { name: 'served_by', type: 'string', isOptional: true }, { name: 'livechat_data', type: 'string', isOptional: true }, - { name: 'tags', type: 'string', isOptional: true } + { name: 'tags', type: 'string', isOptional: true }, + { name: 'e2e_key', type: 'string', isOptional: true } ] }), tableSchema({ diff --git a/app/lib/methods/helpers/findSubscriptionsRooms.js b/app/lib/methods/helpers/findSubscriptionsRooms.js index 457fc3b5fc..bdcb1a6fb6 100644 --- a/app/lib/methods/helpers/findSubscriptionsRooms.js +++ b/app/lib/methods/helpers/findSubscriptionsRooms.js @@ -49,7 +49,8 @@ export default async(subscriptions = [], rooms = []) => { departmentId: s.departmentId, servedBy: s.servedBy, livechatData: s.livechatData, - tags: s.tags + tags: s.tags, + E2EKey: s.E2EKey })); subscriptions = subscriptions.concat(existingSubs); diff --git a/app/lib/methods/subscriptions/rooms.js b/app/lib/methods/subscriptions/rooms.js index 52e474f148..8347b86ad5 100644 --- a/app/lib/methods/subscriptions/rooms.js +++ b/app/lib/methods/subscriptions/rooms.js @@ -81,7 +81,8 @@ const createOrUpdateSubscription = async(subscription, room) => { departmentId: s.departmentId, servedBy: s.servedBy, livechatData: s.livechatData, - tags: s.tags + tags: s.tags, + E2EKey: s.E2EKey }; } catch (error) { try { From 0a68713c262417e0c435600b1ccc100ab0a0c3f2 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Thu, 6 Aug 2020 15:21:16 -0300 Subject: [PATCH 002/158] Install react-native-simple-crypto --- ios/Podfile.lock | 6 + .../Private/react-native-simple-crypto/Aes.h | 1 + .../Private/react-native-simple-crypto/Hmac.h | 1 + .../react-native-simple-crypto/Pbkdf2.h | 1 + .../react-native-simple-crypto/RCTAes.h | 1 + .../react-native-simple-crypto/RCTHmac.h | 1 + .../react-native-simple-crypto/RCTPbkdf2.h | 1 + .../react-native-simple-crypto/RCTRsa.h | 1 + .../react-native-simple-crypto/RCTSha.h | 1 + .../RNRandomBytes.h | 1 + .../Private/react-native-simple-crypto/Rsa.h | 1 + .../react-native-simple-crypto/RsaFormatter.h | 1 + .../Private/react-native-simple-crypto/Sha.h | 1 + .../react-native-simple-crypto/Shared.h | 1 + .../Public/react-native-simple-crypto/Aes.h | 1 + .../Public/react-native-simple-crypto/Hmac.h | 1 + .../react-native-simple-crypto/Pbkdf2.h | 1 + .../react-native-simple-crypto/RCTAes.h | 1 + .../react-native-simple-crypto/RCTHmac.h | 1 + .../react-native-simple-crypto/RCTPbkdf2.h | 1 + .../react-native-simple-crypto/RCTRsa.h | 1 + .../react-native-simple-crypto/RCTSha.h | 1 + .../RNRandomBytes.h | 1 + .../Public/react-native-simple-crypto/Rsa.h | 1 + .../react-native-simple-crypto/RsaFormatter.h | 1 + .../Public/react-native-simple-crypto/Sha.h | 1 + .../react-native-simple-crypto/Shared.h | 1 + .../react-native-simple-crypto.podspec.json | 21 + ios/Pods/Manifest.lock | 6 + ios/Pods/Pods.xcodeproj/project.pbxproj | 18226 ++++++++-------- ...ods-RocketChatRN-acknowledgements.markdown | 25 + .../Pods-RocketChatRN-acknowledgements.plist | 31 + .../Pods-RocketChatRN.debug.xcconfig | 6 +- .../Pods-RocketChatRN.release.xcconfig | 6 +- ...hareRocketChatRN-acknowledgements.markdown | 25 + ...s-ShareRocketChatRN-acknowledgements.plist | 31 + .../Pods-ShareRocketChatRN.debug.xcconfig | 6 +- .../Pods-ShareRocketChatRN.release.xcconfig | 6 +- .../react-native-simple-crypto-dummy.m | 5 + .../react-native-simple-crypto-prefix.pch | 12 + .../react-native-simple-crypto.debug.xcconfig | 12 + ...eact-native-simple-crypto.release.xcconfig | 12 + package.json | 1 + yarn.lock | 15 +- 44 files changed, 9502 insertions(+), 8976 deletions(-) create mode 120000 ios/Pods/Headers/Private/react-native-simple-crypto/Aes.h create mode 120000 ios/Pods/Headers/Private/react-native-simple-crypto/Hmac.h create mode 120000 ios/Pods/Headers/Private/react-native-simple-crypto/Pbkdf2.h create mode 120000 ios/Pods/Headers/Private/react-native-simple-crypto/RCTAes.h create mode 120000 ios/Pods/Headers/Private/react-native-simple-crypto/RCTHmac.h create mode 120000 ios/Pods/Headers/Private/react-native-simple-crypto/RCTPbkdf2.h create mode 120000 ios/Pods/Headers/Private/react-native-simple-crypto/RCTRsa.h create mode 120000 ios/Pods/Headers/Private/react-native-simple-crypto/RCTSha.h create mode 120000 ios/Pods/Headers/Private/react-native-simple-crypto/RNRandomBytes.h create mode 120000 ios/Pods/Headers/Private/react-native-simple-crypto/Rsa.h create mode 120000 ios/Pods/Headers/Private/react-native-simple-crypto/RsaFormatter.h create mode 120000 ios/Pods/Headers/Private/react-native-simple-crypto/Sha.h create mode 120000 ios/Pods/Headers/Private/react-native-simple-crypto/Shared.h create mode 120000 ios/Pods/Headers/Public/react-native-simple-crypto/Aes.h create mode 120000 ios/Pods/Headers/Public/react-native-simple-crypto/Hmac.h create mode 120000 ios/Pods/Headers/Public/react-native-simple-crypto/Pbkdf2.h create mode 120000 ios/Pods/Headers/Public/react-native-simple-crypto/RCTAes.h create mode 120000 ios/Pods/Headers/Public/react-native-simple-crypto/RCTHmac.h create mode 120000 ios/Pods/Headers/Public/react-native-simple-crypto/RCTPbkdf2.h create mode 120000 ios/Pods/Headers/Public/react-native-simple-crypto/RCTRsa.h create mode 120000 ios/Pods/Headers/Public/react-native-simple-crypto/RCTSha.h create mode 120000 ios/Pods/Headers/Public/react-native-simple-crypto/RNRandomBytes.h create mode 120000 ios/Pods/Headers/Public/react-native-simple-crypto/Rsa.h create mode 120000 ios/Pods/Headers/Public/react-native-simple-crypto/RsaFormatter.h create mode 120000 ios/Pods/Headers/Public/react-native-simple-crypto/Sha.h create mode 120000 ios/Pods/Headers/Public/react-native-simple-crypto/Shared.h create mode 100644 ios/Pods/Local Podspecs/react-native-simple-crypto.podspec.json create mode 100644 ios/Pods/Target Support Files/react-native-simple-crypto/react-native-simple-crypto-dummy.m create mode 100644 ios/Pods/Target Support Files/react-native-simple-crypto/react-native-simple-crypto-prefix.pch create mode 100644 ios/Pods/Target Support Files/react-native-simple-crypto/react-native-simple-crypto.debug.xcconfig create mode 100644 ios/Pods/Target Support Files/react-native-simple-crypto/react-native-simple-crypto.release.xcconfig diff --git a/ios/Podfile.lock b/ios/Podfile.lock index c72afcec8d..36bd86c54f 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -376,6 +376,8 @@ PODS: - React - react-native-safe-area-context (3.1.1): - React + - react-native-simple-crypto (0.2.13): + - React - react-native-slider (3.0.2): - React - react-native-webview (10.3.2): @@ -585,6 +587,7 @@ DEPENDENCIES: - react-native-notifications (from `../node_modules/react-native-notifications`) - react-native-orientation-locker (from `../node_modules/react-native-orientation-locker`) - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`) + - react-native-simple-crypto (from `../node_modules/react-native-simple-crypto`) - "react-native-slider (from `../node_modules/@react-native-community/slider`)" - react-native-webview (from `../node_modules/react-native-webview`) - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) @@ -739,6 +742,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-orientation-locker" react-native-safe-area-context: :path: "../node_modules/react-native-safe-area-context" + react-native-simple-crypto: + :path: "../node_modules/react-native-simple-crypto" react-native-slider: :path: "../node_modules/@react-native-community/slider" react-native-webview: @@ -898,6 +903,7 @@ SPEC CHECKSUMS: react-native-notifications: ee8fd739853e72694f3af8b374c8ccb106b7b227 react-native-orientation-locker: f0ca1a8e5031dab6b74bfb4ab33a17ed2c2fcb0d react-native-safe-area-context: 344b969c45af3d8464d36e8dea264942992ef033 + react-native-simple-crypto: 8d91a8636a9f88b76b759c40eacd877794ec63de react-native-slider: 0221b417686c5957f6e77cd9ac22c1478a165355 react-native-webview: 679b6f400176e2ea8a785acf7ae16cf282e7d1eb React-RCTActionSheet: 1702a1a85e550b5c36e2e03cb2bd3adea053de95 diff --git a/ios/Pods/Headers/Private/react-native-simple-crypto/Aes.h b/ios/Pods/Headers/Private/react-native-simple-crypto/Aes.h new file mode 120000 index 0000000000..d377132f86 --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-simple-crypto/Aes.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/lib/Aes.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-simple-crypto/Hmac.h b/ios/Pods/Headers/Private/react-native-simple-crypto/Hmac.h new file mode 120000 index 0000000000..2c2f9b320c --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-simple-crypto/Hmac.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/lib/Hmac.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-simple-crypto/Pbkdf2.h b/ios/Pods/Headers/Private/react-native-simple-crypto/Pbkdf2.h new file mode 120000 index 0000000000..7227013e12 --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-simple-crypto/Pbkdf2.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/lib/Pbkdf2.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-simple-crypto/RCTAes.h b/ios/Pods/Headers/Private/react-native-simple-crypto/RCTAes.h new file mode 120000 index 0000000000..8c99a193fc --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-simple-crypto/RCTAes.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/RCTAes.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-simple-crypto/RCTHmac.h b/ios/Pods/Headers/Private/react-native-simple-crypto/RCTHmac.h new file mode 120000 index 0000000000..122ed0685c --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-simple-crypto/RCTHmac.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/RCTHmac.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-simple-crypto/RCTPbkdf2.h b/ios/Pods/Headers/Private/react-native-simple-crypto/RCTPbkdf2.h new file mode 120000 index 0000000000..30dd7a9ac8 --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-simple-crypto/RCTPbkdf2.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/RCTPbkdf2.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-simple-crypto/RCTRsa.h b/ios/Pods/Headers/Private/react-native-simple-crypto/RCTRsa.h new file mode 120000 index 0000000000..4bb5d2689b --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-simple-crypto/RCTRsa.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/RCTRsa.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-simple-crypto/RCTSha.h b/ios/Pods/Headers/Private/react-native-simple-crypto/RCTSha.h new file mode 120000 index 0000000000..516a413d30 --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-simple-crypto/RCTSha.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/RCTSha.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-simple-crypto/RNRandomBytes.h b/ios/Pods/Headers/Private/react-native-simple-crypto/RNRandomBytes.h new file mode 120000 index 0000000000..0353462231 --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-simple-crypto/RNRandomBytes.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/RNRandomBytes.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-simple-crypto/Rsa.h b/ios/Pods/Headers/Private/react-native-simple-crypto/Rsa.h new file mode 120000 index 0000000000..cc33170b43 --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-simple-crypto/Rsa.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/lib/Rsa.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-simple-crypto/RsaFormatter.h b/ios/Pods/Headers/Private/react-native-simple-crypto/RsaFormatter.h new file mode 120000 index 0000000000..4b70d4ab2c --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-simple-crypto/RsaFormatter.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/lib/RsaFormatter.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-simple-crypto/Sha.h b/ios/Pods/Headers/Private/react-native-simple-crypto/Sha.h new file mode 120000 index 0000000000..e595e50bc9 --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-simple-crypto/Sha.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/lib/Sha.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-simple-crypto/Shared.h b/ios/Pods/Headers/Private/react-native-simple-crypto/Shared.h new file mode 120000 index 0000000000..dc5ce15de6 --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-simple-crypto/Shared.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/lib/Shared.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-simple-crypto/Aes.h b/ios/Pods/Headers/Public/react-native-simple-crypto/Aes.h new file mode 120000 index 0000000000..d377132f86 --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-simple-crypto/Aes.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/lib/Aes.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-simple-crypto/Hmac.h b/ios/Pods/Headers/Public/react-native-simple-crypto/Hmac.h new file mode 120000 index 0000000000..2c2f9b320c --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-simple-crypto/Hmac.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/lib/Hmac.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-simple-crypto/Pbkdf2.h b/ios/Pods/Headers/Public/react-native-simple-crypto/Pbkdf2.h new file mode 120000 index 0000000000..7227013e12 --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-simple-crypto/Pbkdf2.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/lib/Pbkdf2.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-simple-crypto/RCTAes.h b/ios/Pods/Headers/Public/react-native-simple-crypto/RCTAes.h new file mode 120000 index 0000000000..8c99a193fc --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-simple-crypto/RCTAes.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/RCTAes.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-simple-crypto/RCTHmac.h b/ios/Pods/Headers/Public/react-native-simple-crypto/RCTHmac.h new file mode 120000 index 0000000000..122ed0685c --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-simple-crypto/RCTHmac.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/RCTHmac.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-simple-crypto/RCTPbkdf2.h b/ios/Pods/Headers/Public/react-native-simple-crypto/RCTPbkdf2.h new file mode 120000 index 0000000000..30dd7a9ac8 --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-simple-crypto/RCTPbkdf2.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/RCTPbkdf2.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-simple-crypto/RCTRsa.h b/ios/Pods/Headers/Public/react-native-simple-crypto/RCTRsa.h new file mode 120000 index 0000000000..4bb5d2689b --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-simple-crypto/RCTRsa.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/RCTRsa.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-simple-crypto/RCTSha.h b/ios/Pods/Headers/Public/react-native-simple-crypto/RCTSha.h new file mode 120000 index 0000000000..516a413d30 --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-simple-crypto/RCTSha.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/RCTSha.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-simple-crypto/RNRandomBytes.h b/ios/Pods/Headers/Public/react-native-simple-crypto/RNRandomBytes.h new file mode 120000 index 0000000000..0353462231 --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-simple-crypto/RNRandomBytes.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/RNRandomBytes.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-simple-crypto/Rsa.h b/ios/Pods/Headers/Public/react-native-simple-crypto/Rsa.h new file mode 120000 index 0000000000..cc33170b43 --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-simple-crypto/Rsa.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/lib/Rsa.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-simple-crypto/RsaFormatter.h b/ios/Pods/Headers/Public/react-native-simple-crypto/RsaFormatter.h new file mode 120000 index 0000000000..4b70d4ab2c --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-simple-crypto/RsaFormatter.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/lib/RsaFormatter.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-simple-crypto/Sha.h b/ios/Pods/Headers/Public/react-native-simple-crypto/Sha.h new file mode 120000 index 0000000000..e595e50bc9 --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-simple-crypto/Sha.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/lib/Sha.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-simple-crypto/Shared.h b/ios/Pods/Headers/Public/react-native-simple-crypto/Shared.h new file mode 120000 index 0000000000..dc5ce15de6 --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-simple-crypto/Shared.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-simple-crypto/ios/RCTCrypto/lib/Shared.h \ No newline at end of file diff --git a/ios/Pods/Local Podspecs/react-native-simple-crypto.podspec.json b/ios/Pods/Local Podspecs/react-native-simple-crypto.podspec.json new file mode 100644 index 0000000000..7552275207 --- /dev/null +++ b/ios/Pods/Local Podspecs/react-native-simple-crypto.podspec.json @@ -0,0 +1,21 @@ +{ + "name": "react-native-simple-crypto", + "version": "0.2.13", + "summary": "A simpler React-Native crypto library", + "authors": "Gary Button ", + "license": "MIT", + "requires_arc": true, + "homepage": "https://github.com/ghbutton/react-native-simple-crypto", + "source": { + "git": "git+https://github.com/ghbutton/react-native-simple-crypto.git" + }, + "platforms": { + "ios": "8.0" + }, + "source_files": "ios/**/*.{h,m}", + "dependencies": { + "React": [ + + ] + } +} diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index c72afcec8d..36bd86c54f 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -376,6 +376,8 @@ PODS: - React - react-native-safe-area-context (3.1.1): - React + - react-native-simple-crypto (0.2.13): + - React - react-native-slider (3.0.2): - React - react-native-webview (10.3.2): @@ -585,6 +587,7 @@ DEPENDENCIES: - react-native-notifications (from `../node_modules/react-native-notifications`) - react-native-orientation-locker (from `../node_modules/react-native-orientation-locker`) - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`) + - react-native-simple-crypto (from `../node_modules/react-native-simple-crypto`) - "react-native-slider (from `../node_modules/@react-native-community/slider`)" - react-native-webview (from `../node_modules/react-native-webview`) - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) @@ -739,6 +742,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-orientation-locker" react-native-safe-area-context: :path: "../node_modules/react-native-safe-area-context" + react-native-simple-crypto: + :path: "../node_modules/react-native-simple-crypto" react-native-slider: :path: "../node_modules/@react-native-community/slider" react-native-webview: @@ -898,6 +903,7 @@ SPEC CHECKSUMS: react-native-notifications: ee8fd739853e72694f3af8b374c8ccb106b7b227 react-native-orientation-locker: f0ca1a8e5031dab6b74bfb4ab33a17ed2c2fcb0d react-native-safe-area-context: 344b969c45af3d8464d36e8dea264942992ef033 + react-native-simple-crypto: 8d91a8636a9f88b76b759c40eacd877794ec63de react-native-slider: 0221b417686c5957f6e77cd9ac22c1478a165355 react-native-webview: 679b6f400176e2ea8a785acf7ae16cf282e7d1eb React-RCTActionSheet: 1702a1a85e550b5c36e2e03cb2bd3adea053de95 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index 7cbe6664a4..7669d02a27 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -220,97 +220,97 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 000601D6585E358B4C5C687C9A463409 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EB676B22F56CCB0D457EC82AA6FE69B /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 000F50E0CF2A97F28B1403D1775EDC99 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 222ACFC2898807F8C99792B2618B2515 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 000601D6585E358B4C5C687C9A463409 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 6556667409649CC169DC9C110B0EAA23 /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 000F50E0CF2A97F28B1403D1775EDC99 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 061BB0AF41EF8957C0CEF57545B3CD22 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 001AF458ED907C2245E6C1309CFADDB3 /* JemallocHugePageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D8D796789F3D6C6BF1B73946AF1B1BD /* JemallocHugePageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0037C44133F11280075F402AAB720DD9 /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F43E8505637F4CCFCEFDD22C49B9A8A /* BugsnagCrashReport.m */; }; - 00594B2F713792545D808EABD2ABC9CC /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = C4D25F70DC8B45BD854D50AB634AD856 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 68FA058DF60DBB40B30C7B2C1285DB17 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00A894F22AA7BAC1B6AA77349D399622 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F4BE8947965BCF3EDBA67A36A42B66E /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00AAC400E3418EF5114C52242349B8D9 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5837CA59DEFBA496C78103D2396783D8 /* UMNativeModulesProxy.m */; }; + 0037C44133F11280075F402AAB720DD9 /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = CF226AAE0BDB6B804BA947C361D94F0D /* BugsnagCrashReport.m */; }; + 00594B2F713792545D808EABD2ABC9CC /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = D7F592FCED96399322301F625BF28E4D /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 5413742461E142031AF301F703B0F4DC /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00A894F22AA7BAC1B6AA77349D399622 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F7E55FC00988149092B431815A21CD4A /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00AAC400E3418EF5114C52242349B8D9 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = E830AC92262755C2F75DD42AEAF8F67F /* UMNativeModulesProxy.m */; }; 00C91D63CC716D2460BD2A730560A58E /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = F75C21B39D888B53F815D553074F66FC /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; 00D2A54A8823A11E61F579504E81E987 /* Flipper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FD42080AAFC24E1761EA45B633CACB30 /* Flipper-dummy.m */; }; - 00E175270DC9686B1C908C3528E72BFB /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = E2D3E6FA97B829798D4EF39F9006B80C /* BugsnagMetaData.m */; }; + 00E175270DC9686B1C908C3528E72BFB /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = 691BC6D687CAE256809AFE66D8CD554A /* BugsnagMetaData.m */; }; 00F922693F608FAEB7DF4C02CE61C369 /* OpenSSLHash.h in Headers */ = {isa = PBXBuildFile; fileRef = C9CFFD5ABC45030F942FC9BCB1EA1BEA /* OpenSSLHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 00FA3E1586775F0FB5DA9F5F99EC17CC /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 14CB491DA261DA5C281CB6B3CD5DC2AE /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0109658EA8CF256D8B289ADCDC7FA70A /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = E37175AD68829654212F57BA02FDD293 /* SDImageIOCoder.m */; }; - 0109A3A759F7D4639629377AC27DB234 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 77299313933A9BFA169A53D74BB1FD85 /* RNImageCropPicker-dummy.m */; }; + 0109A3A759F7D4639629377AC27DB234 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 182A5ABB471531A6365176D686E85516 /* RNImageCropPicker-dummy.m */; }; 011466BD1564B2DC5CE448FEA5B29B85 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 8AEB68D8EBD37A2BD7FB4BDBFF9F9AAF /* README.md */; }; - 0118C5FFF9C4B20E2E19C5D4B1658617 /* RCTImageStoreManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3938AE2C818BBA7CE57F743188B3118A /* 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"; }; }; + 0118C5FFF9C4B20E2E19C5D4B1658617 /* RCTImageStoreManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC4FCD4A12128CE6BCC7B7AD065B5005 /* 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"; }; }; 01448BDA59FEB517720540384ACA3EB5 /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11B137AA5893A18E48BC9E5500FC0C0B /* 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"; }; }; 015407F52047D4BB0CD74C289D230C37 /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = EBAF6C158EF5BD3AEAC488F9BFD2CB82 /* pb_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 016DEDB4BCC1C09A27E1C0CA9EE522AB /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E791609D7BB21AA3D70750B1A1CAE766 /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 01859E4946383F52809C7A5E95C94853 /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DF59BCAE6579F8A1F4E41CD03719CE8 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0198283A6245A364C263FECB875E1C76 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = 267FE598D55784C0942CD9A34A6B4128 /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 016DEDB4BCC1C09A27E1C0CA9EE522AB /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3731374DB161CFFD4D860E8DF1BF87A1 /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 01859E4946383F52809C7A5E95C94853 /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 607457D0A961DDC14098EE5D02B34596 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0198283A6245A364C263FECB875E1C76 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = CD815710F48E3ABBE415013859067C6F /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01CD4E5B223049012C390E0A9D903D47 /* FIRCLSURLSessionDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFA0BCA42AA79D5F6DA194B2B9F7549 /* FIRCLSURLSessionDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01D4A5DDBBEE67AA18A16D4C689B53DA /* ErrorCode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F4F872604D973C5C2E7F249F16CA2E9C /* 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"; }; }; - 01EDE288363CC3CB55DAD85AABD887A1 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F9203A9A10EE2E9608F5D0DCA8B05F /* BugsnagCollections.m */; }; - 01F3F5575EDE7E28E2E794442E3E58F3 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1CE9F79360135BFB24018614C7FE9734 /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 01EDE288363CC3CB55DAD85AABD887A1 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = 28D8E017C6DB25E77E69884551476E01 /* BugsnagCollections.m */; }; + 01F3F5575EDE7E28E2E794442E3E58F3 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 64D2B21C70A47AD869F2EB3D56E6AB02 /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; 01FA56AC1F7EF75E75EBBCA0945A18E1 /* SSLContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDFF884E47DBF09F53C84431AD41F52A /* 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"; }; }; 02218BCD8452C372E4ACC4A4C8325932 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = 6C3D74966BE9968B63D65A73DBD81872 /* rescaler.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 0226A47450E4759F2CAEFA6307E1F0AA /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5F9E67E8DAE269A8354FA865212C060A /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 023FF4811870371C17AB936C0370C28D /* WTCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ACB9F39AA7ADC4C5B8249F4319404FD /* WTCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; 024FFB764B39A899C61D25A259530FAF /* WriteChainAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AD408EFC7F64F8C3C44E1170EF5DA88 /* WriteChainAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02714038DA8ECE88D2A8ACB1DE49882A /* RNFBUtilsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 83092417C55CE84CC47FE1C01B58E11E /* RNFBUtilsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02714038DA8ECE88D2A8ACB1DE49882A /* RNFBUtilsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B1AD6C3D5951F7E1D5789BBDBF57C4A9 /* RNFBUtilsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0299350CB081F499B3F68F98995EB87B /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = EFB46122032083C5364787A0655EB0F1 /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 029AE0FE15F02795DA6C243E86CA7995 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = E6817B75E1798AAF6EA997F690C91093 /* 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"; }; }; - 02A040AA87D6FF98C4A159A382F8CA35 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2794048F0B28748195004537CAA2D24E /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 029AE0FE15F02795DA6C243E86CA7995 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = E4B7017935992937C1AFF371780F6D1D /* 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"; }; }; + 02A040AA87D6FF98C4A159A382F8CA35 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BFD610C620148C24DE3EC5F4671CBB6D /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 02CF5ED1CEA40B42508C26E0FC2A66E1 /* ChecksumDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B7FE43CAEF809B4218C9ED13CEEC451 /* ChecksumDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03034265ED7F0D31CD3DB155BFE2AFCB /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 36867B33A22C7EF993DCBB3B4614F5C0 /* 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"; }; }; - 03151B04A94B5B1FAD67FF45DD06B7F5 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 3902EFC847FC1378429D51930F83EFB7 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03034265ED7F0D31CD3DB155BFE2AFCB /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CD8DDCE7BBF1DEFB586A48D9DAC6398E /* 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"; }; }; + 03151B04A94B5B1FAD67FF45DD06B7F5 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 33B028E63E78F42E0CDC1FECBD40532F /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 032C7CDB032114BDCC7DC441021A7DA5 /* IOObjectCache.h in Headers */ = {isa = PBXBuildFile; fileRef = F27BC406AA427190F7009FF9049BD8AD /* IOObjectCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 033521D8D361BD79929F1C97CF0F357F /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 910B6E346ADF2EA88D681358353F2385 /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 034989576FB180820CE1012B0B8ADD12 /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 44B5DD5E561C62DA5296684A42CFC823 /* BugsnagReactNative-dummy.m */; }; + 034989576FB180820CE1012B0B8ADD12 /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 00F8AAD81A6EDF2F94C5F5952A52975D /* BugsnagReactNative-dummy.m */; }; 0357B1DBA4393494C24B5458C5294109 /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 347BF07C7DD3AE9F397121BFB6CDEBE4 /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 037A597C46854C7EAE1349B3B682C044 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DA09DA19BA1F08B4FC77F346077C3D82 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 037A597C46854C7EAE1349B3B682C044 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B60382AE50DC24935A0B636721A9B5D /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0388C19C118898765F8121AC641BA4B4 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 704BBF23795634168F8266D91AB85611 /* SDDiskCache.m */; }; - 03A091EF0A44A9313367BD851F9685DB /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = DB17E355B3E4389A35A31109CD1D8CBC /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03A091EF0A44A9313367BD851F9685DB /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C343E1A5BEF3EE692BCE343B6E72393 /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03B0991E9C8213684BA88B4BB3746653 /* FlipperConnectionManagerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 67454D08E527E0C5FEA4713FFE27FC35 /* FlipperConnectionManagerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03CE75A0F998C6AD1A8A56EC32048441 /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = A9DB086520DF52114ACB861BF3D32B77 /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03D2F02C2F40E330E75DD3522D810830 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = BE2B8394DC33A02F432878F1D821234A /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03D2F02C2F40E330E75DD3522D810830 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DC9477D200929DB5E4865A3B16DCD78 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03DE9082132C5F30F717BA20344693C9 /* Hazptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E9B1F92B5A28A31846F6E524402C949 /* Hazptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03EDC32E5EB4E49C758B0E1AC1B83F1B /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = FC5EE999FCA5EFB1DDAF60710B912F64 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 040C7726D830C67BC677757275DE6725 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = A6ADA129893F70144FEF13AEC75F6C50 /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 041DBA280D01DEFCA66268DC7D4DE683 /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C437A0F8547D44B9402405CE5307176 /* REAAllTransitions.m */; }; + 03EDC32E5EB4E49C758B0E1AC1B83F1B /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F96EF59EDF94FC8ED7C3AD2E5359AA4C /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 040C7726D830C67BC677757275DE6725 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = FDF9096E7F9D16ED0888A775C06DCD16 /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 041DBA280D01DEFCA66268DC7D4DE683 /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = DF1A2A0B4ABEDE7D1B83B70C9D501033 /* REAAllTransitions.m */; }; 04719857696529B56B628EEB24832846 /* FIRCLSURLSessionAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = CD9C305B1161EAFEB0273D62045CBFB1 /* FIRCLSURLSessionAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0494039227D103B7AAC3831F672658FA /* FIRCLSHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B8E799130F337E86BFB5100E2A3DE64 /* FIRCLSHandler.m */; }; 0496E1728E220AEBEDAD5CBF91E7B74C /* FlipperState.h in Headers */ = {isa = PBXBuildFile; fileRef = E568D635BC4BD8AFD2B9E81625C071D9 /* FlipperState.h */; settings = {ATTRIBUTES = (Project, ); }; }; 049AAF4CC8018611586F09D6C80F8257 /* FIRCLSReportUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A753105AFC15D0D5195B78D817D0CFE /* FIRCLSReportUploader.m */; }; - 04A4CB56F6A8163CAF3A464DD0B79CA7 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FF3F9F5D4B96F992106B3D82288AE35 /* React-RCTBlob-dummy.m */; }; + 04A4CB56F6A8163CAF3A464DD0B79CA7 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F40E7C1DA00B7438765C6875D8A5E83 /* React-RCTBlob-dummy.m */; }; 04A740155830EC1680E2A670DA44A6DB /* FIRCLSDataCollectionArbiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E78BBB2C861C183103333E5F0254F80 /* FIRCLSDataCollectionArbiter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04B0CD8E8DCD51E6A54EAB4AC3E41AC6 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2B686218AF1DC7440CE73B6A21173CDF /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 04BF68827516098FF4CE40F6D65087E0 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BF7C89715C342A26D2AE3FBD19699A91 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04EE13D18B0F6D782FFDE298038D927E /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F6D60BA1CF75E2B12AE25427ED0D8E5F /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04FF0B028D980FAA3D1E553389C97CBD /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = A1A9376297DD52A7F492DD0F82F79FD9 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04B0CD8E8DCD51E6A54EAB4AC3E41AC6 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1F8E0B6C6AB264CBFDAFD180F1089F15 /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 04BF68827516098FF4CE40F6D65087E0 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 00F0F630C3456D5195516FF5DF7D3922 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04EE13D18B0F6D782FFDE298038D927E /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C50FDEDD56937FA38E03475D2A44C3F2 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04FF0B028D980FAA3D1E553389C97CBD /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 48C71DE6E533EFBD6429F8DAEA1922BA /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 050764AE053E95388DBBFB293FDBF2BC /* PicoSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = A2753B277060D11E0A6EF6AA5DB7BCFD /* PicoSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0523D1360C55FFDE017637629B3FCAF9 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F853FCFD5610E4F829F3B16A23D72606 /* 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"; }; }; - 052731026452AD40E65E87DCF5BF37D2 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = C5C7412F9ECAF3FE9730283FF495B766 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 052731026452AD40E65E87DCF5BF37D2 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 696AD204CCEC68534F5D2FE82199681C /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 053BA4F3C75D35BCBAA8F8891D611B84 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E757213D5F91C735ECE524723A3E56E /* animi.h */; settings = {ATTRIBUTES = (Project, ); }; }; 055E3CCCC565B32662B62AEB2687DFD6 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = 0473D9A9846C9F8D6B1F54C5E8C45BDC /* dec_clip_tables.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 057FDA20D3830D25C8F9230D8460A02D /* ThreadWheelTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = FA10520ACAC79ACAD5A273E08745070A /* ThreadWheelTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 058A0E6FB778E47AC2ACEED1729900C5 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = FF45853268F706452B241C7C236B9585 /* enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 05994EDE667F3671AAEA30F159E2DECC /* FirebaseInstallationsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 587E9388CA28138EA598A6A691503FEE /* FirebaseInstallationsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05A2B9B9324B8490FA58DF43126B9707 /* NSData+EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = E748DE4661210BD2F90711673DD75BEA /* NSData+EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05A2C829317533C074C228C63D55CDC0 /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B712273B8E31704568EC931E05D26EF /* ARTRadialGradient.m */; }; + 05A2B9B9324B8490FA58DF43126B9707 /* NSData+EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B6AEAFA772885546685732B096CE7CB /* NSData+EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05A2C829317533C074C228C63D55CDC0 /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 88D07320CD70DE4FAF6B2B22BCD24E90 /* ARTRadialGradient.m */; }; 05A88A58C1245A9C537494AB00CBD729 /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = 5165D61445A33BD272493C9B489868D2 /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05B0D839ADEDCA18BCB0342D8850023C /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 49B950794F750FE25636A7AC1B0C7846 /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05D67239AA89DCABE66BC206A4A20DDA /* HazptrUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E9236DAFA6B93985F858462C379B68D4 /* HazptrUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05E51EA514016A3A30F517E11AFB5DE0 /* AsyncTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B213E36BD092B8ECF924B73AC7950F42 /* 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"; }; }; 05EEE113DA8195D1A8446E6E0223F87B /* quant.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E0E8C0BD9EF8C3E583F6CE5D9103338 /* quant.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0621741F7608DA93B0199D74FB0187A0 /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FB1745391EFB0909149AB6FDDDFA85C /* 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"; }; }; - 06290A0DBEBB396363D9CB31FC2FFA27 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 4431452D083134140ADC1225D6AFFA93 /* RNFetchBlobReqBuilder.m */; }; - 062F8BE5952FAF7F5CF3E6966A337F28 /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = 01B7927B110DD11DA2C776EBC611BD10 /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0621741F7608DA93B0199D74FB0187A0 /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EDC7EF660E1D08246E8E390ACA367349 /* 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"; }; }; + 06290A0DBEBB396363D9CB31FC2FFA27 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EF3B5C32854719229B0367D99637801 /* RNFetchBlobReqBuilder.m */; }; + 062F8BE5952FAF7F5CF3E6966A337F28 /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = 568AC5FC3788F93635BAD94B8C391707 /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0647B334661340B8A9F52EABF062C3EB /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A95432B6070546FF747D5AA2420AB9 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06514FD84CC576BCCE44F89EE61A7F68 /* GCDAsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 61086AD6AE79FDC6F39B12C0E234E220 /* GCDAsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0671A194118212DB483A5FD27359EB7F /* FIRCLSFeatures.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FB106ACF9EBD609913E569FA5B9CCFF /* FIRCLSFeatures.h */; settings = {ATTRIBUTES = (Project, ); }; }; 068627D6351492A400D81DA04B4AAEE1 /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 74ED8D5FAB33729D1722F2643DE6F9BF /* histogram_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 068DE1D20291759B65D1F6BEDA58AF9D /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EB7EBD62A5D30C9270951F92B4CBFC5 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 068DE1D20291759B65D1F6BEDA58AF9D /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D13D79C58B287031D4AC4C1DE850ED5C /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06965620DA927215DD8A8F4C9F95EA1F /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = FCD9CE39E1B114E366E66B6026FA70D8 /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06A772C7BFB80B6E55DF65040D74E8A4 /* FIRStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = BFC99C09E5CDD8F3F63DF87C58BF997D /* FIRStackFrame.m */; }; 06C78FC8169996E806BE536269C185CD /* yuv_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = B8F556D1B2C06800731E71B68B910F1F /* yuv_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 06DF5876917022BB1943DA78C98F5C18 /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CD23DC17E5F3C34F1EAD553FC4B1368 /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06E27BA59BD0058F5FF158F405A1ACCE /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D2558CABF87F180513EE640FC82D1CBE /* de.lproj */; }; - 07343EFDFF914FD150E59AEAE87BE5E1 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 3985EAA3DEA3A2B786F3C61F42951698 /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06DF5876917022BB1943DA78C98F5C18 /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = F1552E99A7FF5F1979FE42E80BF62E84 /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06E27BA59BD0058F5FF158F405A1ACCE /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 4FFB767C78CA361AF1454143355E9706 /* de.lproj */; }; + 07343EFDFF914FD150E59AEAE87BE5E1 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 9563E977201559A0134033EC35B2CFAF /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; 074CC255A80214F8215DBF480553FE83 /* RSocketParameters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C32E6CE0BD0ED8E9FF9C88C35E0303EB /* 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"; }; }; 075E4EEBCB43B2419651CE229A433CF2 /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 443D242916AB5FC2480F26DEA766BBE6 /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 075F9805B68154AF1104DF613BE6F9D9 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FEFA437E395C4AFEF921ECE6AE16F30 /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -318,58 +318,59 @@ 07982ED2F3B097036FF5459A678C428E /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = 158831662711618BC87690C3E8EE4FDA /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; 07B051735A7659BBD10772A28B34D65D /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6D6325B06D3F4C407137BDDC41768194 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 08140CF5CCD3BFD03E8A3EB7AF95ED56 /* FlipperCppBridgingResponder.mm in Sources */ = {isa = PBXBuildFile; fileRef = FAC92C0395480DD001C2A66B7458BFF3 /* 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 = B2231AA2A6C89D8C24B89FE88890ADF3 /* ARTGroup.m */; }; + 081560A0159D441DC9C8AF7CAA6B970E /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = BB54F236562CF24682F1DAA9A4402280 /* ARTGroup.m */; }; 081E6B601B49FE4F98631AE9F6594C9F /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 863B8675E3454FFBF4057E7C1C3C146E /* dec_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 081FADB2FE7BDAA1AFBBC6E3E85F830D /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F5C0D3412115B1C70F87A175BFA94DB /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08219D32E74C8630B7462E545B5023E9 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ABD96C678115C6E3745285DA05515C0 /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 081FADB2FE7BDAA1AFBBC6E3E85F830D /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F92CE6F80CBFB4B11ADD6D6AC0D0586 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08219D32E74C8630B7462E545B5023E9 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 890CEB8887D28B161E961BFB34BE5991 /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; 082EEA3652F0C7F65F3D9ADC676C1853 /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 2208AE898BE00C8E9A20D53E3B61751C /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0836D50C23B6C79A014622260B9EFA1C /* GDTCORTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = AC44E3289F69DDB45D21427F852C0832 /* GDTCORTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 083CA8F0059844F316B348C516DC0312 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 22D8BCC69C89987119832A4DE6BA6CC0 /* SDWebImageCacheSerializer.m */; }; - 0858C5DD7E4F683BFFDC33673FE75258 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C66073D693CFBA4207919CC6D1F26B5 /* React-CoreModules-dummy.m */; }; + 0858C5DD7E4F683BFFDC33673FE75258 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D9CC10D2F25AC43156165F68C141E9D9 /* React-CoreModules-dummy.m */; }; 088071E10BC7E0F7D2AEC4C95E916D41 /* CoreCachedSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 0653876D2A6D0E1E0E290096153FB5C3 /* CoreCachedSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; 08910E25B56F73BA1E7C9B35051828EF /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 209CE284D8DACEB268A1B4C8643DCB24 /* 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"; }; }; 0894285A268123E4663539350F7BECCE /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 39A3F70993119EEBEAFFE6E6D620D00F /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; 08B0382FA655BC8A478519E647F57BC9 /* FIRCoreDiagnosticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 586DBD0046C2C3E0EF691B3D634E0E1D /* FIRCoreDiagnosticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0926794C451A43301E518150BBCFF89C /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = 691631C37566A58620754076CB66C925 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; 092C950C1019A899132F1EC1C1973824 /* GDTCORConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 680D589C929AB8AE78182C4FFB699CB3 /* GDTCORConsoleLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09393C7EFB15B6830B1E24008140B06E /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 6EE0BD71B6916BCF37AA235175E69C71 /* es.lproj */; }; - 09649C563EEF42E21B70090C39834199 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = E61C02CFB51138AA232A555B11F0FB5D /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09393C7EFB15B6830B1E24008140B06E /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B6D43BAB35E3C1B95E670EBFABF597CD /* es.lproj */; }; + 09649C563EEF42E21B70090C39834199 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D4FBBF7DA4DCC10DD6963DC7E3BD3BF /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09BC7875E6D801E8C3A5D78A944B7127 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C0C26EFAD2AA5822B5C67AEF254EBCA /* neon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09D23E33AA77BDB3310ED71C6842CE9D /* InlineFunctionRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 793D49457BE2881351EC89F3919BBD2A /* InlineFunctionRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09EE5698E226034FE9300AE9751FB97B /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = D663FB020110A69454793BA1C65B70BE /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09F8EE9A887212FC0B2154E979B8E097 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 70A13EB69CA9BDD874681BA6977F2382 /* UMAppDelegateWrapper.m */; }; + 09F8EE9A887212FC0B2154E979B8E097 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E480A7A13E053B8061176C3A93EB158 /* UMAppDelegateWrapper.m */; }; 0A1085D42174CDFD3E5A123DA9241DF7 /* Barrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47DDDA3EF1B2A03E5986C29F9AD3230E /* 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"; }; }; 0A109664C716840070D6862DC4ED5845 /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B1FEA7C0C077226D84162CF1ED34F9A /* glog-dummy.m */; }; - 0A116EBE1D4A4E64BD686A7187757AAE /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0717FE9C7AE2E934863F3D36F111C1A7 /* ARTTextManager.m */; }; + 0A116EBE1D4A4E64BD686A7187757AAE /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 42175A98A9D908B51C8970DAACE17DB3 /* ARTTextManager.m */; }; 0A2BB595766F80BB96DA17C3497BF549 /* FramedDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = D7C398BC98205EC0ECDF300FAE70F619 /* FramedDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A35E2DC84A2D8C042981E057024C85C /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B7D7FE6AC4A9EF21678B0F718C686D8 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A6BAC8A932A7A0AE62DDBCCCA70702D /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D9BA3D711C337D4CDA290FD2AC421CE /* BugsnagSessionTrackingPayload.m */; }; - 0A7FF47E30F61AFB6AD9CA895EE1A4F9 /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D53887821DF8B50E33EFD33CB134980B /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A8B587E3A95FE20D3CFC98F8FFCAB03 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 406361C35BAA62FF97AEAE4B1F895035 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A35E2DC84A2D8C042981E057024C85C /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 913C710CC0D2498D2B52DF900DDC9CBA /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A6BAC8A932A7A0AE62DDBCCCA70702D /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = 12A48549908AB9B411AED5D6AB919602 /* BugsnagSessionTrackingPayload.m */; }; + 0A7FF47E30F61AFB6AD9CA895EE1A4F9 /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 92F1950224E717B54A556C01B41BCEBC /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A8B587E3A95FE20D3CFC98F8FFCAB03 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A022B544A1A50C725011B8F8D14BFFC /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0A92A4EB11AC3149D6C51E87E22A1A5B /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 8E940DF76A9E872A76ED5CFCB5A78364 /* cost_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 0AAB1B87F449356F2FFC7DA7EE5D381F /* da-DK.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 3559D7F06A730A4645DFA09171B2E0A5 /* da-DK.lproj */; }; - 0ACF9654E330F3E4FF25D38913B61A9F /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = 761585823AE2D9E8A5545EEAA132C969 /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0ACF9654E330F3E4FF25D38913B61A9F /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = 0295B51E8CEA0461CC65504BB687DCF5 /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0AD1DA52CE1FEB97B05BA9D8CB63C1B6 /* GDTCORClock.m in Sources */ = {isa = PBXBuildFile; fileRef = 2830D91941428ABC6992BDE14798A552 /* GDTCORClock.m */; }; 0AE130EB96D4454903ADE0BA1969A6CF /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = CDD8B489FEE7559F434B9E2A898ADA1E /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 0B28BAE0A1B8550D2DE2D68527158680 /* FIRCLSCrashedMarkerFile.c in Sources */ = {isa = PBXBuildFile; fileRef = 4941684C4855A4B810B172E41A7F1444 /* FIRCLSCrashedMarkerFile.c */; }; 0B2CFC4DD49E848F4351E1AD5EFAFABB /* DynamicParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C23C2BDE7E08B7D04B3F5940676930B /* DynamicParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0B3B883A30022727522781E6FFE17758 /* fi.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F9AF1435D07F42704AE3EDA00049E97F /* fi.lproj */; }; - 0B61BABF587EBD0E31C3904A9C82ED22 /* RCTDevLoadingViewSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 341BD64198173E046E86ACBF1EC97D21 /* RCTDevLoadingViewSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0B61BABF587EBD0E31C3904A9C82ED22 /* RCTDevLoadingViewSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = E02F2FE237FEBCD8B9EC4A739098217B /* RCTDevLoadingViewSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 0B761B070D881FC68C5737332C9D8036 /* HazptrHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DAD9A0ED847DB05BD8A3846F1928EE5 /* HazptrHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B7681A7555B94ACBB78D9E0D0162039 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 44749FF42F1EF6CC82546827D4A38E9F /* BSG_KSCrashSentry_MachException.c */; }; + 0B7681A7555B94ACBB78D9E0D0162039 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 431C7930A878F6F267F385C5F0415118 /* BSG_KSCrashSentry_MachException.c */; }; 0B7C39C00D2B040C27544584D750D5AD /* FLEXNetworkTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D43F3BD74424903DE15CD5B97C1F3B9 /* 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 = 3004D665389E914D103F3DEEA9895A56 /* 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"; }; }; - 0BA06FDA567BBD9F7B5CB941588C52BC /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 4101A167FEED7D4C959CEB06F6AF4DEF /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BA06FDA567BBD9F7B5CB941588C52BC /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = F5BD86CC0F2A82DBE73D8A6D62F8CE36 /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0BA4F97CB6DECFE49F6A541777FF8519 /* FIRCLSMachException.h in Headers */ = {isa = PBXBuildFile; fileRef = BDDF861A37CFD8442F2EC5A4A183C88C /* FIRCLSMachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C2C18E15224239E99EFA26C3E1489F5 /* EXAppleAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = D4D5A168DA5148C3BFE7AE35AF72D057 /* EXAppleAuthentication.m */; }; - 0C551985E8686CC886A539921C3EE668 /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 58FBA6BF8F5DEF89FA285E52026046E2 /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BBB8E4D44E07EA8C4295F1724F56886 /* Sha.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FA4F3AC4B16DEF39957BE9C328EF6DB /* Sha.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C2C18E15224239E99EFA26C3E1489F5 /* EXAppleAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = A099E36DC8541FE37E87A54002BB71DB /* EXAppleAuthentication.m */; }; + 0C551985E8686CC886A539921C3EE668 /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 938E0011BFC8D17952D67104D78B2D2D /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0C5F5CE1AA1ADA700992ACE372336053 /* GDTCORUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = E0B9138B9D1433CC345183B9754A922D /* GDTCORUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0CC9A6A17727216556B0AEF0E6F9FD71 /* FIRCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 064579C97FE2FD85F8F6FABB2DA1FCB9 /* FIRCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0CF17F9266055A1FD1CFF6F2C328C2AE /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FD9FEEF6D4B48EC20A2ED6B28B080D61 /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D3C93CF0F9F2583678EB02BE49EB077 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = AA2088DCA6A069516608B5F7D3CBB86F /* SDImageCoderHelper.m */; }; - 0D58E16C6814991908886D21A86477D3 /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 13A2CE1EF3B7728E6B201CE0A9866BEF /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D58E16C6814991908886D21A86477D3 /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B9798BA0CFA3B96768EBC15D33CEEC6A /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D73DDAB5065DADE674ED5E85CC65AC1 /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 96F787CF090DDA037FA87DAA4ACFE5C7 /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D78BA278756E2D822E89C836AC3A7E2 /* RNFBSharedUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = ED8ECD8D922917999B335311111C1B7E /* RNFBSharedUtils.m */; }; + 0D78BA278756E2D822E89C836AC3A7E2 /* RNFBSharedUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = E5A81481F6D223A9BA1AE3C708EF9241 /* RNFBSharedUtils.m */; }; 0DC96FDEBC06F1C8DCE2EC4A1B158A2D /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 88E06EDD49EAA4EA3B221D0DF8AB80A2 /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0DCD335B1EC7E097FA1E6D89B16A4A24 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 39BBDBE80E53745D27E48B00FFFDCB50 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 0DDEA131FBC532835F8E259FD7654AD2 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A04B5CB1B57C0A6012190EBDCBA91165 /* en.lproj */; }; @@ -377,10 +378,10 @@ 0E0611504CD5D881E5FCB9B5E278D6E7 /* MicroLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 673F4DBBDF1C81FFB1DA1723C5EEFE11 /* 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 = 82A2D4FE69837872342EB338FFBDA02B /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E1B3276561F7EB341FA907EB1A86F04 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = FD1A6D3700A187B9340B40E1CC0B1A07 /* upsampling.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0E1E58EAA62AD31323C41A2EE1F285A6 /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 917436F04D28B8273DFF73770698D8CB /* RNNotificationUtils.m */; }; + 0E1E58EAA62AD31323C41A2EE1F285A6 /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 8309D824494C6089478E966E7B5F9930 /* RNNotificationUtils.m */; }; 0E2055CD03A9F6FE1EF61816FD390A1B /* AsyncUDPSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 17494F9C1DFAE5E426E7C147EAD8821B /* AsyncUDPSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E218A685D54E67E63B15EE57AF9B96C /* TOCropViewControllerTransitioning.h in Headers */ = {isa = PBXBuildFile; fileRef = 415AB15B320B9646A3392FF556330B10 /* TOCropViewControllerTransitioning.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E2C683FBE5E9C1901110775A04916CB /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = F03FCA6747A9850EB34084EDF68C1750 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E2C683FBE5E9C1901110775A04916CB /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = EDE1A7165B603DC916D495FAB9AC8A0E /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E44162EAE5447439FEBD9619932914D /* FIRInstallationsHTTPError.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E63F04EE183EF37D6F35425CB658088 /* FIRInstallationsHTTPError.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E490E89EDF3A16691A550F3B3D8577C /* RSocketParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 87C031E4203074D0359AD79DB91EA091 /* RSocketParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E5B539F7CFE7C18605CA862F87C9FB2 /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 89C062B8ED4D916D00E38E692F628ECC /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -388,79 +389,80 @@ 0EA0900779E7C8425C830DB6CAAD784A /* TOActivityCroppedImageProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 1727A5E522AA6F0823BADF8CA373930B /* TOActivityCroppedImageProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0EA52076C94A2F4EBDAE61FF2D24E451 /* FIRAppAssociationRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 202794FB62F23CE63FEA290BCF5A0D68 /* FIRAppAssociationRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0EAE708844B871B5D9FCE1F1F5243BDF /* FIRCLSFCRAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = EE703EAED3358FD81E42E02DA0472E66 /* FIRCLSFCRAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EFCA31C89CB2815C262F61063472180 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DC57DD111EE87C957BED6D9A2B4AB339 /* QBAlbumsViewController.m */; }; + 0EFCA31C89CB2815C262F61063472180 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A42796C02B772B696F575A4480587B6D /* QBAlbumsViewController.m */; }; 0F04757773EB94AFA230379602288218 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BDCFB3E7E895E33DBB46260A502852B /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F0C10FF1C8CA51216269475E4076D75 /* Framer.h in Headers */ = {isa = PBXBuildFile; fileRef = 90B64C4E2C319CF52970A31675FC54E2 /* Framer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F112286F11B894F72C66676A5BAC325 /* SDWebImageWebPCoder-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8956ACF74B500301F363E9F2FEB2FB5C /* SDWebImageWebPCoder-dummy.m */; }; 0F2C29D27A4A81991C787404478AF099 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = 34EBB387C060A930458C5C6E5081055B /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F3F32D5615E2F8623E48BB225FD09D8 /* StreamResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4C48A925874BE980FB340F60393E8B9C /* 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"; }; }; - 0F6293E2C6D387AEB7CA7FB4110631C6 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 638D22B036121DEA40AC69DF1D69F969 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F6293E2C6D387AEB7CA7FB4110631C6 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = F1DDEEDBC45048DD00B19D8A069A228A /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F77D37E6759126835EF8EBD3D566FB6 /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = BEB9202103762A615C4A5838134AEA64 /* FIRDependency.m */; }; 0F96B9773F1A3A400AF5F4BE07F633F8 /* ms.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8212F17211A09244F12417E5EC41A210 /* ms.lproj */; }; 0F9C7819344334F86A89420E15C953C6 /* ThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 201F746F8E0E1B8D73FADACBE01D2141 /* ThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FA49BA8A92058A96F5D15313493FB59 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 391F645395DADABA74114F035E174C4D /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FA49BA8A92058A96F5D15313493FB59 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F5B8FEFE396F23EAE59B676C2241DB9 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FB00882D8BB26D52DB32A3B8F1C4761 /* AtomicRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 80545F6091AA92EEAF783BF4EF965E1C /* AtomicRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FD0BF71F29CDFAC3DBE15624237654C /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60535C87D0FC894ADB2DD82CC2A28E53 /* 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 = A9F1828E00B05C11D6AA90198F9E15EF /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FDDB9156FB0D0097B471318449E417D /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BE5BB8AC74CA98538689C41899C713B /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FE20EBF34F908C0A8BAEE151FE31368 /* FIRCLSOnboardingOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F5CF51212CBF9F332801DA2F4A79CA6B /* FIRCLSOnboardingOperation.m */; }; 0FF737393D13C998B2E7B85E02167777 /* SSLContext.h in Headers */ = {isa = PBXBuildFile; fileRef = F40075B936115DC5B57997FBD0D84841 /* SSLContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; 10483AA4D71ADE88023480FB5094E267 /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C339D4A98D2F464FB744C8311B8930F /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 108E5385C09DFF34EC8FE4F73C4662F4 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 52426FD74F4821670D4C474FABF0D44C /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10BA82C55A2B1DEC4B2ABBA14C5DF73D /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 35145D11DB7911A08652F4658F072CD4 /* 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"; }; }; + 108E5385C09DFF34EC8FE4F73C4662F4 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 09A154745DC9BB7A971187ABE70612D3 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10BA82C55A2B1DEC4B2ABBA14C5DF73D /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = E1204EBDD6C2C2A0C33E54F59FC45FDB /* 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"; }; }; 10C1021B42BE6200A4E324C3539F9702 /* RSocketRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F324F1517F2FD156164BA6904200BA55 /* 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"; }; }; - 10CE4E6061819094F64E040163430758 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 62B11F68B301D16E3AAB2FDD1D384F8E /* React-jsinspector-dummy.m */; }; - 10D68B02FDF05C99237E067F9918509D /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 1279C8052D57FC19BBEC11214D1F9AD5 /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10D946CD688B87AE48421FAFE3FE8310 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A424B921F34A2E684E3317DE9C9F0B0 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10CE4E6061819094F64E040163430758 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 179F4502B5494838D4DDFE443C1E31C5 /* React-jsinspector-dummy.m */; }; + 10D417AC022405982EEE693E88464CC8 /* RNRandomBytes.m in Sources */ = {isa = PBXBuildFile; fileRef = 109BEC51DAB4CE3C672C328A560E26C3 /* RNRandomBytes.m */; }; + 10D68B02FDF05C99237E067F9918509D /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = AABD01C3DC1B63D6EF185B60AB75079D /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10D946CD688B87AE48421FAFE3FE8310 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A0BAD312062B71CFECD4ADFD31EEDCF7 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 10F42CB440BAE106EBDDC8B9823FA2FF /* FIRCLSApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 80DED9425178C98B16FB10A99873E0F4 /* FIRCLSApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 110686C3B9BFABED7EF510599B8F4BA4 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 855E19E00BCCC9D0E8F7010CD3AEC66F /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11071A0B5E380F5B7F2E010327B3815F /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E30F480795515B199631678A529BAEBF /* Yoga-dummy.m */; }; + 110686C3B9BFABED7EF510599B8F4BA4 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 07BB5E1BB5C9BD52761C0A9FCDADA805 /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11071A0B5E380F5B7F2E010327B3815F /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F71561FB046C748FB12835CE1E75925A /* Yoga-dummy.m */; }; 110DB0771E91F52B6FD3EAD5AF30123D /* RSocketStateMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = F85431ACB243CA110A229BE2C7FC8082 /* RSocketStateMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 111D765C73417F5F3D9DB4A549BF16B7 /* EXLocalAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 3036C06861E5784B6061546B1BF887AF /* EXLocalAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 114F09E11FF5AAD51F6A4A68923DEDD8 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = E1BB99A20197EB8D91245B3A931DE941 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11527F4C8E41DCBE88F35CD9A1A27B89 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = D50932CCC095608F0E80DE688979F74D /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 116CE378A686BD900FC7676F4F481AEF /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C5099265536276347F457C5A85928CB /* BSG_RFC3339DateTool.m */; }; + 111D765C73417F5F3D9DB4A549BF16B7 /* EXLocalAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F3225617BB79E4F9D614C140A307E07 /* EXLocalAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 114F09E11FF5AAD51F6A4A68923DEDD8 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = C3F73556D59F2914CDBE38BD35F20F16 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11527F4C8E41DCBE88F35CD9A1A27B89 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = E733CF97A9466B399964081BEB37674B /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 116CE378A686BD900FC7676F4F481AEF /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = F602CDFC93CCB1F192C77B5FCF12362F /* BSG_RFC3339DateTool.m */; }; 11712F28C8D94966B4717571C5B4101C /* FlatCombiningPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 06B8C344FAC449658DB496C12EE1B09E /* FlatCombiningPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 118ECA72611CB2FD2EEC1AC53D8E029C /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = E74C6677509574D65B174FB977F4BDEC /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 118ECA72611CB2FD2EEC1AC53D8E029C /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 54DE25F8E0A8F9CA214FB0A72829B0CB /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 119EA7D5009DCF867F066ABA035BD82A /* FirebaseCoreDiagnostics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AFA3931C37E8EB9C037136BF34979DD /* FirebaseCoreDiagnostics-dummy.m */; }; - 11BCEFCA89FAE791FE7195C154A8D927 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 958878E7F5EB446B20B4070569600ED0 /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11BCEFCA89FAE791FE7195C154A8D927 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 908527F5DA004C72A551B5C6E3617F90 /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11C1F06E5DAC4DB374846E51300D5020 /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = ACF94B1EA40A9E302767E9B8BFD88B35 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11CEE85468C674A4EBCBA4551A6FFB4A /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ECC929CF6FD2CC882DA01DC24B97431 /* SDImageCache.m */; }; 120EE91B70D7148A00CE2E064E96F61E /* SKApplicationDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = BB2B5280D895C797CD9172BE3B2396C6 /* 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"; }; }; 12464BBD06FDEF5F9162798A1EC56544 /* FIRCLSConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 62E15403D2A1838600C6BF72034026F3 /* FIRCLSConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12478C3DEA4C049CB9A2CA1CD20C89DA /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E658C8E86F0F319FC47B3D827AAD68FE /* rn-extensions-share-dummy.m */; }; + 12478C3DEA4C049CB9A2CA1CD20C89DA /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 38D49146D8902182769A1E71B69CE2DF /* rn-extensions-share-dummy.m */; }; 125A7DA5E0AA6CD38E879293F84F4CA0 /* Flowables.h in Headers */ = {isa = PBXBuildFile; fileRef = 848FABBD7A6748D5B65961E5807AC33E /* Flowables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1269AF0F682F600A26863DF81E886937 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A86A32F345AF00A0B92C61CD6EC4683B /* RNPushKitEventHandler.m */; }; - 126F40666E812A4A6E90817FF328B49D /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 392FCA00F23CFD5EF3D84B3894DB3A6C /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1269AF0F682F600A26863DF81E886937 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E5E42148D2282BDD5993EB087B038CFE /* RNPushKitEventHandler.m */; }; + 126F40666E812A4A6E90817FF328B49D /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = B08D9D6DCA80E660BFD13F2884E03F9D /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; 127BEB986815F397903637433E85997C /* FireAndForgetBasedFlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = B7F2B74DFE83B51094258A1292C18508 /* FireAndForgetBasedFlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 12D59B7431F1E2D74FD4A69383EB1BC9 /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 31048922C05EFC9BE9C31498325EE5B3 /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12E3B3A98B16C35BF8A9040CC935E1A1 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 423DBE3582E06AD2EBC9DB27C89EC5F6 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 12E3B3A98B16C35BF8A9040CC935E1A1 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 69DB0287B6E73FEAB846D812AD410F88 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 12EF2DADF1312FD3553930431F86DA5D /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 419C21DE03C7ED90C021F5C7A17DAE4E /* SDWebImageDownloaderDecryptor.m */; }; - 13210605B09232F682CE7280B752A25A /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 443D86D676BDA6439C75244E0E2A37FC /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 13210605B09232F682CE7280B752A25A /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 16619E407CBF9391E2C3884FDF4DF368 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 132446A286BF65E4A71E3B8B41D13299 /* FIRCLSCodeMapping.m in Sources */ = {isa = PBXBuildFile; fileRef = E4FE6A7F9EFA3C2709A76C90A0ACD130 /* FIRCLSCodeMapping.m */; }; 13626B3E229D5D66AF7559F0708DD7B3 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C2BCD08EDEF360E493D86114FAA2543 /* SDImageAPNGCoder.m */; }; 137FF610872B1C182541C2262022B77B /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 59D0F4F6EFD9A3FFC9672551AAFB8CEF /* SDWeakProxy.m */; }; 138BB5EE73A73F506971CFAF6C344BD9 /* GDTCORRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 195AE66B31A9AF38439BF105310CDF65 /* GDTCORRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 13DE1BD1D694029E6A9CA5A6422D1297 /* EDFThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77254540357DA2C913AA45CCE9A2BD0B /* 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 = 58A532A0F849CA6B9DA27106CB7E4B5A /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 141090299A28682B48401EF4D7F455FC /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 91F02B239575217740A7E0E7D99F556B /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 141304222E862C8824241BED6D8D4341 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 089E47E2682577F9420DC30245D15C6D /* 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"; }; }; - 14416B732D93C60D9933774377696D1A /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 46AEA57300F51DC99600F17FE2478B4A /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1448E6C039C8E7A220498EDB5E01D34A /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = BA7090045FE2DBEAB8C5F7109BC42117 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14416B732D93C60D9933774377696D1A /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A096C271D4C402AE27DDDBFB48CAFCBB /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1448E6C039C8E7A220498EDB5E01D34A /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 60B54D84390877018DB3F64DBA43949C /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14595B9424B26FA78E6DD72747352F72 /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 35D9C6292267FF2509C7C2941F7524EA /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; 145B0569F3F8BCD67D8BBF5DD7E6EB72 /* EventBaseLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ED5FF248E57447CE64A4876ED7B8DA4 /* EventBaseLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14728816ACF61C96545F414F980F4B33 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = D4FBD0D54235095901816BAD1591D244 /* SDWebImageCompat.m */; }; 1473175D9D91F3FAA6EFE18B305D6E38 /* FKPortForwardingServer.m in Sources */ = {isa = PBXBuildFile; fileRef = C39027DDFFC8785415DE36B4302732A2 /* 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 = C8972C8A0470C9BC3219DA4032A09601 /* EXVideoPlayerViewController.m */; }; + 1479BA84B9B30E6D9879CA6C0135D930 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B31E32BCBDC2BC3A9B9C329D0BA117E /* EXVideoPlayerViewController.m */; }; 1487B1D1AEDC852BABA57CD71F64AA21 /* SpookyHashV1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DEA61F84FCCD1A8BC54C4031629C8D6 /* 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"; }; }; - 148985338204113A70CE293FA1A9B59F /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A40BD840EC14017F3F9E2A0DF9385FC /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 149BAC8C16FD76B8A7DE7279167CDB38 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 25A912E977BE574C3FDEF0C947FC58D3 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 148985338204113A70CE293FA1A9B59F /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = F4E916E16887711C8AD4EE979ADB6D7D /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 149BAC8C16FD76B8A7DE7279167CDB38 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2737BFFE5E4D7FDC1C3559888BCBB08E /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14A2ABDB1E2A4ABB4C6D29042FA3186B /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = C9EFB34CCF70545A780B4A8FD2382307 /* FBLPromise+Always.m */; }; 14A3CA4B77271ED4415356A1FBA7362F /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 415268D1A80C95953F31FAD0F2169E28 /* dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14A9C9610BD8C7330ECA0BA0F7847340 /* GDTCCTCompressionHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 2783C26E011E46A1CFC441EDF1431401 /* GDTCCTCompressionHelper.m */; }; 14F4CBB8353E78750FBA45D556C32E23 /* AsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 74AB9F0D12C65D3D5887677C3B984BE2 /* AsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 150F04B8F2DE014340CA3EABEF23B9AF /* SSLOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CEA243D951DB804A2D2B061752D4838F /* 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"; }; }; - 1512892B5305F94B3E4E56C7D1C53A1C /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E503EDDBD1DB36A1BD8F4FC767CA336 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 152271A7580B47DB9B37189F7ED4277E /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 2714CA9B90D36DAD7985EB61005E21FB /* ARTLinearGradient.m */; }; - 15317713CD05A58CAAB76846E80BB320 /* RNFBRCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = F2B70451F292A11102014AA7D382DFDA /* RNFBRCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1512892B5305F94B3E4E56C7D1C53A1C /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 2152B1EDCA505F6259FF7FA653A834F7 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 152271A7580B47DB9B37189F7ED4277E /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 06F6A312CAE9E8C00B3ADA6FEABD433D /* ARTLinearGradient.m */; }; + 15317713CD05A58CAAB76846E80BB320 /* RNFBRCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BDAA74A9CE491A835DFA5E5C9F96667 /* RNFBRCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1545F3BAB2FDEE69BA16660BB26F0F86 /* TOCropOverlayView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E6AC115DA6491F04B1889111179BA73 /* TOCropOverlayView.m */; }; 154E9DA70771C2E787FB4A467761F308 /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = 4248F7EC94C1492E9CC08E2AF51D9B1F /* FBLPromise+Async.m */; }; 15606F80BC53DF8E81548C3DCB0107FA /* GDTCCTPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = AF324330325140B3CA61398B025D261A /* GDTCCTPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -471,78 +473,78 @@ 15CBDB6170625FC29B5013BB2F3898E1 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 921BC9ABA34D5748781D1E6EDBF20E0C /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 15D7CCF59D45A8AEB4224BD291FC9910 /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = A861EBD95221184C3571AA73D072093F /* huffman_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 15FA0CEC28541CA4EF930A1163CEAB50 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = F3E82A5BFCACDC39A13BCFA7AAACAAB9 /* lossless_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 161026FA21D9BE1DF9129B9CB9D7732E /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = BA0ABA8E745BB4558F5FAEF68134356C /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 161026FA21D9BE1DF9129B9CB9D7732E /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 827BE2553CC1A1A51AE23A61CD5CDF7B /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 161A3959A3DB59623C050A727C8E8C81 /* GDTCORFlatFileStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 232AF2B965D28EDDC1729A790B0D6B14 /* GDTCORFlatFileStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 162A6A618A93B94A55D7223F0F5E716F /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FA8F148446D44D3CB43C8ACC3EB6CD8 /* React-RCTSettings-dummy.m */; }; - 162ACBE91E639740897876BCD2BB2865 /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = D42777CA461B620478E3E2108813C937 /* BSGConnectivity.m */; }; - 163371D05D89E0FE1CC10BB964D7FF97 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 53D0830ABE6F5338B281F64C4817C86A /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1658E2D03BFE5D27F4C7FB78370F5289 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 56EED4B1C4BE02DE793AC7A19190F8CB /* RNPushKit.m */; }; + 162A6A618A93B94A55D7223F0F5E716F /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E70CDB6BEA8C435133FBB0FFDF57E3E1 /* React-RCTSettings-dummy.m */; }; + 162ACBE91E639740897876BCD2BB2865 /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 921838622BDFEB12CE507B8D55A32497 /* BSGConnectivity.m */; }; + 163371D05D89E0FE1CC10BB964D7FF97 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = FEEBE15411CABFB180D186ACC9671BB9 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1658E2D03BFE5D27F4C7FB78370F5289 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DF69A0F0F03B8024D9D140DC89FD7CB /* RNPushKit.m */; }; 1677C6E959A147929A1E36ADE31AB595 /* SKEnvironmentVariables.h in Headers */ = {isa = PBXBuildFile; fileRef = 831CBC069C3F01300D540F11687A9BD0 /* SKEnvironmentVariables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 168858BEA838B6A79F6BAA7F95B0A0BC /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = D8948141E9C8C2805ECCEDEAE42FF5DA /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = A5ED4395691E2745D117436EC74A630D /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 168858BEA838B6A79F6BAA7F95B0A0BC /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = AE897E3984F4AF7BDF3D4923F34EA121 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 0534894A0989BDB927FB21B9F60C2E70 /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 168E0D6A2004B4AB71BDC7A0FD126EEC /* FrameFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 440C33DE7D0895F3E498BB5BF502F577 /* FrameFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16958AEC562C5160BFD88A8EFBBAC6A5 /* RNFBAnalyticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = B650074EFC46B04DF230D7228E596A77 /* RNFBAnalyticsModule.m */; }; - 16B79B17961B6E6845CA4D610C59DDE5 /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AEF010B56948D32AC87B7D5072EEDBD /* ARTNodeManager.m */; }; - 16BFF090FD5381021803A4BF37BCE8F1 /* RCTConvert+FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = E83115FFE7ED69EAD06883FD58323459 /* RCTConvert+FIROptions.m */; }; + 16958AEC562C5160BFD88A8EFBBAC6A5 /* RNFBAnalyticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = C247A99D32C548B14F4AC5661F2AEFB0 /* RNFBAnalyticsModule.m */; }; + 16B79B17961B6E6845CA4D610C59DDE5 /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A965C0B320EEDF0EC441150E7F6EC65 /* ARTNodeManager.m */; }; + 16BFF090FD5381021803A4BF37BCE8F1 /* RCTConvert+FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = E82C8D2F96BBE650C34592E435155A63 /* RCTConvert+FIROptions.m */; }; 16C5D991F7D3833068C8F6892F59DAE2 /* MemoryMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = D744DBB287F294E3E4909C69FBC72BF7 /* MemoryMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16EE63BECF0434B64696485FF6B3B7D6 /* RCTScrollEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 81113F643E1CF81D879597FC06BB4375 /* RCTScrollEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 16EE63BECF0434B64696485FF6B3B7D6 /* RCTScrollEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 13E450D69101261A74BD7F400625DE7A /* RCTScrollEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 173358C1C847A9165F7F5A72CFD85594 /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = C45D6053017EBCB71D9BF9F738C38545 /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Project, ); }; }; 173644F783112230316D4E6FCC53ED4A /* ErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D2C15850BF64A8B26086A0BFA96F29B /* ErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 173EFBD9209646E1A705B053082C9F6F /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = BF8CDD264099EA4CB7EB7831969E98AA /* REAClockNodes.m */; }; + 173EFBD9209646E1A705B053082C9F6F /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 8377771EC84A757A47FE1E0DA6B5BA99 /* REAClockNodes.m */; }; 17473E80FC0107BF0A8C72CFFEAF8603 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B229390E5DC7BAF77CF58F87A0D2C06 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; 175CFCD017C7B7EF1E598452DA8878C5 /* GDTCORTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 190B41BC3AFC75D961AF4D6471FE80C2 /* GDTCORTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1764DAAB45EFB47EFCEBF09C636D8196 /* Codel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E7F89F69D58231307B377A09D2F20A93 /* 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"; }; }; - 176EC407C0E6D60A0CFAFE7137EEA659 /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = B8D9D2D340FF2BF639FDC74AEF3A6E75 /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 176EC407C0E6D60A0CFAFE7137EEA659 /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BAD8B4225215297B30BF455AB6179E4 /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 177039A182568496EEAD8B000C4CB5EF /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = 689EC159E23AF54921177F5404497941 /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; 179E47C6D3FDEF2F8548AAF3B8E7D75A /* IOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3660486B72C513704AEA66F7F0B8C478 /* IOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17BB6867B8F014C0E40A07E3CF4AB27B /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = EB55CC314436DBB45945DDC51FE7D004 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17BB6867B8F014C0E40A07E3CF4AB27B /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 871E82D05EB9AB9FCBAE6FC42C893819 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 17C2BEF174A99D7A9963AFC14B2D9E10 /* ObservableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 80825EA1EFB9ACC32393520FD698251E /* ObservableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17C9F63079A7777BDF392197B7DAF65F /* RNCSafeAreaViewEdges.m in Sources */ = {isa = PBXBuildFile; fileRef = 0559E634C3FE475DD1C584491F360ACC /* RNCSafeAreaViewEdges.m */; }; + 17C9F63079A7777BDF392197B7DAF65F /* RNCSafeAreaViewEdges.m in Sources */ = {isa = PBXBuildFile; fileRef = E0B659FA3D7BF3429389703DFA2C10A9 /* RNCSafeAreaViewEdges.m */; }; 17F5E0FB74E7BD32CDACDC8F988CA5B7 /* SKIOSNetworkAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = D3B7A8958EB01D6B4C199D7AFC54B407 /* 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"; }; }; - 1832399A5D86191FBC62039FAA886F24 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = C4F7E4CFCBDB2C5DA6CAE16C755C4FE1 /* EXWebBrowser.m */; }; - 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3430F6D9D154829830335E7F6313999B /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1832399A5D86191FBC62039FAA886F24 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 463AB84C1747B2050E472A04BBF45B62 /* EXWebBrowser.m */; }; + 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E3C2AA1E332C41F4597D3BE7D3DA30A /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1875CFDC099AD0787A9C25318392EA17 /* TypedIOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = C637A6272077BF390AF8E503CA25F9DD /* TypedIOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; 18A77E5A2082C7E3C408C56CA002C905 /* FlipperCppWrapperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E1A8F62B8927BFFF24DDF6DD940F53 /* FlipperCppWrapperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18B99705036ECD1F33913244C135B90A /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B1E3359D6A9ED665FE278B75005E906 /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18B99705036ECD1F33913244C135B90A /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D68A81D97A3E938ED7D35F6C3F26021 /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; 18C92F2E7DE02C4F5158C71F487EDC11 /* RSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 6977B19F126A290B069B3FA1DC1647EB /* RSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 18EC058224BD741E7A2C93D0450326EE /* FIRCLSGlobals.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C47950876FB080FEE6CF111D6965109 /* FIRCLSGlobals.h */; settings = {ATTRIBUTES = (Project, ); }; }; 190C1CF14FE6C07E6E1D21C2C59D2F0B /* FIRCLSInternalLogging.c in Sources */ = {isa = PBXBuildFile; fileRef = 86BC3BB242CB1BF65E1D7CBDD1931B2D /* FIRCLSInternalLogging.c */; }; - 19395BF0D512145A000D4AC12462498F /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B8121C01DC744F53803C1A78D33B123 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19395BF0D512145A000D4AC12462498F /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B653C96A63A83B15BC3EB954CA64D38 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 193D84D554E98E93C8D2745AF8BF6517 /* FIRCLSRecordHost.h in Headers */ = {isa = PBXBuildFile; fileRef = 974231CA2D92B7FC40AA468569B99461 /* FIRCLSRecordHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; 193ED99B119DFEA6FDAD04AEBB176FD6 /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 423E6295395104EA9D8320DD6C894074 /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1952230ECEC4B2A0E1FC56C1309A0AED /* EXSessionDownloadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = FDC0B6F5E8578026BED7FD6E2AF10D84 /* EXSessionDownloadTaskDelegate.m */; }; + 1952230ECEC4B2A0E1FC56C1309A0AED /* EXSessionDownloadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = F83FB2973ACDE06FD3D5312407D84842 /* EXSessionDownloadTaskDelegate.m */; }; 19592F25B82235131D6A91618F62FC7B /* Throughput.h in Headers */ = {isa = PBXBuildFile; fileRef = CD2E0E29B2602E47A26BB8780A6283EE /* Throughput.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19793D450FF05EC41C93F7691BD25ADA /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = BEE19A918E2759AE4572DC3E4A2ACB42 /* FBLPromise+Recover.m */; }; 19797D078D86653C59105544484571FF /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 93216BD09E76361A7787201D814B5908 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19A4C2DB3EBA77982E77271C69AB7543 /* FlipperConnectionManagerImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58CBB9FB3A760AF537A770CE838740FF /* 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"; }; }; - 19A5A714B60260AA3454D781E5BE2626 /* RCTAccessibilityManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = CDA53E6309D597F1A328D58C06B39D6B /* 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"; }; }; + 19A5A714B60260AA3454D781E5BE2626 /* RCTAccessibilityManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8EEA3FC26644B0F50416F14C24D4DF1F /* 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"; }; }; 19B3BC4E2828FB30D6FE19E66BBBC724 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 3DBBC99560F7985C8A60373FDDD76DC6 /* token_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 19BB37501E60552D724E980C463122B9 /* SocketFastOpen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75733073D5EA416ED33FE1CA0E4600C0 /* 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"; }; }; 19EBAFFF4F7BB44B99B4E5EA6F2FC4A9 /* RequestResponseResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = F600F01DC5C0A19939C7E3C1DD49100E /* RequestResponseResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A083BCB6AB2CBF49971EE0479FB08BE /* BSG_KSMachHeaders.h in Headers */ = {isa = PBXBuildFile; fileRef = B645C8150E6AD50B10361C0416E48B9C /* BSG_KSMachHeaders.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A083BCB6AB2CBF49971EE0479FB08BE /* BSG_KSMachHeaders.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E656994523FD0B6EB65AC4EB81BC602 /* BSG_KSMachHeaders.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1A1FAB80AB5646F6BA23973871D037EA /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = F618E351EAE404FAD585BA59E476D255 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1A34D3102ACF234F346A5475B6BF1CB3 /* Stdlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 86EF5B883FD9EA0ECA724535C4754B02 /* 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 = 5F287AF97C73FAD86ADCFB2B08891D28 /* 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"; }; }; 1A54A0855A3968A2DF2C0220B9C13AEA /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D690A8DA370757420AB0DA2D239503B4 /* 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"; }; }; - 1A688B1A58B49BE230CDA5D5E42C6644 /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 0798EAB5ECE84B8786E46E1DDC74EBC9 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A8C01A62EE6458ED89D407F24688A38 /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 962C9C1558BE0FBB69BAF645AD26C2A1 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A688B1A58B49BE230CDA5D5E42C6644 /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 984B021CE47144ED2C3F29BB03912A66 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A8C01A62EE6458ED89D407F24688A38 /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EAC88C0343FE27B9605390D5EBC3040 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1A9191026A065A4591600142C46139A3 /* AtomicUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 61DF78A65709484E73FEBB34A52318F1 /* AtomicUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A91DAC8DA3EBEAA0D5111513D568D69 /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 29180AE048012CD4589BA6C1AE87D9E1 /* RNUserDefaults-dummy.m */; }; - 1A9A6954BEC51868A86A0FE3E6FEBC8F /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = AEC47ABD196CA68E5B3CAA944A380989 /* RCTTextShadowView.m */; }; + 1A91DAC8DA3EBEAA0D5111513D568D69 /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C10C816D6B7FC6107D6C3908F781567C /* RNUserDefaults-dummy.m */; }; + 1A9A6954BEC51868A86A0FE3E6FEBC8F /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D44DA9AFD0F10A48D85901FE0B7D8FA /* RCTTextShadowView.m */; }; 1AA7D50D366D8F1B3C58F9727B5C8899 /* FIRCLSBinaryImage.h in Headers */ = {isa = PBXBuildFile; fileRef = EE8B5CD82A2247EE689EA950066A50DA /* FIRCLSBinaryImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1ABD61549684E693C9ABD854DE580471 /* EXLocalAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = 73D6BC1DD7224F079A9E99183D7D8C34 /* EXLocalAuthentication.m */; }; - 1AF237A8D93FED7EEC8751CC7D27C8E2 /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = B3FDD204AA7584A8104379B1A39CE687 /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1ABD61549684E693C9ABD854DE580471 /* EXLocalAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = DD1873B8D345D785644EF681C883BF15 /* EXLocalAuthentication.m */; }; + 1AF237A8D93FED7EEC8751CC7D27C8E2 /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 787528DF45CEFBF1252EA8738E3B71EE /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B06F771B3D386F7800CEFE0F97D93FE /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = D8C1F9294048D11139309DAA8664A061 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B2A7DF65EBE33BAA798A26622DEB2F6 /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC6D7742F151F1F3D3B9795F920CBE7 /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B2A7DF65EBE33BAA798A26622DEB2F6 /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = FA441F279168B5B3A406958506986428 /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B55112F88E36F4CAD2006CB5FE14D26 /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 300FAC486CF904F8E31345BF690A758F /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B5CF4A390128D31E6B3DDD066E38DA3 /* FKUserDefaultsPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 7571DC76DC3EADDE963E586E138F8C14 /* FKUserDefaultsPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B7460A41AE9C572291675EBBA73DBF3 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 12A3D4A2CEA64FE1A40E366F6EFD7A9E /* UMViewManager.m */; }; + 1B7460A41AE9C572291675EBBA73DBF3 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 459A816CDE529AB0BA16B3B377A66F0E /* UMViewManager.m */; }; 1B7603450F5EBB7D2C05C7FBBEC26D72 /* RSocketServer.h in Headers */ = {isa = PBXBuildFile; fileRef = C8A094FB1252916A1EC6E86B94966416 /* RSocketServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B794ED054CB3A6B44BA360A30EEC849 /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = 56B3E2FA89BB5855515C69A456A406EB /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B7CFF9E58522F2A4D6D36C5020D8DAE /* HazptrThrLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BF48A73600607CCF16A089B70F9881B /* HazptrThrLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B83D9440594BDBD1CB4CB3D88411B49 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E2EABCA1C06ED768FE8595C01740CB28 /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 1B8D715E91852816FAD01A4595E2AB8A /* RNFBJSON.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A19805C017832692074F5E607A22CA7 /* RNFBJSON.m */; }; - 1B9E8E953845EA0057AB7B2D8F149933 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = A28A3F5095CAA1FC8CAE9C7B5F5E0028 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B8D715E91852816FAD01A4595E2AB8A /* RNFBJSON.m in Sources */ = {isa = PBXBuildFile; fileRef = D79D1FDACF2B5637B25C0F9BB0277937 /* RNFBJSON.m */; }; + 1B9E8E953845EA0057AB7B2D8F149933 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = B448C98F442FC63AE1823BD6158C16C1 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1BA74AE91BF42207C276B02BBC24531C /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D74C79D7D5FB1B8BC786C37E060654E /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1BB7DF35DA8BC3E5E76D9ADB62B3BAC6 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 4EE1D6FC043194CA160546D59E500E8E /* lossless_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 1BBBA89E7263809B22A2986294845A23 /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = 27A1392B69F38889C38275AEE5285E60 /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -551,46 +553,49 @@ 1BFDD5217348D3483D5A90BCB6167286 /* FIRCLSApplicationIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = A22D9A7CFBC22707CE31B8C69953EA96 /* FIRCLSApplicationIdentifierModel.m */; }; 1C09880186DEAD1A272B1DEDF6329BD6 /* FIRInstallationsIIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F9BDC67D65D927F2AEFD07EA19385C9 /* FIRInstallationsIIDTokenStore.m */; }; 1C3B114D579773C689CCC20E86A66473 /* SKSwizzle.h in Headers */ = {isa = PBXBuildFile; fileRef = C0FD0D7A7D1251868C2B3BFA97996C55 /* SKSwizzle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C6E0836685AAC30A68040E674538497 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E87DA28103B87D680B1EAABAD645DC45 /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1C5459C534AC0453DC4CD1446461E40E /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C44288E4F9D989101F85D6BC24EA9B5 /* Pods-ShareRocketChatRN-dummy.m */; }; + 1C6E0836685AAC30A68040E674538497 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = FCE523393E4C20C19619A0C7EECC603F /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 1C71AAD98CA149A0B464F0C1BC1A760A /* FlipperClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FF5BADF156183AEA00C3ED1F5B77F2E /* 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 = EEF18F0D40D19AD1BB4FA2CE56FE54B8 /* SKButtonDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C9458A12060B23DE3F9D57BAAC6AF5B /* SKSwizzle.mm in Sources */ = {isa = PBXBuildFile; fileRef = 49E8B8CC08F023730D0A90CE93761DC5 /* 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"; }; }; 1CCCDD7A8C6DACEB755AA8EC3AFF7993 /* FIRCLSURLSessionDownloadTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 46711A77D0B69AEC5E367DBF2368BAF9 /* FIRCLSURLSessionDownloadTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CD50B17D10EDDDE034D1C2AB7034610 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3060D0C9BF2D4F9E4590827BE968DF0B /* ARTShapeManager.m */; }; - 1CE0A3B74BCACF590A1E1A2BE0BF258A /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CC2D7C55CBCC6D6AD79421C5F0AAB192 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CF6284334F4151C7BF3164B9D15FA66 /* RCTImageView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 149BE74E831F9AA2914960A5C632B764 /* 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"; }; }; + 1CD50B17D10EDDDE034D1C2AB7034610 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 91AB230F03D20F87F1EC190F45D1EFC1 /* ARTShapeManager.m */; }; + 1CE0A3B74BCACF590A1E1A2BE0BF258A /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 440458A67D3530565BD9C90B273402C6 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CF6284334F4151C7BF3164B9D15FA66 /* RCTImageView.mm in Sources */ = {isa = PBXBuildFile; fileRef = C8AF807DD85E6C844346669B3AD47A84 /* 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"; }; }; 1D15487C39676A373FC9FB8D7C995044 /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CB3858A6C43E0E49533D1C37A288B686 /* SysUio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 1D1E44F857FA339C19C859B350D0FFA7 /* Allowance.h in Headers */ = {isa = PBXBuildFile; fileRef = 9030AC7B4B1B893267055C59910B29AE /* Allowance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D2677A8095E40E0F5D4BCBC3C0428DE /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 967230DF1C3FE2DD0BD4851B40CCC5B4 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D2677A8095E40E0F5D4BCBC3C0428DE /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 95DE7649994A89BB12E5BC74C4BBBBF1 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1D74DE102578CB79908C6B2FC695F3A6 /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = B0089C1340C7665EEDA237988C9F6981 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D838244DCF67A79448F0311491E8A53 /* RNCMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 67F24297D4F0F4568C0BC1B3F31ADE0A /* RNCMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DBE6A0CA095312FBA5000F8822CA8A5 /* EXSessionTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 755824F8DDF2D469C459E8C9C7CB897C /* EXSessionTaskDelegate.m */; }; - 1DBF78F2962ADE6037590D5833A8459D /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 9252D601BCD628BAFD6AC64ED3C4FB52 /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DF16A410CF349117F27A48911AB92B0 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FC65D13DC96DB67F07AD0E65B962D45 /* RCTConvert+REATransition.m */; }; + 1D838244DCF67A79448F0311491E8A53 /* RNCMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = D332923C4435CB0D9A4E240B3A9067F2 /* RNCMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DBE6A0CA095312FBA5000F8822CA8A5 /* EXSessionTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B6E78C9330BCF05B98CBFAF0361BF16 /* EXSessionTaskDelegate.m */; }; + 1DBF78F2962ADE6037590D5833A8459D /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B8E9B0B5F4190EA607859DE9971A46E /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DF16A410CF349117F27A48911AB92B0 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 303B76A3D04E7EC197F1AEDD588AA249 /* RCTConvert+REATransition.m */; }; 1E05E99EE9FA5209A77F929663F8F7DE /* FIRAnalyticsInteropListener.h in Headers */ = {isa = PBXBuildFile; fileRef = CB73B05A85B9346F0A3CF80C49B994AA /* FIRAnalyticsInteropListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E0A1261A07124778FD4B3B42FA9020B /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = DC8EA8D5C7FA0BE6031770E36D366558 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E19AA4D5167F18F96FD088CB5B596FF /* RCTImagePlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 91BE08716D9890E5E995E3D75EA07C0B /* RCTImagePlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E0A1261A07124778FD4B3B42FA9020B /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = 2024DFF18893141E456C008E609D0CB0 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E19AA4D5167F18F96FD088CB5B596FF /* RCTImagePlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 8238243FE41CD3AFB391954187012675 /* RCTImagePlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1E3E616BD3354F1140C54F1B3E1D86B4 /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ECC8D555BC8AC007B25E74115110267 /* FBLPromise.m */; }; - 1E5317DA322A5BF669AB34E7251BAAE0 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 243401B845B68CB7AB081CC4CCF06704 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E987A72DF22FC9759BE296910DD342D /* RNFBCrashlyticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D956D2806D0F529E17960D261C2D725E /* RNFBCrashlyticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E9E9841ECD43A7B59D4B9C4A24373CD /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C8862E12496E7697A9DF92FC7A5131B /* RNSScreenContainer.m */; }; + 1E5317DA322A5BF669AB34E7251BAAE0 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BBC79EA954C21B4237B9CE89E34B5E3 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E6DC96389E012E5FE37C4FD89DB9E4C /* Aes.m in Sources */ = {isa = PBXBuildFile; fileRef = 99EA8F25F706103275853B27929389C0 /* Aes.m */; }; + 1E987A72DF22FC9759BE296910DD342D /* RNFBCrashlyticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C8C2376C50727E4678CBBB2EE348844 /* RNFBCrashlyticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E9E9841ECD43A7B59D4B9C4A24373CD /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = B1DF77105E249E71434137526EB413B4 /* RNSScreenContainer.m */; }; 1EA610E2CE028C7D7BD44F97390E83FD /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AC3BC17E6F3910BC28BD134FBCCF73C /* FBLPromiseError.m */; }; + 1EB323088211727F865CA3775B4D98CC /* RsaFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 59C7BFB74DC9408031A4FFFDAB6108D4 /* RsaFormatter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1EC6E839250BB5EE3E900F898BA75362 /* IOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 90B4D1DBD0FE3FBA0170C4211A38E7F7 /* IOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1ECCDE93432AC8483DCE4FF56422765E /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 335EFF7D5A6AECA87296187A5FF2D12A /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1ECCDE93432AC8483DCE4FF56422765E /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B5E2203EB895E27A9139005A24E9FB4 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1EDD4DC0E76159A2E868E2448ED7CE8C /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = B0CF668ADA8DE63AF171C23F908B60E4 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1EE568DBD9A817E001E909C4F4266D1B /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = A489583354216CBFC03DB851B4556CD9 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1EE568DBD9A817E001E909C4F4266D1B /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = AF07E1F4322D1E28826EAA6A30186F8A /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1F0B02F6CDCBAB83EEFD828AF8D23080 /* FIRInstallationsAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F214FB06E444D8A7000EECFB6744CA2 /* FIRInstallationsAuthTokenResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1F2A398640E810C90476C833CE69A5FC /* FIRCLSFABHost.h in Headers */ = {isa = PBXBuildFile; fileRef = A57E897FD9EB7C345ECF04ED47097BC2 /* FIRCLSFABHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1F7A6150C30D540366225C4428F4EEFA /* OpenSSLUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32D8B0A0493ECE6D2B90A97129243FA5 /* 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"; }; }; - 1F818D1C0AB6D0EFD75F2682563740ED /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D4D60BF37DC772598986B63B234539A3 /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1F988CFCB48630887EBEC9D536138CE0 /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1627071E5B3E484507234F8D0A56DC9B /* RNNotificationEventHandler.m */; }; + 1F818D1C0AB6D0EFD75F2682563740ED /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 35050769E414C13E73B0E3ADB47482AA /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1F988CFCB48630887EBEC9D536138CE0 /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = FFA10CD6CA2ECF2D559428B97B39584B /* RNNotificationEventHandler.m */; }; 1FB37A68C4E694C7BB73CC258ECF1F61 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 1851368884E47FA9EA4B34577A20F461 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1FBC66FB408DC29291980DFFAC95FD4E /* FlipperKitNetworkPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 072F502AFB8A651C136A272CC9256E3B /* FlipperKitNetworkPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1FF2EFDA8ABAED16AFAB78AF0DABEA00 /* BaselinesAsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 79BB325B4E0106D2B45FEBD780E43154 /* 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"; }; }; 1FF3AB74593FCEBB6575C8A608DB49AA /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AEC8E511931EF566AF1B07C48ED2541 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2012AB3040CD09E593FE95CA831A1968 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 3815FC4F44C997B3CA2BC28B387C577F /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 207E203D4A0B00504A657AB0917BF71A /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CC232510FBC7AF04525D03A168718E9 /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 207F828029C17673CF94C9C7763152BE /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B69E358DE1B052453E9808EA9EE10AF8 /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 207F828029C17673CF94C9C7763152BE /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 54E4135E88CC7F2132C4687292887A8A /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 20AB37D0A997EB702F9625EFD74E7D72 /* SKIOSNetworkAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 80B169EEAA61B4FA9910AE47771885CA /* SKIOSNetworkAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20ADF4E535F2FBBC3732C70F1917A1F8 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FF4B815A0699B64BEE8527AD39E6CA0 /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20B0C57A6DE9D3137B0AD31EFF574741 /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = A0579689A0AA2FD1418C4E1BEC2D759F /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -598,31 +603,31 @@ 20BF5CE7BE71A52B947DC1A4AE28D316 /* FLEXNetworkObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = FFCD9DEA0C4E84783A478751D1860F86 /* FLEXNetworkObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20EB0C959555CA07BD6B61CDDBE11D45 /* FIRCoreDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = A6C24D6E1CD9A82E6060BAA7660E9FB1 /* FIRCoreDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20F3535B1F7ACCD40CC3F44712CD9CDC /* FutureExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = EF11E8A38840A5B1EA48D172084CE814 /* FutureExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 211825B42C149FDE16AB9293734167D0 /* RNCMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 280BF1D653DBBF5EBEFBE99928C3D702 /* RNCMaskedView.m */; }; - 213B9B68DC3F6022E7FFDD135E1ABD8D /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FC3DDF45091DA3AC479A574842CC386 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 21678FAB2A21925B38DBE4A5F09D9462 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 29997E0EDEA534599D64FBD8CEE9D72E /* QBCheckmarkView.m */; }; + 211825B42C149FDE16AB9293734167D0 /* RNCMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E35D8FF6166A984B7EA7E038D1B0EBB /* RNCMaskedView.m */; }; + 213B9B68DC3F6022E7FFDD135E1ABD8D /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 395CFECDFA54CF26F261A1D99757DB06 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 21678FAB2A21925B38DBE4A5F09D9462 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CB144DB24C9E77FE8CFE6E51E4BA56B /* QBCheckmarkView.m */; }; 216E9A9FA4AE8BBDB6045325BFDFE318 /* GDTCORDataFuture.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FD889CBB5DB3655E694833B0C9002A0 /* GDTCORDataFuture.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2174099C49D405DC59157FBD71FFBB84 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = BFE395D21FBE6AD8B8B5C5EBD078B42E /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2174099C49D405DC59157FBD71FFBB84 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 83CB04FA8B4108F024460B69F9F578D8 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 218095E8385F5B81616076F5FEE57FF1 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 26EE0EF8BDE394A160A91BFA295871B0 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 218321FFB6A3945D5116AC9CE0A56C90 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7351C181A122A049B7118B464F58456E /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 218321FFB6A3945D5116AC9CE0A56C90 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = FDFAE8C91A0D4C21F86453A6FE0C921D /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 218C2CD18BC01A0818F35F5E5C5D1DBD /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = B627E39B731911254D1ED433565B6D9C /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21C0D0A679B9CCC696330278C799F8AD /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 546F8EC6A5BA2EACD8433663792C565D /* REANodesManager.m */; }; + 21C0D0A679B9CCC696330278C799F8AD /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D8DB1B0E3BA76D77497B9405A403C17 /* REANodesManager.m */; }; 21CE7333450F08EF85250BC221A8378F /* FrameSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A4FB11AD36C6596F587870A6182B07C /* FrameSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 21D99EA5E9B43F6B82DAC00D69D4CA36 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96CA2C908A06FFB3AE8A31E1051A78AD /* 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"; }; }; - 21DC793624E2D6A11CD90371C27BEE98 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = B79F8D60DE89F1BC22AE005D981E0B63 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22065F3C3410E475FF66D393E895C80C /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 3640FB051E362D82BD9F47648FCBEF3C /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 21DC793624E2D6A11CD90371C27BEE98 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = DECA8018A1EEF2C4E9956EED27FA621F /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22065F3C3410E475FF66D393E895C80C /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 1069F1EA8C302C560D5B44971C53D9CA /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2232A04B30AA441CBA83D0A161F4879A /* Hazptr-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 292EB77EC12530C08E37B59EF1FC90FC /* Hazptr-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2237479366E915EF661B72AD16D8D562 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 184583558AD095BE04823010CFDB855E /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2237479366E915EF661B72AD16D8D562 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 927DFF859129888C3409A02CB33B9E13 /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 224D23FFF43076B9FD6F06C90E360D15 /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = DD7EAFD1483D5DBCC456C3105A7EB6BA /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2261E5EFEA3462147B06E33E258A20D7 /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = BFBC79B1D54204585867BE47A6E185D9 /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22723839F29BBBCECD42F4B049A49B82 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A25E36E490CD83CB4BD70F0BEB9BC28 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22881DB4DF4F9CA6C13901221A8B4E64 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 579D50755D6C05683866DF1EC201B0A5 /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2261E5EFEA3462147B06E33E258A20D7 /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = 69BE147DBF1C89F7EB3F9F2F497D091B /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22723839F29BBBCECD42F4B049A49B82 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AFA044CB86D89CBD59381D025FB0FE0 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22881DB4DF4F9CA6C13901221A8B4E64 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7FDED5D3681B03D3C9B69AF2EC8D746A /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 22C7732479406C077704539F33C6B97A /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ED9721DDF164729FF651CE5B84DBA60 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 22C8370E1153C875B7DC2D72E7141618 /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B6D5FB75180D4F0F957A9D91CE62CBC /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22C893769DB69620D10DB6343A1BF40C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = C821CE4EDCA77EAB61D4C95468B99CE1 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22CEFC35D6BE5B9099CB736853ACAC54 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E647A63FBE8492458D2D3E07E006264 /* KeyCommands-dummy.m */; }; - 22F2DDCCF5DEDB634A650681FB7CB07A /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2115296140C2CF8C416CDC7EE5BDD3EC /* ARTSurfaceViewManager.m */; }; - 23017B19130C3458CFEBB6E7BCB5069D /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = 456C860CA3A2DD25E2F9F4A9FE56B7BE /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22C893769DB69620D10DB6343A1BF40C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 77589846054FA623814102D675283B71 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22CEFC35D6BE5B9099CB736853ACAC54 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E7E507DC5E7F3ABBBEC016B9AAD776EF /* KeyCommands-dummy.m */; }; + 22F2DDCCF5DEDB634A650681FB7CB07A /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0868B380CE54D1C4F66E55A55FDD252A /* ARTSurfaceViewManager.m */; }; + 23017B19130C3458CFEBB6E7BCB5069D /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EB7BCA8F3060BC0BF81E980A3F6C384 /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; 232F9E9093BAD90D351096CECD29DA28 /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 33603B081B182532FE328C6365D0E994 /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 235AF40BD4F72FA49078428998D61FBD /* YogaKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FA1D74676B28E8FD5FFDEBEF8A162860 /* YogaKit-dummy.m */; }; 237BC0466B44DD5F3E6DA103D60B1F9A /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = DE97931CB5B1012872AE6AC4E139BCEA /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; @@ -632,189 +637,189 @@ 23D3495C13258064F17B2596703252A6 /* ReentrantAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 90A97D7281D270A8185628EF9E0E147A /* ReentrantAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 23DD6882410833B4985BF657DB0FF140 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D992F73AFF2DDE0ED96E4ACF18438F1 /* SDImageCachesManager.m */; }; 23F1FC28AA72EA008BB99CE077D749A1 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A635BA14CF2113905140C44F6E14A85 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 244B2F0D8D99CE2ADB7C42CD74359271 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 6847486C0C662C309142F88C8089C6D9 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 244B2F0D8D99CE2ADB7C42CD74359271 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 493119CB6376A4ACB7401AB4D3AAC5EB /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2451B9C96658A869E74A857B030FCEC8 /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F2D56C0B547C6E296DFBB24FFBC4D17 /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 24570C884E7B05506960B1ADE2EBA32E /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = 95B1AD2818AC61222A735E1B72CA44D8 /* demux.h */; settings = {ATTRIBUTES = (Project, ); }; }; 246E297E51662846FB8BC6A044BCC3EC /* ObservableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = ED10B9C653A1B5C3E9F2E2D436918838 /* ObservableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24A9E53DDD53486BEB3CD085E33ED239 /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 59AB26443058AFBD0EDED1A33FFCB835 /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24B7B27A0E9EC7339CE561C62499C4CB /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BCD29E30D08AA725101A72D71096FF99 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24B97F4F26D06C097C3E12F6B68F04CD /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 92100BE1C38D96A1A7AE0F9E0D1D53C8 /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24D4E5CD578FCDBC8266ACFBB1121D22 /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BCD28B283C256AD4C796EAA9C2C79D0 /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24A9E53DDD53486BEB3CD085E33ED239 /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 045371D5FFA1E6C6AAB6BD1B3FC5033B /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24B7B27A0E9EC7339CE561C62499C4CB /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A65B79DE925E9D20F359B16D4E5E20E2 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24B97F4F26D06C097C3E12F6B68F04CD /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EF4589BC79F087487F8DB953CEF5DE0 /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24D4E5CD578FCDBC8266ACFBB1121D22 /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B2422CF70802E4E1E01EA9DB34DC77D /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 24ED81916B4C6C2CC3FEDC51B7243AC3 /* FIRCLSURLSessionDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = E7F27C38B81025F809C1185240F5FB3C /* FIRCLSURLSessionDataTask.m */; }; - 24EE577FD3F7BEC448651309507B47B3 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = DBC7570A5DEE14CEF9E6716AEC679116 /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24EE577FD3F7BEC448651309507B47B3 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 805CB6D040E6E709E9E9F126DDD53037 /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2527839399261E620202C3D565C96224 /* EventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C4141BB5449ECE42D0A3DDC9A489ECF3 /* 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"; }; }; - 254386EAFEC928CC400A4C6B0A246778 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C28554EF6D0DADF26EA3AEE55D546AA /* 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"; }; }; + 254386EAFEC928CC400A4C6B0A246778 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DE070B6264DE12F56C38399BE0BBAB6F /* 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"; }; }; 25464C199156B6F34863455C64857399 /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = CA369CF1281AEE99F25BFCB738675250 /* bit_writer_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 254DA1EA2D8F42DAEA1F3EFC277AFD99 /* FIRCLSURLBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = A9A9520BCCFE84444C092865963AE9AE /* FIRCLSURLBuilder.m */; }; - 2568CA3AD14417EA909027423302DEC3 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0029EF376D659E2A8E63C158711381ED /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 256A71ECC4C437C86AC4E63790E9EEEE /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 391F645395DADABA74114F035E174C4D /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2568CA3AD14417EA909027423302DEC3 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C20AED945E57E23DDAB69E9A7FBDBF52 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 256A71ECC4C437C86AC4E63790E9EEEE /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F5B8FEFE396F23EAE59B676C2241DB9 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2578A917ADC1827F3D0717324949A259 /* FlipperState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 327B3B9C24CFD373C2A3F39763EC1FFF /* 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"; }; }; - 2583BD723D2434E07D584F78B2917D69 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = A9E00A34A5703FE4ABE079A37420A613 /* RCTBackedTextInputDelegateAdapter.m */; }; - 25AF1AEFA866EDC6A96A6DF9F10B16F0 /* Pods-ShareRocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 74FE0A6812B600DE9F54562F0F69D2DE /* Pods-ShareRocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2583BD723D2434E07D584F78B2917D69 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = D98ECF4ED99FEE15AB7B9F73801F9E08 /* RCTBackedTextInputDelegateAdapter.m */; }; 25B6D4193F34A5ABE3CA36A3E35CFE8A /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01BA1F390E03046334B6FA8C65D5161C /* 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 = 3842B13CB7B47A7AFD03D98AB73359F0 /* FLEXNetworkTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25D05716DD4D36831130AEA70822D200 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 34657EB2F270AE6902A20E460C9FBE94 /* fr.lproj */; }; - 25D1EE7FFDCEE0EBC3F03EB316E69F59 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 64916A4D0599660624FEB23006CE054E /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25D05716DD4D36831130AEA70822D200 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B5DF450B1873A50E2500B3CE41192C97 /* fr.lproj */; }; + 25D1EE7FFDCEE0EBC3F03EB316E69F59 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B5DD5279EBE4CC70B114FD66D3FC64B /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 25D70C544A35CB6F097D761400F7957A /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = D9C536C9D9E93047012E73C262822EA8 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; 25FAE9EB053A32C666CBD08A58F59158 /* VirtualEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23DA0C0CB9FAAB92820D145C153095A9 /* 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 = 3F7D754B50C01E6487EC23BCE05505AE /* 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"; }; }; 2609A04370DD9D50963681824D65EDE1 /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = B7E2DD19AF59F534DC0922B386BB9FAB /* FBLPromise+Retry.m */; }; - 2634951EA4A58AD624774365CD0E9C1E /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = 7146855BE313403C5ED9FEC079FF52B1 /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2634951EA4A58AD624774365CD0E9C1E /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = FAD4E29FEA233592C30A08BA83A8CFD7 /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 265A7C27AF6E0FB3AE07F79E4BA091CD /* Log.h in Headers */ = {isa = PBXBuildFile; fileRef = 4033635AF569F20C4DA7986988B8D5FA /* Log.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2667D6A247BD464A6C85B15684C69FCF /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84C380A7734571FBE19B5D9B92128F0E /* 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"; }; }; - 267C2F737F65B330EBA8141DAA2B8FB9 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 60DA3C24BED923D7021F7D952E18692C /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26810F35A713E8B3EA3B64E41B3AC3F3 /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = 59662D70CC0188329784D74C99BB4310 /* BSG_KSDynamicLinker.c */; }; + 267C2F737F65B330EBA8141DAA2B8FB9 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 414440D847BC21E45F9C08FFD1770221 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26810F35A713E8B3EA3B64E41B3AC3F3 /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = C529C5A09E9C8618BF94AB88CE9F75D5 /* BSG_KSDynamicLinker.c */; }; 2688470222A93D85CD64C619D255D87F /* StringKeyedCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 88B04AF1BDF18085CFE54FB20705F3EE /* StringKeyedCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26894FBADF455438A2ABF1D85AFBB9B6 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 93B15EBA61520B294F2806D2491F89B9 /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26894FBADF455438A2ABF1D85AFBB9B6 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D25A0A68EC8D0921730247EF6DCB9C91 /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 26DDB3ED21F8F75BF8715141466A6BBE /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = FB701F812C4E81F3B1962EC2D915BA7A /* SDWebImagePrefetcher.m */; }; - 26F0818B7A6B16A497714EB1358EBE27 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 29655C07B10B5DF828A770A0A321F2B9 /* QBSlomoIconView.m */; }; - 2723068A060BADB4A4184EBFC17E8519 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EA2935DD483DD04CFF48AC2B8CA813B /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26F0818B7A6B16A497714EB1358EBE27 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EF7DF81791B20047AA76E6D61BECD2F /* QBSlomoIconView.m */; }; + 2723068A060BADB4A4184EBFC17E8519 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE028A1909F2FC4B6FCA7DC3DC4CF7E /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 272654FD85002EBB933D59A3241446E8 /* JemallocNodumpAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 945C7B9DE5C7749C8AF93C78396E33F3 /* JemallocNodumpAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27286820324610E8A7D44CF991469562 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 555E6E5DD1E71AD0281C53042760395F /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27286820324610E8A7D44CF991469562 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 73DBA0BB33214909632B6FDCE0B4377E /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; 274ED815FE397FA51E0AA17121A439BB /* StreamRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8463992C0E5ABD00862C3B18A24F04F /* 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"; }; }; - 2778AB971254765A6E9A1CE6FDBD72D6 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B45163D72B165020310A4D25B24CC83 /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27919FD262843DFACE71BCB206F03B72 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = DC57C423A33C42B2A298B13DC5A42409 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2778AB971254765A6E9A1CE6FDBD72D6 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 868C912614BF52D467F395714ACF4AD2 /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27919FD262843DFACE71BCB206F03B72 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7886B447A8F534B0C5D66064BB93E262 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 27AE53BA3B396A44A19ED0A49B99798B /* FIRInstallationsAPIService.h in Headers */ = {isa = PBXBuildFile; fileRef = 99C4DDF3D212EDD1E80C6B0E5BB41DD7 /* FIRInstallationsAPIService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27AFC607943FF0399A91891DD6B277F3 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = CF8804BC3E347D4851ADD147BAB6EDBC /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27D12134205D8345146AE8EE0CDB6B01 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = E6F6E2349F8E877941C3894F867C7CF8 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27D2F28E456BBD5B5949B58110F3F676 /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F728AC20374201C6C5833167290A5E5C /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27D7BF69F512CC363019B94C7C8A14FD /* SKApplicationDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 319A9EA142CFD67B423011FE2DC2330D /* SKApplicationDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27F00CF8429AAC30F86CB3128F75CD4D /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 154A009D0FEFB4A1819BAB2A85FBC78A /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 280340EB2BB4FBED12529AA52158B665 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E4FF97E12FC2AB186BCBE9BEA9367894 /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27F00CF8429AAC30F86CB3128F75CD4D /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = F5C09A77B6AC72BC2EAFBE0698BE504D /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 280340EB2BB4FBED12529AA52158B665 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2992D680AB841D9EF4CD26CC91DC3F36 /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 280618340058F589CB897A134234D49C /* FIRCLSNetworkResponseHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D4398376C658332A4E207A3C6EC1636 /* FIRCLSNetworkResponseHandler.m */; }; - 2835A445128B2030E8F8CEE36AB8D209 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6F60E8EDD3EB7670E8EB79D56340F729 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 284A85DB8967C6406D66174C08EF9821 /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 907E4E7E56EA71EF2252C76C4385A7CD /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2835A445128B2030E8F8CEE36AB8D209 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = AF0A42439028E5ECA19DF76388248706 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 284A85DB8967C6406D66174C08EF9821 /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 366C6B4224D1E6BB4CE3877949DB387F /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 28861AF52B24FE2B3F51FD4A8A00A722 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 780DB45C12E1B7F353696376BF2B9F48 /* SDWebImageDownloader.m */; }; - 288FA8C4E695B2DC905843C403206EF9 /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F577B189DA552F53EFA7A813B03E107 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2890524395C72E909E591EB184C2E434 /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DDD234F1688A99CCF798FC92C3AA46D /* RCTConvert+ART.m */; }; + 288FA8C4E695B2DC905843C403206EF9 /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F56120C000075994417F54F24B7F02B /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2890524395C72E909E591EB184C2E434 /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = 10576E7AE4510A6AE0841BE39EBE1256 /* RCTConvert+ART.m */; }; 28B75EC2EF15D6C571BD05A36F78FE38 /* FIRInstallationsLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = ECDC7200C4C840C9E5D713A1A0AD0EDC /* FIRInstallationsLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28BD2154EFEF4A904B84DFF396BD6598 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 22FFA3CA1BC07691BA7C3978B922A25C /* SDAnimatedImageView+WebCache.m */; }; - 28C65AFE0EA39E92622AB93E71E10748 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = CC311E2E0AA72D79FAEB72F6127AA157 /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28C65AFE0EA39E92622AB93E71E10748 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A10583685B73F98D9A09C95EF89DBF8 /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28F938C614393C2E27ED714D9579FC8E /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B43A8B6FA6C8A7E69685230754BB617 /* rescaler_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28FFC4481C53A863062AE3B78DFDF30B /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = 80DF87845281A0627FBC71B4058D432E /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2902A050FEEFD30F9A4A3361F13B0E0F /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = 9597CFEC9BA8376B97C82F1836CC6245 /* BugsnagBreadcrumb.m */; }; + 2902A050FEEFD30F9A4A3361F13B0E0F /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = D597CA5A46DDE523098E80808CA77D5E /* BugsnagBreadcrumb.m */; }; 290521ED71D65A6F7DBCB4673DF0084C /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = AF4DDAFE73A2760792C1FD698E4F5F7A /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29309B92356A2BAB35218BB42DA1F713 /* RNFBAppModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A461FB71F14FA8FC2FEA6C262341DDD /* RNFBAppModule.m */; }; + 29309B92356A2BAB35218BB42DA1F713 /* RNFBAppModule.m in Sources */ = {isa = PBXBuildFile; fileRef = CF450C48FD34F318523681D898F16533 /* RNFBAppModule.m */; }; 295B0286CAB8B9811ACC7543683D1FD9 /* SwappableEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E940956CEA8F0B60217652DC6D15E488 /* 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"; }; }; - 296D898BEC1E0C044F3B8D3A60B09CA8 /* RCTWebSocketExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = CD3F8E4D63A82ED04CC3C4FDAB80A2F2 /* 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"; }; }; + 296D898BEC1E0C044F3B8D3A60B09CA8 /* RCTWebSocketExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = AF6C0F334EBF97DA121E3969730EADA3 /* 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"; }; }; 296F07BAEFF63EE74DBFD1A4936E42BF /* RSocketServerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 3206ECD90892F43854C0363F3CCE368F /* RSocketServerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2977CE25D3D95A6820F6B47674C6CBA6 /* FrameSerializer_v1_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA1317E241D2EB102870C3801D0CD50C /* 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 = 03B3E59C098931633A37DFD5F5F3A00C /* RSocketTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 298B5EAD78FFE7E758B7A259FCDD8D92 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = F9D48F6F692CB2B4B48666DC835623BB /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2994820A161009C46BCA0F5CE653EA23 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 72A4F4396A35DB25A19C21260B0D44FD /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 298B5EAD78FFE7E758B7A259FCDD8D92 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = E75321738D138EBA89206EA5E489FAFB /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2994820A161009C46BCA0F5CE653EA23 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 04E3BA4D4D06A24143451980FF4427D8 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 29A78422CB94171C606F76CBF757733B /* TcpDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C41E35E2B4C29594651C5C06C6FDE29 /* TcpDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29AA552CD92596EE4CB2D40D9199DF49 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 242BE4CF47E227CB5879E37AD9571D0F /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29BE103541578385234026751F8ACE67 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AFECFD51798699035DB0BCF6B49FB45B /* RNRootView-dummy.m */; }; - 29C76EA154E7BC8F64DEC1AD70828040 /* EXSessionResumableDownloadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B946381FB2B4E28BB88F1ACEDEA452BB /* EXSessionResumableDownloadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29AA552CD92596EE4CB2D40D9199DF49 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B3C1DF5ABA7372F060CC5660C2585EF /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29BE103541578385234026751F8ACE67 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D090FFC3A6677EA00EA2D10986C849BB /* RNRootView-dummy.m */; }; + 29C76EA154E7BC8F64DEC1AD70828040 /* EXSessionResumableDownloadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 644FC86838357E190B06CFE6C58E28DB /* EXSessionResumableDownloadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 29E521245A004DB310199277B79CA0B0 /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = BDD65E3747A5D5ACF394F36A06F6D087 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 29F867CC77079A89831B16FFA6DC2650 /* FIRCLSSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 3598492752D5FA5E1ABA842AA6A0E913 /* FIRCLSSettings.m */; }; - 29F9DF5B489E9D84B67ED4897106E0BB /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A194A89E97A8617215769B0AE3B435E /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29F9DF5B489E9D84B67ED4897106E0BB /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F9445B4E5A8486DA7142E6B6178B57B /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2A0DEF39A6E17704E3036529DA24F634 /* FIRCLSPackageReportOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 57CBFE1FEC2178F9CF4712AD5A6D156D /* FIRCLSPackageReportOperation.m */; }; - 2A13E0D6D5598EB9B57F78F3CD74774E /* EXVideoThumbnailsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 72CBA7B24624855860A01DFDCC6C723C /* EXVideoThumbnailsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A271C1605508A90C3BA1EAB6BAADC3E /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 61F8730EE64FD2CD71890FC719173F81 /* react-native-document-picker-dummy.m */; }; - 2A4B51F99520FA613DB0EE3453ADF6DE /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 911C0005841625987C56A533CC2ACB78 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A13E0D6D5598EB9B57F78F3CD74774E /* EXVideoThumbnailsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 68F4F003A610DB5785D8C11D6D45BD76 /* EXVideoThumbnailsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A271C1605508A90C3BA1EAB6BAADC3E /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 022C1549C53EE9F08BD471BAAA55305F /* react-native-document-picker-dummy.m */; }; + 2A4B51F99520FA613DB0EE3453ADF6DE /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 5577C6E47900305704D227741EB417D4 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2A55289CBCBD22F409A68DB6A7D7DE51 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D4FD5745F2681D91F4DA9723E1FCBCD /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A562D24A7AAE2C56E777116ADCA60F7 /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F4E8E646FD0BA4E06F6668A41C92D5B /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A562D24A7AAE2C56E777116ADCA60F7 /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = F1880F6B6DF200415BF221FB9A8293A5 /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2A996496C046119E9D62610932CC69FD /* FlowableTimeoutOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 53D48828CF0E28CE11B9BA0C87704BD6 /* FlowableTimeoutOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B174A54A84B51ADFBD45E40110F0D25 /* AsyncTimeout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 56BDC7855EDC9F1D2AB8B748729E77EE /* 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 = EB70007E42411A897457FA7DC5A6CD3C /* 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"; }; }; 2B1F6427C89945A50F4E08BF8BF414EF /* FIRCLSSymbolicationOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = A1011E110924DC5239489D276CE4D257 /* FIRCLSSymbolicationOperation.m */; }; 2B2178E0C1127FA94AF674E20EE28590 /* FIRCLSURLSessionTask_PrivateMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = 75ACCD2CBCC34AD5D7935BC14CC92D59 /* FIRCLSURLSessionTask_PrivateMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B2A1CCDBA8AD8D264967730D01F3FA4 /* UMPermissionsMethodsDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F4E4022F9A5F03E58A5199AAD4127FE /* UMPermissionsMethodsDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B2A1CCDBA8AD8D264967730D01F3FA4 /* UMPermissionsMethodsDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 48BC4ED24E1C7F5D8CFD909A3A1C711A /* UMPermissionsMethodsDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B2FAFDA8347BE2821FED5D48AB3A547 /* EventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E8C54B5F0B21968B0CCCD7B06989C20 /* EventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B79DAF1B46E07D72A44DCAFB639C819 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = D85EED07444D4B51858078CFD5682920 /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B7DBD7D59B186F3C8B36E7130AE70F8 /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B17532E2B223E59F45E9A8FB9ECBAB0 /* BSG_KSCrashCallCompletion.m */; }; + 2B7DBD7D59B186F3C8B36E7130AE70F8 /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = E538AB8635E4C63CF851AEDF51F804E0 /* BSG_KSCrashCallCompletion.m */; }; 2BA0D059223373A39DCB8B59BD18557C /* StringKeyedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 512018EA82B88EBBDF93B7F349A2826A /* StringKeyedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BA5E72B097706E7B6DF0824EE7B38E4 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C5ECDE1C5CBBFC663F87AF1A6B5B3E32 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2BA5E72B097706E7B6DF0824EE7B38E4 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 726CBA205A1B09241B259A246F18F45A /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2BB382DB7792FE1E8269B4710E90EFFE /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = 90E9A66F61B1987C02C1F6B39436DB87 /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2BD172C6FB7DF31CC3EFA3CE085B4126 /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = D7BB76964E107165FE6FB5BB640513DB /* predictor_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2C25A98EEEBCA168F5887C14296594A5 /* RNFBAnalyticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E9417DB68C894934F552EDBEFEE30B4 /* RNFBAnalyticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C25A98EEEBCA168F5887C14296594A5 /* RNFBAnalyticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B70C3FFB9A542E89A07BCD05F261CD4 /* RNFBAnalyticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C3B255F956C9C6A0E4B6E561C0908A0 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = D4A2F2833D63935CFDB5EB3F8970F1F8 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C3BF5D6B72169E95EC76AE52DF6EE74 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 618ECA20DE3D216339F209F32DF9DC64 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C3D875B1658DA6BC9946D437202C839 /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 87DB3B65AF071F6B13BD008F884A4D93 /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C4554B6732E389B6C115718BD45701D /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C73984F9AF5A3D5EFCE8B428C9F2B31F /* SDWebImageManager.m */; }; - 2C652747EE70859A27875F8E9CF02BFB /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = 805CC1444E8DAA8B74AC46DBBFBCD0C1 /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C652747EE70859A27875F8E9CF02BFB /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = B33A2BB3EABCAD841A6CB01F8CEEE633 /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C6D65B3FBD38D8AD43897EBAE585914 /* VirtualEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BF5567626151A04338B1BC21EC15414 /* VirtualEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C813CFB5B807A3B361E5EC77152152D /* Dirent.h in Headers */ = {isa = PBXBuildFile; fileRef = AF0504E5E31C9BB8CA6DFAA251617684 /* Dirent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C89CAC103055E4326DDE29E97713CE6 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E04B19BD5A8E139C3FBB1819A1F39921 /* UMReactNativeAdapter-dummy.m */; }; - 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F8D89D78A2EB910E71744416993BF15 /* RNRootViewGestureRecognizer.m */; }; + 2C89CAC103055E4326DDE29E97713CE6 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E18BC4B8CAD33EB3CBAAD2CB18F1EAFA /* UMReactNativeAdapter-dummy.m */; }; + 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = A19E8CE6ADDD11FD388D78A0BC92AD69 /* RNRootViewGestureRecognizer.m */; }; 2CDF546927B5C2B907189A98C7975D20 /* Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BCF3EBA563842A9B7B132E359B257EE1 /* Folly-dummy.m */; }; - 2CE08EC7BA09068921151F10810607FF /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 33B95CD4BE4D984D1A2A902045B901ED /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D0A56A134A6012A79743F0D698D2FE6 /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 52A10F608DE17A15F5A037EF5954C287 /* BSG_KSMach_x86_64.c */; }; - 2D0E5271D5737630B32CBDBE8AF16971 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C0F1CC8E0B502D0C629574C64F369BD /* UMReactNativeEventEmitter.m */; }; - 2D4F89F7C9287A170B0F740EC54250A9 /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F1C090597007F883059F0DBFE7503FA /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2CE08EC7BA09068921151F10810607FF /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 76EF30C29804FE3F28BB88D88F79DCB0 /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D0A56A134A6012A79743F0D698D2FE6 /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 87F14A7850EAF0A98EED0890AEFAE40B /* BSG_KSMach_x86_64.c */; }; + 2D0E5271D5737630B32CBDBE8AF16971 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D539052FEFA0E040B941DEED078A486 /* UMReactNativeEventEmitter.m */; }; + 2D4F89F7C9287A170B0F740EC54250A9 /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5805A22C344D815E3F716218EDDA42D7 /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2D580680A39DA70D8DB124C245133BDF /* GDTCORUploadPackage.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FC94F54E8C416696AED4A2C8A8F9232 /* GDTCORUploadPackage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D6E4A8FA72DBF4B17F5A90BB3907D43 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA9C24247421D29B5BD9E43BD588A665 /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2D6E4A8FA72DBF4B17F5A90BB3907D43 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95AF288A0C519673FD1D3DFFFC6DB69A /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2D94B903B687465A1A40CEBEE7FEC6E9 /* Frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A00A4F1F10995C8C9B5B661A47C3602C /* 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"; }; }; 2DA35D42BF0B0C032E2F748E77024EF1 /* GDTCOREventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 58DF88C46D8377D8E30ABE62D630B567 /* GDTCOREventTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DB22E12311D8997E24299894A851B73 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = C154BE5A4B2852054012AB53B149493B /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2DBA8808EF576DA281E80206CE971B4C /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ADA317B19594AE3218117A8705CDE40 /* BSG_KSJSONCodecObjC.m */; }; - 2DF44A8E498D24AD11EAB4457C903A35 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = F788C76C4B4C4BF7E938A725AA517167 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DFBFFD316D99769440CDF4C2B78D24A /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 67A4E867544E2A9BB3B241F404B585B6 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E014AAF39426DBC26D47DBDC691ED5F /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 830661AA4394068076CF03A4EBEA3BA6 /* REATransitionValues.m */; }; + 2DB22E12311D8997E24299894A851B73 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 75AAB43C51B7531BA82FDFF4DB11D5A7 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2DBA8808EF576DA281E80206CE971B4C /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = 878099AB4D046C6309958F1198C70B2F /* BSG_KSJSONCodecObjC.m */; }; + 2DF44A8E498D24AD11EAB4457C903A35 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C2AD21730EB81F558CE8F0BD5DA58E1 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2DFBFFD316D99769440CDF4C2B78D24A /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 91DE9659A9F5DF223DAF15667A44EF39 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E014AAF39426DBC26D47DBDC691ED5F /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = E730675AAB732A6CCCC0310FD153F641 /* REATransitionValues.m */; }; 2E08E47CF3B7BCEAB85479248233BE52 /* SKObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9585138CAA967669EEF70E90C8FEB870 /* 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"; }; }; 2E2231D94E15FDF42AE50823012030E6 /* FIRCLSURLSessionDownloadTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 88E4CF555FD659586B1D8B1CBEC6F760 /* FIRCLSURLSessionDownloadTask.m */; }; - 2E6F0A55CDFA67BC49706659C4E7732C /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = E6E1EB5C5A60DE8EB818D9FFF6EB2941 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E6F0A55CDFA67BC49706659C4E7732C /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = B4AC8B6BBAA665574832CF9CDB57A7E4 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2E78136632F05B8D8F8CCA6F8B62AB6D /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 34E179D8F68C14A806FFAEC890C1C6D2 /* SDAnimatedImage.m */; }; 2E83BF4915475A6156DFD0FECFB1EBED /* FIRCLSNetworkResponseHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D05B2947997B6332C4550580E068271 /* FIRCLSNetworkResponseHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E87AE1BD8357FD18AEBF781CDB114DD /* RCTTVNavigationEventEmitter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 75C7AEC5335DB8BDFB34CB88C5498906 /* 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"; }; }; - 2EAA7260E75EE7E804FD4D7629D977F6 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = 82E3CD02E7FCC02B224A1D7C02174917 /* BugsnagHandledState.m */; }; + 2E87AE1BD8357FD18AEBF781CDB114DD /* RCTTVNavigationEventEmitter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9BF3FB8854EA8EBF72F9E09A810FD653 /* 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"; }; }; + 2EAA7260E75EE7E804FD4D7629D977F6 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = AE3654370AF6B4CA21D4A8AFC49DA6F9 /* BugsnagHandledState.m */; }; 2EAF41297C07BA08EDDBED38825EFD51 /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = B2E218777922850F8FD2F2ED85C3558C /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2EB201AFA7B7067271DF082293CF9112 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31EBCD32DFE1480A947114CB5883453C /* 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"; }; }; - 2EC239D84B20011AE1A05A0CFCE4E647 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C84418838D4A68539AEA9EC71B2E83F /* EXAudioSessionManager.m */; }; - 2EC31DCBB9D25E22DD02285D8B3DF6D8 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45ED32362BBCC4FD140B005332FA0A98 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 2EFB6FFB66B48DA53A0F4BBCA76AA584 /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32CD83D7735A14A5075286726B969B1D /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2F010BF0579721E5DE0EAB9E0285DBF7 /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 537444014B9A092333AA1CCB125F9544 /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EC239D84B20011AE1A05A0CFCE4E647 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BC8204E8DF0FAED7A38AAA344E26E16A /* EXAudioSessionManager.m */; }; + 2EC31DCBB9D25E22DD02285D8B3DF6D8 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0B7D0F11B0A71174BAFD88CFA5950E20 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 2EFB6FFB66B48DA53A0F4BBCA76AA584 /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB73684B1FFD013D5BD82C59D3872573 /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2F010BF0579721E5DE0EAB9E0285DBF7 /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = A07221879DBBCA7A2F1965B6FFEF70DF /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2F0866F00F6C9E03A155240059CAB72F /* FIRInstallationsStoredItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 190D1C65D93D825183CB1E6E2D3CD360 /* FIRInstallationsStoredItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2F358CCBC15C773B0E8BC8B20277192E /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 31B86B1123EE86D29AB2716C1D7FF33C /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2F3762F547283D037D6BF8A882085851 /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = F2831FC57283BBC96AB42237214E5A4D /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F3E6CFDE51DA53D85F9F0B1E585D2C2 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = B5D066D4EAC03BAF75BB78CB74A7002E /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F8D86B45F6C017F24D0EFE5DD9D7090 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = E28B15566EBCC817DE30ABB0DCF62A23 /* RCTSinglelineTextInputView.m */; }; + 2F3E6CFDE51DA53D85F9F0B1E585D2C2 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 5729A166620637014576B78FF6E4FA6A /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F8D86B45F6C017F24D0EFE5DD9D7090 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 30C697929EFA6D57ACD221D75F86D7E5 /* RCTSinglelineTextInputView.m */; }; 2FA7A5A12876AA7C4D5903A9C5B74B3A /* Spin.h in Headers */ = {isa = PBXBuildFile; fileRef = 578805566F5BF284F901A106CD959833 /* Spin.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2FAC55AC7BD8FB1CF23FA3CA8E565835 /* GDTCORUploadPackage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 018ED7207228ADB73114CF3E23C02E56 /* GDTCORUploadPackage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FBA4398F071A3C8100B7C6197EC3A87 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 26DD998660B2BE1816A93D531E0EC82F /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FC9EFE233B0C9B052804D8AE958BBE3 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = F783C63D8BF62C97A2110023560BF067 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FD4B4FDABB52A6DCA4FB1C226626F15 /* RCTDisplayWeakRefreshable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CC707DC0C2F0654DDF4CF3799D398F1 /* RCTDisplayWeakRefreshable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FD56DFD6405D75AC16D258A4AC0F49F /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ECCD8EC24A8C2697035E0A8D25F0765D /* RNCWebViewManager.m */; }; + 2FBA4398F071A3C8100B7C6197EC3A87 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 394CF5F22A0D4948739FE868F3D2D9F0 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FC9EFE233B0C9B052804D8AE958BBE3 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 512ED5A09E8391249A901BEC6AB53FA0 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FD4B4FDABB52A6DCA4FB1C226626F15 /* RCTDisplayWeakRefreshable.h in Headers */ = {isa = PBXBuildFile; fileRef = 27663F17D3997F6B29978B0A0FD5FCDD /* RCTDisplayWeakRefreshable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FD56DFD6405D75AC16D258A4AC0F49F /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F3BC91850A97810B1DE5C9FA5E851A56 /* RNCWebViewManager.m */; }; 2FE803AD2F6A7E8DC5898A9563ADF11E /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = FCB1C88B1FFF2187394F4E6093BFDA17 /* SDWebImageDownloaderConfig.m */; }; - 2FF8F8DE155B0BA7D1825884704AC747 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 842B9EE940BD30BBF74FFFAB474AFA2B /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FF8F8DE155B0BA7D1825884704AC747 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 306516B544C9ABE4B2531CA415CA8825 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2FFC3171E324205FFD9FA0A70048475B /* FIRInstallationsStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 61F1A0A71E7EFFC6A7F26BDC234437CA /* FIRInstallationsStatus.h */; settings = {ATTRIBUTES = (Project, ); }; }; 30048C1ED58BCA8F8305E97FE14CCED0 /* IPAddressV4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F4D6965BD62563B064DEC19B24099599 /* 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 = 68A222D093EEEC26DF1E5D7E72398AF4 /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; 30196E74E25A873E41DC889DA48194FD /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 5855FDBEC72AB1200610D7F3EE3092F5 /* FIRLogger.m */; }; - 302F44F0FAD018D47FDD2CCA0B36CAB9 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 151079F7D3DD6C15785F8271FCF52A06 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 302F44F0FAD018D47FDD2CCA0B36CAB9 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = BE138A9C0A3EE212138214A13874FF9D /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 30363912631BB1C44CADF345BE0C724C /* UIView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 904361E90A52583205848B9F91E5DF80 /* UIView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3060BF1405F7ABB478493A90B64FCFCB /* F14SetFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A5B80DCCE4EEDE066130D06EE2E8FE4 /* F14SetFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 307A374A5F225B380BD5409F367068F9 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 68A029C7434B3D942CDE455778F3D42B /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 307A374A5F225B380BD5409F367068F9 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FFB657F2DA1DD822881BC78B3DBD881 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; 308C87640D35D1E3C633032AF321F283 /* ConsumerBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B63E6C725A4476ED95F5AA3737ABA08 /* 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"; }; }; - 308F4F4F2302BE200C238AE74C26DEB9 /* RCTConvert+FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CEEB76485EFA0FF394C19C97B2B52FC /* RCTConvert+FIRApp.m */; }; + 308F4F4F2302BE200C238AE74C26DEB9 /* RCTConvert+FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CE844664CA0170C48CDBC7E930C17E9 /* RCTConvert+FIRApp.m */; }; 30987C9C9FEB711061439E1BC000376B /* GDTCORReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C4F4D328F2927FC94EB73B5D096AE792 /* GDTCORReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 30A8478C08F9DED3F5CB43A32F5FA1BB /* ThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04AE5FCFD49E7AC15AB9899359D02233 /* ThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 30BB3062E85AB8BC2F42A1DC69B99C92 /* HazptrDomain.h in Headers */ = {isa = PBXBuildFile; fileRef = 535E847ABF41DFCA51907F18E7EED33B /* HazptrDomain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30DE028C8BD4FF858BDE2C4E80C985A9 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BC49FBA937D0C70793E721F50A44F6B7 /* 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"; }; }; + 30DE028C8BD4FF858BDE2C4E80C985A9 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B8A153EE45C98CCF4EC042349241A9F9 /* 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"; }; }; 30EA63D0E95EB523F359EAA9BCADC1F1 /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = C7AD28417FC4C27A6777BE497F82889B /* lossless_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 30EFA1CE7F1133015F0E3E10A28316CF /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 848D2FD6FC82ACCD890DE0DE64B2E0CF /* quant_levels_dec_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31104DDF23E644091D0B208B51B3F550 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 834F88A28D59C38058B3AD1CD0BF83D1 /* upsampling_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 313AE2A97F0B6411C4FDD66E857C5079 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F1D96967D55034526525434039ABB78 /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 314F80C39F5F607CE72EC8BA24DD4237 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 84B59BDF0D00E749F794DCFFEBB1EE34 /* 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"; }; }; - 318291D218B6B634DED9426B8388A64B /* EXAppleAuthenticationButtonViewManagers.m in Sources */ = {isa = PBXBuildFile; fileRef = 52B7435ECEFCC1530A20C471774EC717 /* EXAppleAuthenticationButtonViewManagers.m */; }; - 31935F903EB3421E32FCD701A8DBD38F /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BF7335D662E1B5989E697B974C716A6 /* RNCSlider.m */; }; + 31318622EC88D1A315C4BAE778383D4B /* Hmac.m in Sources */ = {isa = PBXBuildFile; fileRef = CF08DF48753BFB102BBBD5E2927D72D9 /* Hmac.m */; }; + 313AE2A97F0B6411C4FDD66E857C5079 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D8A1EDB5219B4C91F3124A0D77AB72E /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 314F80C39F5F607CE72EC8BA24DD4237 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 879A58F8DBB2D066AD0E0CCC6BCD4B9B /* 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"; }; }; + 318291D218B6B634DED9426B8388A64B /* EXAppleAuthenticationButtonViewManagers.m in Sources */ = {isa = PBXBuildFile; fileRef = B019429F3C6266D3C892317EF92021DE /* EXAppleAuthenticationButtonViewManagers.m */; }; + 31935F903EB3421E32FCD701A8DBD38F /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F9E5A985371BA508DB6646FB72E924C /* RNCSlider.m */; }; 31962DADDDE276F6ABB6754ED6E7EE1E /* RSocketServiceHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AFA0E76A8835A80FBF25E4ABD0D55BFE /* 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 = 094A8309D89F54191ABE2DBA02D93CF9 /* FlipperCppBridgingConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31CA1F80D4661804D819BD261F21AFC5 /* DistributedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D49491FFF9858D16254048821075C689 /* DistributedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31DA90BD34B8EA573D235D81B6D79C58 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 524BAB40CDC93E796CC2BB13B74D16D3 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 31DAC9A5D6F268B1664AE668B0BD1D0B /* RCTDeviceInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = 676B19D7ED4D3163C11EF01B7C520593 /* 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"; }; }; - 31E029FEA1B81802EE2F55EAA5DF30FD /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F225C151C807E9E80F2E6CE030C4205 /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31DA90BD34B8EA573D235D81B6D79C58 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E8F1EEC71DC36C8B901EEED11669C68 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 31DAC9A5D6F268B1664AE668B0BD1D0B /* RCTDeviceInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = E1BF63CB2C355A8D943DC955344338A4 /* 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"; }; }; + 31E029FEA1B81802EE2F55EAA5DF30FD /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = A72C6F12B355BDC28AEA9A51A506EC03 /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31FD8DFA47B6AEDCBB2D1C7B48A2B1CF /* OpenSSLLockTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = DB6B9416A00283FD7E767ACDC68B80EA /* OpenSSLLockTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 321E5783FD6AB1B2E124AE90C409D435 /* SingleWriterFixedHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = F06C31104F4D714FEEB7A3C4E0271A26 /* SingleWriterFixedHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32217120E93C54F443003D8A95462BCB /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 817FC9D5233E9F4DA79E63E574244283 /* React-RCTAnimation-dummy.m */; }; + 32217120E93C54F443003D8A95462BCB /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 26DBA3571B5E7A02BABF74B0F5072B6B /* React-RCTAnimation-dummy.m */; }; 3231393BAD745FA73E9B11102284C616 /* FIRCLSRecordIdentity.h in Headers */ = {isa = PBXBuildFile; fileRef = D5F9AA892A3D82F221F0349435A24B99 /* FIRCLSRecordIdentity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 323FB383078BD6399AECB8C48C6FF0A4 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F3A80DB7CAD74E4D263691EBC611ED3 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 89604576AB251799A65DBAD5F05D1A56 /* RNForceTouchHandler.m */; }; - 3248811CD52A4C903F8A00F6F2C09C3D /* EXSessionTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = FDED236A58C2D088DBFEC89983AF042F /* EXSessionTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 323FB383078BD6399AECB8C48C6FF0A4 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C3631283E0B72E97696BC4640B59714A /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BB66FAF3D4382A0DDB9E75C9B3252CD /* RNForceTouchHandler.m */; }; + 3248811CD52A4C903F8A00F6F2C09C3D /* EXSessionTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C44EF7BBBD61F7EAAC7BCD526D3BB6B /* EXSessionTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3259B3941D9E4CC09A9A27E51E89450E /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = B8421EBD92A3A57D52FDF461D9DECC2D /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32622CE75F78F8E2F8D5400CD2CB17DC /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 41CA5F14136BC00F49E8CA3D81983512 /* FFFastImageView.m */; }; - 3268AC6F8341AD59A356F49E24D7A68C /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = AAB51BAD1D7EB7BB5508094F794F42BD /* EXVideoView.m */; }; + 32622CE75F78F8E2F8D5400CD2CB17DC /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = A9DA114D384F059FB99528E847EE2BCF /* FFFastImageView.m */; }; + 3268AC6F8341AD59A356F49E24D7A68C /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 12CB2A2132BE96747592AE15E712469C /* EXVideoView.m */; }; 3292BA9319F6A044C79AE28E0D918FC5 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 11CC6E14038088CC637AE190534C3FF9 /* utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 329D8DC4DF1F87F450F10F8695FAF36A /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 644BF86A5A22153F1948B3E238C190EB /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 32A54CE4AFA4A6A499FACA15B3B6CA57 /* FIRCLSUserLogging.m in Sources */ = {isa = PBXBuildFile; fileRef = 68939E2A0F691ECC7F8A5209306F8DEB /* FIRCLSUserLogging.m */; }; @@ -822,30 +827,30 @@ 32AC28388DEBC44E892603D239EEDE0B /* AsyncSocketException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E72F8E8BCDFD8F4466385DDC7BC9D3A /* 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"; }; }; 32BABA10BB305E71A70A9C7BA52FBC89 /* SharedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FF9192DB0085A1E3A6AAC823BDDFCB9 /* SharedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 32D97293EAFBD808BC576FE700BDFB3C /* F14IntrinsicsAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 60B0D389EC73FDF997A7AEAFF5239B04 /* F14IntrinsicsAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32D9D023823C21F20825C29A910B5CE5 /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 76981AACEB548E5E3DC1D3FA48FB609C /* React-RCTText-dummy.m */; }; + 32D9D023823C21F20825C29A910B5CE5 /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C607C3464072E76848AC01F155D838D2 /* React-RCTText-dummy.m */; }; 32E9548503360012A39909DFBD4C4DD9 /* IPAddressException.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DA72FD511360769DEE06D96F4A0CFB0 /* IPAddressException.h */; settings = {ATTRIBUTES = (Project, ); }; }; 33301592ADEC5F3E21FA07A848C1936C /* Base-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DBA531456175987BF425721A5C406DD /* Base-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33462100BA6E92B757C09BC638DD4CFA /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 4546FAAB66769B385F1C10B5D17AB782 /* RCTTextAttributes.m */; }; + 33462100BA6E92B757C09BC638DD4CFA /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = D737FFC2EA2D54C77E6E0FC44975B21A /* RCTTextAttributes.m */; }; 33557DF89B6EF2627D2E41B74146A0B6 /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = 06519A20357294D88A33C8B5E654C741 /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Project, ); }; }; 336AF37B5F585C4DF000A22B615C60CB /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = C2ABBCD0551B5BD38ED87B30CE3CE4A0 /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; 337AD4C3D05F965B85CAE6BCFC70C73F /* RSocketServer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DE49D5A77318B4C139F69F13EE41B5F /* 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 = 956F5D99E06DD7FD97D9460CE5CB5FD5 /* Assume-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 338C33E4A2EB50C20A830E837384EED8 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 15D38604B03F4318AC46EA7F8A61C80E /* SDImageCacheConfig.m */; }; - 33C906D21E0095E99444F2130D76E9F4 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 84847886F419F249D773888CB16E0F41 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33C906D21E0095E99444F2130D76E9F4 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = F18007CA4892127EC3E08FCA887D92EE /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 33E573075013DE8B348024AA6413D694 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E02418E058BCA523AC7849267BEBDF41 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33EDB576C5211826DD9B22E70DD0EE3D /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FFB599276F9A96E8C162F8A8B6E02C89 /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 34419FC61810BD1D9ECFE19AA79456AD /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = AAFF2100BEAAD51B76D28DA4825C6D13 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 33EDB576C5211826DD9B22E70DD0EE3D /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D552968CCDD5E2ACCBD64C900FFD157C /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 34419FC61810BD1D9ECFE19AA79456AD /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = C9D6A897D4B77DD75D7A72E3A0E3A922 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 346F4B24EB2857ECB358657D35350C00 /* GDTCORTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BC938F902528781ADD4AEC8BA72765E /* GDTCORTransformer.m */; }; 34BBD3A50726564B1AE87604F4B74B57 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 24DFCBCEED52E65ADDB9A2E32F18B23A /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 34DC275EEE112BBD0C9C8E142883BF10 /* StreamThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05A0AB7CB680776A396075996321AC32 /* 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 = C4067232583C4304F137FCD4C6779D75 /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34E70A33FF98EC9CFCC391F122B36E87 /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B16EB86B3563046FD395E748D634BBF /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 34EA20ADEFC65F6118975776F29B5ABE /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 6F1781D66E0FFA43653082042CFFA66E /* picture_csp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 35269B5057CDDCC7DEA2FE786C99AF9E /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 425AE49378C747D12D929F44D2569316 /* RNFetchBlobConst.m */; }; + 35269B5057CDDCC7DEA2FE786C99AF9E /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 10065B3D689090BAE561FD87B9FC6933 /* RNFetchBlobConst.m */; }; 353B9345CE16AF6338035CFD93D16671 /* InitThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C2E1877EE5FC0B6EEBBDDEFA3A94CC5 /* InitThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; 353E3AF04FFD70145B93E29D0B322A3B /* ChannelRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = E4173C47CF775865E048EC494D3067C9 /* ChannelRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 35509AB2DE9757199EE5A9A606C9E058 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 630FB216BC1093C5DE7FD7757B5FFE57 /* pl.lproj */; }; 355DC98B9D06383235582588F35B06E0 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = FE64E2226DF655B148E0B726F776901E /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3567CB332EA82A9AC5E4B08594213F26 /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DBF672D1EE1DA63957AA594369559645 /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3567CB332EA82A9AC5E4B08594213F26 /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 276FA44E619114C54F1132F66837AE74 /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3585440364A592462F3DAB4360A8A9C4 /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = F08795C421DC1A296B93319B6F19C8D7 /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; 35D47F3D1A1DBD7B85CBF95EEB5D1CA5 /* StringKeyedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ECF1C6C7A6D4627AF8270961DE502DF /* StringKeyedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; 360DEDF4ABD8983B2E0C41923685FB55 /* ThreadWheelTimekeeperHighRes.h in Headers */ = {isa = PBXBuildFile; fileRef = 894B5C976B9AA4234BBBF58168F002CA /* ThreadWheelTimekeeperHighRes.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -853,20 +858,20 @@ 36360FCF5DF26972E15B00638335C00A /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F12D7B5124DDB3A645644C77932BE8FA /* UIImageView+WebCache.m */; }; 36639B3E5EFD659484EA7418ADBC3F1B /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = D7D2CE91B0F1539697C4EB6BCBADC774 /* SDImageGraphics.m */; }; 3668005604E469D2C61ABD5F410E3360 /* SocketOptionMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 4760C988893B13B0B41BEAB1749C4D06 /* SocketOptionMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3668D7D6FD63CEBCC848CE0ADAEBEDA2 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 74EA5D0C3FEEEB8B6B40DDE3DC2CE46B /* ReactCommon-dummy.m */; }; + 3668D7D6FD63CEBCC848CE0ADAEBEDA2 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7417532204152691D7B83E14E9FD3E9C /* ReactCommon-dummy.m */; }; 36838A450767D18415FBE60D36FC69FB /* TcpDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FD828576B07BCEAA3D4EC0A9DCBB8CE /* 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 = D8D9605C760B55C2A4986F290E32981D /* OpenSSLThreading.h */; settings = {ATTRIBUTES = (Project, ); }; }; 369F83F9BB8369497F818766CB6A03E1 /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 587EF9B70434429044D5E4E1C0818B28 /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36B30A72BB2A2EB9D72BACEBA5A74C69 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B2107F7A60AF8F1873A63704E11AA4B /* RNBootSplash.m */; }; + 36B30A72BB2A2EB9D72BACEBA5A74C69 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = 0704E3C0E325A639DC502AAF6444E78C /* RNBootSplash.m */; }; 36D4E8D299A73059B713FFDAF61EC22F /* ThreadedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 829B4D94B8648DC836058F8B87661011 /* ThreadedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 36DDF82F11162FDDB5256E2A29BD0B4A /* FIRCLSRecordApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = EFAAA844D485C9B9F7D48BFB2EA3D20E /* FIRCLSRecordApplication.m */; }; - 36F69AE0B07434FD41DAB71CEFF669CE /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C66080E2B8DB2977C93C96CDACD6A64F /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36F69AE0B07434FD41DAB71CEFF669CE /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E7DA4A3F4397C61B1F84861FD5D2D569 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37043ABBD4DA0792B89D11FEF04F995F /* TOCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D86491B44DC4CC15C6B183486608E886 /* TOCropViewController.m */; }; 37102F4139638538537682CFDBDD3521 /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = E5EBE17A9890D22415CF33EFA3BAA55B /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 371CE81054032E91F6F451E02E66EB78 /* GDTCORReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DA9E6B9FB5A0969B489558679A4968F /* GDTCORReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 372882F92C66AD589C117E6B98043712 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 878FEB13EDDBC5864A86714D1689CADF /* SDWebImageIndicator.m */; }; - 373EBD884827F1AD20F3A3DD26138571 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = BEF495DA086741CFF80D572578A0875B /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3740BFCFC4984C6549AEADFF59FF844F /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E73B6575FC3AF98515FF40E588E5FA9 /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 373EBD884827F1AD20F3A3DD26138571 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = D4AC9585D0485AA14FF197F4554FD25E /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3740BFCFC4984C6549AEADFF59FF844F /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B821F2D8F8128C79F358321A4F62DD3 /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 374560D732665B18E6AADC57D1D9B12D /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 5716F6616169F99432AD1D3894329AEA /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37561D58917BF3DD193FA026B4DC7819 /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = FE9AD63A66C49D000A31CFF2592E92C2 /* buffer_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 377EDD40562D695DDBE096F504D81B53 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 435B374D44BCE12B4130C36FFFE8F055 /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -874,9 +879,9 @@ 37A37544801076BF222FC05117B38064 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 544C2F618B9CE0C574D24D59B73104E8 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37A8A74509CB140CA1CBD2862791F6C1 /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B02FC345CF27AD6719210E395BB828B /* thread_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 37B9441E3739C1098D17234DD176AB32 /* GDTCORFlatFileStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D019BEF6EA2758EAD6A6D64E3043531 /* GDTCORFlatFileStorage.m */; }; - 37BBE209B4C9908FB36A235F5117282F /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CAFE45FD6D43A417A0316AB4C6B57D5 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37BBE209B4C9908FB36A235F5117282F /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A9D056CE32C2E1AE2E69D81788AE3F1 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37C9A7BFC98577A5A2F702F0D9249832 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B34D080D9AAB4A31319BB4238369D53 /* UIButton+WebCache.m */; }; - 37DC75895A0D3C994571EC13E7CD6176 /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D17D989E39AD42EE658569F64DB5B63 /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37DC75895A0D3C994571EC13E7CD6176 /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = E7B00542CEB17F446EE6CAD048129DB2 /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37E3F0F29964F4FA9C40E1CCEA52F682 /* SwappableEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = DAFFDF2E7DA31743ADBF3729BCC14DD5 /* SwappableEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37EDEC2BDB04F892C3CB29C4F9A8C34E /* YogaKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 802E83F9D1553A5135E751C5CE3D8E75 /* YogaKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; 381582C2E5845132F0F89F4AE7DF0291 /* FIRCoreDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 107657679DA0095733943453677A9528 /* FIRCoreDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -884,94 +889,98 @@ 3842C7262C69AD90463B43931CE9B8D4 /* backward_references_cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 880D787C8592FC29486FB31E4673BF21 /* backward_references_cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 384C6507CCB25DEF38E04A025AC230A7 /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 813AE790C7AF3DF20BE12390BD9D5151 /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3861A71C26628C93C77FCD87EC4761FB /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 620586CB2D409D760D1BD1D5D4A9FD80 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 387DD6E0D2967BDDED87AEE55A05DB16 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EFCF0B535AAD9257740ED9380BF724AA /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 387DD6E0D2967BDDED87AEE55A05DB16 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D808E42C2A968EFF27A62747678F92D1 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 387EBCA8FD57EDD475BEFE8C73DD1051 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = E8D39C00814A844B5D0D2FA2A9AB5EB8 /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38A0CA9FBEA31F048D2140A01BFCA799 /* Hmac.h in Headers */ = {isa = PBXBuildFile; fileRef = 4710BD7BA3CBBAFEF74171B231A3D6CD /* Hmac.h */; settings = {ATTRIBUTES = (Project, ); }; }; 38A3CF8E02900F0510ACAFF100A723E0 /* TimerFD.h in Headers */ = {isa = PBXBuildFile; fileRef = A1E42D060EB9AC14839CB57030345E6E /* TimerFD.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38F35E24D856E9519A212722C0D13E59 /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 8258B9877D65443B98C03BD5A17A27D9 /* RNCAsyncStorage.m */; }; + 38F35E24D856E9519A212722C0D13E59 /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = F71C4DD1A555DEA9B29555448E4589B4 /* RNCAsyncStorage.m */; }; 38F6A79D9937614314F8A612207562CC /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 788D69C3D4D90C9585C5E21A41D29284 /* 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"; }; }; 38F97952C6381271D3B820C7E7FEB828 /* FIRInstallationsLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 0ECC825900A41D0291F727801B052394 /* FIRInstallationsLogger.m */; }; - 39016900A3DC7213E8FE4D50B58F92E2 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 351AF5B5F9D569C80DA853CDD90CCE3E /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39016900A3DC7213E8FE4D50B58F92E2 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 08674C1D6F6ED7C696591D4E6BC050A1 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3902C93559EE5739F37997B5E9892D4F /* Request.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 699BC2809B3DDEBBBFADA3006F967133 /* 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 = 38EA67C961952378D9FDCDA996723DC0 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; 390AC40A3C333FB6A81C2D20EAC1A0CF /* TestUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E4C9339C9E6BF54EF634DA3B4686F85B /* TestUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3929E18D986CE77097B61631BA035B4C /* RCTSettingsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E12655902A04FDE52C97FBB64DCF99B2 /* 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"; }; }; + 3929E18D986CE77097B61631BA035B4C /* RCTSettingsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8B756C0A9A4F81198C19841EEB554379 /* 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"; }; }; 392A3ECADD8AA6EE73D72561F4FDB23D /* ShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1542A52949750DFEB857D086FDCBBA57 /* 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"; }; }; 3953D3F50A05E1AA87124E85621F6D92 /* Fingerprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B22A4F0C5C5073F153DFB33891288B87 /* 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"; }; }; 395DC43E8F602AA23CCD3406971ABE86 /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 60F350C4BFD5AE0E56B234ABB6DE8094 /* GoogleUtilities-dummy.m */; }; - 39A8B0F0C8877BB15AD04CD38C7C9161 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ACE316B3FFB1BD0D60444A8BBFB7040 /* RNFetchBlob.m */; }; + 39A8B0F0C8877BB15AD04CD38C7C9161 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AFCCB6DB983375195BE5A2CFC68114D /* RNFetchBlob.m */; }; 39C64C7D0A3CC2D7D7A0143EE11F6446 /* Frame.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AA4DCE0FB7F4E3F60CDFF65302A20F2 /* Frame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39C7B45EB0C4E1D9010A459380CAA52C /* ReactNativeVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 925B493C179939C067B87958520CB2C1 /* ReactNativeVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39C7B45EB0C4E1D9010A459380CAA52C /* ReactNativeVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = B5FF8562B889CE5E6887CF2C680BB123 /* ReactNativeVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39C7B8CBC7FF6C71A08118BE63C072A0 /* Peertalk.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FCF4BC58F130323783236A7C388C6F9 /* Peertalk.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39C85EC983B5B8A9B6EFDC621F1D6F50 /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = BE1E51DAF2980431DDB971605F808257 /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39D5EBF062B74C8DDCB6DE46E8A9219B /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = EDAEA3088D709CEB8E89EE623F59F595 /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39DFF62282596A4AD2832F04B070FE9C /* Yoga-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A117C440D1DF33A1B8D7E7BED7B2C2F /* Yoga-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39DFF62282596A4AD2832F04B070FE9C /* Yoga-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FFE18C84CD0014434D7A3335EA172451 /* Yoga-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39F8B48ACB4F25C361745D13D7538C99 /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = CC6BB10D842A4A9E15B036B75213A500 /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39FF0F50C4A348E9977AFD81E4B39620 /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C5D1D2FF323DF4DA9C60F1177C5DF84 /* EXFileSystemAssetLibraryHandler.m */; }; + 39FF0F50C4A348E9977AFD81E4B39620 /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E9D1D019F0429D5D1BAD9EA873DFE4C /* EXFileSystemAssetLibraryHandler.m */; }; + 3A0EA637D7DF627D07A928155C097290 /* Pbkdf2.m in Sources */ = {isa = PBXBuildFile; fileRef = A891ED113445A000F63BDA0E14FFE595 /* Pbkdf2.m */; }; 3A25A0B031EDD3B74BB39D3AD8967E3D /* GCDAsyncUdpSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AFF6CAA60FADAF008CECC75E14B73D7 /* GCDAsyncUdpSocket.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; 3A366E0112A812204DAD3AA497EAD09D /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = B86CCEE97920930641ED93C64B6FB547 /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A42B7CBB1077B1681D8BAA47FD729F5 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3FC7F21CD9F656675673A5907F9D6A1 /* 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 = A60EE0DC677F9126D19E38CA9E8F4FF4 /* QBAlbumCell.m */; }; - 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = D12FAEB3375BBA04A0D84C42BE07D59C /* EXConstantsService.m */; }; - 3A5DB1E5EC7C9DB692B411AC12981758 /* UMAppLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 744BA262E9E8A85813C1DDE1DC59612B /* UMAppLoader-dummy.m */; }; + 3A548E3DC62B7BBF58AF7D7B2F157707 /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BFB1DA4419E8C7CF47F6509CD375F2BC /* QBAlbumCell.m */; }; + 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 94B016C7B1E321C82D0956ABBFC2C864 /* EXConstantsService.m */; }; + 3A5DB1E5EC7C9DB692B411AC12981758 /* UMAppLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CD5488500C4C25AA8510B878FBAB25AE /* UMAppLoader-dummy.m */; }; 3A5F5528F10F93127EBBFE10043B3EDD /* ClockGettimeWrappers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34D5E6F348BDD95757416B6031B9A117 /* 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"; }; }; - 3A785BC5362C8B4204C3797ACDABE8F5 /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5331154F29985EA161AE29ECE787862E /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3A7CF70F2713790E070E27040417EA14 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 24687903163FF75252812F63FF1B4BC9 /* 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"; }; }; - 3AC116D9E6033F521553CE4C871FD525 /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = D9841E3FE0DF5557C4203AB7BCCB8B15 /* EXFilePermissionModule.m */; }; + 3A785BC5362C8B4204C3797ACDABE8F5 /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = C05140C2F4F337FC835A966EEAF990C5 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3A7CF70F2713790E070E27040417EA14 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E8B0C81BB4C75CE9C39A581A3B07E1A9 /* 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"; }; }; + 3AC116D9E6033F521553CE4C871FD525 /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 13305603B4E9384976E15EA40ED1C553 /* EXFilePermissionModule.m */; }; 3AEC60479F0C2555169A4EB81C279F92 /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E7FE2AA336901E68EFC1EF8E24BB5E0 /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3AFED154CE58A7877754321B3D5B17DB /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = BF035BF0C0C598620C14CB365BDBC4DC /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B063C1154E377439F5297D8C936465E /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 916445C5D0D965FAFDCB5F3E2024B88C /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B194E5FBBD4E71FF243806C1890567F /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 62CDA9DDEE1D960A214DA51C83DC3E91 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B063C1154E377439F5297D8C936465E /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ADB1CA634AA749517729870C462ADA7 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B194E5FBBD4E71FF243806C1890567F /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B162F812689F10D4EE205CC660DCEE07 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3B1F011B902EA943C13BF23FA5AA91B8 /* RSocketStats.h in Headers */ = {isa = PBXBuildFile; fileRef = 89EC4A1B4428FD280E0972F31F4D2B9C /* RSocketStats.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3B2FE6120D6A53821D07E463CADA2433 /* Malloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5743CB6EC98AB0D17ED30F21819A4197 /* 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 = 2D1F4F19792AFEEE2FF024DF7E9EC07B /* near_lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3B426494F084B4127219E522755411FA /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = C935479999A27089DE9E10F5AB6D6D62 /* RCTKeyCommandConstants.m */; }; + 3B426494F084B4127219E522755411FA /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 40BCD2F2249194DFFBA16A3D51351384 /* RCTKeyCommandConstants.m */; }; 3B4A8B19ECB268E4FC6EAD4276B63B6A /* ThreadWheelTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F0CDC412D3BC1DE73D9AA45C945E83A /* 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"; }; }; 3B66445B8389FD8B6FEC18D5C63CF08F /* ManualTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 64A0AA369F51C42EC83BC294952451DC /* ManualTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B769F1BF2DCB93BB298582BFE9FEDD4 /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 0792CFE33BB76561F77A5FA76A3C3D85 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B86A109CEA0B850B0A64BF002AEA50C /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E36D42AC3D45EAA28DBC294D95C9A7A8 /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3BA5D2B5AC828D673537D0648F044861 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 33063D49319D5C88CE6FDEC6E9FF9F0F /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B769F1BF2DCB93BB298582BFE9FEDD4 /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D3473E2A2D435AD8B445914AFAC346C /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B86A109CEA0B850B0A64BF002AEA50C /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FC74470958D8E3183AF045DCA6398CA /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BA5D2B5AC828D673537D0648F044861 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FD6CBD9C1341D715218896FCF7E1F44 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3BDA042F4452C7A9D7762E7E5DC1E06C /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F5E7FDE96061C5CB75C24795739A465 /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3BE35415468374E7FD5095CC14E1132C /* StreamsWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E499224321E7E1AC644F1772C24C166 /* StreamsWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3BEE1FBAD4B96E245CD9AED9D181133D /* pt.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 6CFCE2524C07D4AFADBAB2128ED2AD96 /* pt.lproj */; }; 3BF1615C071DE5B98B2A55135B5E32D4 /* FIRInstallationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 404EF870AFE620382970B9F3BFA537C0 /* FIRInstallationsStore.m */; }; 3C008D6C8F8BE78D67CA9CB7416A0FAA /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 10D0186678DB0BD36FEE84998FBC64CC /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C15FBD85FABEBFA4D591E85969CEC1F /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0685B12F74013DC73F69FF3FD9821261 /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C2CC35AD5DCB89F74870ED731466DB4 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B26BF56E17832BB85F9CDF6E8A66F4E /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C31CD3F689030110809D1AFD7C1EFDA /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 247ACF2034BDD4254D15486CC2D4D241 /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C3511940613593AFF8631710DCDB0EE /* RCTDevLoadingViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D9EB9F1414A890594D521351ECC8FB6 /* RCTDevLoadingViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C2CC35AD5DCB89F74870ED731466DB4 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = EE369D136D84453E1A3A02C5104D67F1 /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C31CD3F689030110809D1AFD7C1EFDA /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 802676C5FD0A6126D30FB6E84F6578CC /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C3511940613593AFF8631710DCDB0EE /* RCTDevLoadingViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 95484398BD43F93D52448A2E0F064600 /* RCTDevLoadingViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C3EEEA69D03BE23D7A2D4E0A60237BF /* FIRCLSMultipartMimeStreamEncoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 6069C78D991BE2763D082CA2A215472A /* FIRCLSMultipartMimeStreamEncoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C507D8861834CE457A7F9E566307E07 /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ECE9899478060F40994317A4CC05626 /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C52279D222791B4251C03AF8205D902 /* RNCSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BFA5B5582A9240EE0A688FBF51845D9 /* RNCSafeAreaViewLocalData.m */; }; - 3C52A7E842397DEB2CAE85EA2724EB6C /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 92583E593A12717DA04A34625A26C660 /* RNNotificationParser.m */; }; - 3C57B9928E0E9E9146182C7BB5615F19 /* UMAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EE033307D0F79534498A6083415BD28 /* UMAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C507D8861834CE457A7F9E566307E07 /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = F39576908275793365CCF545589D1BC7 /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C52279D222791B4251C03AF8205D902 /* RNCSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AEC718C8D99FD2DD635DD790C709A25 /* RNCSafeAreaViewLocalData.m */; }; + 3C52A7E842397DEB2CAE85EA2724EB6C /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 5501FED9B119AFB062DB91EE6DF92B65 /* RNNotificationParser.m */; }; + 3C57B9928E0E9E9146182C7BB5615F19 /* UMAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 77EE2C8977116B1CF19D408F12C3FAFD /* UMAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C73244EE8A77E5BD59DD8C113FE7664 /* EventFDWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 34D66EBD4D76C6D7FE612AC6B823A4AB /* EventFDWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CD2A07A92E6452F93F0F544982C468EB /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BDF5B077E05F2FBB8B2C0184106BE41C /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C7E7789B620CD423919122D943ECBE0 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = ADF0EF4CB83EC500D9F0E79FEC019A8D /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C92C8F7A4ED06A3BC4B927DC4CF68D5 /* RCTLinkingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6875E6D2FF2B70DB6F431C32C18DD305 /* 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"; }; }; + 3C92C8F7A4ED06A3BC4B927DC4CF68D5 /* RCTLinkingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 32A87992A21527A69CE2B66FF9D0DB48 /* 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"; }; }; 3C98A74B81322A6703D4A7A5C03E5F34 /* SKResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 123275902CC1B6AA63A9EDB0D4026F9C /* SKResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CBE6FF9CF1D82A56BAF731390BEF2D2 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 549E0A88A80A156B7DA4A9FBEE7C0282 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CD64518F73B6927C62245CDADE43076 /* ParallelMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DB896C552A03E2139C6ED00E08271B2 /* ParallelMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D05D9FBB81C550A4F7C5E2FF0D53CE4 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E73DD6E2DDB845423C380CAD3B5C28B9 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3D0E69701C3E45B13D0AF277BA2EF966 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 721ECE4F55125F8D2B06F7E50B19A1AF /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3D1F8803B18FF14CD64A032CAF21EDAB /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 422A8203166A04153210DF34506CCCD9 /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3D05D9FBB81C550A4F7C5E2FF0D53CE4 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6ED1BDED00407B3ED4384D0E43E8B714 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3D0E69701C3E45B13D0AF277BA2EF966 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7EA7BFCF4F056871F2589013D5F47C70 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3D1F8803B18FF14CD64A032CAF21EDAB /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A1C4C76FE42AB23DD8D5822A1CE0205 /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 3D28C702086FF74739928D70196FA81D /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = E8A0E04B7E9A148D8D87648A58DEE8D8 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 3D2BDDA5696E0248B91335C53007C1D8 /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 86057C2F677FB198EEF2098C4C42A644 /* RCTKeyCommandsManager.m */; }; + 3D2BDDA5696E0248B91335C53007C1D8 /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 361C739FBDF40F8B1E5A8C7D00A8AF45 /* RCTKeyCommandsManager.m */; }; 3D518EE441B3E33D5846310B922E1EA4 /* FIRCLSThreadState.c in Sources */ = {isa = PBXBuildFile; fileRef = 85694364113E72419951156931325A1A /* FIRCLSThreadState.c */; }; - 3D68D2557A63C01FD65F87F4565A0A53 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 26BDD6260EF1FCC4C3C43EB3A19C7DC0 /* UMModuleRegistry.m */; }; - 3D6B17E830FAC8972A903412ABC93839 /* RNCSafeAreaViewMode.m in Sources */ = {isa = PBXBuildFile; fileRef = F2A694C98D0E4AE6F9BABDC3DE3C2C1E /* RNCSafeAreaViewMode.m */; }; + 3D68D2557A63C01FD65F87F4565A0A53 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 4696E9A3AA52DB397671057F5139CC64 /* UMModuleRegistry.m */; }; + 3D6B17E830FAC8972A903412ABC93839 /* RNCSafeAreaViewMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AD5BAECE3867B1CE886E5791A0F24BC /* RNCSafeAreaViewMode.m */; }; 3D730CDE4689268B28E8F06DBE26B123 /* FIRCLSUnwind_arm.c in Sources */ = {isa = PBXBuildFile; fileRef = ED34AB4ACBED89FB4EF1E89A1DA24B7E /* FIRCLSUnwind_arm.c */; }; 3D908533C5BDA9E1C662C9426D1A38A8 /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = A5577C0F2D8D5C2DC5D7EA3BBC536D8F /* SDAssociatedObject.m */; }; 3D93DB04DD641799254FA46FAE37CC5B /* Futex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E4443E0A67F4F6CEE6D950579A0BC26 /* 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 = A3CDE3A926A54EE04C600DD76CD5D1DC /* muxedit.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3DA5DB3392201B4BDCE5115EB4646156 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = 90DF2E522D992D90A49BEBD74E5284A1 /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3DF69DD69EFC71B53DC433F9ED7C6AC0 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 55E6EC3ADF1B24F4C96F71609B0A1E0C /* FBReactNativeSpec-dummy.m */; }; + 3DA41B210317B4BC54A71854FD33A978 /* RCTRsa.h in Headers */ = {isa = PBXBuildFile; fileRef = DDFCDE2BC0DC8EEFC73CE00582A4794C /* RCTRsa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3DA5DB3392201B4BDCE5115EB4646156 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = 098BA8B9ABF7386BC09C3EFF19FFB5C0 /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3DF69DD69EFC71B53DC433F9ED7C6AC0 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 822913D585B3B4F552DE096E290F87F3 /* FBReactNativeSpec-dummy.m */; }; 3E3F53ADD7E28D7E1E396842FEA1EE02 /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = AAD34FDF01C3E0CE5CBB6BD91286CC40 /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E64101FC90134AAB704521D67EC551E /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = E3F3B2E2BA9F3B09851C9D2041EC958F /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E72F4E30D9B7EEB3144323D44D03793 /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = 92F66EDE16505F83607A0EFFA7674116 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E7C97717B849331E16AB17136DF7E68 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 37D8507932C176FD9A70992AB837AE8F /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E7C97717B849331E16AB17136DF7E68 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 33E0AE3C769B6F7D9C335EEA7EB8F7E4 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E91F68D2665D1AA0069E5C27FABCA9F /* ShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 96FCCAB6D6C3A3FABF1F45FF497AE2E1 /* ShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EA70D57B30FED28D990A35340057084 /* RCTRedBoxSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BF6E8C711CE563EBE5CC40843A49430 /* RCTRedBoxSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EDB3836BAEFE8B1CF5E13470FE604DC /* RCTFileRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 916D2ECCE2AA53071AB94C6DB377C034 /* 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"; }; }; + 3EA70D57B30FED28D990A35340057084 /* RCTRedBoxSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = AFC8A5266AA6A474F182951B5D20CB9C /* RCTRedBoxSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3ECB1C0FAD5E775BF7783DDFB6335FDE /* Rsa.h in Headers */ = {isa = PBXBuildFile; fileRef = 267800D1495F26BDAA10F399560AFB1D /* Rsa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EDB3836BAEFE8B1CF5E13470FE604DC /* RCTFileRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 293C50622E6A9A4C5301BAA220DDCCBC /* 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"; }; }; 3F16574039A61B5C86268A6D9E5BD931 /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = DF840BE0F79A0C95C8EDF043006BEDD5 /* picture_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 3F24A3DB577F5F9DE3E7E73B8E06C682 /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 1766D2C042E967F49CA2A7774D774387 /* cct.nanopb.c */; }; 3F49AA173DB0D5F9FD4170902B39752D /* FIRCLSProfiling.c in Sources */ = {isa = PBXBuildFile; fileRef = 0CE11D477C44340424F11B975AAAD232 /* FIRCLSProfiling.c */; }; @@ -979,61 +988,62 @@ 3F93027B044BA4ABF4D115764CB29244 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E525954B7F5EF59800ECC0A9F23400A7 /* 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 = 48526691C3ED22B47A87E0C38A50030E /* NSData+ImageContentType.m */; }; 3F9D460D6684DBFD200DBE5839299505 /* ProxyLockable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B665E4C6DA3790D807C96D8D13A5CE47 /* ProxyLockable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FBB88E0254E6E6972826A7C76C136B3 /* UMModuleRegistryHolderReactModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 840B29DEE6C6EF5676519A689862FCD6 /* UMModuleRegistryHolderReactModule.m */; }; + 3FBB88E0254E6E6972826A7C76C136B3 /* UMModuleRegistryHolderReactModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 58CDCF71B71608DB5507D1FBF65EAA9E /* UMModuleRegistryHolderReactModule.m */; }; 3FC1DB2B2882744E0BC167FC89372873 /* GDTCCTCompressionHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 55E9782E88E26E069CFE552B6059E24E /* GDTCCTCompressionHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3FE0A32EC96E9E49C2E7A93852717142 /* AutoTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = C30F7F89E791711B48464342106226F8 /* AutoTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3FE6DC36C896C99E4F0E10B92E1FE061 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = F650B8B0C23ED9519A598442826CB29E /* frame_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3FF70BD5879039040169C7BF15AF04A1 /* RCTVibration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 14FBB765A596B8A45051A528308AA63D /* 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"; }; }; - 3FFC12F083C51549727315984B52D62F /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 623CC8C222A5E75D8DA536F832D8C029 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FF70BD5879039040169C7BF15AF04A1 /* RCTVibration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7B879908DE7E002B65D24820FCA916E2 /* 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"; }; }; + 3FFC12F083C51549727315984B52D62F /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = D6185F90FAD1A154AEE236615FCE7187 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4007B7F35C430A2ABAF9342676CCE0D5 /* TestSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = F44192C3FB065A7DAA1A8AEBF57B1436 /* TestSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4016A54338710B03C31800F382F06669 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 76BD5F3010C6D566E7736D8675B652FC /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4016A54338710B03C31800F382F06669 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D5AA969F9254FB32855E8FC189FEF20C /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4023DC41F602B44BAF60408389A2B762 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 294A1AFBAF9D3E0C8204ED0CB43EB4D8 /* GULReachabilityChecker.m */; }; 404D6BB861E63EEB9E73E08FF90F800C /* Flipper-Glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 814702FE73688996BC64C72365975765 /* Flipper-Glog-dummy.m */; }; 4053B1CC3CD5A04F550DB606726DA74B /* Flowable_FromObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 705564DD4011FC335EDCA6F71E6241B2 /* Flowable_FromObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 40614B380FD380F02DE30BF3AC2B5BD2 /* SKBufferingPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 82AA68BDDB907F5270ABB4E44A1FB42E /* SKBufferingPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40746D1CB917000585492F2B1BAD4E20 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A20830F243A0EE718A622E2C44FB987 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40746D1CB917000585492F2B1BAD4E20 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = F676FDFAD617AEB73318BA8B1CE8DEEA /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; 407D321F392BA208926EBD1B3F68D901 /* ScheduledSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F2B6C34DBB2817683C4B768E8E71289 /* 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"; }; }; 407DF13B0A6D61F156D84B50D25A3E2D /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = F1EDE2F820502F40C114AAFCA7904336 /* upsampling_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 40828CDB34CB0D9DB95817B36B4DE561 /* Latch.h in Headers */ = {isa = PBXBuildFile; fileRef = 10794ECA3AC186109828D7E8451B4DBB /* Latch.h */; settings = {ATTRIBUTES = (Project, ); }; }; 40882DB2D16FD7AD4EB5CC4DDAFC57F0 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = DD955A50F1D367F42A0666F31733C86A /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 408B66DC035EFC857FA1702A13AC9C86 /* RSocketClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E2B11F8392AB408D01A6130571C326F4 /* 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"; }; }; 40C5F7BC48B53F2B5C4EF3B60F4C21B6 /* PriorityUnboundedQueueSet.h in Headers */ = {isa = PBXBuildFile; fileRef = BE3649EB3CE3A580B449A847ABA02273 /* PriorityUnboundedQueueSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40CEDF91F7F05C23450E53976C0D24D5 /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D52D7698DEE3105A56D0B1EE095DAD3 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 40D3D7F8A9A20E8AF9968CED7BA360DC /* RNCSafeAreaProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 99345556668772A8DF17604C052E7052 /* RNCSafeAreaProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40CEDF91F7F05C23450E53976C0D24D5 /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 774CB4064061E5F7444F4B5EFA6FF820 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 40D3D7F8A9A20E8AF9968CED7BA360DC /* RNCSafeAreaProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = FE4D2BF80F96319D3DDFB295AA20FC70 /* RNCSafeAreaProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 411A3C1B75FB16BE3B6C5709BBB21AD0 /* upsampling_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = ABB90F0430438DEAAD83FC4A210BFBB4 /* upsampling_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 411F8EF903AF5C1D33126CA205624E2C /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1210CB324AD0392318D3F271FBBD1ACC /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4130743FA94193D1413C4E4A1F925D6B /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = E5E9053B90410FA05C6312690546624E /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4151149DD2912D71C7B2B5BE90FF6BCA /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FE57148A0395552AFD22E84C224709A /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4189660EF185363F700A6A4B5BF751F7 /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DDBF86AF93CBB926DC4E4BAF0BCB169 /* EXPermissions-dummy.m */; }; + 411F8EF903AF5C1D33126CA205624E2C /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BBF56D8C089A97520810E25603915E50 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4130743FA94193D1413C4E4A1F925D6B /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = 11D56C52FE9A22F7C57314DE2C964560 /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4151149DD2912D71C7B2B5BE90FF6BCA /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C40547CF9A97052A9AD762F0CAC782C5 /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4189660EF185363F700A6A4B5BF751F7 /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 30EFCF131A9EBE0519B24BC24E00FED4 /* EXPermissions-dummy.m */; }; 418A80C97BE6673E08EF82021C76B68C /* FIRCLSSymbolResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E5635867A95D1AF56CFB6137CBB346A /* FIRCLSSymbolResolver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41A875AF9B80762A227B0C9FCDADC17B /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 68BD45047DD94B81E29DA4BD4DC75835 /* EXConstants-dummy.m */; }; + 41A875AF9B80762A227B0C9FCDADC17B /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 66A2860468708F978E6D8A1D0D6B9752 /* EXConstants-dummy.m */; }; 41AA3998B750D854C500181BC0B9D8ED /* FIRCLSProcessReportOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AE848FA083D178953EBCE99B1AE60BB /* FIRCLSProcessReportOperation.m */; }; - 41BC8ECBCFF0EBE4AC91F17753DDEE12 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E54C641E5BC5AEA752031C4B73894FA /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41C0B692521AF1F9039A5CE16E841F76 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = DB4EC185D4DEECB11ACB8223DAF9535F /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4205ADAF94B00946E01FCE633872C359 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 05EDC5EF4F7A61CC4C83B5623AB8466D /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41BC8ECBCFF0EBE4AC91F17753DDEE12 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AEF4E8A7EA21150463BC8A9837C4490 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41C0B692521AF1F9039A5CE16E841F76 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 77A03CE1066CA7A89FDDDCC38366ED05 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4205ADAF94B00946E01FCE633872C359 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5070AF1FF7BA488BE8FC2FE092602451 /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4209E12A312F80DD614ADF85D9F60BE9 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 6560D89E5F019D347BE59995EBC3D773 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 420DD30BDCD8DFAEE8901638FB304043 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = B069EE34B326027D9F9DB0253BBE2F76 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 420DD30BDCD8DFAEE8901638FB304043 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CBFF854FB0878878C529C9F2FE1427D /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 424C2747CDE3E0FA36F66B30DC971DAE /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = BAF1BFF30695A4275DF5CE87CF2D3782 /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4251D386D806C990C2769DCD9724E509 /* Aes.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BDC9ED4D84C8AD7DE9201F431775878 /* Aes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 42543A01A17FCDA2A3433623E63433F4 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 253FC392BCC45EAD55E2598A844EFD3A /* 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"; }; }; 426010CAC3C039C6F9911BAA2D77B14F /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 97BBAE9AEA0ECF8584025A7CB42584E1 /* FIRComponent.m */; }; 427C8FA489A629A5C9890AFAA39EA86E /* PriorityThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BD5B1AF70C3CA3936B716570EC990BC /* PriorityThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4280A2CE689E5C853DF3ED1DE2B480B6 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 01C0F8981C0D86606BF0639C364CE085 /* REAJSCallNode.m */; }; - 429154760417DA4A8F0A41BC41D04047 /* RNNotificationCenterMulticast.m in Sources */ = {isa = PBXBuildFile; fileRef = 556A221B3B32B998A9B0A794C7AF126B /* RNNotificationCenterMulticast.m */; }; + 4280A2CE689E5C853DF3ED1DE2B480B6 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 15745FA1C01B4BBF22B3A8786B9D11B2 /* REAJSCallNode.m */; }; + 429154760417DA4A8F0A41BC41D04047 /* RNNotificationCenterMulticast.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9B38B5B9B2A74D062B970A2C09F07 /* RNNotificationCenterMulticast.m */; }; 42957C970247C82C69F92C08F821066A /* FIRAEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = B0B2958A1D0A7BD13E6A915313643353 /* FIRAEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4298F56B1E4215967E5347F795B4E4F5 /* RCTClipboard.mm in Sources */ = {isa = PBXBuildFile; fileRef = 31A71D3B96AC98877C45572CE5B79748 /* 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"; }; }; - 42B2B3F9374AFE30E947D405588183B0 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D94A437EF4F7977CA04A4E2006530910 /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42B3A20E95DD61B099F9FEE182B099F1 /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = DE3A2B83E6FA608B0054E0684CD1B314 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4298F56B1E4215967E5347F795B4E4F5 /* RCTClipboard.mm in Sources */ = {isa = PBXBuildFile; fileRef = AF6DADBDC411D7EDB8BE79D2E048884D /* 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"; }; }; + 42B2B3F9374AFE30E947D405588183B0 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A7B837210F912CC59FC3951EA9CA2A6A /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42B3A20E95DD61B099F9FEE182B099F1 /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 41D25E2303087797B675CE467F3E2689 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 42B8240821C5D0D7926B22BCD88098F1 /* TcpConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 51644C6E77421161B992EE05E53AD364 /* TcpConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42B9C64402F7F76D826CBC8B924AC777 /* RCTView+SafeAreaCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 7255CFBD32F15F95EA3846EDAFAAF751 /* RCTView+SafeAreaCompat.m */; }; - 42D10881A73DED1DB29B3ABD1F08784D /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 66F09C8328C84F2DD207A1CFFDAA9980 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 42B9C64402F7F76D826CBC8B924AC777 /* RCTView+SafeAreaCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E437B7EFEE284B3E346F487AD74184C /* RCTView+SafeAreaCompat.m */; }; + 42D10881A73DED1DB29B3ABD1F08784D /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EFCE5D37FCDD601CD22091C80C7E5C2 /* RCTKeyCommands.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 = 331D538CAE6C431B474CF5CD0EA2769E /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42FAE59CA87C52C4681925F26E527E45 /* RNFBUtilsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ECF09EC3A960F7D1D2D7094E3CC47B6 /* RNFBUtilsModule.m */; }; - 4308AA60CADD31E3F781D45CC1294E31 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C2FC874EFFA88394F6FA20FB65171BC /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42FAE59CA87C52C4681925F26E527E45 /* RNFBUtilsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BC928985913E403ED554432C47B9749 /* RNFBUtilsModule.m */; }; + 4308AA60CADD31E3F781D45CC1294E31 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 05B0E1D9D63EB27E1BF20F304EB190E8 /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4309F6A95C2F4533FEBADDAB9EC72DDC /* SKBufferingPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 00E68C9D22DEAF608248AFF7D8E30C6B /* SKBufferingPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; 430BDCE7D0538E995FE37CAEBE40B4D0 /* RangeSse42.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A65BE022C1E6E9C4E2D24A4B27784FEB /* 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 = 41C927B83DC0948365569F95AE829FF9 /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 432FA6CECE7A4FDF913C7953D1433AA3 /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = D4FF583822AD5EE4F35FA0BC25181BEC /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 433524C99CACAC26A7D2512DD58C1D4F /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = EBBF9B782F3C738D752793BB84FEB010 /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 433524C99CACAC26A7D2512DD58C1D4F /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 1102DA8401DC0663A676D1593BFDCA63 /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43392A4D79B8DC5E22D18499B86234CC /* ScheduledFrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 70C09E89833B9AC146FDEB22A99D3C0B /* ScheduledFrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43506A7BA8EEEBCF95741CDA3B381B87 /* FIRAValue.h in Headers */ = {isa = PBXBuildFile; fileRef = AA5C6670BC1E9CD617E1993F92F4A046 /* FIRAValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4371D77F7D30EE2C28086AF3C6141AAF /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = AE30E261819D23C9AB49EAC5A4D59350 /* SDWebImageDownloaderResponseModifier.m */; }; @@ -1042,7 +1052,7 @@ 43A22B01D4DC0FAF7BCB423E3AFB00FF /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F6D9ED51A1A5CC925A4C8E2291BF810 /* SDWebImageTransition.m */; }; 43B78010580505476F3E8FC480770934 /* FIRInstallationsSingleOperationPromiseCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 05C19B4D366F7293CEC8B166EEC97680 /* FIRInstallationsSingleOperationPromiseCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43CA220075CB818C01526FF2A9432522 /* ExecutorWithPriority-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 32AAD906F9162328653ED321D640D957 /* ExecutorWithPriority-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44077BE7DC478E91BB1F7FBCBD475D79 /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0ABFD45C8872042392419CF2BB70BC22 /* RNBootSplash-dummy.m */; }; + 44077BE7DC478E91BB1F7FBCBD475D79 /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 59F990578E21B93B43E878545F4657B7 /* RNBootSplash-dummy.m */; }; 441B93B804E191A50943F1C1D8A1B1CF /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A86A1518D8CD6EA2081BF8E945C08764 /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4438CFBF04202C1F6AA6738A28EDEDAD /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FAE3B1E6DCF34D959E7D5855CB6B777 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 443D3DDF5D13F55E3BE2AB33A97AA222 /* ScheduledRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C9822C96664CAFFEDB36DE46B79E932 /* 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"; }; }; @@ -1052,33 +1062,33 @@ 4456DC7E9228FF28308FEEAA206EE6E5 /* Request.h in Headers */ = {isa = PBXBuildFile; fileRef = 09ABEA1261F80AFDEBC4195E200EE237 /* Request.h */; settings = {ATTRIBUTES = (Project, ); }; }; 44632E81B6BB000278A79A5F1ED4361B /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 0898CFFF0189F9F73BC31E40FA48767D /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4468D0C7AA98C38510939461FC53E5DC /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = AA62312D15439145FA1B26275171FCEF /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C854B881FA802C14ADE0FF649C666E6 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44A32BD3CBB607E309FBB35F2F622169 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D0511FB3538261E00C6038C99BC7901 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F93A2E3EA1902AD9906F044F1EE74D7 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44A32BD3CBB607E309FBB35F2F622169 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 12DAAD5397F12E86BFCE83845DCC75FA /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4562ABCE009528F380B10B8433A6EAB6 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 11BF740FBBD0FF4F6B1AFB4191B2D801 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45744AC050A11157EFA8904C600CDD30 /* NSData+EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B026627ED5702344586FA2080CA7233 /* NSData+EXFileSystem.m */; }; - 457707C4961BF8ACCA29276F1F152120 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = 77E599B73A807CC9CE2D7D9A1F26BC1E /* Bugsnag.m */; }; + 45744AC050A11157EFA8904C600CDD30 /* NSData+EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 63F23866805B8C50212036B280BF56AF /* NSData+EXFileSystem.m */; }; + 457707C4961BF8ACCA29276F1F152120 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = 11D08622124B7D25AB05E3AACA15FA8B /* Bugsnag.m */; }; 4584237784EA05B37B6C57AEA19C0DA1 /* FramedDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5347885103FDE0061CCCF7A9D537C64B /* 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 = 4E6477CE2E42F17BE04FC037C7CD3E2D /* ARTRenderableManager.m */; }; + 45955CF3D29DDBFBD70BE7074C312431 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ACB63E1500DC44BE2A144965045C6FCE /* ARTRenderableManager.m */; }; 45D699FECA801F44943FF1FA546A60FA /* IOThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F838AA84018BDF01E31B58B2E3EEFAE6 /* IOThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45E453D6D86AF7E65607897FDA4EB49A /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = EA98154EB72A5898BABD6144770CAFD6 /* ImageCropPicker.m */; }; - 45F71DFD22BEC364E20D6D6666FC8E59 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 557837D72D0D4D620A0A412D3F2C84CF /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 45E453D6D86AF7E65607897FDA4EB49A /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 107127227797BA3A486AC0727D14E335 /* ImageCropPicker.m */; }; + 45F71DFD22BEC364E20D6D6666FC8E59 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = B38E9B3F31570A56DE84B43E72D581D1 /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4620B2AEA9AF6351E661200E2DD3A3C9 /* Uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3884F3FE37EC05F5EBAC9C24DB75B1E5 /* 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 = 15EE26E0603A3A2E13F5067294868CEC /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4647F15E0AAB72AAF4365266C1EB0F4E /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = DB35CC62936B6D2F3D2550C225EE6372 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4660AD51A8D6ACBF5A2A87CD7512E905 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ABC0E3B17BABA2B1338A9B131D2423A /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 466306A54775FBB6D3367A06DA9D4D98 /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 36D256BF4CAA49DBC1CAC7D5BF1E2F63 /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 466306A54775FBB6D3367A06DA9D4D98 /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 67B443B296C953FF7CE066E586870AEA /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 467BF23FF6980B07FCDC81FAC9BC9C5A /* id.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 724B6C59DF738F60B3A62804F455FAA3 /* id.lproj */; }; - 467D20152450EFDE23E605CACF4BD77C /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 643FCEC46D4EE7588770B96F2A9FA4FA /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 467D20152450EFDE23E605CACF4BD77C /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 34425C1B564D8C3C5C9745CB556FBC18 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 468106B01EBD8555D998ED1CB759ECDF /* FIRCLSRecordBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 980860B4EBD4FEE077A8347D1C65272B /* FIRCLSRecordBase.m */; }; - 468E2BA37E64CD16F291C2603E6C6D60 /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AF3B089ECAF786E274B31B13DFDB50C7 /* RNCSliderManager.m */; }; + 468E2BA37E64CD16F291C2603E6C6D60 /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DCC39208CEAA002C1D502B8CE314B7A /* RNCSliderManager.m */; }; 46E0BC2A484E85D6E84B52B6F14CA502 /* FIRInstallationsVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = BB2985C98F1A60C94AE0CEA277868740 /* FIRInstallationsVersion.m */; }; 46F677887FF3768DDC04707CD0DDE1A1 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6EE7E5858AD7914DDC0BB54E58ED2D5F /* 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 = A8CD097D222DD48A5707C487C634FF8B /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4702DE0E38D27BC3EC745A720CCAC8FF /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A84CFA91626CB3C0D1F92AEBC9536A6 /* BSG_KSCrashDoctor.m */; }; + 4702DE0E38D27BC3EC745A720CCAC8FF /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 14015E1552535ACDD964A56534C309F2 /* BSG_KSCrashDoctor.m */; }; 47100C8C26038713F688529AFE01C5B2 /* Checksum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1D820240F0210A102F96722E586A1AC /* 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 = F069E5E3118E6E253A337FFAAEA2B091 /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47137640EA9918E330D043246EA8EB14 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B714D211FC05323C8DA4F3D8B11F04E /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; 474C3BE8073A5D673B57C69C7996E60A /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 78A376D29FCC01585E352B355886B7C9 /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47590AEF8918372FE41C5480D9091E6D /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F77753336444E4AC189FD4160700BC6 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4768025E8BC8345844CB63790938C9DC /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = BB596ACA49EDF073E44F234D0869BE45 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4768025E8BC8345844CB63790938C9DC /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 649809A30EFC2F2080AFC533AA062C9A /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 477A70514A5CED495611D708BF35F217 /* FIRAEvent+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 8077B75DA65AED5AD968FB062345BA55 /* FIRAEvent+Internal.m */; }; 479616E8106772AFE3286C5456650297 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = A399A511739E94F4FD8E1A82764664FD /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47A329911ADA768AC86D452A38D32D53 /* FirebaseInstallations-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F7767C424154BDFC98927B610F35AF43 /* FirebaseInstallations-dummy.m */; }; @@ -1087,116 +1097,117 @@ 47D644E0A812CEAF1C3397017B6D3269 /* CPUThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F6C0E9A5B8F1E00BEEAA26B3E78DB3C /* CPUThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47DCC3A31F95527F19EA2A2D8821BD8C /* FIRCLSAsyncOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = E188A705C5B6B9FCEC18267135BE84B3 /* FIRCLSAsyncOperation.m */; }; 47DF1B6157DA66CE963E27F12D5F442B /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7E7C3FC992FC754E255D10D675B80410 /* 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"; }; }; - 47E177E91649CBEC882D8D7C484E7247 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = B91307C3A929D8DF91AC58B802C9E247 /* BSG_KSBacktrace.c */; }; + 47E177E91649CBEC882D8D7C484E7247 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 26DD56000724162A576C71F91BAAC7B9 /* BSG_KSBacktrace.c */; }; 47E2E2BC07749B3A2978080B181FD194 /* TLRefCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 96CD31CF3530DEE59CAE211676707481 /* TLRefCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4802E4F018C6CC4ADBD85D68EABDB992 /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = A56991907904515F662A4154291C453E /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 48135840D82FBFE9B37FEFB6E39BE512 /* AsyncSSLSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 977AACBE4CE84B021995365A14DB94E6 /* AsyncSSLSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 4816EE3AB37CA43C47A9301588D2B926 /* Constexpr.h in Headers */ = {isa = PBXBuildFile; fileRef = ABE1208B3C2EA015BD10A4C0B83FFD2A /* Constexpr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 481DB13F7325F894E171851441EDDD91 /* RCTDevMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1CB433F762A599FC44DD432A7CD62DFF /* 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"; }; }; + 481DB13F7325F894E171851441EDDD91 /* RCTDevMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1168639493E9553522C59CAE5888E4DB /* 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"; }; }; 48377AB732CAE5FB016FC6D671D2F028 /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BABD11FF59C0C00F4255F87443E298B /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4863677D1787975D4D4AD4631CBF3CB2 /* AtomicUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 68E79F88A98BDBD2FADE64873E49BE5D /* AtomicUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 486EC643435E18407070A694FF7ABA13 /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EAAE20AF318ADF36E2B751CF903D8FB /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 48D745DA56A85F28449CAE5FA9EC6266 /* FIRCLSFABAsyncOperation_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = ADED4B467E106FD0A53033E1ADB3CCB3 /* FIRCLSFABAsyncOperation_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 48DDDD887768C3EB92C89C1F9C23B92D /* Future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9261C61EF5440C1CCA6B8BD8349FF409 /* 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"; }; }; - 492C9342A92951D54A8C30FCF4656E38 /* EXSessionTaskDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = D25ED1CD1ACB72C9EA7AAF0297417A5E /* EXSessionTaskDispatcher.m */; }; - 49659FD56D7A26D9712075D2973278D9 /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E01037C53150DD7A4BE27157EF62784 /* REAStyleNode.m */; }; - 4973DE666E368BC3A61245D6C8969AA9 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46543CB405085A92913316DF38EAEA14 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 492C9342A92951D54A8C30FCF4656E38 /* EXSessionTaskDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = DF680E906C85A1D16522326B16F2A815 /* EXSessionTaskDispatcher.m */; }; + 49659FD56D7A26D9712075D2973278D9 /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 09C2621E183BF2D8BF063AF6AB16E013 /* REAStyleNode.m */; }; + 4973DE666E368BC3A61245D6C8969AA9 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F2998A3D69D0A9390F653F636FFD01F /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4977E406F103BC7E9F600C3C57CBF755 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 52EF0A9368801F893BA9EF4B5B086CB3 /* picture_rescale_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4993F4274A05224DEE54F53BCDA36E8B /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 225E2159F6A8AA9BA050DA754BCCD886 /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4993F4274A05224DEE54F53BCDA36E8B /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = F43A2B90283A1D1D5BCB4B2306D9694E /* RCTSRWebSocket.m */; 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 = CAAA557DA874749CDE0FFF6F91E828AA /* FlipperClient+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 499FEAAE461FD29D544C7CC5DE018BFA /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = C83E27AA1E995B00AC0C874EC4F88520 /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 499FEAAE461FD29D544C7CC5DE018BFA /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0703FF866D3C3CA07EAD519056976C91 /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49CAC6443A707C331BEA57C02856261F /* SKObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 0425E33BF01B9BD2AEA978878BDF639B /* SKObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49CB6E0BD077995D6FE671AE085BBB4C /* MacAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00CBFF92D56DA6B36FE47533193E9695 /* 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"; }; }; - 49DB95D5B5E96008133B3E3DDE4D1F98 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CB2655499D2764752901A4AEC16BBE7D /* ReactNativeART-dummy.m */; }; - 49EBD4F46FA34D1E9383696FB9E70DFC /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 79FBF28A28386300D385A211F73C9F9B /* 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"; }; }; + 49DB95D5B5E96008133B3E3DDE4D1F98 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 69D1E21A94B6CD5E5F6603B43885AD34 /* ReactNativeART-dummy.m */; }; + 49EBD4F46FA34D1E9383696FB9E70DFC /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 25CA827584AFD1502FF9924AC2B548E4 /* 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"; }; }; 49ED22AD77FCA7D73439C955EC426CD9 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = E58591D1CEFA0FB3A86FA9815841FC8B /* backward_references_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49EEE7711D57EED8E0AAE22C745C541E /* ConnectionSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00FD58DF7CD8D15B073350CECA790329 /* 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"; }; }; - 4A073C398A961DCC8F643A96231EC97D /* EXResumablesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 027A65AD9723F1BC0B73083CB0FD34B7 /* EXResumablesManager.m */; }; + 4A073C398A961DCC8F643A96231EC97D /* EXResumablesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 216446D6814EE569C854C55221CE555E /* EXResumablesManager.m */; }; 4A21F2608B9DA7432CB306111F436C8E /* EventBaseManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7852BC13A2C87EB310181FD6FA0A09B1 /* 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"; }; }; 4A2519415417EAC6D02A7450532D6A1C /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 42AB3BBB463F5EC27C22C10A80989826 /* GULAppDelegateSwizzler.m */; }; - 4A31547A29769DC8F81BA3BD0DFC816E /* RCTLogBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3231820F12D9F31D02742625D5125C27 /* 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"; }; }; - 4A44E351963FD831C9822F579CBCC6C5 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 68B7A8740879F89A2CBFE41C610B990B /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A4D6F6D55BA3623E5CD00A17827D8C1 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = 7F6CA3F7F77927A829F95350D1F8092C /* RCTProfileTrampoline-arm64.S */; }; + 4A31547A29769DC8F81BA3BD0DFC816E /* RCTLogBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3B0D46A166DF5A6CB3464DC69BB2F0D9 /* 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"; }; }; + 4A44E351963FD831C9822F579CBCC6C5 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CD30E882540FDD3A3001A9E8B85EA6C /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A4D6F6D55BA3623E5CD00A17827D8C1 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = 0FDA53B97CEB9EECD2A1966D94C897A9 /* RCTProfileTrampoline-arm64.S */; }; 4A57D866B6D03E82B4FCA3BA226A8984 /* it.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 708AFF192F423A1B7B67047FAC16FECA /* it.lproj */; }; - 4A75E803AF46B56D11CCCE41CE8FBE0C /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C5A75DBEBA07D1D329053979A1E1F7D /* UMUtilities.m */; }; + 4A75E803AF46B56D11CCCE41CE8FBE0C /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = AEA821130DCC7D1B9EB415663C052449 /* UMUtilities.m */; }; 4A7B7B8C3E551805997761CE92916760 /* FIRCLSSignal.c in Sources */ = {isa = PBXBuildFile; fileRef = 193ACDE555B9B6308054D0D0C7B106C9 /* FIRCLSSignal.c */; }; - 4A7CBC49E0E714E315BF2E22E39BC136 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4184308CE6AA6421254E0CDA732DDD3C /* UMReactFontManager.m */; }; + 4A7CBC49E0E714E315BF2E22E39BC136 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AA3AB276B12B041B0C4DEE01A95B7E8C /* UMReactFontManager.m */; }; 4ACBE900862827AF5A0FAE7BCBD622C4 /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = 01A27CE802C37390E44D4E7056FF1B3C /* FBLPromise+Wrap.m */; }; 4AD9CCC85B3778658169C43F329DB13D /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = DCFDE752107DBE06301B466EF1DA2D00 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4AE162265A0182AC50A6C8D4A09E0F1A /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 349F92ACE634708AF1FE1AF39B381392 /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B174EC3B79E737EC18607D92EFFA69B /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = E1AFA9A20D495499386B13F3D69DB8D4 /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B2D339ECD502DC42B9CB8E624504F0E /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DA37A201BF5D7381D9112D017DEB075 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B174EC3B79E737EC18607D92EFFA69B /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 305CE17114C719D8BCBECD794E9CBE4B /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B2D339ECD502DC42B9CB8E624504F0E /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = D9A72ABCDBA4B8CD103B81B4E7E1C6EC /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4B3964B71F74D3D48482B3D853DA94E5 /* GCDAsyncSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 50A742A295C38B9BC45A8282B63FE069 /* GCDAsyncSocket.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; 4B6624A1006ED93B3305A5C01B680EAD /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 81732BE5C2E43D5A6F522D5EC0F6E512 /* random_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 4B75E3FFB3D2849FDB5C18EF604FC7B0 /* FlipperCppBridgingConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 690A08653B7401F9C72683392FA52555 /* 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 = 96088961000596DE7AC10CC4450620F4 /* TOCropToolbar.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4B925B231DD0F1A4DEE0367814E32490 /* RSocketServiceHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 768CAB59778442A4DA8E25D0593BBDBD /* RSocketServiceHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4BBA805E7B1BA9E6C8AD89E9D9579637 /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = 2919C9877EF941C1709E394910ADED79 /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BC23F18BB4F6756586C61F121FD1797 /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 70C69A5DB7AC59F60F22F98605C4CFCE /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BD118908DF702301F6DE42A12958EE1 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = E3795CFDACA4AF8219C8A17A0710D969 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BC23F18BB4F6756586C61F121FD1797 /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 114E251558AAB5DC306FC26F847DB211 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BD118908DF702301F6DE42A12958EE1 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A928D06C98BB699C052179F4C1BFAF1 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4BE9AA0AC9220535A1CC94231A061BC8 /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C494AE0F641C814E22A3A06BEA1688C /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BF5E3CAB7C850F3035C885CF370276F /* RCTPerfMonitor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5A2FE45D33CECE11F662AF35429FCD12 /* 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"; }; }; - 4C422863460C17E44DB8AC5E66D63451 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 643FCEC46D4EE7588770B96F2A9FA4FA /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C6567D5F16FD4325FE14596E977F2DF /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = EE164727FB3FEFEEDC309301CC6174B4 /* 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"; }; }; + 4BF5E3CAB7C850F3035C885CF370276F /* RCTPerfMonitor.mm in Sources */ = {isa = PBXBuildFile; fileRef = ADD612320D6447A37D6DA8FE9B53B375 /* 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"; }; }; + 4C422863460C17E44DB8AC5E66D63451 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 34425C1B564D8C3C5C9745CB556FBC18 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C6567D5F16FD4325FE14596E977F2DF /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E7642FD0CE4C41C67F9173673094B60 /* 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"; }; }; 4C76D9A8EEB343746F6A73E6573B2D03 /* WarmResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B04534EC5FEB19A83194F8408C3AB91A /* WarmResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4C7861B119472BD8477B7309689351FF /* Future-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = 47967555776C70EC40299F9F2BE88F9F /* Future-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4C7D7E9EED695E3D5788C7DFE583E0EC /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = F21299F97711820C37335AEB062868C1 /* GULApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C9E570AA0DBDCF6AEA68029628EB4B2 /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 44F927D14C6D58D69095C4C2C62298ED /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C9E570AA0DBDCF6AEA68029628EB4B2 /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 21FC912E10268FA35183A93CCB9083A2 /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4CABC19ABA3AF2124349A3F412272F50 /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 8863D29966B54EB5C813F1CC96D4CCD8 /* GULNetworkConstants.m */; }; 4CAEF5061BEBF77B81CBB7A5C4D10871 /* FLEXUtility.mm in Sources */ = {isa = PBXBuildFile; fileRef = 57AE0865E6F1870E913D10B6058BEA3F /* FLEXUtility.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 4CF0447B3B73FED33C02925795DBBA45 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E32D970E1EFB4FF292A76853E0E1A2E /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CF0447B3B73FED33C02925795DBBA45 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 337145F316348576D066BD8895ADCEF7 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4CF3B469D09368C4AA87F78EEF21B0AE /* GDTCORLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = 36C940C1A2B8FF3346C2CF363E289E66 /* GDTCORLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4D26D41DC25595A9DDC19434692363C2 /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = B7851E80B74E6136AC1F7656B00BAB11 /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D5EFD18B90D34E5A9215E07EC5D3785 /* RCTAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A1264192ECFA0EAF9524A1ABA3BD358 /* RCTAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D62B565955A9CF4C3297AD078A3F799 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = A4646EA6592A48382242A9808410A72B /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D5EFD18B90D34E5A9215E07EC5D3785 /* RCTAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 54ADC050BC81D562EE7FAAAFE4095C09 /* RCTAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D62B565955A9CF4C3297AD078A3F799 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 08B48104F77E77D12036C4DCF2FC5488 /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4D70DE57BE4ED28E7AC93C9C849F11C6 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 44126AA1060404910BD45627850D607C /* 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"; }; }; 4D7D18F40CFF9411ED36F932141B8A1F /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F51225B19F6FCA744F6B84D257914B6 /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D8C0B967D9CCBB2D4097EF4B0410D43 /* EXSessionResumableDownloadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 218A7C1CB3F3F0EE38F365F9D0EF8FED /* EXSessionResumableDownloadTaskDelegate.m */; }; - 4D8EE5879A925DD23B6D7B1C82F0BFE6 /* EXVideoThumbnails-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3847A7169F54643DC41F1A70EA0C9D8A /* EXVideoThumbnails-dummy.m */; }; + 4D8C0B967D9CCBB2D4097EF4B0410D43 /* EXSessionResumableDownloadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = E28907FE122C660D7EB94321BC380C19 /* EXSessionResumableDownloadTaskDelegate.m */; }; + 4D8EE5879A925DD23B6D7B1C82F0BFE6 /* EXVideoThumbnails-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 448C2A3D180524770EBDF29BF3885EF2 /* EXVideoThumbnails-dummy.m */; }; 4DB203F1439AD013371B24327625EA5E /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 91BB95B9291ACE4D0989F38EC2988C6F /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4DC3C93691EB8D66A121CA71EF8113BF /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A749148F7E2718DB58217FAA735FC64 /* enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 07EAEE7C3D00A06D5AE79813CBB1DDBA /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 18D673170AC0F84EE74B6EA6A5571B9D /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E1389A80549A025F7716E5F0A2E00B9 /* FIRCLSFABAsyncOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 920247926C5331B1EC290AE92CF3C8C1 /* FIRCLSFABAsyncOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E17E34A10921015C84C16FDADF1618D /* ConnectionContextStore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A22753CCAF27A03A676310C9D462C3B8 /* 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"; }; }; - 4E2A0793EB560299DEFA14EE7A4ABFC8 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B27C1729B947583819817A07568759FC /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E2A0793EB560299DEFA14EE7A4ABFC8 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F5DFC2582D2F19C91B8D6CB6559C174E /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E3D47B57A0D93260990272056DED85D /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 02A7A6EE0BDE271AEA9B8F092BA77ECD /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E482BE9AD7430C9B3E1B787850C95DF /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 6503BF5CAB4D44092D65DD55D1D5AFBF /* huffman_encode_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4E4E32533F580B598692B643BA9C51BE /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9997637E9AE122E96AD545C106C528AF /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E4E32533F580B598692B643BA9C51BE /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D2998CFECD9FB872258F99DE7224F85C /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E5588F198AE4677917C8940ACE0A4F1 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = FB01FFEEBEB11934944E8901A9D74B4B /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E6013E485F9ED649C319A0D4F4FF62A /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 49CDD44FBE5BBE66C8B9F36351A3EB72 /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E5B70B003F832BD10759DF14BEAA06A /* RCTHmac.h in Headers */ = {isa = PBXBuildFile; fileRef = F740FDA458ED8EAF667CD596D3DF718A /* RCTHmac.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E6013E485F9ED649C319A0D4F4FF62A /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = C032B7EB532DAA8F547EB8860076C0C6 /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E7F408A6C7E76CCCB1D7C04FBC62B7C /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = 8217EB2EA7812E8BD2B072B120DF42CD /* SDAnimatedImageRep.m */; }; 4ECA0D81891EADA811094561AB083DF3 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = F92210F9DFE285959B3212269DC66D7C /* dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 4F012C6282E1CEC511611133B36A3F4D /* FrameSerializer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 949C95689BC714498AA6763F62F2FF25 /* 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"; }; }; - 4F0A795E85B0D7A97B3FCC403C30E8FC /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F6D46679673A45E2393DEE1E0F8B30EF /* 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"; }; }; + 4F0A795E85B0D7A97B3FCC403C30E8FC /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 24DEFC2A18442E593617403AA3472022 /* 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"; }; }; 4F0B3DB66387E10FBEB072D0B679124D /* FIRCLSContext.m in Sources */ = {isa = PBXBuildFile; fileRef = E146A1F6BDC7039BFE0424C45287E293 /* FIRCLSContext.m */; }; 4F11A9CF13C6D879459774E82AC101F9 /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EC28935A3AC29AF72A76302619CAD26 /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F47CF100481530E6DA413E521C19D03 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = CA9FF35AC25F983CCFF29F17AB6A5347 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F62FEC993F173EA5B75FB9AFF63D282 /* FIRInstallations.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DE227D5B2683F5431041C18D4E5A91F /* FIRInstallations.m */; }; 4F6830E3F6DD8CB7A6306B32FB83D855 /* SDWebImageTransitionInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BF8ABE2C9DBFE33CBFCA97361836DF0 /* SDWebImageTransitionInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F86027D80DF2D8E26627AB8A5EE9425 /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 926C3209CE2195F08D664BA0AE61D907 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F86027D80DF2D8E26627AB8A5EE9425 /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 529CE6A50D1AA01EDF1A567ECE96D59A /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F87F03E8E671A7FAE79D64F5879D866 /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B86D68BE787940CFEA113DDB1F1A5CD /* 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"; }; }; 4FA74F8D18F46473F21FB7A68890A156 /* FIRInstallationsErrorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = AF995A3FFE359817D816013A718B2520 /* FIRInstallationsErrorUtil.m */; }; - 4FA7A1FFCE343A5ABA9FD6FAF8235F08 /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 63E3089E4F4C81A686B0D80B91BF6DAD /* LNAnimator.m */; }; - 4FB5C48A4690E6E5F891BC2E6EA923D9 /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 246FAF3FB45F34BDF2AEE8D8C4AB302A /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FB88F0D253B715C034CB05ED1A2BDCC /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C2DFF1664EC73C434EA2C5FC8700E3E /* REAModule.m */; }; + 4FA7A1FFCE343A5ABA9FD6FAF8235F08 /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = E04E06FB3E393911F7F9520D61FEC016 /* LNAnimator.m */; }; + 4FB5C48A4690E6E5F891BC2E6EA923D9 /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 7430D5E2504529B94051ED26BED1D257 /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FB88F0D253B715C034CB05ED1A2BDCC /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 767C0956A29AA9D780CE509E60F2B123 /* REAModule.m */; }; 4FBC2BE9E6D22E669918E689C6196CB0 /* ReentrantAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DD3EF1C6D3DE055DAB3B1DAC5262D91 /* 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 = 264FEA32D7D792CD6C15D804EDFF7F90 /* react-native-appearance-dummy.m */; }; + 4FC056AA5B803E2F5E1BE4D5EB038A0B /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B3789F19E11AAEF9B51FEAE1BF45D6E6 /* react-native-appearance-dummy.m */; }; 50006F33DE03FBEC223EC914B1421369 /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = 68C0DDE9A4670D9179C8082E21650545 /* FBLPromise+Timeout.m */; }; 50077FFA928D5FE4958D1CBFA5D63B60 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A380206DA70CE3513CE8C4223608A4D4 /* 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"; }; }; - 503F96DD76B26B7F3FF816FB7F6E6B18 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = 4710C0F0782227065D030B37B9241342 /* RNLocalize.m */; }; + 503F96DD76B26B7F3FF816FB7F6E6B18 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = 65AB7EAD209C9E6FD6BD7349132A42DC /* RNLocalize.m */; }; 504624B6461EEC8B924857670A089B16 /* TOCropOverlayView.h in Headers */ = {isa = PBXBuildFile; fileRef = 20EF8A5EFAA0FBA223BF07799B52E82A /* TOCropOverlayView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 504B1F2BADD2E38562060891CB4B4678 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 64E504ED3E430BD7B4CC63B2CE0D2632 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 504DC67E19BF97F896369BC24282F55F /* ReactNativeKeyboardTrackingView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B13F1C3103B20C02469449ABBE5E29E /* ReactNativeKeyboardTrackingView-dummy.m */; }; + 504B1F2BADD2E38562060891CB4B4678 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BA696F8AE94237988922476FCE0272A /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 504DC67E19BF97F896369BC24282F55F /* ReactNativeKeyboardTrackingView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FE25F3788337BD0ECDF73F9057DC8EB /* ReactNativeKeyboardTrackingView-dummy.m */; }; 504E0EE4CD7110B5D286FFC1B25B07A7 /* OpenSSLCertUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4425B9ABA1EC8BA9E06BFEF7E4A75888 /* 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 = 641EEB6AE520CB5BB940CEAADD086D36 /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 506D0A188ADFE59D0461A44D18936290 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2611F44C748F67F18320B0D162C156DA /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50738319CBBADE87610C7672075BA2B8 /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D28A2F85BE3CAEE42670EA684A59DB8 /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 506D0A188ADFE59D0461A44D18936290 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0770546DDF91BB7E8A9B95B915902A8E /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50738319CBBADE87610C7672075BA2B8 /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = EE2AE208EB32955B9520EC77E30CBE5F /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5075C64463D4078585F5BB7F6AFD1556 /* HHWheelTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBF2091EACE8556C1666F1775EB57FF7 /* 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"; }; }; - 5082509A56848D19BFA98EC1C2F94BD4 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = B448A70A3DB1231697957139D2E35D54 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5082509A56848D19BFA98EC1C2F94BD4 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3647FEBB1E89A2E82DEB2CA1DA957E15 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5092A162D4642D2B110D42FBEBCF9B0A /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8D6ACD75F461F77ABF6D174E9B1955CB /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 509FFDC94A9F414B55EB263D94A05932 /* FIRDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = E8E63FC4A9FB03E11D4F0CBE6C587AE5 /* FIRDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50A813DCE536784396073D6FFF9F3325 /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 18BAC518D9B253658C06103C8A7A51D9 /* mux_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50B630F78B1534E3FCAE8AC80EA2B6F7 /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 130B04FC1D20D5FC2BE328A052C068D5 /* RCTTextView.m */; }; + 50B630F78B1534E3FCAE8AC80EA2B6F7 /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EDE8648D5FF43569B68A465EBBF93DE /* RCTTextView.m */; }; 50BAA98C56B5DF14D716F743171A2981 /* DuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 66E00D9CAD8231332D35C0AF09DB207B /* DuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50F08A7251C4923173965217FD06DD1B /* FrameType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF6463ED812E3EA6D67BAF193C3B5DEC /* FrameType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 50FC2F3A2C5E073897D7CE9A41C1B0ED /* FIRCLSDwarfUnwindRegisters.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B26A6BB2D65930BE87FCD4C97CE50DB /* FIRCLSDwarfUnwindRegisters.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1204,17 +1215,18 @@ 51069D69172171A69FF1532FDE6DD756 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 155A0DF860630C9B8B70983D145CFAE3 /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; 510794FD8810D34F0585981695F41366 /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A269314E0604B53C09695234BD812E0 /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 512DBEA49D8024DEDA62DC51372951F8 /* STTimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A82DB10CEF4AD624093C41C5236AECB1 /* STTimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5148E280A41252A244808DED61FA934E /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C83A4ADC35286164B5F8599DEBC1A36 /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5148E280A41252A244808DED61FA934E /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = F15B0373069C0B581AFDD9B519DC58B7 /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 51530798E52AC33DAA3D6F36C1502776 /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 83923B28B4BC340F923D52434BA8B60B /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; 519E971486075E2256EBE61AB02CF8CD /* TOCropViewConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F5591EAF7C1CA860B874A46EB898BE1 /* TOCropViewConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51B0202DAF50A4A3AEA12893E08ACDF3 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B0EB7CB6752B86283C260B92DC6A4963 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51B736CCCD3CB38027389E249AD7662F /* UIImage+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 15481B4DB7F185B8E4811FFCDA83CCBF /* UIImage+Extension.m */; }; + 51B0202DAF50A4A3AEA12893E08ACDF3 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 16834D1C57B198D6CD9CF014A3562FE3 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51B736CCCD3CB38027389E249AD7662F /* UIImage+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A2F720A66EB9BABFED4F0746D5D8628 /* UIImage+Extension.m */; }; 51D6D913550CBAC02E5FC6688CA8C0B4 /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B9282EEA2B5555D50FEA7D682DD1D2B /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51FAD417EA4FD4E827E97A94D5E306C7 /* Pods-ShareRocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 74FE0A6812B600DE9F54562F0F69D2DE /* Pods-ShareRocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; 523C230240B39A6F9B59F789FDC604EF /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = DA61E79A1DA4850F186B6E7FAE885B2B /* GULUserDefaults.m */; }; 524DA1EBC0DBCB2CDAECE02FDD129CB5 /* TupleOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 72896DB3773021CBCAA4BA8556F85EF5 /* TupleOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; 52B21C30C1FB0CAE5BA26B599DEB64D8 /* SKNodeDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 21D98DF7D62C91619BA55EC65985D124 /* 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"; }; }; - 52B4F45E848C7B05203984C347DB74B4 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 309CEA6A66463DF65D634545A38DCD2A /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52BD7411C6C5EDB27E2D469A2D9BE66B /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = EEAA543205F01FF09C3A376B7CB9223B /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52B4F45E848C7B05203984C347DB74B4 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D990D039D935D7251590D4FE52F88D8 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52BD7411C6C5EDB27E2D469A2D9BE66B /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DA080DAA2C68E3C259114C2BE131A47 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 52E39979F439AD373ADF1108067FD6F4 /* Subprocess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ED01487D2DE3631DA4C9618031D03915 /* 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 = 96A57B02FF30BD10957597C5A1C0DABE /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 530F9743E35929C87133BD8E083735A9 /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D1573A39C750B43D3F510471DBF5425 /* UIImage+Metadata.m */; }; @@ -1223,30 +1235,31 @@ 5354A7D0794A6F677891E95C6D801AEA /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 440FBC0646982458D8627FFBD5CB4C70 /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5375DDE6A2D2428D0B62F7B9BDE7FF2C /* SKTouch.m in Sources */ = {isa = PBXBuildFile; fileRef = 07C72485E4ED05674026BE51266B73D6 /* 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"; }; }; 53B7113A74825BBE592A96A84DDA800C /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F47541D370DC62C5B41AF9D8561AFD5 /* UIImage+ExtendedCacheData.m */; }; - 53D4A2B3294BA33749907BD8647AD4B5 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A1FAF62998B16AB4476447123A54E5B /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 53EBB3615E98732A1A5153258F95D2AB /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = DD090DEFEE78CA5F9A5C0824C58F138E /* 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"; }; }; - 53FD28D41CA4139580AE111671EA6D57 /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 54B4172F1418C6E30F22C3CCEA96A0F4 /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53C03D42096A37D4FE9104C745EDF977 /* RCTPbkdf2.h in Headers */ = {isa = PBXBuildFile; fileRef = DD919EBD2111F4C801F3A37826681F55 /* RCTPbkdf2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53D4A2B3294BA33749907BD8647AD4B5 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F1C30E13C60F490B8A7F2FC458DE848 /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 53EBB3615E98732A1A5153258F95D2AB /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 21A89669C3E92A0B7CDA713593450BC3 /* 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"; }; }; + 53FD28D41CA4139580AE111671EA6D57 /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B7DDC3BF1CEB94EB0FC69ED3007F890 /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; 54073EE40BD9B4238AEBF5770EFAB89A /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 15E8876BE0BBCE43FAAFB1D7617F3BBD /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5436D7BCC99615EEDABB5378F5D3F69D /* FIRCLSUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = CB86913A2964BFCED45D24480BB55482 /* FIRCLSUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54A0942FF2E79992B2ACA0DB1C356437 /* RNNotificationCenterMulticast.h in Headers */ = {isa = PBXBuildFile; fileRef = 0127220FAD3022C756CD003E10A1F727 /* RNNotificationCenterMulticast.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54ABDC1C16EEFC53EEC601AB821B1FA6 /* RCTVibrationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = E99986382AB553201CAC68181E0D19EB /* RCTVibrationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54BCA853DAAC904AE97C54D9E4800CC7 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 46418A223A7F5D933F71DBEF9675FC32 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54EA5DF6CEEE51AE1D97C677517ADFF5 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 270D7844C35BA0D746D45981ADB64C2E /* RCTTextViewManager.m */; }; + 54A0942FF2E79992B2ACA0DB1C356437 /* RNNotificationCenterMulticast.h in Headers */ = {isa = PBXBuildFile; fileRef = 68B8869BA4FD8B650254062E2F75C239 /* RNNotificationCenterMulticast.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54ABDC1C16EEFC53EEC601AB821B1FA6 /* RCTVibrationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = FC757556A994BE7779C4C9AC36E38587 /* RCTVibrationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54BCA853DAAC904AE97C54D9E4800CC7 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = E5A23D41EDB3D9DE4AF0258871C03FE3 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54EA5DF6CEEE51AE1D97C677517ADFF5 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 459121712E05BD42324D52244EC8BDF7 /* RCTTextViewManager.m */; }; 55027C288B5EA46BD4E26D342ECAA302 /* FIRInstallationsIDController.m in Sources */ = {isa = PBXBuildFile; fileRef = 74ED928C2460B4D9620EB201B2A1256F /* FIRInstallationsIDController.m */; }; 550D2352901F043B246B1D99D593F110 /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AEEA5A29B1E57C2E1292C34D4E013EC /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; 551B5E3B560EC006D5FAD9C21C88087B /* Parallel.h in Headers */ = {isa = PBXBuildFile; fileRef = 926E963CD723D74A05E1CBC44724BBEF /* Parallel.h */; settings = {ATTRIBUTES = (Project, ); }; }; 551F5E8C6B3ACC04559C5E14ECEBD7D3 /* ConcurrentHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 417E4FE64BADEB1C33CC9305F6AC4BEF /* ConcurrentHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; 554920A9489ADD1F8EAB6770F610866A /* AsyncServerSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A89CEB0219B928E95E7D2561B3A7949 /* 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"; }; }; - 554EBC52FB62A18AA396D4D85D46626B /* RNFBCrashlyticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 9454578DD2DBF791A1854C6669918622 /* RNFBCrashlyticsModule.m */; }; - 556C76E6F8C956CAA7A39E375D4535B0 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = E81376F4DE90D4131392325330C4AE4B /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 554EBC52FB62A18AA396D4D85D46626B /* RNFBCrashlyticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B51DC11275B6010DEF513501C70644 /* RNFBCrashlyticsModule.m */; }; + 556C76E6F8C956CAA7A39E375D4535B0 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = BBA166BE67A84D2F441EF657DC27E453 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; 55755FF66BD8ABC78DD090E94188A763 /* ThreadCachedLists.h in Headers */ = {isa = PBXBuildFile; fileRef = B77BC85CBF3600F35E8CB3E735700FC7 /* ThreadCachedLists.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 557A6B876C549A6F26C4E93169856944 /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = B87583B1A79ADB92AA6A3BDEBB40FB2B /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 557A6B876C549A6F26C4E93169856944 /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = CB3EEAA2837CD8068F3E6D72B69C1062 /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 558BF4D03AA6208D974D9C0157B9ED4E /* TOCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = AE3D3772DFCABE80F393AF62F767E9DD /* TOCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5590437394972755BDB7FD9DA85BBF4A /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8936A4E53BCF8BA5CF715044BD01D0A3 /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5591AD18A453D3B2AD2D7DD15B14EA16 /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 45ABA523C1CBC35147335C30B07433F6 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 55A29D332C49B325506C5763B2D1607C /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CFE7357F5C1283C60C5FAF87D994788 /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; 55A5DE62033605B41B6C9578508197ED /* GDTCORLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CBD743117FFF34AE1E170CE707D261B /* GDTCORLifecycle.m */; }; - 55AA4C2C9A1963A09153031B91C9AD83 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = B5CB3671277BAEC0BF91F2FBD3A42D80 /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55AA4C2C9A1963A09153031B91C9AD83 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A184EC5672DB3B74B18D0B4883781A3 /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 55DB238CD9F02F78D1E418B96104D2E2 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 90CE73A36750830EBB13C0BBA60B4644 /* 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"; }; }; 55EA8380C02950332F6EB64F0788BB83 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7F761D1EB806D3F7FCFAACFF6A958008 /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 55F72D6B2A29619435CE8615E7803975 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 787483F19EE493FB9AF69379471E39CA /* dec_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; @@ -1260,130 +1273,131 @@ 56BC2A3E8DC876F371CF9E50660BBDF9 /* FunctionScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D08036CD5C40753B4FBBD6B3A57F4C /* FunctionScheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 56CA8A399D65FB392554775B2A4FC712 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 0578FBA19D9B1209FBDD7387C3388360 /* UIImage+GIF.m */; }; 56CC29AA7D6ECAF485F56ACF79A62324 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = F08B9575F0B6EED6845FDE7635D3E2E2 /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5708C5F9EA0EE9EF0976F3C5D2A77474 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 79773EA522BCA7FDA74A1232B1F5FB93 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57157DC2187A67BB65F43F4D6A06A748 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F66F4E471DF620EE0F33A0732775F499 /* 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"; }; }; + 5708C5F9EA0EE9EF0976F3C5D2A77474 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9953D75B31B4F5EE4A8B43B1F7A626F2 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57157DC2187A67BB65F43F4D6A06A748 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BF305FE2C8820749C8D808B72932E5C /* 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"; }; }; 5730650DB2DEAACDDD31A30086AC02D9 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 8F9DCD272640E2D4760895BF139750E1 /* filters_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 57311B88F8BAC5DEACF9C463A10AAD80 /* RCTAppearance.mm in Sources */ = {isa = PBXBuildFile; fileRef = E0F1A9E6DFC12D5FF1B791FD3EB348D0 /* 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"; }; }; + 57311B88F8BAC5DEACF9C463A10AAD80 /* RCTAppearance.mm in Sources */ = {isa = PBXBuildFile; fileRef = AE276CFC301FAA07309CA152AFDD4B2D /* 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"; }; }; 5741AFE087A083C8D0D5C9D5F646A707 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = 5734D931BDADDC1C447BCD831D3D8E7F /* muxread.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 576D1D3D0255B54FFBDDCB00855FE397 /* PTChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = F29CB76B10566F662F2F1D6C326A8205 /* PTChannel.m */; }; - 5772F5811C6F469C0DECBC266DC64E9A /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EDC5E5307CBE6D8B85172A4F9D1FFE0 /* 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"; }; }; + 5772F5811C6F469C0DECBC266DC64E9A /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 4285F7B6AFA30D47C6E9A01C3E45ACED /* 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"; }; }; 57779A997F204BED973BB03DBF2B8190 /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 1031EEF71140E63F5EAC6DE513ECDABD /* vp8l_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 579F4CD6E4E3D832752807C6368C5943 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 02A1DAA448414607CB008FC34D21F0B6 /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57A569585BEE2227B66870753B09889D /* RCTBlobPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7D8DDE5B92253392601ADE5237F97ED5 /* 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"; }; }; + 57A569585BEE2227B66870753B09889D /* RCTBlobPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 63DFDD6752C2CE772D1C13A8ECB3FA57 /* 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"; }; }; 57C228A63490E86D0339DE0E72FAA9CF /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = D27036E21C986400F5F94AB52C5DDF5B /* SDAsyncBlockOperation.m */; }; - 57C230556569E866AE4F293CBCA4F9D6 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 06E0DE5F679D0A42FD36AB254B21D6CD /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 57C230556569E866AE4F293CBCA4F9D6 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = F4553F99B9236CA4FE8D7DB5CBC4FEF3 /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 57E23479ED5C21BA10F35EE9CA6AB38C /* FIRCLSUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ABE418FAA33CD5D7A86D40E289070AD /* FIRCLSUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 57E28CD0D39B137CA6BBA829B38F0544 /* GDTCORRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = FFCA39C5F531DF1B4083E7C9E7EAF51B /* GDTCORRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; 57EA16615D9CD9D0C45DE091246065B3 /* FireAndForgetResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A58A2DF8CAF4BB6A8F111A113CADAF9A /* 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"; }; }; 57F2E9384A1C3DCF46CB5242DF03BD36 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 2205E7C347D94443D6EC356D29E6FBA9 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5835A6EE119F67B3B5DDB92D53520B25 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 39A10BB3C37E130890781D22BF31F4A0 /* EXHapticsModule.m */; }; + 5835A6EE119F67B3B5DDB92D53520B25 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 42E8C6E9D80605B785ECE14577FC3FF6 /* EXHapticsModule.m */; }; 58528DCA2CD999D4137C83D043A9FC8F /* FKTextSearchable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DB0863FEEBA79B7135ED6D56CBA8FE4 /* FKTextSearchable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5876730F42F0DF681374CE70D9F72BE5 /* FIRCLSThreadArrayOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = E4DAC6F57EF60757FDE43DE970B2C0DE /* FIRCLSThreadArrayOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5877B0296F58EC9036F659D66A75DE96 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 436502371746803E5C159209760C5A3D /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5879D02FFAB102187357BDB78AAB8E5F /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = BE52A37A1BE7982A06FB78B7CE518E5E /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5877B0296F58EC9036F659D66A75DE96 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 05C06ED8DB2D61102A75E06F2D6B29E2 /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5879D02FFAB102187357BDB78AAB8E5F /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 49DD624E0EB7E688534649D7775031F7 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58A0D03F97F8754E1F8EC5EAE1911057 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = F5552A954FD3C3E5AEF301461745A4CF /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58A135D3A7C85E720C02F34E315BCBF0 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 36AFD0C23EB836C4A4255F7C363E7F0E /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58A14416A831C60BB7B5F99F3971D040 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = AF64C327CA5F3EDF8CDAF5B102C443B2 /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58AEF2D987F14D4D2AF6D28C7F7F4CF7 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 9C045DC314E85068EB7D60CC0222BF84 /* rescaler_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 58B6EFE762474AE5961B3AB429CF6ABE /* RNFBSharedUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E62F4993A539C76D40D50EC63F184707 /* RNFBSharedUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58DED70320A4E35965786B73000D3FEC /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = BE6DCDB3EEEA0F4D656FB2354B1F3C84 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58F03722BFC5D75B7DFFD49D182CBEA7 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 03E5EB47B6A3A71B44638D9608347DF3 /* BSG_KSLogger.m */; }; + 58B6EFE762474AE5961B3AB429CF6ABE /* RNFBSharedUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 885DA116CE9D078A43342E34C643CAE1 /* RNFBSharedUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58DED70320A4E35965786B73000D3FEC /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2906C60C0A8B4FABE04A66BE81678F30 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58F03722BFC5D75B7DFFD49D182CBEA7 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 60DDBC030BF5D5BB45502D31CB5FD10C /* BSG_KSLogger.m */; }; 591767BC4095B3A9AE9EEBC3E6F982E5 /* FIRCLSMultipartMimeStreamEncoder.m in Sources */ = {isa = PBXBuildFile; fileRef = DBA1A78B72CAF7F6F2B4F7DA48BC50B0 /* FIRCLSMultipartMimeStreamEncoder.m */; }; - 592C0F1AC9423D3E49AF0B1BCB4B5F11 /* EXSessionUploadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = FBD189F2249AEF5C6A23662E07C1B9CC /* EXSessionUploadTaskDelegate.m */; }; + 592C0F1AC9423D3E49AF0B1BCB4B5F11 /* EXSessionUploadTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F390769550F9EBFA38C6467A73BC886 /* EXSessionUploadTaskDelegate.m */; }; 592D531A0BCBADD41C6B8C1ED4C73EEF /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 02471DCEA92594DDAF0D982FEFEDA153 /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5960B5A83845F245A542319DB008CE20 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = EF1CB6936684CFF23AB137B5F8CFB337 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 597C4F753121B6E2CF3F91AECCCACD95 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = 52C0FFC9EEA2DA32AD3BD306C03BF09D /* 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"; }; }; + 5960B5A83845F245A542319DB008CE20 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 00313826D7407AEF8938304DA08ED092 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 597C4F753121B6E2CF3F91AECCCACD95 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = E273F0F5940CD5884765AB3CA96E2366 /* 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"; }; }; 5990C386CFF4495D345DE4BD9B720B97 /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 99C9CAFFCFE22274385F710F072B29A7 /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5990D046CB71FA7ADC5C8823B06A42A3 /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = DC838C180D88DB09B7730773393A161F /* GDTCCTUploader.m */; }; - 59985AFE0F5998FD37A9440CFD21D4D0 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 55ECCD1BC7B705FEA3AC46F0330DDEED /* BugsnagApiClient.m */; }; - 599BFDD335524A9CF95DEC1AD1D1C2D8 /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = FA31742AD2A94D363D05E51A34ED87AF /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59985AFE0F5998FD37A9440CFD21D4D0 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = AAF6DFD1680B4843D7869192BAFB762C /* BugsnagApiClient.m */; }; + 599BFDD335524A9CF95DEC1AD1D1C2D8 /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 16DC1CB0294D2F0F40D23395F18527FB /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 59AB2E9847C52F6350C5CA42F64D9B4B /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = BDD5F79EA0CDF85DB4991BA3920931CB /* SDWebImageDownloaderOperation.m */; }; - 59AEFF4946A03A79C45639C093DE37A8 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 904B62DA18A599479B46FB4C7413D88B /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59AFFBDA7A1CEAA4938A2897A836C114 /* UMPermissionsInterface-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FE34BBB59F6F1F6F957581C6CF9D2859 /* UMPermissionsInterface-dummy.m */; }; + 59AEFF4946A03A79C45639C093DE37A8 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 03FE4AB4BDB75C8B503A404B32E25221 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59AFFBDA7A1CEAA4938A2897A836C114 /* UMPermissionsInterface-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B99B36C5DD3E7F3D880AF5BEA7CE12FC /* UMPermissionsInterface-dummy.m */; }; 59BB55E1204529CD16E1FAEF746D3318 /* FIRAppAssociationRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B7C9D2406C15B206C59E830868A9DB8 /* FIRAppAssociationRegistration.m */; }; 59C7F51036C7FC05F1C474145584C867 /* FIRCLSInternalReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C21AF31C080D37F901A28DFD46A3D44 /* FIRCLSInternalReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 59D2FF7D199E0FAEEA5D0C5C60C85760 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = B557FCECCAF95A2A0E7178A3ABE68CBB /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59E39951CBDBBF3BE34F50771F0D63DA /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 86C399F396152F8A49704DF5C9FF453B /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A0A242D618FF39736DA9990029D99E6 /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 86F26F35353333A6BB22CEF6AE743C17 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 59E39951CBDBBF3BE34F50771F0D63DA /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E866939F3C5BDF454AD1CC3F9D917364 /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A0A242D618FF39736DA9990029D99E6 /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B8078DA261F8C1EF77F9DDD4E1CA3C3 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5A2DF787817F7D1F598A859496117313 /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = CBBE73D808462C2869392C6BD48CA4E5 /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5A4315CC7868A0AA71F72B6EB9DF3A8D /* HazptrThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0A933B12CE54B9A28EC1E8EFE6ED2C46 /* 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"; }; }; 5A8459CCC3BF00828D32BB4D35ABA743 /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = F53573B1146133FD1FC6647F31DD6A94 /* SDWebImageDefine.m */; }; 5A89504301D62525F736D0050854E4CB /* SonarKitNetworkPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = D7FF584FEF64FAA8ED31EC8AD274FABC /* SonarKitNetworkPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A9A8ACBFE60F86E70A30B3FC6C0EBD8 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F2FDDB18843EFA08C47EE7B5D201DA8 /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A9A8ACBFE60F86E70A30B3FC6C0EBD8 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = 876523F4E547D2A85EF38C20BDB92CB6 /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5AB7883D6F7123FEE9DE354AF2FE9387 /* Atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = D782570526354C26DF397665643D6BFE /* Atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5AD4160A2F0C66183F121D80CE0DC65C /* FIRInteropEventNames.h in Headers */ = {isa = PBXBuildFile; fileRef = E34463439B9C11992D90A9D81C5A5B60 /* FIRInteropEventNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5AF92807EA677D3DE6A1F41612CB12FB /* FlipperKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B761FA89A1BC5C8EA3E12C40C8E2F19 /* FlipperKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AFE1B18E3A226BBDFBAC0CCAB6A7B98 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = CAD71D94ADEA26A24434DEE519D7FAA9 /* BugsnagSink.m */; }; - 5B5DFB3D4BCE9CA91C1770AF8065D634 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 315567A644A3A4F6CDE0EC2444F28DF2 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AFE1B18E3A226BBDFBAC0CCAB6A7B98 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = FB6E0AB584422C218E5E04B4224C15B2 /* BugsnagSink.m */; }; + 5B5DFB3D4BCE9CA91C1770AF8065D634 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C5EB1CBCB95CE8B9479AC3F3A4533AB /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5B5E44100CB0A817A1A887A5D865E197 /* SanitizeThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 73C1601CE7937FE02A790EB41B8D37E2 /* 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"; }; }; 5B5EBC23448AA1E36B9E489003457385 /* ScopedEventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C26C01A38DB126D61350F53D40B29C6 /* ScopedEventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5B648720A85B4FD11CA2665BBE8EF6F4 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E2A22AABBED559B7526E72EECF6898A /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5B8B332ECFF0056F7CEC66BD47604656 /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = D6FA790EC256A7F768FC0C91157E5C4E /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BA5729F9275934BF28DEDD4B27EED14 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 21928936A97A88A9FA82B955E7BEB826 /* 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"; }; }; + 5BA5729F9275934BF28DEDD4B27EED14 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AD7C0CFB168B13813F11A44EFFA68E1 /* 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"; }; }; 5BB2BDF346E8282D6A5E781D6BB77864 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C476D8F58C1AB32EAB39D6ACAF1959E /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BBA30727C42055AED7245E6E95AD76D /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 387A35BC7B174684B13A536007827FAA /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BBD3BF8F1D8BCE5424520F1C5F597A0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EB5007C5F60CA9B86B49F973FAE04CE /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BBF60294A35EABDD416CD49326D9A68 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4651C6A79F9C61CE6247A62232BD6BC8 /* RNCWebView.m */; }; - 5BD0E692603249B8813A7FE3B2711CA1 /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 5EE32F40D2326C72907CA116A1204685 /* BSG_KSFileUtils.c */; }; + 5BBA30727C42055AED7245E6E95AD76D /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = F37FE0D11A848EF44ADBF866D71C50E8 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BBD3BF8F1D8BCE5424520F1C5F597A0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 34565FA4951F2E84CF439378B20E8891 /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BBF60294A35EABDD416CD49326D9A68 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D508ABC5E0AC0E825E1297A49E72D35 /* RNCWebView.m */; }; + 5BD0E692603249B8813A7FE3B2711CA1 /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 34F97EFB67AC70F7EBD4A36D84479A74 /* BSG_KSFileUtils.c */; }; 5BE1E55B90CC535E7C3CF5EA357B3612 /* Base.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C6BC3DE74F63D43695D38CCC4B8FB41 /* Base.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5BF1A5E804B3CE751BF48DC4A1AE077C /* FIRCLSDataParsing.c in Sources */ = {isa = PBXBuildFile; fileRef = DF498B8A4D1A9565313C90AA12B4E086 /* FIRCLSDataParsing.c */; }; - 5C06E36CD574FBE8FCDF4DB23632E79F /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = ADC8934F7ADFEFF6A171E337FF1CF90A /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C32CD8A3B4E70301043B885EBBA1F69 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = EC4ACC94BB5B178BC3E38993C613921C /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C06E36CD574FBE8FCDF4DB23632E79F /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D049BBBF6C34C073C4DCD32F6BA1F76 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C32CD8A3B4E70301043B885EBBA1F69 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = B7F87683167423E18918050232C0F9F5 /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5C39E2FEE8F0F08EB1148A3DDC2CCAD3 /* GDTCOREvent.m in Sources */ = {isa = PBXBuildFile; fileRef = BB146CEA44AA1120318B1FF2DC15E9C9 /* GDTCOREvent.m */; }; 5C5C304AFD8755D076C199FD1DF4E623 /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = F79212FF1BC55E2F5121E2DF04940601 /* FBLPromise+Then.m */; }; - 5C6857F60370853F2C17F553D38A97B7 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DD45046AF7C0A8AA356137129876F2B /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5C6857F60370853F2C17F553D38A97B7 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C71220D0ED345A50FB432737110D26A1 /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5C6B3EF91CF6927788129874C2A85DC4 /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = CA07F830D3DCA4E1EC5DF4D590D93872 /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C84C9688B9482E44E569DBCC7654D0E /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C4DD4D8A2E599E933F49CABCD377CB9 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5CA6316BB302B36D6AE2B4A483F3EAB6 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = D7944E5A513971BF665F70699EAA88B3 /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C84C9688B9482E44E569DBCC7654D0E /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B0575D2AF8AA7F6CA50A8B39A9F1B828 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5CA4ED3E9C1F4A99CD4894C9F5BC72FA /* RCTHmac.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FBB57C4E86E8DBF43BB7E6E576B6FCB /* RCTHmac.m */; }; + 5CA6316BB302B36D6AE2B4A483F3EAB6 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 8470510C35E133AB915BE1101362065D /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5CCE3FB238F67F4A1AE513C4461B1463 /* RSocketClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 928E9DFC14EFAE16D9BC8FA822B681A6 /* RSocketClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5CE2B094D3A1BC2F3A5170B123AA18D3 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 03C1D3D0CD542E6B9E4B92D290C1864D /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5CE2B094D3A1BC2F3A5170B123AA18D3 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 03770F5DFA6E69008D6F336601625A9B /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5CEC8F544EB06DB67845490887ADB7EB /* SKHighlightOverlay.mm in Sources */ = {isa = PBXBuildFile; fileRef = B6E275C51BEDCA15C5244D977D306D7F /* 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"; }; }; - 5D1443CA14941EC385B1380A3F3FD2D8 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = D1E113F1A3AAF6788086A286702821B8 /* EXAVPlayerData.m */; }; - 5D18417DAE8D08F832CD6D5E524074D3 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = C52F6244DBE87444847755B2FBA95A2D /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D1443CA14941EC385B1380A3F3FD2D8 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C689CCE45F014929C9A2B69B9A6FF60 /* EXAVPlayerData.m */; }; + 5D18417DAE8D08F832CD6D5E524074D3 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = A99D233D751AFB80375F9B7D69233B74 /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5D1C8EE105AF6A41604212C9FBEC1B04 /* TestObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = BD779A9FB857CF6A75245FC41B4C925E /* TestObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D2AA96D0377AD795995536E643B197E /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B5950713E47F66BC2696784B9937E39 /* RCTBaseTextInputViewManager.m */; }; - 5D3305D1EA225AA0A600FC9AC3DF6885 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D1E5807E6B2E750827BEC4F53052268 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5D33C608DD5ADB443C60BBCE274EB8D2 /* RNCMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED06BF265443B3E425E82A48801B664 /* RNCMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D52EC77A0FD9DDCF15A0892BFF30724 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D8B7A08D48B7DB41DC6F5B3CB3FA1EC /* RNNotificationCenter.m */; }; - 5D66498902DD47AC15F5F81AE73F7F2A /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = D0D2CD5DF7CEA11922512B699BFB6E5D /* BugsnagSessionTracker.m */; }; - 5D67D09734F57238C1C5E210241D8EB2 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 63863C629C26593668F4CFC664DEE81A /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D2AA96D0377AD795995536E643B197E /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ED0B2E383913471B07F3DB0D45AB03CA /* RCTBaseTextInputViewManager.m */; }; + 5D3305D1EA225AA0A600FC9AC3DF6885 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A6C8BC8D9E8F68B539AE68210D40977 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5D33C608DD5ADB443C60BBCE274EB8D2 /* RNCMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F863EADB4843D8385746B415F9E6850F /* RNCMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D52EC77A0FD9DDCF15A0892BFF30724 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 93318E50298AE5B4F38C06E4D233A00E /* RNNotificationCenter.m */; }; + 5D66498902DD47AC15F5F81AE73F7F2A /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = A5A38ECA87AFCF18D64753DDF96D020A /* BugsnagSessionTracker.m */; }; + 5D67D09734F57238C1C5E210241D8EB2 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A58AA1B828A3AFCC95B17EA5F9930D9 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5D85E4597A0EA4601AC058FC8A336266 /* FKUserDefaultsSwizzleUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = D4EBA7BFD322A0C942FE9C93C965A06A /* 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 = 8B7E9AEC5A6084B6CE988F3D084D7404 /* 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 = BF59D3DDFDAEAA2F0B0DD8E6E780975F /* OpenSSLUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5D94C85521F651CAF78D0774F739EFFE /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 3894865D25AB651FA49F4CCE3BC615E6 /* config_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5D9925AD96702CF790A19B660AB4A123 /* RCTImagePlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1C45981E5757F0143DC0935F319FEA91 /* 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"; }; }; - 5D9DD851DC56839DAE74C8EF783BCEE0 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B05CA75F156B8CFF6045C4F3F87CDC5 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D9925AD96702CF790A19B660AB4A123 /* RCTImagePlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 819CACF06048F7AE075942C888161DE3 /* 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"; }; }; + 5D9DD851DC56839DAE74C8EF783BCEE0 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 44D935F32D8CE410B34058A28A92F0B4 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5DA0F137CAFD3FF8D4B8A1605BA3AC12 /* TOActivityCroppedImageProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = AEBEB3C7880A71951B087BC7F00FD063 /* TOActivityCroppedImageProvider.m */; }; 5DA4697BAFAFAA6BFEA13B36B76B57AE /* Libgen.h in Headers */ = {isa = PBXBuildFile; fileRef = F82ED80F25FFBD6E7698FE3F774BC2A7 /* Libgen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DBEF4CE82FF2ECB983B8FE169924C38 /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 89C0CE47EDF6D262EF6412AA95303E8A /* QBImagePicker.storyboard */; }; - 5DC27AEDBD9E3EE36BF2FE1912926BAF /* RNCSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 21FFE36BB40CFE4C77A4AEA8B81DB950 /* RNCSafeAreaShadowView.m */; }; + 5DBEF4CE82FF2ECB983B8FE169924C38 /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6E3B31F988C11F24A8A63514D5E4F17D /* QBImagePicker.storyboard */; }; + 5DC27AEDBD9E3EE36BF2FE1912926BAF /* RNCSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F5223EA2733B17B4B781245325BDA74 /* RNCSafeAreaShadowView.m */; }; 5DCE172EC75208EC2A3189C915EBF678 /* EventBaseBackendBase.h in Headers */ = {isa = PBXBuildFile; fileRef = AC5D0745B0C7FB9596507A0F02F18491 /* EventBaseBackendBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5E14F58CA03D0529A4624D7BF7352794 /* FIRCLSReportManager_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C5281CA90C4EC355AE34A31B824217B /* FIRCLSReportManager_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5E2F5CF69877E4883E32E45DE05F14EC /* FIRCLSByteUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AFB594654333C6F38545DF653E7E2C3 /* FIRCLSByteUtility.m */; }; - 5E528CCD14263B8B63AC2920919A10D8 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DDBF72E6FCD984F43D2C99C7E38D7A06 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E528CCD14263B8B63AC2920919A10D8 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F2123B0F45A9E9D1E06385AEFB5EAB88 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5E66755E582E9B2BF7DAEB72E960992B /* GDTCORUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 18B06CE694CBD2D741FE69E440A7CCB3 /* GDTCORUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E8F6FB0B98806087C46839D3C543998 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A9B577A6378CE182C205BF8D566C836 /* EXVideoManager.m */; }; + 5E8F6FB0B98806087C46839D3C543998 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FEC334AAEE7FB1D25D55F1D998AE025 /* EXVideoManager.m */; }; 5EC68AC4CF4EA48990F8D1086394208B /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = 67410065864D62A7C742E81DB1DBBFE8 /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EC928C391B58C15B771ACAE740EC237 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DA161D3357BDFE36F245A36964724A8 /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5EC928C391B58C15B771ACAE740EC237 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D8A8277DB1354588CD4DA65CFD95E43 /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5ED7D21591BE3434BAD27251B09FC2C4 /* ScheduledSingleObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F70C77218EFD104037D032067915659 /* ScheduledSingleObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EECE9B42ECC9A135050057735F6CBA8 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = FAD6926DFBD96416DF1301F4A8F8D53F /* 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"; }; }; + 5EECE9B42ECC9A135050057735F6CBA8 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 39846CE0522E32C21F0F7C477159F7AA /* 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"; }; }; 5EEE9C81EFF578DA8F518B1C0AB9CB32 /* StampedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = D5C3A3ED07819AA58E2388510FC12EF3 /* StampedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F1141A8A8EF712CB0E648CF0BC69DE0 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E9FBDC2494E35C34C1B001EEC2BACA5 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5F191C5FEB9571699CFED133F0E444D1 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 24D26B10E97574156D744D78C628AF3F /* REACondNode.m */; }; - 5F271955AD81D975BA6F2DF3602D266E /* RCTActionSheetManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7AAB326CC1D6EC158A737333A7A24CB1 /* 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"; }; }; + 5F1141A8A8EF712CB0E648CF0BC69DE0 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = DE4A46E63839FD3C57A35147F554A389 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5F191C5FEB9571699CFED133F0E444D1 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E0F7E02DBD6EA79D7F7C6571EE5C47FA /* REACondNode.m */; }; + 5F271955AD81D975BA6F2DF3602D266E /* RCTActionSheetManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 48E0F76A4EC6ECEC66C37C0DDE3738DB /* 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"; }; }; 5F2E203D0F81E6C57DAAE8CFAC56710B /* AsyncGeneratorShim.h in Headers */ = {isa = PBXBuildFile; fileRef = 14BCF143FCCF9CF8EDE4D9AE61AD398C /* AsyncGeneratorShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = FDF70BEB12C406F322F9EE7573864BE1 /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F437566DD928400BBB653E5DE88C7CF /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = 69C0A8F9E2B9388FCF54A5CB9B7F41B0 /* BSG_KSCrashC.c */; }; - 5F5E1E94C537FC91F2019EAAED46401C /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = 38831898CC49426083C7D32DBDDDDFB2 /* BSG_KSMach.c */; }; - 5F73A1810FE06CEABFF159E5B86FEF71 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AFAD99F891D83ECB26F52872B68D810 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DE36E839AB1282F9C263A8AAE938666 /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F437566DD928400BBB653E5DE88C7CF /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = 5A552206A525124387BA9CFBF67871A7 /* BSG_KSCrashC.c */; }; + 5F5E1E94C537FC91F2019EAAED46401C /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = CC7862F62BACC115156A6724857486F5 /* BSG_KSMach.c */; }; + 5F73A1810FE06CEABFF159E5B86FEF71 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = E260E0945F4241D783642888D16FDEBB /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5FDFDE7CCBFFAA68D99152D78C02ED39 /* AtomicUtil-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D8BFF2C75F1D020BB8BADE27D4F3A221 /* AtomicUtil-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5FF1ABE162C13243EEB4010193EC6C22 /* Combine-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 910B713ED3D194484C37B0EA32185B88 /* Combine-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6025F4909E87933FAA58496F91F79895 /* FIRCLSFABHost.m in Sources */ = {isa = PBXBuildFile; fileRef = BE7CC2BAD08A670CD2B94687FEE57CBA /* FIRCLSFABHost.m */; }; - 60587C29BD6CD73367F2B20444A1B9BD /* RCTWebSocketModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6040B3A3DF348482A355B16BE00DA7D1 /* 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"; }; }; - 6087E16A863FB0912075FC805BCCD1E3 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E54C641E5BC5AEA752031C4B73894FA /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60587C29BD6CD73367F2B20444A1B9BD /* RCTWebSocketModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = BA332493C5E2E9FFE7EDF2ACDFDEBE35 /* 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"; }; }; + 6087E16A863FB0912075FC805BCCD1E3 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AEF4E8A7EA21150463BC8A9837C4490 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 60ACF469233CA22469EEC756ECDB055D /* LifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = E984569071FB6F805DF876395BE2BA3A /* LifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60BA1556BE18AB1CCF03CCE1C3E4752B /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 31F5620E7618564781F88264E1F9ED35 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60D19886AE1003521289EC8A46C59878 /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 85A1FEF2C4E89DE861256ED8BE1A4F41 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60BA1556BE18AB1CCF03CCE1C3E4752B /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F3ED5FEEBA746FC88B23257F44CF5D3 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60D19886AE1003521289EC8A46C59878 /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 57E59EDB17E56B1BB7FAABF94FC5D7F5 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 60D5387F2D3F4D19D91912339054162E /* FIRCLSURLSessionTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 4829966A3B3A403D991368353ACC829F /* FIRCLSURLSessionTask.m */; }; 6137BD4551FE76BF6016B5DDF2572CE7 /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 2C95AF02519A69C89954487A23FA6372 /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; 61475BE3E93F74078F49B9CCA07019B8 /* Stdio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFEDF1AF19BFCBED0DC57C5D7820D920 /* 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"; }; }; @@ -1392,102 +1406,103 @@ 617530231FB583E62F59AFF636820064 /* SanitizeLeak.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AEB6BDCD96FFBB6571C832D2207C2FCC /* 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 = 838B6681E41D0760A7B5DB7018433C4B /* ExecutionObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; 61945E2D534282269C85FC62CD40BF23 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 09152A09A11A3594B0E7948CDC8AA185 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 619D6F16CC305CC853D675CD34B313E7 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 693DE983F60B78C8C8C81442F39063F1 /* QBAssetCell.m */; }; + 619D6F16CC305CC853D675CD34B313E7 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 97277C5DAD93FA668839E3B22ECC3F4E /* QBAssetCell.m */; }; 62155DE9CF2AD9385BF11125981D1015 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 20FDCCFB85C207F8487526B90F487438 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 621D406A7D59BDA14F904CD4B069B21B /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AB56DD7E5299F231F2F69DDEC40525C /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 623137AAC38C2C45CFFB6C912C7F2AD2 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 01802F83F42FC8D13032035127C05A90 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 623137AAC38C2C45CFFB6C912C7F2AD2 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F0CA991D1B308FA5DE4E5F6F48509F2 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6238678941BD031252A3C85E53C82C8E /* Sched.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2258553FA321966F9D02EB6B488D6A5F /* 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"; }; }; - 624C06C6B3D3A0EA2CFE29E6912DBC5E /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C974638B279A70C7F30601F69AD7781F /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 624C06C6B3D3A0EA2CFE29E6912DBC5E /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = B908E56D81A49B17826F2EC8ACE1CCC3 /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6250372D9758B2074CD9CC7B09ECDFA2 /* SKNamed.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0C8E10C626F772D00220D987C7A752A2 /* 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 = 573255DAE711D993A5B0044BE6D34A1A /* alphai_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 628C6483159FDCF38407770F1ACE903B /* KeepaliveTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5552BD6DE3171ADE0B1E936EE64D0B3F /* KeepaliveTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 62E6546B51CBC0B58686EFCE779EE529 /* FIRCLSFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 14728D3BF46891D85321ED2A8C4B7D78 /* FIRCLSFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; 62F70755F26BB87C793E3F843FAE38A6 /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = BD96F1F174D44004F2B151A5D9F6E827 /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 637F6BC8B3934A6A04A8D049A65DAA3D /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = B448A70A3DB1231697957139D2E35D54 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63AE36C890CA39ABC44461BF2EA89A41 /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C91429E12ACB86DA5CBA12CEA72B630 /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 637F6BC8B3934A6A04A8D049A65DAA3D /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3647FEBB1E89A2E82DEB2CA1DA957E15 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63AE36C890CA39ABC44461BF2EA89A41 /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A7CD66AC4A0E175359962C75D0CAEA5 /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; 63CC635B37FED8C7DEF027CB5462EA7B /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = C6197429E2F18649F9A7CB13A6ABF9B4 /* bit_reader_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63E9727634DB78A12A37437EC21C883B /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = BDCDEFE731D4FE20F8FC6E23D341D96F /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 64230B6EB4811C5438C314C832B5E9BA /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 650F439A1D0EBA6D5D8E2A5830DBF735 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63E9727634DB78A12A37437EC21C883B /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = AD566F4AA43AE88A1998632B7D9A9352 /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 64230B6EB4811C5438C314C832B5E9BA /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = FF59C8D26BDF413CFCB74B2A2F3EB674 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64352F81329BEC21DFF10C000BE8640A /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 06F217CFFE8C10DD44F2F84C372C197C /* SDWebImageDownloaderRequestModifier.m */; }; 644DDB8CB93BF7067201BB26F2D53D10 /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F1F8F002F139155D76E8BA0939EF115 /* 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 = CFCBC0F5DDDBD51A7867EBB782D07E63 /* 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 = 88F12DA062AF850E2FEAED304CCAEE06 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 648C1EE6D41D617836426E185AC5AAED /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = A456557C80F42FDCDB18CF95272BD808 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64A47FD4FAEB511C0AFB59A51F6D6A3C /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E9E5D83BCE0584BB28677D4CDDF08DF /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64A6867C7625EEA47C99B617872A539B /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = CA1555768D8D86414AF37BD34221F823 /* pb_decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64C08A1A299F65ACC045C824A64A0DCD /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B392F3048947A5EAFF082EB795E785B /* 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 = 64C4C29F3B314A8C3784A2022026B0E8 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64CE86C677FE58819125DF1CF00FD92D /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 148ADCEAD1C5049EB6E80C37B5C55E8A /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64D7CA904E08C542214D6273B49A823C /* IStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 65FBA1C4282B51EF47E4157E496FE8AC /* IStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64E791612A7D27AE1C4409A981341CBE /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = C9E8E7182D11738945BBA52D71FB008A /* lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 64E83E53B7F40F2CC0A0CF7BC3C8A43C /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 4882BF08CAA481DC6928EBAD9742FE25 /* enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 64E9035391D61BFA55BD23B151AD07BB /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FC9F495B764591D370E8445BDDBFA9C5 /* RNDateTimePickerManager.m */; }; + 64E9035391D61BFA55BD23B151AD07BB /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C5F909970166EA401334159FA97CD541 /* RNDateTimePickerManager.m */; }; 6504940F5EB894DE69D5B2CF0FB49455 /* Rcu-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = C62C8B9EAE3CFF78053EFF659E7A9A8C /* Rcu-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6532B3DADCD47A8B33D8A6B7DD0F81CE /* UIColor+SKSonarValueCoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = D01A6489F6406718065AA34144250BC2 /* 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"; }; }; - 6545B20097DEF5E9AD8FCE3384FD824E /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = FCF82FA21C0F6FF876AE1064187FE764 /* 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"; }; }; + 6545B20097DEF5E9AD8FCE3384FD824E /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 4792F421B617D44F1E0FDABE0488C4AC /* 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"; }; }; 656610BEFEC50D7F52DD373712B20471 /* SKInvalidation.m in Sources */ = {isa = PBXBuildFile; fileRef = F52A886CC8A999ABD8AAC5AFA1E12821 /* 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"; }; }; 657C87230A2934AED9C6AD06591F370A /* PublishProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0739C73632CCFC5DC3B6AAA672BB150D /* PublishProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6584F1A61DBB0A4BB4BD9EA418FB70E6 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 4EC0603D9829BD2A61C882FF7C938B5C /* quant_levels_dec_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 658502896B3142F7FB3347E9BFADC949 /* FIRCLSdSYM.m in Sources */ = {isa = PBXBuildFile; fileRef = DA06F1A0859CB257877B8F2190F57600 /* FIRCLSdSYM.m */; }; 65897EE734635A15B379D13013361F76 /* FIRCLSReportAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 526070E3E1788527F8E4D26C87F4ECF2 /* FIRCLSReportAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65947EDB925EAB966F2F13AD243FAA21 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B8AEFAB328CB7DB757E4EC325FA37E3 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65947EDB925EAB966F2F13AD243FAA21 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 43900ACAD78F83BB0CDADD08532E882F /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65977D82BA16D694BCACCE4A414C28B9 /* RCTRsa.m in Sources */ = {isa = PBXBuildFile; fileRef = 1845809A7204E7E07207F949F508AF28 /* RCTRsa.m */; }; 659F452F3A5CE58E34234230015B42B7 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E9F1E50223C8F81438625D0E0D3C53C /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65B8AF8EAA5C5F64FFCF982355A5BD69 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DAAB122DF97957BCB44009CEEB1517B /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65B8AF8EAA5C5F64FFCF982355A5BD69 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D3180725D06C7E408D800810FC70B18 /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65C84548F46F6041AF38A86A11C6DBF7 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AD903D55DB23C6DB0DF7E1DF8AF868F /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65CA61934FB03CF180290DE31AF56EF4 /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 2AC99ED5BE2EE2DE451DCDCA4465D2DE /* enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 65CB92D29B76DFDEC572A3AAE0564298 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = CBD31944350074810544AE8136BFE03F /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65E65D50285248E32BCA727175A9037B /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = C6E791AAFDE581645641A9BE02AD212B /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65EC48B796CD30DB09C4EAAFE113C2AC /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = 41C6F33F3ACAD20BA9745D7CB0C43D3A /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65F20C115C7320F488D580742E04DC93 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = A69AE08F95980E663E0F174E842E8833 /* RNCSafeAreaView.m */; }; + 65F20C115C7320F488D580742E04DC93 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = C8201567BCB5342D649D8C7BB250B67C /* RNCSafeAreaView.m */; }; 65FED0532D4CBEAD6563E7214A54768B /* SKTouch.h in Headers */ = {isa = PBXBuildFile; fileRef = 414C7FD6C1065E51AA4148D0796C6398 /* SKTouch.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6601F8ECA432C1F44DB564CC6B487FAA /* FIRCLSFCRAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = D1DC49481802A33DECEF52D19B2A6DE3 /* FIRCLSFCRAnalytics.m */; }; - 661713EFAFBAC419B16D092885AD3C1B /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = A489583354216CBFC03DB851B4556CD9 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6624D02FE05A6F7B8D2A7886FC3460DF /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 68B7A8740879F89A2CBFE41C610B990B /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 663337925169CB5C493A0FE71172B792 /* EXAppleAuthenticationMappings.h in Headers */ = {isa = PBXBuildFile; fileRef = 74B9B3FD914CF346478602A5F5DA6E76 /* EXAppleAuthenticationMappings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 661713EFAFBAC419B16D092885AD3C1B /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = AF07E1F4322D1E28826EAA6A30186F8A /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6624D02FE05A6F7B8D2A7886FC3460DF /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CD30E882540FDD3A3001A9E8B85EA6C /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 663337925169CB5C493A0FE71172B792 /* EXAppleAuthenticationMappings.h in Headers */ = {isa = PBXBuildFile; fileRef = 429383AE358DC6BDAFB9DAB89318B2E8 /* EXAppleAuthenticationMappings.h */; settings = {ATTRIBUTES = (Project, ); }; }; 66487582A75CE11A1FD7B6C7A656D085 /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = 19BDE05EACA325D0DB99E2ABFBCD962E /* FBLPromise+All.m */; }; 6656A3BDBB5732C65FA4EFE23ED34161 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = ED6720730BF150F532C5ACF09A797386 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6663A20187C10220F1D973508CC51999 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = B8EFD70AC1C4217D2B1CC3633458352D /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6663A20187C10220F1D973508CC51999 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 943F85E38AACA47C1407F8324CD900A3 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6664EF6453923DE49024DB69641F8109 /* FrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = A3D3DEE16D2637E483164A00BC1D7D23 /* FrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6670510400FED26761289A853091329C /* FIRCLSReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FF07E88F4A437F6D725E5CE17A04335 /* FIRCLSReport.m */; }; 667B308A0F3FA4A44299B32AE6117AB1 /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = 186F85BF1262BAE4F6845F01E92B265B /* FBLPromise+Await.m */; }; 66811E431F72A69005364E0433281D70 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 808A22FC6B3927AC76D39C9380B6FD4A /* yuv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6689E98B42000B3970B6A243C415AF2E /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E312E4B24A5042A032E967FC1643882 /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 6689E98B42000B3970B6A243C415AF2E /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C8DE520F238D4F342B968AB61C76AA9 /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 66A03981890D9863F11B9D8D04A07AA2 /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FD33C0439B76095288E5AB817E14F593 /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 66A7B1236BD884E2137D3FCF330437FF /* FIRCLSSymbolicationOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 01DE1A7C164C19C5C41CA6B753E4D9F6 /* FIRCLSSymbolicationOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66B98DD6D34999ECEB6C1AF1789BA97B /* RCTAnimationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7150100752089D9774B67052D2CEF1A0 /* 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"; }; }; - 66C5C3110649460A466AD2F6AFAA171C /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 364AAF719192994782312AC2667283A4 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66D0421E4DDA33160130778834F66E37 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BA9DD9271924E5AE5D47A6F04A32A493 /* RNLocalize-dummy.m */; }; + 66B98DD6D34999ECEB6C1AF1789BA97B /* RCTAnimationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9F444D3A41C282D1D574A988EB8C947D /* 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"; }; }; + 66C5C3110649460A466AD2F6AFAA171C /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A105509D8A9F07E954F332C530C6C5F5 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66D0421E4DDA33160130778834F66E37 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 45BB0DA6DB6D0FDFD34D146B35C23579 /* RNLocalize-dummy.m */; }; 66D68DE034EEBE7CBE544040113C322D /* FIRInstallationsItem.m in Sources */ = {isa = PBXBuildFile; fileRef = CF5EDDE0A60674EC16F462B8AC129B53 /* FIRInstallationsItem.m */; }; - 66D6E62D450BACF145A456166BB45C2B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 0751174B904E14A29B7B50EAB6E68FDA /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66D6E62D450BACF145A456166BB45C2B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F71DF116E2909F8743466766B13DCD01 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 66E9F62F5E30226E2AE4FCD8FF6EBB90 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = E3B5482BB9BF22409828FEA630DD445F /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 66EEB6F1DF23F5A10B2562852F58D32B /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ECB7DE442578B4250D103A2CC9DFD67 /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67137343E113471C77836010D7BD4343 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F69CD72B379C98BD9A1332AC77336174 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 67137343E113471C77836010D7BD4343 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F61D4966DA96A7492131D289921544A5 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 671CCCC4FA52C454C17316202BD0F386 /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 54EB121F312B8CE431C69C32CDD64F19 /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 67213F11F20DF2020A3F928D6B627E80 /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EEF581B0A0DDC0537B752219C768A2C /* SDImageAssetManager.m */; }; - 6721C1BFBE27DFCEFDBE5D11731C7E17 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D372B58B07D58281BA62F9165AF037AC /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 67224EF36217D2D136E0DC06A97582A0 /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = DF2F531A169E8D893DFBE626E2C1E7F3 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6721C1BFBE27DFCEFDBE5D11731C7E17 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A767A2F23DF3F32017F033FA84A00D28 /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 67224EF36217D2D136E0DC06A97582A0 /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = C6553FE5AE815B261BAC5F613BBFB516 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 67304F639591EAB43001263B341483A1 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = BE4BE6450CD453CA09A3712441E8BCD4 /* rescaler_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 673967B0EE7ECC4BCDC0A751DC0A828F /* FiberIOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F2C8F5041CA025BA7D33377BEB9D2235 /* FiberIOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 673BB15EBF0B152DD8D3B4CC04E13201 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AB2AF92F3E60B500AA80BA127793DEE /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 673BB15EBF0B152DD8D3B4CC04E13201 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = F70FBE0D817010EDEECA851CC78579EE /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6757FE0A1CC1ADCC38E0BBDF5BE3C2A8 /* TimedDrivableExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 123C4EC5677594B2E31C7167A00AB5F3 /* 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 = 5E692FA6C355B3E1AACF59DBE2931CCB /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67679FD66E5E1E1F6427743215A9BFDA /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = E8DB1088C338DF6C8A63B8203A7FA8A2 /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67679FD66E5E1E1F6427743215A9BFDA /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = 754892148A018AB9BDD8F209565D32B7 /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; 67796847D14ADAAC5018A99AAADA7AED /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 508197A1F9F152A33DBD6869C90D56F6 /* GULMutableDictionary.m */; }; 677978C384BC8E68F54A53338361E3C2 /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 5242CF811C2023183389CD1B7DDF8FE2 /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; 679174798499AA4B6CF32E2F96B10D4A /* TOCroppedImageAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C8FF16709CB4F3C15BDCEA85EAE552D /* TOCroppedImageAttributes.m */; }; - 67B799D2BC64CB88BF458ACE41D158AC /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B7C9A370CB377C5A345342C366E6ABA /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 67BDDCE0EF521A4394DD403549BC2986 /* EXImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 8650B4EEF412482AF89B9400A42CA245 /* EXImageLoader.m */; }; - 67D72A3415273F0FF9293B887C3800A7 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 81A7A475278E4385E2732BFB8197676B /* BugsnagUser.m */; }; + 67B799D2BC64CB88BF458ACE41D158AC /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CAD4D7F6011F574FBA32ECD96D646F38 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 67BDDCE0EF521A4394DD403549BC2986 /* EXImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = DA29658B2437964B570A02E1D6695908 /* EXImageLoader.m */; }; + 67D72A3415273F0FF9293B887C3800A7 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = EA0AD6C1E6118025A3DE02DD12F1AAAC /* BugsnagUser.m */; }; 67F1415FB3DD965C1871B2A2CB74C8FC /* GlobalThreadPoolList.h in Headers */ = {isa = PBXBuildFile; fileRef = 721E3B70A59F43610A3B08F5BBAD67F0 /* GlobalThreadPoolList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 680AF7794C63744B5DB08E3B8C06556B /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FF9F27BAECB614007A22D13CEA8F45F7 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 680AF7794C63744B5DB08E3B8C06556B /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2003529F2EBF7A6007EB4E11A4ADA032 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 68169597FBE0AB5B54FC67E15019A84C /* SKObjectHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 4656279785CCA300160FA638320F1376 /* SKObjectHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68305A7D8906C121D6E084CF228B4598 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = F8F98C8E4883CD18E543279129575A7E /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 683FDCCD2C3A7E3B2CB4CF9190CEDA43 /* RCTAsyncLocalStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = CB66756B68D9BCD4C42A9E759B0D2120 /* 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"; }; }; + 68305A7D8906C121D6E084CF228B4598 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 72F56F33BFE2BCC4CF4DE02128789CD9 /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 683FDCCD2C3A7E3B2CB4CF9190CEDA43 /* RCTAsyncLocalStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = BAB6317BA5F9AE797209849E56CA5AC2 /* 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"; }; }; 6843B2F1D94E9E148304314D61C1717E /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 769A4A6E65154C0E727C70917308E1D3 /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 684AE69A17E2DD66B5DA5411EF613B6B /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 9465B9D6403EED9F3BB5F0CC2638C5E1 /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6871111D26354F50F583D2187D9397E6 /* Libgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E01F1027F0A65A2F923FDF26113FFE5 /* 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 = 931A5BAE4E60413B254829DC0CF1E382 /* EXAppleAuthenticationButton.m */; }; + 688FA3D713B354BBB54CD152A7B7BF54 /* EXAppleAuthenticationButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 27E4CF448FD5A82ED3DC0AE8AB4F9D03 /* EXAppleAuthenticationButton.m */; }; 689CA5357FD9275EE7FC85FBC8F66370 /* GMock.h in Headers */ = {isa = PBXBuildFile; fileRef = 21004AC0A4582CCC552CDA183D9DC874 /* GMock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68A75E9D1078739344B33B3737E61D48 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E79929D60E5EB0B3B9D5F4B634822E1 /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68C7196D1EE46E00BBE92E8A229915CE /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 579E112BB7E32ECD9F097D5840406CE5 /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68A75E9D1078739344B33B3737E61D48 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 552B5AE4793D8570E20AA5B8F2F65955 /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68C7196D1EE46E00BBE92E8A229915CE /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 12D131B54FC10C41082E77668D7FC99C /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 68E14DF5295CA73DF30819A5D35C0D12 /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 324DB7D168502DA9822B3031DB3A760B /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; 68E1B5B1DA60FB2372F23D4AC3860379 /* FIRInstallationsAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 56391EBC82F2ADB6B90AAB1D2F4A1CC2 /* FIRInstallationsAuthTokenResult.m */; }; 68E9E3FC76B87B92040D480C1B5E7DBE /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 11A079E52A283A6BF53D3606DCE5E583 /* pb.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1495,79 +1510,80 @@ 6901050EF0902C7A013436C58A9B248F /* SysFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00F52A594E2C80A0DF4AE080469582BE /* 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"; }; }; 691C9AB32E9EE3DD7662DD77BD9EF84A /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = BC78A19DEC5FBD1172C9805C65297C15 /* FIRBundleUtil.m */; }; 69263344AC2EEDC6526EEE47861A35BE /* FlipperCppBridgingResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 854DF059F552091257A1C34464EECCCC /* FlipperCppBridgingResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69760094F684ECE0009B0F8A56D3F707 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = D9B85170C4634A76D5AB655148A1A4D2 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69994360287516A15A99383986556D09 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = AED243402FC7D1A09ECAA4180D3C1E1D /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69760094F684ECE0009B0F8A56D3F707 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 024B065AFF143C2DEC1C1F855EE492C3 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69994360287516A15A99383986556D09 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6319316CA64C4570DC9A7F20969D5611 /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 69B7BCD3BEC75A78828B2A3ADC986885 /* FIRCLSReportUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 4181961BDE7E046D6C5EC3512B700681 /* FIRCLSReportUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69B7C3CCE03DDC6982103FEB6057B892 /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = F18FEE533414EF0E933A14E3B8FC23DC /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - 69E25D6FD06B04AF228C16CFF0508F23 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = C48ABC73C98EA778E99870657E1F63BA /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 69B7C3CCE03DDC6982103FEB6057B892 /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3B725B05DB33B34878427A66813D3A47 /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 69E25D6FD06B04AF228C16CFF0508F23 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FB567481E28AE196674B742CDD8B9B5 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 69E5F7365CB3D10FF7898098C3146A99 /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CBBBDA03E670F57AE9B27A469C369CF /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; 69FEE4B83120F441AB20A039513A796E /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CA868E2CF1961EC753E032F6F6AD921 /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A03046C71CF85B2E59E2FBEFA35C326 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AEBC9B461B27869FC66D1A19270CB4F /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A240E30555387062E38FA611252B7F2 /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = A26259A99D7BB43B4E5B892901507493 /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A03046C71CF85B2E59E2FBEFA35C326 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A01E6B7A5A694C940D621C26BFE22735 /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A240E30555387062E38FA611252B7F2 /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 34C825A7E905352925835722B8C8C8A7 /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6A375F4B1D46A2F4ACE114AA6BE4BADD /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DE6A06E7BB1F173B5A5C0F72A9F52A9 /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A376732B9C6DAA6E3C6C979B7E5ED99 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FA2F1AE71FD4E0D504CC1BB23ADC472F /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A4659372E0955240D4258A02D838B3A /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = B0662D051DF42D8150D5F4B6B50190F0 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A4FE90A1CC535DAA809C5525490B85E /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E45DD511DE41E270A3D52A6002B9DFF /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A376732B9C6DAA6E3C6C979B7E5ED99 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 928B336238E52683E9DA84AD368A45C3 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A4659372E0955240D4258A02D838B3A /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = F473C7CE1C1DA812CF0A2E795664C494 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A4FE90A1CC535DAA809C5525490B85E /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = BCEB53D067D418E580BACB61B25B3C3A /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6A7BB4319F8D74B5D1D1C1D8FEA3C588 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = 07067FE5D61C32C991076DA4A8992F11 /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6ABEAD7FC928CF7779E132A291D0B0D2 /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 336FDE143D48F663E9394445B68A5821 /* vp8li_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6AC70626901D88616D1FAD15D39EDEDB /* DistributedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E8F2E1EBF1D2B5F90C1BA225EF2460 /* DistributedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6AC9857D5FAB49484D467CE13309EF44 /* SKDescriptorMapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B24ED0CC4D7FF4799EC3193270253C5 /* SKDescriptorMapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6AF606892AF0C31C6F0EADDA8900C803 /* FKUserDefaultsSwizzleUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = C0BC53810B2EF06324FB8E91968ED00E /* FKUserDefaultsSwizzleUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B04D0AE9A03FE30B97B1BCF723F1460 /* FIRDiagnosticsData.m in Sources */ = {isa = PBXBuildFile; fileRef = 847097C14534C0576FBE857AA70C1B4D /* FIRDiagnosticsData.m */; }; - 6B257CAC5E2C34DDAF304C790E898733 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = F882B3364320828DE2D9610696FD6D1B /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B257CAC5E2C34DDAF304C790E898733 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 65C716B737F4B5AA85697C6B64D367C5 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B2C45537C87B11EF65E69E9F333F4F4 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 873F0F716D3C21046502FF5DC13B399E /* SDImageGIFCoder.m */; }; - 6B50F5785E60964CDB8D76C2645010DA /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E4181FD10FDBBC784F2F5F61865614A /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6B50F5785E60964CDB8D76C2645010DA /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 56CEF874C6B480498C26365C608423C9 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6B67B6200914575EE45FB7C1F2A18716 /* Flowables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 907041439734F9C359301C4276389E71 /* 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 = BED35C705418034A0AD71A3014130F99 /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B99A522B85248A477007A2F54CEBA1E /* NSBezierPath+SDRoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = FD02497DC00AB4BCF27C39F2D53BC87B /* NSBezierPath+SDRoundedCorners.m */; }; 6BB0A0E40EDC7AB4948869DCFB90D4E2 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B1CE72BEBE578ADD047DAF1E1C7C7B2 /* muxi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BBAD5243540B4740CD2AE213482E90F /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C3509D7E6E6FF57DEB0BB98F4D9970A1 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BDA3AF51312726F2691B385C132F499 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D734DC8F87ADD26C796D0CB7216A261 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6BBAD5243540B4740CD2AE213482E90F /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D34ED1E59A8C518300CB6CAAD73BDF70 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BDA3AF51312726F2691B385C132F499 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 749944A65AD1C604ECBB76249C77FFC2 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6BF37FE9E8ABB36E08295C0B612C29B0 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 84E929774DE381C3972DEFD66EAF9A8B /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C108E127CA9C06B82C3BD35B8C7E8E8 /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CDCFD5FBA22753E346CB7AA7F72793D7 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C108E127CA9C06B82C3BD35B8C7E8E8 /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FD0FAFA71967E0AF10220D709B544A51 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C1BF50C54FFCDABA052C0D60E4AA1CB /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = F01FCC1166E7D6D1590CC7A1F7658301 /* quant_levels_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C1E2932E57F0360D86195E25DEAFBA5 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC6D4B5D0DE995D408A99471DF825A0E /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6C1E2932E57F0360D86195E25DEAFBA5 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 631F17A526C76F930DBFF020FEE235B8 /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6C1FC05C0464B7AC37B8E5F355C07B64 /* FIRCLSInternalReport.m in Sources */ = {isa = PBXBuildFile; fileRef = AE53ABA58C65425E382B06C5D488EA9A /* FIRCLSInternalReport.m */; }; - 6C2184CE10ED1E5EA7352588D9C0D799 /* RCTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DEC9ABAA7A49F2D6981F9E09C9D2095 /* RCTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C2184CE10ED1E5EA7352588D9C0D799 /* RCTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = C77CE6D3AF5EFBF954E7F29328776D6A /* RCTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C2AEAC146ADE8FD2C8F6FC813463A9F /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 66468B9D0AB50A722950310D7FE6362A /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C2C52BDBEAAC3411053D5BD41B4DC82 /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C2AB648E07B7960F35B28879CE8FD53 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C6AABAFCDBD2C60E12007C6A444B27F /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = C2DE2A07BE9D20BB2D46088AA36B890E /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C2C52BDBEAAC3411053D5BD41B4DC82 /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = E223C9DB5D8627C45A4D4FE74E9003A4 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C6AABAFCDBD2C60E12007C6A444B27F /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FBE4C810BFAD73625E95976A12DF86B /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C70DA166CC635856E26D25356B5A6FD /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 750C56621A7C7B8252FFBCE0198514FC /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C7737F32AD5231BA4DE75DD92F2BACE /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 67D4209A48F82ADDA4F5818E3EEDB964 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CA4114F7B18865EB558884C622ECAA5 /* RCTView+SafeAreaCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = B0818E2D4045BB155ECBA3279D032FC3 /* RCTView+SafeAreaCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CA4A7C3E424212753B7313A54CA4417 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = E035C799787B26FB103927867AB59D05 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CDBAF244B152AB69B35CD781B81F6E5 /* EXVideoThumbnailsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ADE9AB62A37B435E018B1132C7FDFEF /* EXVideoThumbnailsModule.m */; }; - 6CF51744B395C68E99A33BDB7A60D3AA /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 849AE929FF332905341897AC24CD6E1D /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CF9A2C3A712A7EFA50999466F070913 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = FB110F52027B8DE7CA9A8F0740578D92 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6D16844C8F96A2DD292833AA84CD155F /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 70E5A3AC1066B716AF5B48AE28779BCE /* REAPropsNode.m */; }; - 6D2470F794A40529EFB3DA7E8CB200EE /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 41F1B69AA73443ED11F3BC5832374325 /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6C7737F32AD5231BA4DE75DD92F2BACE /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AD2F8F959C5D2B6619194B2EA6D6DCA /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CA4114F7B18865EB558884C622ECAA5 /* RCTView+SafeAreaCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DBD86C969F632F98B3578F3420B5241 /* RCTView+SafeAreaCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CA4A7C3E424212753B7313A54CA4417 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = FBD3C6F381C857748120249C25C9FEEF /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CDBAF244B152AB69B35CD781B81F6E5 /* EXVideoThumbnailsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = F2039BF3E34C6B643CC8F48259836000 /* EXVideoThumbnailsModule.m */; }; + 6CF51744B395C68E99A33BDB7A60D3AA /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D54680817B81F20ED759702DD883BCD /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CF9A2C3A712A7EFA50999466F070913 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 436B0290BB873A84F4E34EBE895DCEFE /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6D16844C8F96A2DD292833AA84CD155F /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BE7BBEA16AA2770CC45B4FA4532085C1 /* REAPropsNode.m */; }; + 6D2470F794A40529EFB3DA7E8CB200EE /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 493F44265C4A6B4AF1DBB9655E42217A /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6D3150889C73DAD4E43A477FE1892785 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 2956AA5A37640E08E35180D04389C8D0 /* README.md */; }; - 6D35AB896CC748B13AC4B3C3972EE181 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EF336AABB60BAD1442193D8EFEDA28A /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D35AB896CC748B13AC4B3C3972EE181 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 794C3ECDE8D6E9B7864EFE85EAC61DAB /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6D51FABC0C7DF19843155B1C96BF045B /* FIRInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E5C3E390B7AC062CB93C13C95F022C8 /* FIRInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D6BB3DC5C7BF8883DBFD2925D0FC4FA /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 978114B5BFEDE880EDCF41632D8A9570 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D6BB3DC5C7BF8883DBFD2925D0FC4FA /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = B9156046C5920860169C459F1E127BF0 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6D6BE3F9307133BD33AA5369A0A212E3 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 67CA478259614A4937EB584786ABC46C /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D8104F1766905FA5D32740A209F2A31 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C1FF87D2217864C38E298491E235183E /* READebugNode.m */; }; + 6D8104F1766905FA5D32740A209F2A31 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BFD075B4697B7ECE733A36463E71AB2 /* READebugNode.m */; }; 6D904A25444A6BB07820E09B40280DB4 /* Dirent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 734A2DE6B8E3195A0323DD08113E3DAD /* 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"; }; }; - 6D97248DC774F2DB05EC07645462302F /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ABB6DE6CFDF5327CBEB702D3BFBF97E /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DB135CE25243C7A87B72013CF246917 /* EXKeepAwake.h in Headers */ = {isa = PBXBuildFile; fileRef = 711E72102910619FB4A37824DCBDF47C /* EXKeepAwake.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DB244440F489C843FC6DB922AF17A80 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = A10E8C4738B541B45BEF58011E47A174 /* RCTProfileTrampoline-i386.S */; }; + 6D97248DC774F2DB05EC07645462302F /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 706A33141C8A982055ADD86AD090CF94 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DB135CE25243C7A87B72013CF246917 /* EXKeepAwake.h in Headers */ = {isa = PBXBuildFile; fileRef = 41FEC350545872E7FD4A4DADB3F554D9 /* EXKeepAwake.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DB244440F489C843FC6DB922AF17A80 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = A9AA456219BF44242E56EDA9F74B95B3 /* RCTProfileTrampoline-i386.S */; }; 6DB3261153D3CA274595D307D8F3678E /* FIRInstallationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = B790CC79B3BDDEACDAAFE9599910BCE0 /* FIRInstallationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DB976F647E681AB06E97EDB58F98C41 /* RNCMaskedView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 492401E928E2AEEB4D6BAED954287543 /* RNCMaskedView-dummy.m */; }; + 6DB976F647E681AB06E97EDB58F98C41 /* RNCMaskedView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3341E53317D371EFF9C478A858D32254 /* RNCMaskedView-dummy.m */; }; 6DCD55BA285E5153356D0FB6617AF4D0 /* FlowableObserveOnOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = FFD4BD58CC6AA3D495B1C58C46C373AA /* FlowableObserveOnOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E9A1314B608805156FEE93524162304 /* RCTSettingsPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B3B1234649236B562BD6FCC80E8053C /* 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"; }; }; - 6EB2103944BC372A4EE0748B94A2BCA4 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DE1B4993B60E87E4148EE22CB928423E /* KeyboardTrackingViewManager.m */; }; - 6EC20FB3628ED3D4DA15AEE1BCCFA383 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 218A1C80D6C077B19A0053260F8ABD4E /* UMViewManagerAdapterClassesRegistry.m */; }; - 6EDD7B606EF5794C6AF3233D0FA56E57 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = C435C76EADB943EB9C2B899EDB65C8E0 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E9A1314B608805156FEE93524162304 /* RCTSettingsPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3B36126F5B8FD783C5CFF29BD94F0998 /* 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"; }; }; + 6EB2103944BC372A4EE0748B94A2BCA4 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 925AB7E6055E535474E702A10D7E7692 /* KeyboardTrackingViewManager.m */; }; + 6EC20FB3628ED3D4DA15AEE1BCCFA383 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 6313B94F7597342A262B9DE88C8E3AE5 /* UMViewManagerAdapterClassesRegistry.m */; }; + 6EDD7B606EF5794C6AF3233D0FA56E57 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 522E6FF98519B1462C6426A6C0D7CA11 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6F55D5181CC9A51E052914C9FB3FE77F /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CD37571E8A8157323BE289CDDAF2F6A /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6F88D197CC1AA3E0B50D93FD5F7CF071 /* Future.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F2796D731300743A4057BCB2D64AAD8 /* Future.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FADD2923098EDB7083BACF1DF28880E /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7962B97C0094DF949B3502BDFB8165E5 /* EXWebBrowser-dummy.m */; }; + 6FADD2923098EDB7083BACF1DF28880E /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 56E6DDBBD0C0945DE88A69138B0E6F56 /* EXWebBrowser-dummy.m */; }; 6FB624CE84ABA6F5B472A098FD3B96CB /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 65DA01DE392D0405828B811CA8355444 /* iterator_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 6FBDDAF47F6FB7758B11DD8F5B8B3436 /* ThreadedExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 896C79386505AB6551664FA34D9DFB3B /* 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"; }; }; + 6FC2F3328B54FC02FD61A2015FDEF96A /* RCTSha.m in Sources */ = {isa = PBXBuildFile; fileRef = 940966263C1A8EAA81AB593C8883D9F1 /* RCTSha.m */; }; 6FC607CC2D020D816400CAFCFFF7288B /* PriorityUnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 9476641CFC65AAFBD424E20B037D972C /* PriorityUnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FFF1148634D9472933210CBFC2E6E65 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5073F6A7A6E70B84666C738A870B4BB0 /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FFF1148634D9472933210CBFC2E6E65 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 74B566E4835051BB89760C27EBF275C1 /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7003449F5AD5ED5357D584E2C927D1C9 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 8DEE777427A6F0383CAC9400766BB483 /* filters_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 701656AAE9EA2EB14ACF8B21B996906B /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = A97E8279FC797BDCFA942FE1B190D5EF /* RCTCustomInputController.m */; }; - 703C4C62C95D0BC0E32F8B41732A554F /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = BDD86810C1FC0229CB481AEE4EE39FE2 /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 701656AAE9EA2EB14ACF8B21B996906B /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = F01A7F1CE309364CFADA2C0F2C6A2E67 /* RCTCustomInputController.m */; }; + 703C4C62C95D0BC0E32F8B41732A554F /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B746F94F26FC597741614A3D155D6D7 /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 70499203E2E4E13465AA6BA667887CC1 /* GlobalShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = B78DB233E9B8759A132B9976CCDB7C60 /* GlobalShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; 705740F39079D637081BE25367657EAA /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E0ABEC37C3877F03FA57840692FEE87 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; 70A55701F794D3275F5989C1F4028042 /* FlipperStep.h in Headers */ = {isa = PBXBuildFile; fileRef = B23C3C7E3CFE2486555F49A3E95060B1 /* FlipperStep.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1575,39 +1591,39 @@ 70B26E53BF5C575643F9D2AD55DC2D3E /* FIRCLSDataCollectionToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C35D35B6FE83F49910F7849152BE57D /* FIRCLSDataCollectionToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; 70C947372918C45265E8AA6243FAE044 /* StreamFragmentAccumulator.h in Headers */ = {isa = PBXBuildFile; fileRef = D90B60EC1714E2D87A76DD06CDBDBC3A /* StreamFragmentAccumulator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 70DC9B10E6304A69135CCBE2AB263499 /* hu.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2179FC7B715002C6DF2DEB99310534A5 /* hu.lproj */; }; - 70FD47128E14984FA9DABB052B73161E /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B81CD30965DFF268320C3E94FACF6BF0 /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70FD47128E14984FA9DABB052B73161E /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F2FD149F23567FEB3C1D8AB46C2C153 /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7116DD478008088F9138099C5A2DC3AB /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = F8B6D2612157B0F239ABDB54106627DA /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 7134A421D36274488CA286E15C1E6AE7 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 31CA8F9B54CE322337A559BAEA1909EE /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7134A421D36274488CA286E15C1E6AE7 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AC419DDB9DFB6EC1AFE3DC972AC5122 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 713B6CFB2FEB27D47C3E3C5F2D908A70 /* AsyncSignalHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3455E1B830D610EBB778934F64D6A975 /* 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 = DD25D40ECEE446AA7CC1689C02583B7C /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 719716B54EAF8C50EFDDEBCE1A46A946 /* FIRCLSFABNetworkClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 13EF754CAD9601B7A7EF6111C1854708 /* FIRCLSFABNetworkClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 71A171A31038A2903EE7E79423EB1506 /* FlipperKitLayoutPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = CF809DE1D6E4AF39B39B6F097B6A7592 /* 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"; }; }; - 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EF94749AF7D5A568E7346572B5D31C9 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71B1F6D3D1676C67B9689723295BBBF8 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = AF89F539CC356A48B11301CD40D2556D /* RNNativeViewHandler.m */; }; - 71BFB0C1F7C39D377180BE4A26405164 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = D2930589CAE3B436E83097AA1ADE8724 /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71C2DC5DF2F9FAD82BB52FDC4074BAAA /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = A1E5D39742A35A37A4E784EA66C1B093 /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71E4E32C85665EADE1AD029FAC79CC09 /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6B55CD1F7C412AA7FC1492AEA4384D5A /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = ACE7245AA924EB78235512EC827D2CB7 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71B1F6D3D1676C67B9689723295BBBF8 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F7CA9135269FB2B5C05B8D42EC1D2A8 /* RNNativeViewHandler.m */; }; + 71BFB0C1F7C39D377180BE4A26405164 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 79CD570BD4BA96051EABBB9BDD906C4C /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71C2DC5DF2F9FAD82BB52FDC4074BAAA /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = D7CBB395D27136A57AB09F85AB4FD00B /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71E4E32C85665EADE1AD029FAC79CC09 /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEEB80E752CC0E9C816577072F114016 /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 71FE63ECC9FB2805DB5D1D76C658C1DF /* FIRInstallationsSingleOperationPromiseCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 85A96B56D7218F1BBD52D3F49915DC08 /* FIRInstallationsSingleOperationPromiseCache.m */; }; 72089BD4C4AB1DEC21AC8B8C15BE2ED0 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = EA0623992F4DF24E9BFEDD30768B8439 /* SDDeviceHelper.m */; }; 721713500B4D40C033B10C063E735067 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A3647195D9C0194FB49BD1B23F81D43 /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 722BD6977E9660D59526BB0AD44148F8 /* FlipperKitReactPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = B52867177ABED01D3ABB5EC4169B8859 /* FlipperKitReactPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 725BA7CAA30F06AEDC2A790CB990123E /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F17A40D774E2293A377BA9F5FE267C23 /* REAValueNode.m */; }; - 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4641991E27A03A8E9B6D0E13A294E45C /* RNFlingHandler.m */; }; - 727A3E0CBA44B8056F00D1E94D16BE65 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = D8C9AD6C661265BB283DB275371E5729 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72810C496CB0C7E9ED62659B5C48B991 /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AE384BD8CC030B3564768A94B678F46 /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7284BF438F4A908AFDB3AEA753D92D54 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F4685F766E3A537439E671C91583CD6D /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 728D9843C43F25FB4A2CDE05A3E87658 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = A06771E1FA15F21EA27C833B19E56899 /* BSG_KSCrashSentry_NSException.m */; }; + 725BA7CAA30F06AEDC2A790CB990123E /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EBDABBA644D3037E76B628C3BA89DD8B /* REAValueNode.m */; }; + 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = CF91F406A7494A8E1A5957B1A8A213AB /* RNFlingHandler.m */; }; + 727A3E0CBA44B8056F00D1E94D16BE65 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = C1409995935389D3483866220BA1B497 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72810C496CB0C7E9ED62659B5C48B991 /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 402F9A4B1BC19CD55734D78F114BA4D6 /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7284BF438F4A908AFDB3AEA753D92D54 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E6D888DA4B226D528AB7452BCB37701 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 728D9843C43F25FB4A2CDE05A3E87658 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = D2917C637ECC06C1DEC86BEC5BFCF434 /* BSG_KSCrashSentry_NSException.m */; }; 729543A16C2009AED104FB4361519B63 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 35220CA232F89F7A84F6E5E7237BED12 /* SDDisplayLink.m */; }; 72A5A01001946EFB25C390868F8F69B8 /* GDTCORPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 42236F4FF6CE03D31A9ED4E53EF609F0 /* GDTCORPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; 72A89D0E917A84710512EBBC8A498DBE /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 85FC2CFF7FB4286CB0729B44AEE2B60F /* bit_writer_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 730CF59059356078E40500B6BB498E2C /* OpenSSLThreading.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CEE886B7CAE178D81226A4C10A7A652A /* 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 = 1B7CCA9413A61AE736F636A5E68E6543 /* RNCAppearanceProvider.m */; }; - 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 4830CD7A5CDD2F1723ABF2AB5D3C7FC0 /* RNSScreenStack.m */; }; + 730DC14773375905F03EC77556A60EE7 /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = BCA6F506BF538A9611B5FBE267CFC39D /* RNCAppearanceProvider.m */; }; + 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = D347B19BB32B3E0FC907A2D97CE1A567 /* RNSScreenStack.m */; }; 73326E676CD26D5A4B3B135758C839A2 /* nl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 855E16EBCC3978D7F990D6473D3B1B4B /* nl.lproj */; }; - 7335C7F76DF469C47D67CEB3752435E2 /* BugsnagPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D685286ED38572BBEC117022A11DAA7 /* BugsnagPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7335C7F76DF469C47D67CEB3752435E2 /* BugsnagPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 8515A97E19679DDB5C9AA3A05AEB397F /* BugsnagPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; 735677185EDE464C255FC2E8C20CB400 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 209E6159B2A3ED415D8A9F22EC1F49B3 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 737151DA0023AC1722A3003E9923AE19 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 59A4506E32CFEC69B2D169214E3C7835 /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7373555FB69BC157C5826BD419355394 /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 981C51D036ED8F8BACDAAE65B23E5F15 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 737151DA0023AC1722A3003E9923AE19 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F555A239F2130526E0F1260B37E1DDD3 /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7373555FB69BC157C5826BD419355394 /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 1180534E30771AFEE6F4BA72B827159E /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7375257DD805DCD78B8073530A459F64 /* Builtins.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC18BF141D8B95451EB6164F0A8E304B /* 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"; }; }; 738DDBFFD505ED31597141E30E3E9C6C /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = ACCD70BE3508992B4913688C5ADC1425 /* FBLPromise+Delay.m */; }; 738F9534366A0B4D79D59BCD8E17CA6E /* SKRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 98A06C6ED02BDC47D135C8D13C803FF3 /* SKRequestInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; @@ -1621,22 +1637,22 @@ 744569ED9F08B38A12D22F2F9FC0424C /* SocketAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A64EACCAC2AD1192454CC5C7C68922BF /* 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 = CFD03FB0C2D11E2F1F3FCA505CB8BB2B /* 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"; }; }; 745339CEE9D0D5A9A8878A4156040AF3 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 09ED6B36B7756646385C966B85575DC7 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 746A8552421E52E5EB7C6E6B0364BE9F /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = B9FA1C1D46EC0E307CC45842DACA0CCB /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 749C1DFD5218AEA619EE34946075D534 /* RNFBAnalytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3037140F1A9967C130D4417F241B2121 /* RNFBAnalytics-dummy.m */; }; - 74A91C464E080C8C4F82D1C513B9003E /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B2AF1EF698BB35A59A2F874D9664CE3C /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74AE807112E57FE4C5D5188DC97A783E /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 56EAC8CECCAD0935A9C17D90A8EF5A16 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 746A8552421E52E5EB7C6E6B0364BE9F /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 564338EA34BC53641F2A55206A598926 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 749C1DFD5218AEA619EE34946075D534 /* RNFBAnalytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C406937EEF785452DCC7AE1CA3300119 /* RNFBAnalytics-dummy.m */; }; + 74A91C464E080C8C4F82D1C513B9003E /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 93C65F7F5646FCD41A7119937A3BA994 /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74AE807112E57FE4C5D5188DC97A783E /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FF0579425922168F1752FB15EA132CBC /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 74BCEF87E24337003DB52A4C98FEEF2F /* Core-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AD9BAE026FEDF83CD19FB2029CE8941 /* Core-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 74BFEE5FD90DDCCFB94D28F70F9F952F /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 094F94D7E42FDC8CCB7A2DE9246860B7 /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74C456DAC1E8C5479E68F78C55404A1D /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = D911854E283D5A3D29D6E9364AF97229 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 750479E4904D7CD0CA0FC206D556F240 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 79C28EBA0AB9D0E1E1E197DCBAE7591B /* 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"; }; }; + 74C456DAC1E8C5479E68F78C55404A1D /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 07A15E1E9476E3BD79C5B79B20217135 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 750479E4904D7CD0CA0FC206D556F240 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F6C659C4FB6E05A3DF10651918DB306 /* 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"; }; }; 7511831132AD02DF13E76422ABD73F09 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EE4D03CF3B6B05A91F824780567C6BDD /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 75333439D6AC33E0F7ADAE8F60E86FD8 /* FireForgetThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 784BBF5C16CE8FDAB9C0F87EF45D664C /* 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"; }; }; 756B96E7745AFF9E8482BE8A64C04A22 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DFA54CFD5494BED40880277F3341A66B /* 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"; }; }; 75988D9D62B888CC305B96425A0E82E9 /* FIRCLSCompactUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A26B1E2138AF774E3D5228700334E96 /* FIRCLSCompactUnwind.c */; }; 75B1DEA7C109573B61B0B2E64A230CF4 /* FIRInstallationsErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F9DE4A363252E3601268B4A3F049459 /* FIRInstallationsErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75C38367AD41BCC14148B858141FD9A2 /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDCF410F639F54DE6F17426012EF49F /* RNUserDefaults.m */; }; - 75DD55D6CAD8C39EF8FC354902A2F5A9 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F64C32F9FE444089179FD89427121D4C /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76110E4538EEE7713CF6399084C6A08A /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 59BD227B768F741C0631574F513D5B29 /* REAEventNode.m */; }; + 75C38367AD41BCC14148B858141FD9A2 /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E1B043B7A4B96051403B77DAA682C9C /* RNUserDefaults.m */; }; + 75DD55D6CAD8C39EF8FC354902A2F5A9 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4786EBB44FB9D3485AD206761FE1B774 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76110E4538EEE7713CF6399084C6A08A /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = ADC7C66180771F2D0AFFC27CB04EB18C /* REAEventNode.m */; }; 763CD444AF9E7EA395CFD53721D810A8 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 41D436244703D58A32C838EE448210D4 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7641FF31D196E499F03DB2C7DD7767F0 /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = B40C6016F2FB45B2888901ABCAD841B4 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 764F640B2C505140321DA60CF2074D08 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 8A10F16CDAD18691E2AC31157D0D1375 /* tree_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; @@ -1649,115 +1665,117 @@ 76E11DFAA4DC6209C6D3CC2CBF3EFA8A /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = AD6C301670C68E1E2AD81A1B3DA132B7 /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76EBE6CD51BEEE22F89845516E86EBAA /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CEA90651A4405E53EF23D718B1CB556 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76FD2A79BEF913421A313ED50295DF11 /* RequestResponseRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D63E2E149F2A36D921DC6A957F608D18 /* 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 = 74FEFD87D477DF451E6D724E3400FB8D /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 772B79C3E4C25DE545BE2E8F55D05F25 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF0F7F289DAB6779D1358BE55592F61D /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 7715D82AD9F3D0E93C1F5DFE32102B53 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = B15941ABDC61A8180B4683BF55D89C19 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 772B79C3E4C25DE545BE2E8F55D05F25 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BA80AF2106B7988E623EFAE7E9E025D /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 774E921F71B6AAF2393C8F193A284BBE /* GDTCCTPrioritizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 48D549326BFC038DB8B5CCE0885F4539 /* GDTCCTPrioritizer.m */; }; - 77622F1A0ABB1224B6239F7ADE18F4CB /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 460684CFA5E232B38397373233C08E45 /* ARTSolidColor.m */; }; + 77622F1A0ABB1224B6239F7ADE18F4CB /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 2528BE37602E228D2E89406E50886958 /* ARTSolidColor.m */; }; 776799F6076113258BCCED1723ED4382 /* ThreadName.h in Headers */ = {isa = PBXBuildFile; fileRef = A7CB4A8E23DEA51B29118A7E23B9ADC7 /* ThreadName.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77744A82C948F3D83862E0015E612602 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 635809F2E8DD33860279B3B4016EC9BE /* muxinternal.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 777B202C8582C5E0780E559C0ED4F862 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BA879111DE2652A9191BDEADD90C73D /* UMReactLogHandler.m */; }; + 777B202C8582C5E0780E559C0ED4F862 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1069ECE09D76E417618559067276997E /* UMReactLogHandler.m */; }; 77B27E8A50F6A983B614BDBEE2B4C702 /* ro.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 11D44F706EA811E254CF2F8A070533A7 /* ro.lproj */; }; 77B293EF5067D13B9EB06AAB2F947B77 /* Flowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 17C98F440CD0440243B6687D395A1416 /* Flowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77B3698D829519200039FAB0F98E726F /* CodingDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = A7002C4ED447F0AF7C642C886490C66E /* CodingDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77C7A6AD961EA9964137D027B8A8FB42 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 77240A36A56CFDF251E289D65885DA50 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77C8658812D7F0CE1234676F54F192E0 /* ARTShadow.h in Headers */ = {isa = PBXBuildFile; fileRef = 77005B4B7CCC89A73D1CAFD488100EA6 /* ARTShadow.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77C98621DE081870F24A4FD92976A4E6 /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B00DD0BE7AC6D9C136E32F7A168E81B4 /* 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"; }; }; - 77E34AB596AEA871C2306059DB3F7D20 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C8A95117B845CD2BA5EFD37E70F1995 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77C7A6AD961EA9964137D027B8A8FB42 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 08D21D884B63561DBC7102020146FEF9 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77C8658812D7F0CE1234676F54F192E0 /* ARTShadow.h in Headers */ = {isa = PBXBuildFile; fileRef = 76F3FCB4AC4D424502F6BE8204720EB0 /* ARTShadow.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77C98621DE081870F24A4FD92976A4E6 /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B92EEF6CBE58791AF9976F1C4C999F6 /* 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"; }; }; + 77E34AB596AEA871C2306059DB3F7D20 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = D1156480B64AAEEFD35C61D87FA4B096 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77EF2F92B9062A1EECCB6E0C9C275D88 /* UIImage+CropRotate.h in Headers */ = {isa = PBXBuildFile; fileRef = 02C4EA56112A4F3A48191A1FD70FC658 /* UIImage+CropRotate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78006C7F26211BB00559438E85AAF1E5 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E3E18767D1E79CD9DAED40FE9871E929 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78006C7F26211BB00559438E85AAF1E5 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 310236F89241F84C0477CD04D38A2645 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7841E1B4F2C70023205BC38857EE74D6 /* Combine.h in Headers */ = {isa = PBXBuildFile; fileRef = B9665409270F1193682225868F3A7A82 /* Combine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7857E6872B7BFCFD6BAFACB7A3BD86A2 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E978435C655BDABC0F5AFB1ED385A0A /* RCTUITextField.m */; }; + 7857E6872B7BFCFD6BAFACB7A3BD86A2 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = A17E4986EBB2FA4FF6BE179E2CB3852B /* RCTUITextField.m */; }; 785BC4CF4809020AF5132A2626189D3B /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C73C03F66BD6F21E6E434A1E5207829 /* mux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 785CAF95D72E52A3CB51D19B161EF757 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9119D4D3ACD814C75D13B064DC3B83ED /* RNDateTimePicker-dummy.m */; }; - 7866397A0C61B47DB61023AE9DA1ABD5 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = EE510ECFE9740A1362829E8B15A7D768 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7870E8FD1015BAAAF32A1EC02F9CE1D2 /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = 45B0358B27388CF8F7F76CE99E8D541C /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 785CAF95D72E52A3CB51D19B161EF757 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 18D5D45983DCB0B7EBFFE1A3924B2913 /* RNDateTimePicker-dummy.m */; }; + 7866397A0C61B47DB61023AE9DA1ABD5 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = EF832947BB3B9660609E37EE61DE7C91 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7870E8FD1015BAAAF32A1EC02F9CE1D2 /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = 71157C05BECA87687AFE8D501C5ADF97 /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7882CEFF17C5B91821AD080799F6FB5D /* IPAddressV6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 16DB6DCCF1E49B4ED1C6B67571C18525 /* 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 = FA765364029410F519FF5760362E5376 /* UIView+Yoga.m */; }; - 78915BE17253AFB06827312FC0CCBAF6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = AFE821B9CF33BCFA69769E00511A4CAC /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78915BE17253AFB06827312FC0CCBAF6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 67425D423806DF907689D84089B7E781 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; 78A29331837BEDAFA3DB33EA2E609F78 /* FIRCoreDiagnosticsConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = E15A6EE48553883E0A92860EF2195368 /* FIRCoreDiagnosticsConnector.m */; }; 78BB6FDBF3F970AB072D30BEC80DB9B0 /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = FFFFA05AAF8E632A18AB8C35E0622FE5 /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78F927721FF33D4B9A04BF10E78C536E /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B0181B4C8866EF8D216F2B0EE1C881F /* UMModuleRegistryProvider.m */; }; + 78F927721FF33D4B9A04BF10E78C536E /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 09C41B50561711EA11B30745BC7B044F /* UMModuleRegistryProvider.m */; }; 78FC2758830ABB5CE855643C56F43EAC /* FIRCLSThreadState.h in Headers */ = {isa = PBXBuildFile; fileRef = 36E90BA5DBB8428DD80683F7008704B3 /* FIRCLSThreadState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 790322F76C8B7D9855BAB016FF42BBD7 /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C91D0A391046F259A09B4F20546CF13C /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 790322F76C8B7D9855BAB016FF42BBD7 /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = EE4F636BB2299A28F2B474DBD1AE3BC7 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7925BA5117C9FA8B8B85A031330AAA42 /* AsymmetricMemoryBarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27F1A6BECB87CF25790CF1EEC78FFCDF /* 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"; }; }; - 7939F295FBC0D1104EF2091FFDE8DBB0 /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = 37B6A17E32F09752D1C491E6E5FBDFCE /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7939F295FBC0D1104EF2091FFDE8DBB0 /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F1A4CA596C01CB76C880148E4242FC8 /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7949FD6EB727E69406421858C3A31123 /* CMakeLists.txt in Sources */ = {isa = PBXBuildFile; fileRef = 59105198EA93A8D13515A629A7AF377C /* CMakeLists.txt */; }; 7951728F21A13BEC0D339F17249D5804 /* Observables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA0C4AE8768526B9F3B1DA24E400E1A8 /* 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 = 615D287D14AB05522C3D6005FBA9898B /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 798AC334AF557D6B1C5EFBFAB145F000 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E677535392AA415F7AE2BAA17436873 /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 798AC334AF557D6B1C5EFBFAB145F000 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = C624970691D41EB2D3544108C4E76286 /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 79B1AC4695CB8BE38445A32F9D7AB8C9 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2C88102DB232016A3292EC03C2DB112A /* de.lproj */; }; 79BA26C737EFCA1A5749AAE7AC3FC842 /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 52EDC1B63F64BCFF4069403F93325357 /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79C336CF794BA6A3583102718F0C60B3 /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FEDE1E936A9E05A61E9523DEBE69ACF /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79C3652C23CA46FA14C08559E1882B7F /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E838049A8A55A72E34E8DD160D4DAFD /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79C336CF794BA6A3583102718F0C60B3 /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C9C9BB902DE7317043E3439C2FFD3E24 /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79C3652C23CA46FA14C08559E1882B7F /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = BE11A5529D1AB89EBEE94F3553006904 /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 79D1B1B06EE6E1F8AADDCBA060A8D0CB /* IOBufQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 1468CCAD5F747280CF84F5DE0DDCF11C /* IOBufQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79E4E9207266A429AE14B16726F40034 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B7003F698BAF63FE172F3DD6410525E7 /* REAConcatNode.m */; }; + 79E4E9207266A429AE14B16726F40034 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E9C43FD1EB2A47BD0BFA000F7505511 /* REAConcatNode.m */; }; 7A0EB74832117D4542A2518BDAFAD9E4 /* FBCxxFollyDynamicConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = D4531DB289C980609179E55E7E05ADA9 /* FBCxxFollyDynamicConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A383B2997E0FF8D0D194A0EDFD6CBC2 /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = EA2A3E10EE98B90487683B800B158B43 /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A4168BC23C43D1A9C747C037A13AD9F /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 897CFC6BCAD9715BD60DE2B2E4C87D32 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A5135422A29083A9AA96DBDDCE35D93 /* ScheduledRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A6E793FC79ACAC14E4649A7029ACC22 /* ScheduledRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A78222EA8111E0D5019C2D5F945758A /* SKStateUpdateCPPWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = F3488107C82A6CB613082DDD2D830AFC /* SKStateUpdateCPPWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A7834A2F72C293E7AC78093E1B67C6E /* CacheLocality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEE0464E0C94B162B36114026C0592E2 /* 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"; }; }; - 7A7DE706BBF22FB0241D53BC854D7D01 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A7F9488B83BAB2F51C7DEC46E172F72 /* 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"; }; }; - 7A809CF6CB525F8195BAC08957315DDC /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 075555AF8B96027BD2D478E62C5221C9 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A9E13E3857A7759892604ABA46BD761 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6168F38FB52EC736551766D6E3C60096 /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7AB70076D594A0A054F93D465F06268A /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A4683F683ADF5793EB03A32071C78EE7 /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AD0DBA9E15F69157618464E1122115E /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E1C033AD761B3E0BD1EA35E2C84EBCAB /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7ADA9C6F931A88FF8329785C5F89F2CC /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D9AD801C07FD32811D773A81D36DD57 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AECC3D50F123A379D48712223BB9D53 /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 11EC0920C764C6F281FB0398FDC30EA1 /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A7DE706BBF22FB0241D53BC854D7D01 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = F0429179DA86B043A3B1DEF698FFAFA1 /* 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"; }; }; + 7A809CF6CB525F8195BAC08957315DDC /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = DC58FAC6156E3B40E662C704400396C5 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A9E13E3857A7759892604ABA46BD761 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 19F3B1E85DEDE443A4D691204846420A /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7AB70076D594A0A054F93D465F06268A /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EE7296D21287EDF379BC27C915C5035A /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AD0DBA9E15F69157618464E1122115E /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E5ED966101B9A91EE0BA3B025D9545E /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7ADA9C6F931A88FF8329785C5F89F2CC /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C2DC4E4CE6701125017794D4B0A19CF /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AECC3D50F123A379D48712223BB9D53 /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = E0D3185E9B9ED81AE6A967F184C4E85F /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B20A6CB3B0EF8E33D7A99FA68049EBB /* FIRExceptionModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 2356EEE214CBA29FF161A0EE248EEEAD /* FIRExceptionModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B4B0B3E7AAB33A80AC2BB45C4CC9E70 /* FIRCLSDwarfExpressionMachine.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E983DB519359D301C29C7D8E2A75C70 /* FIRCLSDwarfExpressionMachine.c */; }; 7B5442DCEF1DE4B2012EAF97871F3036 /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 6424BC64023B5537BE2560FBCBE4DD96 /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B6F6115673E71640B69E46F867EA6F7 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = B78C914D0DDC6AEC1FE178D4D2257956 /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B75D105A41BD1B17DFB3CCB723AEA1C /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F564B224DD26082298C97D6A1A1FE620 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 360D75EE7718C8B5E7E91509B0499EBF /* react-native-cameraroll-dummy.m */; }; + 7B75D105A41BD1B17DFB3CCB723AEA1C /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 52E6F773E5FF6B24B71680A77047740A /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FF099FA8CEFB41AE93B691AA31CA50E5 /* react-native-cameraroll-dummy.m */; }; 7B867BDB50330206036412351BCA3A62 /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 46F780D4489FEEE14491C005E7039D33 /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B9F31AF2CFDDAA733DC57561E908CB5 /* SharedPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DA26BF59B04F4CD669F95C3C4A1512C /* SharedPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BB01525385D8F0DD4FE7F426FB113DE /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C39690C18200C48305B76C89E2EDE45 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BB8383F8DF7A272DB09DBF173C549F4 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = EFF80CE80112452C15F49D7B990F9ECA /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BB01525385D8F0DD4FE7F426FB113DE /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = FBCFE26714872422A8F2BF2300250DEF /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BB8383F8DF7A272DB09DBF173C549F4 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A797B345C745E88F12B501F50FF51E9 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7BCC08DBECE42EBE69A54DBA30F6B549 /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = FFE8F9E9E1BBB1D5100D2BC31A525A62 /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7BCC0F87573DBEFDD0F30001E24463A6 /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D93E553F70D183C91A3920A509DD4DD /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BF84EA30F0BA4C5005EB814DD6C262B /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9D8B89C272CF86B251E03058FD3D8ACA /* 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"; }; }; - 7BF91B0A68CA4C07C4ECF6863767CAB1 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 3590FD2FFCCDF22D9CE8AE5ADF431BDE /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BF84EA30F0BA4C5005EB814DD6C262B /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 059B393E7122823110C12BF2E2B38B02 /* 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"; }; }; + 7BF91B0A68CA4C07C4ECF6863767CAB1 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = F15426F1ECD9F5E4AB1E1E56F6259DEC /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C1666EB58E8990F4CE28BC7508AE115 /* FlowableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = 614CB67DC48249E3BE3CE487A754D815 /* FlowableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C1AB78955A97D0433B735EEA05ED2F4 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 399B1E75BE20435C9B6BA3B91DDDB24A /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C1C2320FB6EA73B9F67F38B61D62E45 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B1968C239F35AB0B86D5854025FD9F0 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 7C1C2320FB6EA73B9F67F38B61D62E45 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BA46C38C51AF2E70BD00F58F20CF2E6 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 7C2AD3B775432BCF22E34431FC8F3EFE /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = E065368D6FD3F1479EA5C7D24E148373 /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C2D89A79A5CCE2428023B7CDC78BBBC /* YGLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = B6D0DEB38DAA670F8FDA8DDB8D9D9CB6 /* YGLayout.m */; }; 7C4DA271EB10F9E06486E8335DA8F4BD /* RSocketRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = CB93CF2EA3FCAA32D518CE126600C085 /* RSocketRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C8725A38E542DCF9E465E8183FED89E /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = E33E79EDAF913AD9B1D17CED75B8BF63 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C93AFDA40EE94CE37DD2F9066D0D88A /* FIRCLSMachOSlice.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CC7095DC87240FA7E6F97CA982A06F9 /* FIRCLSMachOSlice.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CCFEA95B919EC2A0D5B7A413D55859F /* EXAppleAuthenticationMappings.m in Sources */ = {isa = PBXBuildFile; fileRef = 37B01AACC34E2DB6EC4108DAA06B25E7 /* EXAppleAuthenticationMappings.m */; }; + 7CCFEA95B919EC2A0D5B7A413D55859F /* EXAppleAuthenticationMappings.m in Sources */ = {isa = PBXBuildFile; fileRef = FD133AA16F00DE99E5ADE204783D7F6F /* EXAppleAuthenticationMappings.m */; }; 7CD1703B557168ABA37AE8C1A0238E5D /* SKTapListenerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = DC5DE7B43EDEC6BB6109659446FB1517 /* SKTapListenerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CF381D9B3B20C531AEFD960DE5AB34D /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = D3727FAB0BE2037FEE16FE0B671AD10C /* RCTUITextView.m */; }; + 7CF381D9B3B20C531AEFD960DE5AB34D /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B0E8D13DA86F71A359F22C11CA4030A /* RCTUITextView.m */; }; 7CF643F3FC2F33A94A2EDC7F942752D3 /* ProtocolVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = F06C104977D7B1F53581DD4B5DFE26EB /* ProtocolVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CFF3687BC9FE4EC0FCE4DE43AC06B06 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = EC577564B4218D22378D25F459407B2D /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CFF3687BC9FE4EC0FCE4DE43AC06B06 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = CDB1B1E6DD51B733C551D0A84FA5F0E3 /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D2A357365A1488E3468A15CC26CA428 /* RecordIO-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 46193BDF6A470CE909841704AB16E70C /* RecordIO-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D32CB346A8A737EF45F15BB54F57AFD /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 784DF86A86D67B464BE4922B29317A96 /* rescaler_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 7D38F08E59ABB6BF7E221D088AB83D4D /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A78A9FC207B94E593F87E1CA868BA804 /* 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"; }; }; - 7D394A74FEE4718CF8631745FB632160 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 31C9DBAB0B12753EFD09AB5FF51312FA /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D394A74FEE4718CF8631745FB632160 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 69512F8050BEBBA05E7E5767FDF4B099 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D4BDCF275177CE5FFE1206D9D8E99B4 /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = BCD691FACAED48EC4AC844A32ED1DC8F /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D535B843CD5EEE4F305E07FED2F7759 /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = BB3BD72FE1CB1FB1C94AD1E936F437EA /* 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"; }; }; + 7D535B843CD5EEE4F305E07FED2F7759 /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 302B60A9B1060BC8908DE6EF2A56518F /* 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"; }; }; 7D6A5E9C9F6A6D7C4B6CAAB74BA8D214 /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = 1242BDB498F279B857238821D0F274C3 /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D74C0F449D31806561D458B8955CC9C /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D0A00D1A88171A2D8A975BE1ABBBDF3 /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D74C0F449D31806561D458B8955CC9C /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 67219E0D7F63DEEE2310B244119D57BA /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D7C46AB2EEE8C19958AA671383ABF2F /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BDBFBE03CFAC07F29A12A72EF346F7B /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7DA1F0C500E346BD807AB7A5BBABFF44 /* FIRCLSURLSessionDownloadTask_PrivateMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = 29151FCD9095101600D17E4091F9BDB6 /* FIRCLSURLSessionDownloadTask_PrivateMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DBB6FE7A33666EC56891D9E1D5F38D2 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = FE7E2ACF770FA1F5C61451F18B01DB2F /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DCD0A19CA7E2541C1CC71C33300C90D /* RCTFileReaderModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = C4500ED7625F4B31BA4A9BB0C356A0B9 /* 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"; }; }; + 7DBB6FE7A33666EC56891D9E1D5F38D2 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 3365F37DC5C13BE00AEE78F612B23BE6 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DC968F93A3EAD4C57557C0D17DE894E /* Shared.m in Sources */ = {isa = PBXBuildFile; fileRef = A772281D540534EE390A9517BF3E06CA /* Shared.m */; }; + 7DCD0A19CA7E2541C1CC71C33300C90D /* RCTFileReaderModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = C140589B4A887B18B65333867E77DFE9 /* 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"; }; }; 7E2B013649BB99A98F84D89DB9802E80 /* FIRCLSReportManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CED2FDB76AC597DE9F056575AD2CA75 /* FIRCLSReportManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7E6785216D5A27AA388421B8CB226AA1 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = CA4A019C7B2509901664E9F8F9C1EA8A /* enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7E796C7B6B601FA5CFA6D5154D7B17C1 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DB62626329AD368164DC39477309A85 /* REATransition.m */; }; - 7E797A5473989218417BACB135D5CE5C /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C41599671F15C864ADB088C60B32DE20 /* 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"; }; }; - 7E9EB94F10BDEC8A2886AF6E74088390 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 4670FE6F06F10FE56754009184A08F78 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EAB54DB31F8AD2AA68AFE3659D27E89 /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = CB3368D04A2DD89077159C210647FB7B /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E796C7B6B601FA5CFA6D5154D7B17C1 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = BBE64EAC86AAD07687903A83625329E5 /* REATransition.m */; }; + 7E797A5473989218417BACB135D5CE5C /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = E6AD8080DC24730D6492B61B6925A174 /* 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"; }; }; + 7E9EB94F10BDEC8A2886AF6E74088390 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 94FD73B8023F68344113833DE2CAC507 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EAB54DB31F8AD2AA68AFE3659D27E89 /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = 51F8FACE4565755638D68246FE00C3D5 /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7EB2258E75A0CFAEB893EFE5CAB78DAE /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 322B81AC3D163C6FF26E1064983DB705 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7EBC5E3CE8245A96F27BA752BA826970 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = 66E4D1E1119D3AC12000213C69C0FFFA /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; - 7ED64F612BBAF53D750606C2C135459A /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 1425C298EBEED777F22F0A6803A54F10 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7ED64F612BBAF53D750606C2C135459A /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BD97DD90A26C50D18E7FAF907BC1DA4 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7F26FFEED6990F7DE6542F85864BF163 /* AsymmetricMemoryBarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = B75BCBFFF6925D3612F1250AF81E6FEE /* AsymmetricMemoryBarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F587E5E97E38B24059D626558F1FAF8 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = C7BC7CDCAD9DB52E4C3A81FB92EFC4DC /* REATransitionAnimation.m */; }; + 7F30F169AD96C88B5D4E3518E16E58AA /* Shared.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BDBF18E13FE0F99D56655A59A7778D0 /* Shared.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F587E5E97E38B24059D626558F1FAF8 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 83C64848A6D74DA14B223DE3F25EF91F /* REATransitionAnimation.m */; }; 7F7D87AE67FE4FA062A758F6C1B6B2B2 /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 85F485231897A7443DCD7805A9DAFED3 /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F9204B5D0D09E2C0FE4014650A3AF06 /* RCTSettingsPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 736943130C43F57CEFBCEB0556C7E82B /* RCTSettingsPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FD360DC4345EFBDFF0438094C402356 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 327B3E3F0F1ACFE40B8869E00817299D /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 803F6061B2E4BAF2D5EA12A5848CFF56 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F45C86671E626431A5D11FB234D8DFBA /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F9204B5D0D09E2C0FE4014650A3AF06 /* RCTSettingsPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 932E06F35BD30FDB84DA15CA2EE1834F /* RCTSettingsPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FD360DC4345EFBDFF0438094C402356 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 64F314119FA34086B0AF3EBAFD78C3B6 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 803F6061B2E4BAF2D5EA12A5848CFF56 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = E9D3AA4A8590E0DF805CE12F3FD52252 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 804663488445831432C6D6B04C2DAD1E /* ScheduledFrameProcessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F4861194EFDA9EF727093A75C3F1512 /* 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"; }; }; 8070AA7AE73618DDBA207E20AA25953C /* HardwareConcurrency.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3334E2597C59E9252ED8290454BFE078 /* 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"; }; }; 809CFB699CA5A569FF60A4C1F7EA5F3E /* FBLPromise+Validate.m in Sources */ = {isa = PBXBuildFile; fileRef = D7ACB1BDB84F32D9774FF98F2998CC0B /* FBLPromise+Validate.m */; }; @@ -1766,211 +1784,211 @@ 80C026B0E39AC1F1703DF72A313A900B /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = BC50E2E1DC1D4961ACE08AD2E8F01799 /* cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 80CDAEE930D06D1D2D6BCD00DEBE8108 /* StreamStateMachineBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D36F6563C1B50FAE5A199E63F8B4A5CC /* 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 = 951CAAE88A7E15B568918C8CE389AB4D /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80ED458ED6B52740A082670EF5B8A518 /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BB9E60E9BCA30ED5A99A8F344EDB053 /* RCTInputAccessoryView.m */; }; + 80ED458ED6B52740A082670EF5B8A518 /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 54A21F939A27BECCFF62BEB81852C1F0 /* RCTInputAccessoryView.m */; }; 81071E43B116BEE100693E96C1F9FE77 /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = F30A5E06EA95BC4736C2D62CDDB6E5AD /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8124AC93B4128C31B230B4F31B40C992 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D77E88B8F92CD747787766712C35CEB1 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 813B13AB2E1AFC1A69F181CA99D5BB1A /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 68B72C4765B9468FF5A33F4A8F148BC4 /* 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"; }; }; + 8124AC93B4128C31B230B4F31B40C992 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A7654C80CBE607F4F22E9EAD9F4FAFE /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 813B13AB2E1AFC1A69F181CA99D5BB1A /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C6CC98D84C1DFD6F4B303A32049966E /* 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"; }; }; 813E4CB01E4386CA919F5664F7E9D09E /* FKPortForwardingCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 1500567893A0F2F90FDCE8E6DF98AF9C /* FKPortForwardingCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8145C77FDDC575D33B405FF7F421A215 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 94C181505D22DBB1A12C3E9EA40A1FEB /* lossless_enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 815003AAAEED0A9EDD880F60FCFD4281 /* FIRCLSMachO.h in Headers */ = {isa = PBXBuildFile; fileRef = 46B3774D6B0B67D497675ED1E81966DF /* FIRCLSMachO.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81561CA2BD7111B1F6C3D3EC67550617 /* StaticTracepoint-ELFx86.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D67366578E37B9768EDA8420106E285 /* StaticTracepoint-ELFx86.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 815CD5B4AC94FE5710CAC113329AB262 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 302E7C75720BA7BDBB4BBB6003DD9934 /* 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"; }; }; + 815CD5B4AC94FE5710CAC113329AB262 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C0415283019F59973C90F952E40600C /* 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"; }; }; 816247A876AC24CFC889B8629D8699B2 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F3B0B75B87EA9A9804DADE11EE6C2A /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 817F80FAD6CAC88EA2EA12B86A15C086 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E0A8C8C5BAA2197F6188BDC16E5620B /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 819836474963B13AE93DBA37FF26CF91 /* RNCAsyncStorage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 716F3C697AD5F3B1BB43E1C1669F2F47 /* RNCAsyncStorage-dummy.m */; }; + 817F80FAD6CAC88EA2EA12B86A15C086 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E03C3A5945F7860E729ED3B3C1E40D3E /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 819836474963B13AE93DBA37FF26CF91 /* RNCAsyncStorage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B9C967B671EC8DCD6F78AA20CF0CECE4 /* RNCAsyncStorage-dummy.m */; }; 819F83D63B167874E2EE18604EFDA365 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = A1673F8C9DD85AC5A52E6094F95F00DE /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 81CDD761CE987A83E4B9D0308E37CBBC /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B32148E561167F8C22EEE28DC184571 /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81DC789630EA64FE7CCB43BD80426A0C /* SoftRealTimeExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 77C20593398B018F5C8B223BE3D6F04B /* SoftRealTimeExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81E1D7AABE1CC4754D5E22DBE883CA12 /* TOCroppedImageAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B27C6BDDC13749A902CB74CC9BDC2AD /* TOCroppedImageAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81F1D8104C6D7CE7780E40807E43438B /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EBC5E288F58A6D96FC62880FB30274F9 /* REABlockNode.m */; }; - 81F4030F6A4BF6B68FC721E6872ADA3E /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = D2499C8B2186DA8E61F638035B873017 /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81F1D8104C6D7CE7780E40807E43438B /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A99906F6637692D1D33D5301D525119F /* REABlockNode.m */; }; + 81F4030F6A4BF6B68FC721E6872ADA3E /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 812174CFD5F180BAC6547FE529120730 /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81FC60A335BDB739D75D24ED623A8264 /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 775E2770F29CF6245807247E73AB38DD /* enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8210666640C5B1AF7DAB2FBA2292A1D1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = DE1772011CF6FE788CF9D3707F3C2198 /* ReactNativeShareExtension.m */; }; + 8210666640C5B1AF7DAB2FBA2292A1D1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F6BEB4055793CCB7C6172EA559CC5F8 /* ReactNativeShareExtension.m */; }; 82231D09FD382B02393BB0898E36EE4C /* RelaxedConcurrentPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D8FECC7392A6932F95BAAA375CB3D64 /* RelaxedConcurrentPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 822BC5301A3665DFE565C33592ECFBA4 /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC1E412F15D9043B12CE835BB2ECBD5A /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 822BC5301A3665DFE565C33592ECFBA4 /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B019BB6A9EEF24D3F907B21B9A35AD1 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 823F08603B32859CE18D9E3D37357A54 /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 11253EBB5B7CBEC636E16266DBDDE287 /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 828433A19B587163146684B386C82DBD /* RNFBJSON.h in Headers */ = {isa = PBXBuildFile; fileRef = B9E4ECDEC4128C93752296ECB0EEE079 /* RNFBJSON.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 828433A19B587163146684B386C82DBD /* RNFBJSON.h in Headers */ = {isa = PBXBuildFile; fileRef = 2546C9E7A86304B7609DAEE2B8B4740A /* RNFBJSON.h */; settings = {ATTRIBUTES = (Project, ); }; }; 829168B41AB0527695E68C1D5380C266 /* JSONSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = 590AA461A8068282BB1A7443506BAC4C /* JSONSchema.h */; settings = {ATTRIBUTES = (Project, ); }; }; 82B1A45D03F70BF51889F00D72DDE928 /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 8585650A5B7C2864CF0F1EB6ABF83886 /* FIRVersion.m */; }; - 82B3ACF24FBA461B54C393C8E8057A62 /* UMErrorCodes.m in Sources */ = {isa = PBXBuildFile; fileRef = A6F37BCFA3A5E229FD1BB7EC45AB0D94 /* UMErrorCodes.m */; }; + 82B3ACF24FBA461B54C393C8E8057A62 /* UMErrorCodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 634C7954F8F8AB6D338C4411EB41370C /* UMErrorCodes.m */; }; 82BC85853B48599CF7034D4978C66459 /* SKNodeDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = A057C2D4613AFF46B498C667A434590F /* SKNodeDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82C151788999AB9E1C8AA08F7CED8187 /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = AAF07727CB6168579B8C1875EBD0CDE9 /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82C151788999AB9E1C8AA08F7CED8187 /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = BC4804B36143588010725865A3FF6163 /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; 82D7D9FA03B146253231143F5569B020 /* crashlytics.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 91A9CCDD95C21077EEF8CE07C19AB3AC /* crashlytics.nanopb.c */; }; 82FAD75153594152D13166FA9C918B07 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A1AC44125A60D4279CFAF166CC57C8B /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83136AA76652C7045CA261184E60A544 /* DynamicParser-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E1D7E81F01D4D9D32B2BA8D87BE0DA8 /* DynamicParser-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 832BB43225C707F69AA6D873B8D18F6E /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7543B089861D93B3849F41A8E88DABA4 /* React-RCTNetwork-dummy.m */; }; + 832BB43225C707F69AA6D873B8D18F6E /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 75DA2030752E2A3166024CD23FB8778D /* React-RCTNetwork-dummy.m */; }; 83473148D1A03C53409742D811D3583F /* QueuedImmediateExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BA95CBE1D99F3A9AED81628E727470FF /* QueuedImmediateExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8355F5AC1AF62C88E8E0CC029ED7862C /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B30B317040215E1EB1DD3ED42046EF9 /* color_cache_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8363FDC00B483DC0C835683A720EF012 /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = 28414E289A382126C99F42C0655BEEF3 /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83D981D69D42BD8850D6FE8DD2D18CB8 /* RNCSafeAreaProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 75706C5E4F6CE9461F99121825D7D8BD /* RNCSafeAreaProvider.m */; }; - 83F508860A69DF4881BDC1557FF7E2B4 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FA9BAD987A0B88DCA3C7E6B9381F0B5C /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 83D981D69D42BD8850D6FE8DD2D18CB8 /* RNCSafeAreaProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = E47C36A613EB829E3E595E0F72CCA3D7 /* RNCSafeAreaProvider.m */; }; + 83F508860A69DF4881BDC1557FF7E2B4 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CE0218ED5D6AFD5A68F4E54242C4678 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 841BEEABB39AFCE2F1A9B9A2F800B860 /* FLEXUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 8715181C789B513EE718305DAAD7B2A2 /* FLEXUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8439EA0A5BDF6C5C7BD5988ECC8ED470 /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D8F25EC98F541974A440A80EE558A8B /* ARTPattern.m */; }; + 8439EA0A5BDF6C5C7BD5988ECC8ED470 /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F79487D60FD7EA8B246E90D3BF4B209 /* ARTPattern.m */; }; 8463BA54CDE10E89F565BD48AF5D85B4 /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = BDC04ACA19D50CB3F37840A676EF96D1 /* SDImageIOAnimatedCoder.m */; }; 84A7473B9A205B904527095ED5D3DA74 /* RequestResponseThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 35ADF910EDB6EE4E4C77FF402FB36AA9 /* 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"; }; }; 85139AAA0A570EBB566C5015CE3C2EA5 /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = D7267D6853057BCC3AA6120C86810954 /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 853BB49ADF52AD700930959E3D4A5B87 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DA30F863A95CA63A9CA41DC1215B8CB /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 853BB49ADF52AD700930959E3D4A5B87 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B6286FA09BB89F9A4F85C914C369FCB /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; 854011E8B4665CCA7D3CE510F229C6C0 /* AtomicStruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 000C1C9CF9386C890FF6ED473A586760 /* AtomicStruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85455CF059E2BA6A60E6A2D400783FF3 /* RCTConvert+FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 064D23FD317D7AFAF8A434A19B5751B1 /* RCTConvert+FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85455CF059E2BA6A60E6A2D400783FF3 /* RCTConvert+FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 0969170CB4B2E02C6CEAE078FDAD9C9C /* RCTConvert+FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8547302CC4693C69F676D0FAF738DF38 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = E66FE103835547E3F79530DD3FD32AF1 /* cost_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8548FCF28295D2197ED3E0D8D2A9AB19 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B284C428FB8966537ED051C95153C4A /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8562DF2BC796D7D23CE5DD44BC407C01 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F1B5EB297DCF4C9E1F7CC1E3C2CDC94 /* RNNotificationCenterListener.m */; }; + 8562DF2BC796D7D23CE5DD44BC407C01 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 77F65EED22B827AFC5DFF6ACB681E47A /* RNNotificationCenterListener.m */; }; 85915C6348F10913C13E024F19C98432 /* FIRCLSNetworkOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 42C7624D74DDE436F79F1B74A97FB676 /* FIRCLSNetworkOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85968F707A767738DD5E55A959AE5CFB /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = C4D25F70DC8B45BD854D50AB634AD856 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85968F707A767738DD5E55A959AE5CFB /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = D7F592FCED96399322301F625BF28E4D /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 859CF4DDB4DF8D8BE39DB5AB5FE349B9 /* FutureDAG.h in Headers */ = {isa = PBXBuildFile; fileRef = F6547816449FD1C41E2C13C99FCD0750 /* FutureDAG.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85EE3DDDE2705A437A8EC20E7EE63E3A /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = BAC3BF99ECBDA7FAAAB832C9282CC5E5 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85EE3DDDE2705A437A8EC20E7EE63E3A /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 252E9DED0CA8A4615E639613EA157E1C /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; 85EF72DD40BCFC53D8722FBF1315AA1C /* Payload.h in Headers */ = {isa = PBXBuildFile; fileRef = A2A61E991447F4CBCB200A416E406D4E /* Payload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86090AEE3EBED7D2F500A0DB92B7BD34 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = F66929CD5E95ED8EB0C1C5EEA4DCE5FE /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 862DAC23AFD28B838622B37C68CA9202 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 98901934FA5E1814FDAB823CAFD4F9D0 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86090AEE3EBED7D2F500A0DB92B7BD34 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3DFE41690BE5311A54AF49FBB8FCF1F8 /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 862DAC23AFD28B838622B37C68CA9202 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C08FB01E122F5F358A979F5F9CE50A1 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; 86413B6185C68AF825C32E586B8BF4B0 /* Phase.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B246C0EDAE983AA2B8062390F5120C8 /* Phase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 86558F39467D99DD75427289BF7D6D19 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 995CB46BC392BF0AF27270E18696EA9B /* UIView+WebCacheOperation.m */; }; 8658ED76DEA79D408A9228CB974102D0 /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = 038EF2E261986E992472CC11A050BDAA /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8662D98E6F971202A84E72DF410D6A26 /* RCTLinkingPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = D4751B6CBCADBEBB84043585F1E2CB43 /* 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"; }; }; - 8687A2B5D720260FB5BD058135378490 /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D7A81FC0EC00A335F1B848A5B9B2058 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 869383D9C786778D32E76B930ED3229B /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DA37A201BF5D7381D9112D017DEB075 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86A2DF8F2CEDC1D71FC3528528EC1212 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 05FCB29EA8A0ECF40CDEC1CDB7D91201 /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8662D98E6F971202A84E72DF410D6A26 /* RCTLinkingPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 02835B7E9F15A20B6E4AE9528C7069A2 /* 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"; }; }; + 8687A2B5D720260FB5BD058135378490 /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = A0A4F9F2CBF92FD226A84C59FA7A1C64 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 869383D9C786778D32E76B930ED3229B /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = D9A72ABCDBA4B8CD103B81B4E7E1C6EC /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86A2DF8F2CEDC1D71FC3528528EC1212 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = B2CE1922FF9EF9AA7022846CC5699365 /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8712A013B77EFFFE014DA5E077E5AD8F /* PTProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = AA291DB2ED89D4A0FFEA36264FE8EA39 /* PTProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 871BC07577C99C9390C0D1B645B44129 /* RCTDevLoadingViewSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 2250FC50E639D872FED62EFC3AC77442 /* RCTDevLoadingViewSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 872C85F99AF9AC5147C28214DAAE06B5 /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = D079176E8C813D460512DB84FB1E2175 /* 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"; }; }; + 871BC07577C99C9390C0D1B645B44129 /* RCTDevLoadingViewSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F723AFBD19313F95B81EE05A68BEE3E /* RCTDevLoadingViewSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 872C85F99AF9AC5147C28214DAAE06B5 /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 31E68723753BB698800F91415F0E9881 /* 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"; }; }; 872F15B9D4F55040BA9FADCCA0C969CC /* FBLPromise+Any.m in Sources */ = {isa = PBXBuildFile; fileRef = B706CC060A954ECBE7FCABA41B30F199 /* FBLPromise+Any.m */; }; 8771DE0E347F59255E887573DD7F53F8 /* SKMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CC0D1DFDA41CA4C2FF7789D51313B85 /* SKMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 87726AEFF151E25755DBEEB384C7E2A4 /* UnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B3FA4C792E91CD68F143FD96B4E8CC2 /* UnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87873D084F83703DE3C009D5A2A0C043 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 0ADC1D86EDC0770C17F5DE8A7E021996 /* UMSingletonModule.m */; }; + 87873D084F83703DE3C009D5A2A0C043 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = EDD997E6F91C408EE3DD8B60C9BFB7D3 /* UMSingletonModule.m */; }; 8799A7E7AF7D5000F6488DC84D14E692 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 47E657793098F0045C496CCECF16B1DB /* rescaler_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 87A323D292E1CDF36C181E54CB70C413 /* QuotientMultiSet-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8524B5EA22FA3717480AF21588922B83 /* QuotientMultiSet-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 87BE04CBC078520DB22E157E03434C37 /* SKHiddenWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = C4519A2E6D871278F650A04C4A791304 /* 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"; }; }; 87C950DA6F51CBB47A8D06EF0E62DB08 /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F98BD56AB0D3E12B727577E2C3CA703 /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CD30803AFB9824BBE50FCA3F6145D07 /* RNSScreenStackHeaderConfig.m */; }; - 87CFA9DF3A759BA202334903B7234493 /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 428159FCF65A3E3D131720C6E1909CDF /* BugsnagErrorReportApiClient.m */; }; - 87D1C8D0E94309AE54E7909240E8B83A /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B69AB15F6C5804973CC3C68F8F721F3E /* FFFastImageViewManager.m */; }; - 87D604BE8872A45E434BCCBA813103F4 /* UMUserNotificationCenterProxyInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BFE97469F8EBB187FAE310F59862C63 /* UMUserNotificationCenterProxyInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 90EAB669E72009D3CE8E989050ABF0E5 /* RNSScreenStackHeaderConfig.m */; }; + 87CFA9DF3A759BA202334903B7234493 /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 40C7E4169C54113C2FCBB8C9EF0D0985 /* BugsnagErrorReportApiClient.m */; }; + 87D1C8D0E94309AE54E7909240E8B83A /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 22D68E4A3CC482FE1FAFB5220E879E04 /* FFFastImageViewManager.m */; }; + 87D604BE8872A45E434BCCBA813103F4 /* UMUserNotificationCenterProxyInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CF70E9F704F5F5ED8990A8B2666796C /* UMUserNotificationCenterProxyInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; 87E25D38EAFF2A33FA859D22936433C0 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = A24284C74F85ABEDEA36C8B3588B98E6 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87EBEDB6463EBB931CB123175B4DB568 /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = C8DA6D312263F96893BF291F3AA57FE2 /* ARTRenderable.m */; }; + 87EBEDB6463EBB931CB123175B4DB568 /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = B54009EB2A2484DD2B2C7B63927AF7C2 /* ARTRenderable.m */; }; 882E3E0939E69E7264A903F035731EB8 /* GULSecureCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CD310EE34B662E6CCA4901934453E4E /* GULSecureCoding.m */; }; 8830C0D09E511F205E03DAB1712DA5A3 /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E5923041FEB3469BAF5943D9EB05DEA /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; 885EA3B1BA03C6F70CD3DD6FF81A6E97 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = DB248296E395E7513088B9554AF15B81 /* UIImage+MemoryCacheCost.m */; }; 88601CA34DF66C7A443806B033497F04 /* StringKeyedUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 5441D9C8F0774DA9EBDAC235FF9839E2 /* StringKeyedUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 887C97BFF8FE6AAB23F2B7A4F365901E /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 90296E1E32178391C6AB06323D26E6CE /* react-native-safe-area-context-dummy.m */; }; + 887C97BFF8FE6AAB23F2B7A4F365901E /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 28842B3C970E39EBCCC32EBB0D40F67A /* react-native-safe-area-context-dummy.m */; }; 887DC1F1F3429DD83EDC126591F3B6A8 /* OpenSSLCertUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8606A8A06A4A6D3686D2E6AB02E47B63 /* OpenSSLCertUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88A7546CD0CC5EF28061417BEF92362D /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 405FB693E762B3F5A494726FE3442C0D /* filter_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 88C7713DC9D4FE1662A3F9F4F1B8EF2A /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EEDEF2DBD6C72DE1DB720898CE3BF80 /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88E0E54C89590D83D5BFA15F1331204B /* HazptrObj.h in Headers */ = {isa = PBXBuildFile; fileRef = 379BF6B46ECB17D231150C0C428F15DF /* HazptrObj.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88E178158964CCD11D98B6B6454039C9 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = C3F78613C365C6584A4A55392589118F /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88E9E04B0D817DDB7556CC2EDAA5FC2D /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CFAC1F94D57CDCB0B5D001D944668F4 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88E178158964CCD11D98B6B6454039C9 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = B5E2FE0F645B8A10E9354F5F1310E458 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88E9E04B0D817DDB7556CC2EDAA5FC2D /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C51911E24EEC25A472F557BDA41A0839 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88F192ACC6825B1BE2B159EB4DC00CE7 /* ScheduledSingleSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = A687F8B07E3CA701D4812ADD113A2D63 /* ScheduledSingleSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88F339C128D6A79C0C6741E8F3FD5DEF /* TimeoutQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9C7345871F0300E23872F039A8D7BFD /* TimeoutQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 890E6CF6CD7B12C3B0D4523005A367BB /* FIRInstallationsStoredAuthToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 083C1356980DE60A2D34EB5A38831972 /* FIRInstallationsStoredAuthToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; 891E992D9EB633B92E3DF27F9B310C23 /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 12F1A44B8CAD8E3E41C10E651764C742 /* common_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 892099FC0427066886708CDC3C948FED /* FIRCLSURLSessionConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D0BC66D0E9739DEACF3B1336987FEA6 /* FIRCLSURLSessionConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 892372828F1C3FB28FAE3D384E5C32F4 /* FrameHeader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 17673E3DCC886287D6456B94CABBD053 /* 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"; }; }; - 892B3444B698BD0EE68428A35E3EC3E1 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 1435E1CDA29F93A8F1AF232E9F886424 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 892B3444B698BD0EE68428A35E3EC3E1 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E30D0570676A57905BC13E759607211 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8936375FFA316F9576C0448D9414F21D /* CertificateUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F3350D0DE7EA6E6558960F9441FC697F /* CertificateUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 894C64E73E77B4F3B56C3D49CA9C59F2 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3847E83C0505B4422BC11B984C5E7B47 /* 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"; }; }; - 895C73874B659DB8543479CE6EA43BA1 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = B2C87D6A57E3DC54C8AC21CEC5488A9A /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 896B6ABB97CB90770CC46B3066F4C004 /* EXAppleAuthenticationRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B7CA66794F8BDD0D8A7E2BBCC81722C /* EXAppleAuthenticationRequest.m */; }; - 8980A12452B55C896B6C9E7DFC35873E /* RNFBMeta.m in Sources */ = {isa = PBXBuildFile; fileRef = EACEDCF5538FC4FA4DC6AF4EA003A13D /* RNFBMeta.m */; }; + 895C73874B659DB8543479CE6EA43BA1 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = B8F8291E20B8E31ADAA0F53DD6AACDFC /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 896B6ABB97CB90770CC46B3066F4C004 /* EXAppleAuthenticationRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = F1D5B74F92F3A9D550AA716C8BE6D124 /* EXAppleAuthenticationRequest.m */; }; + 8980A12452B55C896B6C9E7DFC35873E /* RNFBMeta.m in Sources */ = {isa = PBXBuildFile; fileRef = B46538D0F117CDC900C3D745B78997AE /* RNFBMeta.m */; }; 89972CCC301F9D77EBE4BCD2C1830472 /* firebasecore.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B8BF26A318B7AE0BCEC7BEFB19ECE88 /* firebasecore.nanopb.c */; }; 89A1C44FF67BFE028336E28D48080B42 /* Parallel-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E63EEB3AAB147DB6D68D011BEC098641 /* Parallel-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89C01238C814AA7A0C7F912C3FE79F5A /* RCTImageURLLoaderWithAttribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 715AB6366FF7ADDEF6ED8B5C95C95B57 /* RCTImageURLLoaderWithAttribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89C01238C814AA7A0C7F912C3FE79F5A /* RCTImageURLLoaderWithAttribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BC3B4C116644462101BFC91306B5F3C /* RCTImageURLLoaderWithAttribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; 89C3A612CD4ADB81C44209858A136F74 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = C20049E8620AE1385BB1CDDE0F70E4CE /* cost_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 89FCCC5B1507BBB969630D23DFD23D7D /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 4023F329225D6A97E239B3392E99A0D7 /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89FE8539EBC5A5F987FCD9985BAB3765 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A6BD875B4BAD5FF60A223E6B55FE2A2E /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89FCCC5B1507BBB969630D23DFD23D7D /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = B0B505E53C1698C9629F2470938C249F /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89FE8539EBC5A5F987FCD9985BAB3765 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = AB4BE439FE677F2C274ADDEE36ADB81D /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 89FF6B6C4AA4FDAB376D7373078CBA26 /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = FE720CD807419A6800517A587B0E4A00 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A1373FBD88F35501478391992C5376C /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 43A4617E266BC6F83E103BEE2397622C /* huffman_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8A16248DE23D916CBBBFA8DF54392450 /* Observables.h in Headers */ = {isa = PBXBuildFile; fileRef = A22D011F800C14E3E1D42398E3B93B38 /* Observables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A3830EAA4564C2AA7924BC01769961B /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CEC75A185FA32E94A5D53D66CB4BCDE /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A3830EAA4564C2AA7924BC01769961B /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FA59E6FDE411F774347552C29C245699 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A41382038820FA639C06930D29E516A /* FIRCLSRecordHost.m in Sources */ = {isa = PBXBuildFile; fileRef = 679B79E15C566E210C77FCAE1DCD48E9 /* FIRCLSRecordHost.m */; }; - 8A460C384013AA07292979994D74FDC5 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = FA62BC0653157BD865D46127AEDAA0D3 /* RCTVirtualTextShadowView.m */; }; + 8A460C384013AA07292979994D74FDC5 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A5530412E3FA9F84FA25D1628F52DC6 /* RCTVirtualTextShadowView.m */; }; 8A5FF98CE5E2F2D16D59030E8176D67C /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = C7BAC394858823FBA7E97990F6AC49E4 /* FIRInstallationsItem+RegisterInstallationAPI.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A6AB74E5D979D543445E1AC15D30957 /* EXKeepAwake-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF7763DC2839EBBF4377FC5EE30D15E /* EXKeepAwake-dummy.m */; }; + 8A6AB74E5D979D543445E1AC15D30957 /* EXKeepAwake-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AC6DEBA2FCF6E7F35C4B76020F58C198 /* EXKeepAwake-dummy.m */; }; 8A6DF1BBFFB0458130A7B08A9AB549C4 /* FIRCLSSerializeSymbolicatedFramesOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C4047EDAB36FAFC73C964E7CB4B38E5 /* FIRCLSSerializeSymbolicatedFramesOperation.m */; }; 8A77D5E1942F02C90AEEF3957255C924 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DC1504F7BC626692F7D9E82B86E7945 /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A803798304FFEFB941F19459C6EE9EB /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A796CF694DD3645B4FD6E6C681D161A6 /* RCTRawTextViewManager.m */; }; - 8A8CC5BB726A951810D3CB4E255AFBB2 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA00DCC0F009D822BBD751887B83A58 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A803798304FFEFB941F19459C6EE9EB /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 15D7F316A15C295DBAC73122E3A9F3F5 /* RCTRawTextViewManager.m */; }; + 8A8CC5BB726A951810D3CB4E255AFBB2 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E2D17745779B1C6343FB92BCD96DE3DB /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A97C301C30F05500158D273E8EF25B0 /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 0102F39227A15B9D206728EC8E11B82F /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AA1352C797A67F54548DDA2633860C3 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = B9EDAB230A22538F001EA2540A377270 /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8AA1352C797A67F54548DDA2633860C3 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 02E311417C5E0C06D9146F250652994A /* RCTLog.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 = F3BB2AE2F63C291FF044365616F2EBA4 /* tree_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8ACA6634C4493277533C89BBEF7011C9 /* FIRCLSDemangleOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 251E2B37D10A53AB4AA265294CBC9E50 /* FIRCLSDemangleOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8AD74E897385343A29251B5A712E9319 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = BE9244916F677D32A4DACFD9D2E45785 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8AE648374CE065E863AFF20F96BABD0B /* FIRCLSUserDefaults_private.h in Headers */ = {isa = PBXBuildFile; fileRef = 56AC50337CE66A02050975CD595E8B97 /* FIRCLSUserDefaults_private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8AFCA90D1EB93097DE2A5298C729381C /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 2329226FFEA5104B4DD6E15DC4ABD2E5 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B02EE2FE00F2B94A3CCC7D603E95A64 /* BitUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = ACB931B616D9A99DDDC08850C664FAC0 /* BitUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B06017BE3E8E65F2B4C459B94742090 /* REAUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D7658D1A395867640649B670435DEF0 /* REAUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B0E5441C89B63D6E7B68E74DE638616 /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E03751AD54F23657B6F74EA4C08F74A1 /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B0FAC33C535F98DAE078B52699AE93B /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 32EF82EE1A1D8756C98666B0A26B9255 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B02EE2FE00F2B94A3CCC7D603E95A64 /* BitUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F0ACB1CC1FA83E32826A4E6A0D15CD93 /* BitUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B06017BE3E8E65F2B4C459B94742090 /* REAUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 07172DEFA5E87694B043C4E704976BD9 /* REAUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B0E5441C89B63D6E7B68E74DE638616 /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 54EC38676D071FA5E7F5129B3F709FAA /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B0FAC33C535F98DAE078B52699AE93B /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 319500F8B8551FAE8E84E3DB8A58398A /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B185D7F0B0EB26DF0FB3A62580B1068 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = A24C7D282F66A9FD25CBD5041231EA2C /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B1A6727A64798A9A7D8B7AF7C25CCA4 /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B5CAC816DDEF983488160B440AEEED2 /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B1A996DD9EA42525DA751399F5EA151 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E82D8ED9A1193569F1625089D9DD22D /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B1DB9CD4E3F75DB565EBB2ECB54DA6D /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 110BCBF80CD5F7D0C4E5457C524724D0 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B1A996DD9EA42525DA751399F5EA151 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = ECDD46BC09EBF203E065670B5970016A /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B1DB9CD4E3F75DB565EBB2ECB54DA6D /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = F401135CF9E9CE9B09A3DA38AD61A99D /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B1FBC37AF98101724B7B6AA22A23490 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 852C0606A4CB62EF49CEAC0A8CC22091 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B445DA6E9CADE8458DD316E4B83DE93 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF8281271ADB1F358A919C352A86515F /* 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"; }; }; 8B544C209EA7679C75EE239C93C0B563 /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3230208FB2508F403AA1AAB211A0838A /* SDWebImageOperation.m */; }; 8B930FB85F7CB02FF575EB90CF55350F /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = EE25F1E9F68747A3CBE0820C8E825A24 /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BA01965AE0F888BE823F704AB0EB6A7 /* RNCSafeAreaProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D6E869CA081208808CD5B105FAA975B /* RNCSafeAreaProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BB39318AFE7E7ED67B231757AD7E96C /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D713BABFAD65EF8C45A6700E4B6F39F /* 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"; }; }; - 8BB881B01F898C5F3A979090A41AF7FD /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D5252337079F8CE162493DD6B908CB9 /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 59BC674A10587B8D18CDFE67FBC44D0A /* EXConstants.m */; }; + 8BA01965AE0F888BE823F704AB0EB6A7 /* RNCSafeAreaProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FF898273E1EBDEA1442B5425490A0C1 /* RNCSafeAreaProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BB39318AFE7E7ED67B231757AD7E96C /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4575E8ADCAB73393BA894FC19D5EC4DB /* 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"; }; }; + 8BB881B01F898C5F3A979090A41AF7FD /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7EFF727BCBB89626C2C49DE6C79EB6 /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = E3EF212C057AA95F9077AB0E0DF49834 /* EXConstants.m */; }; 8BBCF6325AFE6C75A08228D776D31240 /* FIRCLSAsyncOperation_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = D14E497BA6EACDDFF8B4B8F6190DEBAE /* FIRCLSAsyncOperation_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BDC780EFAEC1B9826D9B25A85BE47E2 /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B07A26A7DFBB35CA9A90B48E8286C628 /* RNCAppearanceProviderManager.m */; }; - 8C05F409BF9157FA88E876E392CBDA2B /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F316D102DA9DE8CDCD08BBACE4B96D7 /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BDC780EFAEC1B9826D9B25A85BE47E2 /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E362F6B7A1279B34FDC55502D0908A7 /* RNCAppearanceProviderManager.m */; }; + 8C05F409BF9157FA88E876E392CBDA2B /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = BC9FDED44C7F4E87F1D096925E259F14 /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C0663F8B96853E59403275B7CF470F0 /* ScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 32DD0D755D3ADEF89AEBD4ECF7C5D440 /* ScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C0A640F7F5FA4D7E162DE9284F16BAA /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E4700CE42BBDEA5596BBB26A0B831A7 /* vp8i_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C23A9CB3736861C60E737D46612EBE6 /* FIRCLSCompoundOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EDD1717F9D97F2BF385E3E0E68B4D5C /* FIRCLSCompoundOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C48EBDB54F8868583420D12AFC00957 /* FIRCLSRecordBase.h in Headers */ = {isa = PBXBuildFile; fileRef = F6920291020C8AB8AC7EFAA3308497EF /* FIRCLSRecordBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C63F89239E4CD07404FFBA90353D64A /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = F31B8E1CFFC76235A0DA3FEAAD5CBE1A /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8C63F89239E4CD07404FFBA90353D64A /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 82DE9CD365DBCE5C75BE99D75B93318A /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8C908950962F392DD1C6D0F749224A8C /* ru.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A6C5BE5A9FF7E4B6E04146F4B4ABDAE8 /* ru.lproj */; }; 8CA624564BD56CDA821A6C12FB87DF65 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 3A4F7ADBFA58064E9CE4558D9533E50E /* filters_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8CBA61340D8457775EC61BAC42083002 /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E8845CE8F3CFCB7F539E339526559513 /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8CC74E310D402BA29146B705FACCBDB5 /* OpenSSLHash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 542D6EE5A27AECAFF639F3DB53420D60 /* 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"; }; }; - 8CD181EB78A6900601F244D3312CB8E4 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 80BAA64760F434809E497C3D06BC1AA8 /* QBVideoIconView.m */; }; + 8CD181EB78A6900601F244D3312CB8E4 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = E5A6AE0135A349D0684FF2E03A7955E9 /* QBVideoIconView.m */; }; 8CE1FFBE9EB5588285C3B8F625FC41B6 /* FIRCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 568DF2545E111D7BA742814E569DABA2 /* FIRCrashlytics.m */; }; 8CE299B1BBEBA23B44CDDFD5C12C61CA /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 48C58C0F2FD2122CB6F5086644CEB0AE /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8CE9ED65324F42982FC8FDFDD56649EE /* SKTapListenerImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CB297215DDE047954D532317C89D84F /* 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"; }; }; 8D105DB328C60025F6EE3BECF043717B /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1D01E5ACAB1A14C697739FA440102BDE /* 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 = EAF23BFCE92AA47A2873B6BC54CE9A82 /* EXImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D1B7E50CCEA46357C7172266EDE1D76 /* EXAppleAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D76481BA42895BBC55EF6913C8B9C0ED /* EXAppleAuthentication-dummy.m */; }; - 8D330D24721F7012182EBB1C9C8F29B3 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 638D22B036121DEA40AC69DF1D69F969 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D1767AB59653E8540E79B2D42F2E7CF /* EXImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 13EEFD66936CE1DBF685FDEABB269598 /* EXImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D1B7E50CCEA46357C7172266EDE1D76 /* EXAppleAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 80E5BFC4461DE1FA8842959B06C4E16E /* EXAppleAuthentication-dummy.m */; }; + 8D330D24721F7012182EBB1C9C8F29B3 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = F1DDEEDBC45048DD00B19D8A069A228A /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8D396CB6D3FF882946FDF08D7DFD7701 /* FLEXNetworkRecorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 28BA4DBAEDB3E2EE40C53AAF5C23B2B5 /* FLEXNetworkRecorder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8D4F75714A2F85B5F2ECE9860162E0C9 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7410F2A1ED7C7B68D0E68EF4F3F94F89 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 8DA7E02BFA7603701094ACD79D4EC43D /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F86E8C83611809E996BFEE4CCDE8343 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DA7E02BFA7603701094ACD79D4EC43D /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F86796576A56F3B23C0661CE8378050 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8DC95723D5F6DD80CF41D0A3D4BF1B12 /* FIRCLSURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B0AAE84C3EF2B9C607571DAACB65FF4 /* FIRCLSURLSession.m */; }; 8DD2BAF772C271D2D4FAEA77CBFE0CE2 /* SysTime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 612020D5BE4C593ACE0D7CF102536480 /* 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 = 132A282E6860A4B3F5DCCBE7DD8606F7 /* Sleeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DE0762FFD0255D50A0BB5EE646016DC /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = BDCA37D27080B97E0CBCD46A2CEF9D5C /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DE1D9F38965C1543FD7049648F04946 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EB9562B8DAD145A461D51B83CAE03BC /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8DE0762FFD0255D50A0BB5EE646016DC /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = ABF86DAC23E4317452CA96401F0EDDCC /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DE1D9F38965C1543FD7049648F04946 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F3B2DF0F219B0340B81B5D0D197F591 /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8DEF96274F9BA17DDE42AC2EAE1EC1AE /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 05B0307A15AD186CB2A696F28EADF3FA /* UIImage+WebP.m */; }; 8E035517C8AC7D884CBA5819743A15A3 /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = A7520D469435750C9E7F2D06CC30E5E6 /* endian_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8E3E30DA44DAC307FF0AFFC9F890E9AE /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 89ED429065B06DB4B6B4BC6DB02F0D8A /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8E4903E3A854CA8821E6962DFE38EE56 /* FIRCLSApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = A535C14C4C0DF18A481BAC455E82A9B5 /* FIRCLSApplication.m */; }; - 8E637D9AFA7F4825A92A6696EFD820AF /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = 76181D3BEF9681839092B950ABBDB66E /* BSG_KSMach_Arm64.c */; }; - 8E755EAC5B5D7B0BF5E5A9E4A2760A01 /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 9672644DCA64089147DE331ED18B734D /* BSG_KSMach_Arm.c */; }; - 8E7FC49BF63F8BE2BD42B8156BCDB67D /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 05D5E525457517A50EFA34B760767F4B /* 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"; }; }; - 8E842C89450F1F42FD0A472547D2DB91 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B891790864D2327604E885A1BB1CE29 /* RNDateTimePicker.m */; }; + 8E637D9AFA7F4825A92A6696EFD820AF /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DA2B1B3289D8AEB084D56AD99B69F8 /* BSG_KSMach_Arm64.c */; }; + 8E755EAC5B5D7B0BF5E5A9E4A2760A01 /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 55AE436B644671AB91F9EE75FFF4AB01 /* BSG_KSMach_Arm.c */; }; + 8E7FC49BF63F8BE2BD42B8156BCDB67D /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DC346ABA1F9C996919CAC7ACA936F12 /* 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"; }; }; + 8E842C89450F1F42FD0A472547D2DB91 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 851E02DCDAA1E364BD099CE1FF998D28 /* RNDateTimePicker.m */; }; 8ECAAD611878CFA4CA1E91A5ACC7FC41 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C771730FFF6928CF80ABE9AFAAACDED /* dec_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8ECBF0CF18AE1DA98166F095BF0323F2 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 41CFD4D3D242650FEC3BF8CFEA88C08D /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8ECBF0CF18AE1DA98166F095BF0323F2 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = E5944082310598AFF7F7C3336AFE168D /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F026D24EEBFE343FDBAC023E9D56938 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F76A216371040753C1C4D2BB00912EE /* quant_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8F0E822E61D22F4B1F22B72D68D3B3A7 /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B647D738484EA506391EF525673DCDD /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F1C53837C62D18AB63C32DF23B69F05 /* TcpConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0C6353D292D482C359B6C1190DB9BA95 /* 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"; }; }; - 8F38B7FC2763DB3FBCD255BCBA01D661 /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2289CBE7210E7EE7FD37438C92987E2B /* BugsnagKSCrashSysInfoParser.m */; }; - 8F47D298D362B0669D7EBA48AA0D21E4 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 15BD58F56C209807155B2D73D322F169 /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F38B7FC2763DB3FBCD255BCBA01D661 /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 19E2B4C7FA04C7A3F069EE6BCFB3C136 /* BugsnagKSCrashSysInfoParser.m */; }; + 8F47D298D362B0669D7EBA48AA0D21E4 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 44BE3DE64D0ABB39CEFA333C566E8742 /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F6185825FE06EDAD9D568567CA6DB6C /* FIRCLSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 33661B36D9C3F3010D759B837CB5BA85 /* FIRCLSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F7DA096463C9D570850B73D39BE284F /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = 21EF648BF1BDE8D65ABE5F0CAD9A2DF2 /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F89587395083D23F1F53F8F8CE7AABE /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A293917258C8AB05CB084772D82E4A8 /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F89587395083D23F1F53F8F8CE7AABE /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F029ED0DE948E3AC01C65D596DB484DA /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8FA27A3BC06AD1CED8F5389442861A4B /* RecordIO.h in Headers */ = {isa = PBXBuildFile; fileRef = B2ED6DBFD924840998A0C46761F585D7 /* RecordIO.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8FB10A988A6DE8AB4FF13B4642AFFF82 /* SKViewDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 75141A72227561A2160245645B10FB64 /* 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"; }; }; 8FDC510019D77E1C0D7BA688F8C55E7E /* ManualTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02A4CC48C0CC44FDAB7807933A26642A /* 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"; }; }; 9006761B0D2F13AE8D9DFB4362DA3631 /* SysMembarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 686CCD9DC1D719B18ABDFC8DDC09AFBC /* 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"; }; }; - 900ECB43F84D1736498F9E5D9ED5807D /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D0E4678A27EB9FBA6FD50EA9E4E835CA /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 900ECB43F84D1736498F9E5D9ED5807D /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 637992891B88468DF034BC2F9D460507 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9035970046360BBEAB0136DF92759704 /* File-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D3ADD27AD67ECF38BDF5E6B60712927 /* File-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 903F10B3A802BE1A7C55CE787D766035 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FE920F4D511C9670619E33AE211B85A /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; 904E61CACB3A8BE0AC1D58731CDEF5E7 /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = C307FA4DDA124CE3D860A07650C7336A /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90544C74C36B85E098F17E2974C49C2E /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 39FD99D4B527A7357DAF06D5AF92D02C /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90544C74C36B85E098F17E2974C49C2E /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 633AC6F0B825488021681FD9A4E8E2C4 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9054A97EE55DC585520DE4A54913AC7E /* crashlytics.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B526E45A33E8AF5EBADDB002F415104 /* crashlytics.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 60E892288018FA0EB431FBD7CA1C5AC8 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9062E6AF8DE81E533095420BDE289902 /* RNCSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8518359C15379D9FCE0CEA568A8F36FC /* RNCSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 792F207CC13460738EEC66C16F646437 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9062E6AF8DE81E533095420BDE289902 /* RNCSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6659E882A707ED3089A6B423BFE4B183 /* RNCSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9065DD549003066B9A069F40D2485CEC /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 314B78B89323001F632881933C672381 /* lossless_enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 906BCD291B4D2E061B4901A35B433424 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 27F67524319D29AC0776504BF2D178C2 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 907C688E7CED70D0A14A1E55389A49B1 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = B50FCEF319BE9602824CD526D0A8139A /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 907C688E7CED70D0A14A1E55389A49B1 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = CE54E17C4D5E975049EEE8EF60B1CD07 /* RCTSlider.m */; 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 = 4BEF802392AF5D77C00017078750251C /* 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"; }; }; 90C95F7220758ED79831C1CF363000DC /* SSLSessionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = E4BEBC275EE6A6E239E088F61BE38B0D /* SSLSessionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90D47A2F7D1BA712F1391D2371AE5C77 /* Common.h in Headers */ = {isa = PBXBuildFile; fileRef = E5C114546DABE8DC1B610018CA7490E1 /* Common.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1978,155 +1996,158 @@ 90DF74C108A3AEC958E52AA1B81E67BD /* FIRCLSNetworkClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 72865931433A9294C64A0C359F16EEDA /* FIRCLSNetworkClient.m */; }; 910C6F324CE795FE033EA8C7ECC59865 /* PThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9EE8EABA697CAD3C088C278AAF62F880 /* 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"; }; }; 91224D343EE935FA676E7EEEC14D3B22 /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B6FB942E1E461388F22F393A3861A0E3 /* GoogleDataTransport-dummy.m */; }; - 912BA82FAA7D7DA2A055571737D12F73 /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = 7090AC5C80B9FEB27EDB0F07FA244F1F /* BSG_KSCrash.m */; }; - 915A4A7EDF26CED07E1D1434EB1E82E9 /* RCTTiming.mm in Sources */ = {isa = PBXBuildFile; fileRef = D3ABDD622ABCBDBB9B57E4C372874B25 /* 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"; }; }; + 912BA82FAA7D7DA2A055571737D12F73 /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = BE341F17C723BC55110B4ED51AEDF689 /* BSG_KSCrash.m */; }; + 915A4A7EDF26CED07E1D1434EB1E82E9 /* RCTTiming.mm in Sources */ = {isa = PBXBuildFile; fileRef = 28E17600EEEE921DFF6A2EA32F09B0E6 /* 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"; }; }; 916FA53C203CDD1276B204C0641E914C /* ConnectionSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 934D09E554C7222B4985745923F5709C /* ConnectionSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 918A7791D84FA11E7FEA823B2FEC4987 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = BB949948C374544BE44417A02D9D49F5 /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 919B8440D95D27FEEF6C0D5DE412529B /* RNFBCrashlytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E47B26D53B784AB45DBB639ECACA652E /* RNFBCrashlytics-dummy.m */; }; + 918A7791D84FA11E7FEA823B2FEC4987 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = F5D1A7FB15477A7DC76FD9805285F811 /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 919B8440D95D27FEEF6C0D5DE412529B /* RNFBCrashlytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B6FD050668829BB06823DFF34EE569C /* RNFBCrashlytics-dummy.m */; }; 91A4E3F7372B8CFEFF1DE35BAE442288 /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = D552AA6F9A19F177C535E3D8C9996AD4 /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; 91BED5DEF72E7A2E92556E30A48337E3 /* StreamResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = AE7B9BB25D34C030377834B8D443EFAA /* StreamResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 920921F79AFC9D94412FAF090E84EC5F /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AB05BEFA17D5D67D3C53036B5AE38E4 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 920921F79AFC9D94412FAF090E84EC5F /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = D0D829E35FB56A68F2CAA7B3C9832583 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 92229F2BF8BD1E6D19E035F6517BAAAA /* FIRCLSCompoundOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = CE32AAE75C4BD581E7BC9D6B73A8F88B /* FIRCLSCompoundOperation.m */; }; - 9257691CC143F816836F69F027AFC549 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C5965AA3E29FC898B32DF6B21D82EEA /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9257691CC143F816836F69F027AFC549 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F947C5849117174417F03B10F031A7BE /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 928C9250DEB2ADD3214968107989CB5D /* ProgramOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C671A04B96474F5EB8546560FA40157 /* ProgramOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 92AA74D1F05BBE5402796AA8225D8834 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E6E94825016F0C6C8B35876B1FF6E41 /* alpha_processing_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 92AFAE33AD485646B3E7EB8772215A18 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 63424A439276B5C1DB6C6C9C43654A68 /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92B21E9CCFD8B3F2F52F566FE38E1371 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = 75034DF620B40951906965C9E730EA7E /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92BB5A22E15E8168527D4CBB91F23F23 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = 446908C47C306A48B98B01AA87A5B873 /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92BD9525B1E4B1F40B7B2E75EA613716 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC9927896ABF0D4AD242A9A8AABBCDF /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92B21E9CCFD8B3F2F52F566FE38E1371 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = 49AADD6BD5E0B32B16B8CC3831EE45D6 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92BB5A22E15E8168527D4CBB91F23F23 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = D65994D8884E9332444C83613BCEDA44 /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92BD9525B1E4B1F40B7B2E75EA613716 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FBBAE9E2775C548336091B0D63DD00A /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 92DF9D03171AB34F00DD37988294E67A /* YGLayout+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = D6616131E1CBAE84597361AB3FA6252B /* YGLayout+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92E0F28150B20AB70F5302620AA6AB4D /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 80227D8A42D28C003E66266081075B52 /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92F22C6A1C5543C01988F3D6A1B500BE /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 2305823C299B252E60CC3F7381149FCA /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9311BE9AC41AD0209977A114A784A816 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DD4C456AC60D79C47047A17DC8B9BF2 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92E0F28150B20AB70F5302620AA6AB4D /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9731C43347EF79296227EA00C54C4F9F /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92F22C6A1C5543C01988F3D6A1B500BE /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = D1E79E6F6FDF19F1F5B2BD6EAA6D9D52 /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9311BE9AC41AD0209977A114A784A816 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B63C1DED4922145836AA2E642AFEA97 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9352E7B5B04B7ECAD1EC5445CFBA581C /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D6D3AF7090218B073DD2E01A02526B /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; 935C588017563AEFEB80DC42C91EC15F /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 67907C262A2A52DF0659F7BE875DD547 /* lossless_enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 936FECABE93E2B15C5C7D6282A13CD49 /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B07305F5B13ABC3DF13817C3AD7C9FD /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9385370A8FCF255A12BBFA394127481D /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 92DF677A3DDE76EC4D1B71DDBA4FAD29 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 936FECABE93E2B15C5C7D6282A13CD49 /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = AD089AD9926351A99E8454AC7E9E3FC0 /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9385370A8FCF255A12BBFA394127481D /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5912BC63F951FEBDB4632962841E5925 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 938F01948CE052FFD89E82C8B4C9F0E0 /* RCTSha.h in Headers */ = {isa = PBXBuildFile; fileRef = 973566A0731048F981CB918094BACFB0 /* RCTSha.h */; settings = {ATTRIBUTES = (Project, ); }; }; 939AF54C8251EC34E539FB93C1766A4F /* AsyncTimeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 91C24BBC5333024EBB822ECEC5BD27E8 /* AsyncTimeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; 93A0E9A6CC99BE8D70FD6F259C9D5891 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 76926F98786B77F7D303AA80C16FA6DA /* quant_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 93B088A61714575EF39E60990FCAD71A /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 00C5A3A73D5F0FA3B10AE16775F271DF /* React-RCTLinking-dummy.m */; }; + 93B088A61714575EF39E60990FCAD71A /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 91D226FCE30BC7A319F2B070E94819F5 /* React-RCTLinking-dummy.m */; }; 93D6989F898C9EB22455CFE2D5B6A1D0 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0C0C71BCED1990979D5D0FE80FD69E99 /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 93F0C82780EBEC79DB8700ED1CF96F8D /* GroupVarint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD91FB7DFDC4BD0B1FEC91699C9ADFF9 /* 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 = D5328BB01B041DED6741C77026C1C3B9 /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93FCE248F90CE025EE8B96598B4E1722 /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = FDDEDD05EF147680EF0DBF08ECFBEF1D /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 941E387447EAFE9E1F8C465D8F9A2067 /* FIRInstallationsErrorUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A822C5768E4D12C183F877B6B8B0C98 /* FIRInstallationsErrorUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9439847058CC81B6D2C14449CAF757A2 /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 0204F448C1955F89B2D7BF442FA8A461 /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94495C8601E753AB823E75829956C014 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = D20E2386F518E8E4CE98EF9C8F896925 /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9450575539B9C4302649BBF0589B4CFA /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B78492F97AD567F7C43E727921B571DD /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94495C8601E753AB823E75829956C014 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = C9B671744E30424E7E777FD565C6D663 /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9450575539B9C4302649BBF0589B4CFA /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D5429BBA9D90375789702E87959B59EE /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94717BAE4332BC8022BB19CDB3E538C0 /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = 07A28140D5B3D7A5A0F04DA4C43790FF /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 948B1D6FC3E492867C727A60EEB93ADF /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CC4A8A5746AC02E50BDE6FF0B381FE14 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 948B1D6FC3E492867C727A60EEB93ADF /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3863BCDA0530CDBFFCA7F3622938626C /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 9493BDB77B9DBE1604961046C351611B /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = C8F34AF3B88CCEC074D0777A5E4688FC /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94A072B9A08448DC0F01CA2573467148 /* HHWheelTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F53EA5B542DD00983E6AE9DFD0BB609 /* HHWheelTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94A1BB0FFB9E589FBC68C400B110F11D /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4A2C5E2887D63A18963E624F9C1A0313 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 94C039AE0D8233E82EBBF8CD60D104E1 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F43706799D302C52DA8D5D9A93654C0 /* react-native-webview-dummy.m */; }; + 94C039AE0D8233E82EBBF8CD60D104E1 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 877D5D9C11F99DAB97885055DB0552B1 /* react-native-webview-dummy.m */; }; 94D2057D96B17B5338176E0EAC6D6118 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 291639C7BB6B0EAA310E13DCC6249909 /* bit_reader_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 951940BF4207C64AEE9C7B84490EC88F /* RCTTVNavigationEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 843E1C4D0C5A0C443F0C222256DADA01 /* RCTTVNavigationEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 951940BF4207C64AEE9C7B84490EC88F /* RCTTVNavigationEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 504E3A912F55EEE2FCF2CBA9770156AD /* RCTTVNavigationEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 951BCD0242FD1AD0318E94EF9F9749B8 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 36F17D58E2AF986CB156A10C008B9B30 /* SDMemoryCache.m */; }; 9537FDB044F8D4B6CC9305A1A5A636A0 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 39505FDD3C73548E192BDCE91AC8F221 /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 953B94BD133A7467F4F38C0B944D76E1 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = A9C6360C93996D598F2058C604BA7BB1 /* filters_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 953FC9B45339E991D954682AE264CCD2 /* EXAppleAuthenticationButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F5405D459EA4CFE33A1E7CAE2888DDD /* EXAppleAuthenticationButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 953FC9B45339E991D954682AE264CCD2 /* EXAppleAuthenticationButton.h in Headers */ = {isa = PBXBuildFile; fileRef = C81CE05CBDBD3F1E22A33AEF3AF016D4 /* EXAppleAuthenticationButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 954CF52BEC6E2171FCF9E7699BB00639 /* FIRInstallationsIDController.h in Headers */ = {isa = PBXBuildFile; fileRef = 57557DD842E78A07D77619A7523D6FC7 /* FIRInstallationsIDController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9563C62CBE3FBA3E6607079FBEEABC84 /* Fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B6F1466EA36D8D3E080E9420F560BD55 /* 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"; }; }; 95ADB8AA6795D4F34ED8DFE1825B22DA /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B518CB0CA3CA9F15B35BAD6C8FB816C /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95B68C33D8A3CA6C685E64643173F8C2 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = C306B80865CC3E63B75556571E0A7DAD /* RNFetchBlobProgress.m */; }; + 95B68C33D8A3CA6C685E64643173F8C2 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 325E5423BF9109BCD0A9DFDF0A25EDB2 /* RNFetchBlobProgress.m */; }; 95D26AA5A6FF5AB6CB7AAD85FBC462D4 /* zh-Hant.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B7C6BC5E3A68DE13D360B6E9E54332B0 /* zh-Hant.lproj */; }; 95FD3DD243CCAF1FE5E59471F436A5E2 /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = 16533A2A308C81290F055EC0BB4FC287 /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9607EDE3AADED76286856B60D1F6869F /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 90FC737285D1D3969BDF19BE4863D4C5 /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 960B81835CCACE99EAF6D7301646A57D /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BC2DA67449514277872F910294874E7E /* RNGestureHandler-dummy.m */; }; + 9607EDE3AADED76286856B60D1F6869F /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D9B4C6AB6A39AF8B56EBD72B0576BF /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 960B81835CCACE99EAF6D7301646A57D /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 05272CDDE037E09ADAAFE901F6974A42 /* RNGestureHandler-dummy.m */; }; 9648DE8BFD642A580258906D5C4A72AE /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AC05E9B9753B88DAD09B289AA7D1B97 /* anim_decode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 966AC313E86CCDA77AAA018F2E9CEE3D /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 690A05F90832961D7FE749FC31F1FD13 /* RCTInputAccessoryShadowView.m */; }; + 966AC313E86CCDA77AAA018F2E9CEE3D /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BA4B75A0545C551B55B2BAB5C630F94 /* RCTInputAccessoryShadowView.m */; }; 9688F6896053FCA3235E23B12FBA2925 /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = C029C98C5203133743360966E72DD122 /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9699F0953E11FA6A675DCD375DB58C3E /* Flipper-RSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D9D2E0011E6FB9B34452AAF1764422BD /* Flipper-RSocket-dummy.m */; }; 96A00C011A72200F5C719AA69C379BFB /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F58DC838F3452E24C374CCF9C941EF4 /* color_cache_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96A663C9226DE5C25B3B2311AE80CA2C /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = FB391EAC7181CC3C2481AA66C998D311 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96B16CBD2DD52DA614AC23267995DCE9 /* UMPermissionsMethodsDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 76D29060929ABEDA73D38B62C2FFAD56 /* UMPermissionsMethodsDelegate.m */; }; + 96A663C9226DE5C25B3B2311AE80CA2C /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ADCEDA931ED99DB745AC91AFC84343B /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96B16CBD2DD52DA614AC23267995DCE9 /* UMPermissionsMethodsDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = CDA040136B3239A03E1407AF961730BC /* UMPermissionsMethodsDelegate.m */; }; 96B1848EDA12E024991DC71441FB7728 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = D6A639D66DF7F2A0EA37365C46A0ABA5 /* lossless_enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 96F259C16E7D5D4A6174E4764BBABE77 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = F2CC303B5AE217464EAB24FA2B5308F9 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96FF17D7CB082281968582D7A1088F8B /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C476AD4F5CA61B74AC357631AA1F446F /* RCTInputAccessoryViewManager.m */; }; - 97150F388EDE74BCF9F878E57D3FCA68 /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = DB0CA032F37B433F854D45C37919050B /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96FF17D7CB082281968582D7A1088F8B /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B9A466CD6E5A8B678B51C4A03F3EE6ED /* RCTInputAccessoryViewManager.m */; }; + 97150F388EDE74BCF9F878E57D3FCA68 /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = B8BCAB40DB42F03C8A169FC2B033AB78 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9734201F36FA9C8328F2A14634BB11E3 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = CBE6C69F27CB13EFB9F4ACA9780FDC5C /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 9744EBD64D3BF6C96DEC30C7580BC15F /* FIRCLSURLSessionTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 827B467A361DA82928536D9F7471F92F /* FIRCLSURLSessionTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; 974D3D1D89E9AB50079AF4A57373410F /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 0632852FC21C147A01E78EBFD7BB779C /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9761742EAC67AF6F17A1B4C46836BF49 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = AABA6F6EAEBDBF0B0AF9C297500403B6 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9762F63A0CB9D06E141B8977F2C12A40 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 821B25DDA9010D1E8EB56C5C600E9BB0 /* EXFileSystemLocalFileHandler.m */; }; - 9785A1B918B697A5C381307EA6508579 /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = C345AE8BD2B7BBA4879C79348156B798 /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97970AF3AAB565D71DCB69253C591DAB /* RCTAppState.mm in Sources */ = {isa = PBXBuildFile; fileRef = C7EF22BF34462DA4E33A8103B75E4076 /* 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"; }; }; - 97B57F653AAD0C9BD0915C807F0AF684 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = A65989EEFCE0BEEE7CC1C7B5746AD31F /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9761742EAC67AF6F17A1B4C46836BF49 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = D0CF17BEBECBE98BA81D8120D72E9DD2 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9762F63A0CB9D06E141B8977F2C12A40 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = EB58BDF64BB6F9F2544EA82EC0150681 /* EXFileSystemLocalFileHandler.m */; }; + 9785A1B918B697A5C381307EA6508579 /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = 21112FE6CC3ABA7BAE34829195B581C4 /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97970AF3AAB565D71DCB69253C591DAB /* RCTAppState.mm in Sources */ = {isa = PBXBuildFile; fileRef = A1C7168B0251D94DB472003FAA6F7E1F /* 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"; }; }; + 97B57F653AAD0C9BD0915C807F0AF684 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ECB3B85921004F5E5A9BCFE039DD0D6 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97B5917244291105CFF124F9A9547419 /* AsyncUDPSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6D888598C4E37A01FD6936829047571A /* 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"; }; }; - 97BF1BC89F98BE74F8E224899392DAE4 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 43D03DB726B410AA256A8B1E3AF0100B /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97BF1BC89F98BE74F8E224899392DAE4 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = EE035A1EBB3E64A8A9FC3DB0AD169EFA /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97E2EBC77B2285E34C4E0575970D29BF /* FIRStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 7574F9D8294F4241EBF6F1709817A202 /* FIRStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97F848F06F6E5DCC3E282189D134A1BC /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = EA2B0F90A51030C59CAEEC3CC7211247 /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 97FE68B1D50817C31617266D7CCBDA8A /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D0093DD99E5523E0FB460A10B375718 /* 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"; }; }; + 97F848F06F6E5DCC3E282189D134A1BC /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 94390EE11EEEF33FF287B2AD01387C28 /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 97FE68B1D50817C31617266D7CCBDA8A /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FB10BA8B0E009C32C141A6F684B853B /* 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"; }; }; 982335F379D5B4FBF9B32E73DD9B5154 /* WarmResumeManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 88794576813B772E591C081BE3BA0D9B /* 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 = BA5519A71D70FC7E93734EBAAF1B53F8 /* ARTText.m */; }; - 985F05D68DA486B2AD6D1753D52444FB /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E115190DC576F2B2DC84264966A279DD /* REAAlwaysNode.m */; }; + 983D6CA5B3B54C113AA7BD7A2CF3095C /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D969E88182C589E4065972834F05189 /* ARTText.m */; }; + 985F05D68DA486B2AD6D1753D52444FB /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 281B750A44AD47E03297E51236DE9D1F /* REAAlwaysNode.m */; }; 988EB4AACD480182DA7844DBB5F793AE /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = F5BADE8D5BF1F09FCC4FF33A6578A037 /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 989C88B632E6423998CB72350B875E46 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A5A72C91B95BBE1B5764C5113D1042ED /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 989C88B632E6423998CB72350B875E46 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CB60E2C44F5337D7A4F109C9E680E98 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 98A6067DF7B3EDF22221CC59D86D6060 /* GlobalExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = AC0D104B0EF983C65368EF4A7D568EF5 /* GlobalExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 98ADBAEA3D0DF6136EA2D9D403A82B82 /* GDTCORAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = D74D496CD85F9435AF2210CD1D5B1ABB /* GDTCORAssert.m */; }; - 98CFB5956A43D928984FD5818F691B8D /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = 78C7D70E7D8DD39EBCE005E4522082A8 /* BSG_KSCrashReport.c */; }; - 98E5D071305E942CBA8F886501DFC3EF /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A9BE97D7ACD440D1FA2201199D19EA8 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98F4394CA1EE78DF275BDC48DA4339EA /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = FC0F5A02284FAE4453FF9203B1B09CF6 /* ARTNode.m */; }; + 98CFB5956A43D928984FD5818F691B8D /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = AAD17C6707DFCD86F47E8BCBC98E05B6 /* BSG_KSCrashReport.c */; }; + 98E5D071305E942CBA8F886501DFC3EF /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = A1A4CC45FC023B26EBA1045B4E382F16 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98F4394CA1EE78DF275BDC48DA4339EA /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 63E4383CE61B6C235A35B97EDDBCC0E9 /* ARTNode.m */; }; 991C9DFB4E1EBB20D56E31715E457B50 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 5BA0884E555663BC2226074E30341DCD /* lossless.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 992CB0C6A03D842795BDF2045C33951E /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F598D0ADE971EA742FFA1C679F9DAE1 /* RNDocumentPicker.m */; }; + 992CB0C6A03D842795BDF2045C33951E /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 43886A7261161D271BBFB24EB0EF91DC /* RNDocumentPicker.m */; }; 992D47597AC9FC3ED6B9E4490DBFBA93 /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B62DAAE93A5B33701FE818A6DEA2AE2 /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Project, ); }; }; 993DEE091D2ECD262F17F281E60653C7 /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 08A28A120E471D1A409A4C242AC60D00 /* thread_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99422D209EA8F36C23CB01190A614AEB /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 9FD87FA1B82E5D26C5A6665CC1B6F36B /* ja.lproj */; }; + 99422D209EA8F36C23CB01190A614AEB /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B9DCC1D2F1F5D7DFD5DCFEA22404AB74 /* ja.lproj */; }; 9951C53F8DF76B21CDD26CE830B47FBE /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 700FB860CEDDA46DEA68FA1BB107667B /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 995C13DB63AB4E9744F9C574B39F789A /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FBBF12B02AB7F3A6F627527627068DF /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 995C13DB63AB4E9744F9C574B39F789A /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F822CDE094D1C8C018E2062E3B779C5 /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 99678E001CBB1408805660436395E723 /* DelayedDestruction.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D5DAD20CF4A7EBEC0EF93F1E3C7CCFC /* DelayedDestruction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99AC04CC1A62F3036CB84922156C31B9 /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = D5B0029823E72E494A8A47AC82D8D02C /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99AC04CC1A62F3036CB84922156C31B9 /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E53CD52B144CE62B88B22A323A0E4ED /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; 99C45ADBFAD56E67D23B7D913EB69D69 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9347867965816742C839763681673031 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 99F2AB0746A9B7D1A10850249235D347 /* FIRCLSMachOSlice.m in Sources */ = {isa = PBXBuildFile; fileRef = 46F67377A28C0FA361EE3E81B76D9B74 /* FIRCLSMachOSlice.m */; }; 9A065194E9CB050FC37EAAAC6FF653F8 /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = F913C27BBB2B1100FDAF53AA22A0BD34 /* GULSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A4339FCB3AF1042F01E3D27C8A9F92F /* RCTNativeAnimatedModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0F93F0F3ADC3C7B0D33D69D20687F0EB /* 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"; }; }; + 9A4339FCB3AF1042F01E3D27C8A9F92F /* RCTNativeAnimatedModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = ABB372D5CE9737CFB8A445BF5F3A4510 /* 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"; }; }; 9A563C719409A7F1D2A79F1A491DCCB1 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = 646A1CBC824C63A541377B9DF5BC52A9 /* types.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A6584332A48346E435E1681FAF817BF /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 4CB498B57DE2039B3D12696DD721EF40 /* alpha_processing_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9ABD0A65BC2EC6033531633F2798F398 /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 33D726781738E2B01F5B74C0653D6439 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9ABD0A65BC2EC6033531633F2798F398 /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D058D1AC9B9903A5C3ADEA60491F100 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9AD1BC54E51440917D5EBF663CE23443 /* react-native-simple-crypto-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AED89FC23A74912C86B1E2359357F009 /* react-native-simple-crypto-dummy.m */; }; 9AD8AEA336F32F6C793213FA40B07ED5 /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F5807D7BDE94BFE16ED6972BD019525 /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CE66643F5FC639D8B673507543236734 /* RNCCameraRollManager.m */; }; + 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C5DB9707A6C7523B1A10746722C4AA46 /* RNCCameraRollManager.m */; }; 9AEE62323E7D508CCE862B14ADE42BDA /* FKPortForwardingServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 856042B73E1C8C0F0942229F352F2ADF /* FKPortForwardingServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9B4D7BA740D6D143C5135BEA996C504F /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FFBB1EA94B4B41E86AFD609025CCE50 /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B5A913F3BA0DFE6041373F6624EEBCA /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 6038AE431D283EF67E531354FC54133B /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9B5A913F3BA0DFE6041373F6624EEBCA /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E5506C6B5BB0E34728B18BE119D9031 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9B5F3A51D09EF1FFC6732A3E9664F8EF /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = FAAEE84DBB25715C319A69A09C3AB507 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9B68BF491BB75FAAA081B710C4A019B5 /* UIColor+SKSonarValueCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 925EA221FD57FBAB393A0DFC92DD6D3D /* UIColor+SKSonarValueCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B73335B0B394566168EA9C92B735E7E /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = EE510ECFE9740A1362829E8B15A7D768 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B7F1CD1E89C58D530B6A16C602C6C4E /* RCTImageLoaderWithAttributionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = ECCBE82CD98E03581599C650EBCE07CE /* RCTImageLoaderWithAttributionProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B73335B0B394566168EA9C92B735E7E /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = EF832947BB3B9660609E37EE61DE7C91 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B7F1CD1E89C58D530B6A16C602C6C4E /* RCTImageLoaderWithAttributionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 17A7E4141D241F34A893B3212CA13495 /* RCTImageLoaderWithAttributionProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9BA3070F2D82AB8E6B229971E126D4B2 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = BAD502587DADED987DA3B89EF2E0CF38 /* upsampling_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9BA8D8C40A0F28214F8BF4B31C15A8F8 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CB25A0ABD582C1CDEA373D7FD0BC7EB /* EXAudioRecordingPermissionRequester.m */; }; - 9BBFB4BFB4CD3DADBED2F608A9C10C3F /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = B0EF65143FEF1E8BF5F4863D198767DC /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9BA8D8C40A0F28214F8BF4B31C15A8F8 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 746DFB85150363B465CDEA82C3B8A554 /* EXAudioRecordingPermissionRequester.m */; }; + 9BBFB4BFB4CD3DADBED2F608A9C10C3F /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = A8B4894330B65A448011885A09AA345C /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9BD2D2FA032357A4E0957F26F2857EF7 /* EventBaseLocal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 798AA279081C1310DB4584F20A272A44 /* 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"; }; }; - 9BEC9CCAE8723F6FCEBAFF8AFDFE2089 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F5C32CA22F602B73CDF7D859D50B67DC /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9BEC9CCAE8723F6FCEBAFF8AFDFE2089 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EC27CC3982DB33D267F480616A240660 /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9C3FA983775EB1772439679760DDCD26 /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FD347D99C81FBEAB106BCBF3C46EE03 /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9C51952E3EB004507F8D0CE623D3C837 /* F14MapFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 29F48E18A745D5661C52B0B9EE8B36DD /* F14MapFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9C6A5C8A1A300380603454BBB6B72200 /* PasswordInFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0142A2151000129C9513A721D32A13F1 /* 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 = 4DA46A718970441984ACAE4BB277B67E /* SDImageTransformer.m */; }; - 9C7693BF22C7034A1AAE87F458F48C58 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2EAEF4D211A04A58ED96E38766C5D1E3 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9CBD1E29C594B829B142A09CA0012957 /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DA8CD2ADE38BEC0F03627AEB3D60909 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CDCF612795F5A584B1FD669134BC368 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = FFAAC1AA0F94ACABCDF845F4DFEFE204 /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9C7693BF22C7034A1AAE87F458F48C58 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FCC2B1503D651ADC9F6F0161F199446A /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9CBD1E29C594B829B142A09CA0012957 /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = D45CAE684DBA14D5D214A49F27E3C009 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CDCF612795F5A584B1FD669134BC368 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1829BBE2C72F292275D403CC36D1F870 /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9CE418D50360FEBBC0B6EA534CB4299A /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9FE5CAE96A925B150D03CF7F1F87D840 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 9CE4BBBC558CE96AEB10D5D105E1026E /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A1F125175A5F67B88C8B4BC77473475 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CE4BBBC558CE96AEB10D5D105E1026E /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EE4FA2596A13834A9C25B4ABA37300E /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9CEF58684C0371C5723617778FDCAE9C /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A0E87E798698FE098A0C563DFCE30C2F /* 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 = 6979EAB50AB5EF48EE6BB5AF4D3DE794 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 9D4F17071E5DECD000C1F8974AF8C126 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 68886C5B6310D63496717C1D4DEF1461 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D4F17071E5DECD000C1F8974AF8C126 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CBB013107BEF10373F55BBF5D608EAC /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9D51497EC2D05F3283426C9523C8394D /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 51B6DF4E778C4DF540E2730C18950134 /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D6AEC2BADA6415B32183279535FC3FD /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9733E3EA059013A66F730CC18D6F7888 /* RNRotationHandler.m */; }; + 9D6AEC2BADA6415B32183279535FC3FD /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4832FB3B469224FF39455BF5CE3C4379 /* RNRotationHandler.m */; }; 9D8A2D740406E1048CB8E1A98A994667 /* ConnectionContextStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 27761170B4D2EEFF69375D3636512EF7 /* ConnectionContextStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9D8D4EA0BAF1DF8818D1DCC72529B339 /* AsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8EE94A12F93DF005287FCD544E42723C /* 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"; }; }; 9DA425D4E355C44431E6DCB6C10328DE /* SSLErrors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DCC259173C3B5318500F2071F6DB6BFD /* 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"; }; }; - 9DBA9DE309855F957C43E92853867883 /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 417F80CE73198E7BDE01F7699AEA8F51 /* BugsnagSessionTrackingApiClient.m */; }; + 9DBA9DE309855F957C43E92853867883 /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 6085826FF5A89F9CCD32272052050F3C /* BugsnagSessionTrackingApiClient.m */; }; 9DE38323C633F51207B437E17263CBEC /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = D5BEE6F6E58926E4E227F4F23CD9F2E9 /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DE9270C04172DD40D69B6D9546516B9 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = A9C8CC6B552AAACE526AF0F60CEE4E15 /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E58164D03FACAEBB09CA94D2578F0DE /* RCTNetworkTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = 92E97F9B6E3CC7373BF22EF7FC1F4E9A /* 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"; }; }; - 9E59430A3BAD55E9F7008EE70672D986 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 62BA82B300122C937F6ECE9746E951BE /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E6372BF56DAD8AC9CB178F6281F5D49 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 96C86D44150486D099DDB2694E5E7BCA /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E6AAAC84C6A41938E51B8485BAAE523 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2611F44C748F67F18320B0D162C156DA /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DE9270C04172DD40D69B6D9546516B9 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C670B14A01FCE56532A07BE5D0B6417 /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E58164D03FACAEBB09CA94D2578F0DE /* RCTNetworkTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = 36F11BEB8996ABDE53E7F649330D2EBF /* 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"; }; }; + 9E59430A3BAD55E9F7008EE70672D986 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 940B22BA9A4EB605FC1C5AABA249EDEC /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E5F08C2FA5B05D0EE9F1B3EFE01EF62 /* RCTPbkdf2.m in Sources */ = {isa = PBXBuildFile; fileRef = F31AB722F6F19E9C9CC18FA2362BD99E /* RCTPbkdf2.m */; }; + 9E6372BF56DAD8AC9CB178F6281F5D49 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E10972E4F712DC9AC689B88595A621D /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E6AAAC84C6A41938E51B8485BAAE523 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0770546DDF91BB7E8A9B95B915902A8E /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E6FD34857DFBDDA2D87C7471EFF6CA5 /* FIRCLSNetworkOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A986C256F4460A399A7E0ED0C247E61 /* FIRCLSNetworkOperation.m */; }; 9E7028FA0F2ABF7D93770A85B5558BAC /* ScheduledFrameTransport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6B0492F3E49E319535E4B7E9439337EC /* 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"; }; }; - 9E819D429FE4BC5E966296A22B02B2BD /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 21E1C04B0338AFDCE0204374F5D1BE4F /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E819D429FE4BC5E966296A22B02B2BD /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = FC928C56993ACE4B58301329A03FBF07 /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E8CCA67A59216B83A6C4121D4FB5DFF /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = 19FB65FFAEF99D8826793E642936DCBE /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9EA5C0B783EB521B73FAFDBF1BF1642A /* Shell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BF74BBBEC6741E80407BE482F91CE4B3 /* 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 = 3393287E11CC9482CDC028594487C3B7 /* 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"; }; }; - 9F0B2B7DE211655D8289AF04856BFF1F /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 831E0F7840A1FA12AA8A1AB27CCBFEB6 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F0B2B7DE211655D8289AF04856BFF1F /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 35EAFFAB54227BC4A05DF6DC2C40E631 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F11DA3D148897A06FEDBD68BBC78AF8 /* GDTCORAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 44152AF79260DA1FFC6714E1551DB1FA /* GDTCORAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F126C1826371F586DAD449F9B02AC69 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B59A0C3023E0C57017EC773D8DE5315 /* UIView+WebCache.m */; }; 9F306FCB67D6ADDA635F9D9A81D22BFA /* Cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49429B22C3AB31FEBC588E5FB6BB7E0F /* 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"; }; }; @@ -2135,43 +2156,44 @@ 9F760E05021126C8ACF068474C64EC79 /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = AB6ECE59591EFB07A9E7C658BE19F9F6 /* FIRComponentContainer.m */; }; 9F7B5FBC79EAF261C231ED68CCA2553F /* StreamThroughputMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5FA6C6E200AA82C371F850DEEE643F57 /* 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"; }; }; 9F923803E6AF05F5E15EF1C31B480C19 /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1DFCB923978BDCD38C95841BD22D509C /* 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"; }; }; - 9FC3C9159E55C02263FDC38027901A59 /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 428B8F140F25393AF875A94951A154F9 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9FCA0C85E502C92ACFA86EABD32B2224 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E66AD50035D0D62A5D0159E4493D8B2B /* react-native-orientation-locker-dummy.m */; }; - A00D85CD6649D81617C458094A982D1A /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EAD0882665BC023557F77A1296A4F54 /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A00FFE1F429B7EAD2D53EB3B1C8AD046 /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = EBE3DB2370C7C02C415C15384824DAA4 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0125046A5C178DC8BFE0A1A03549AE8 /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = EE56C46D9D35877C0761AAFB28FF7AAA /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A015785FDCC70957D4925994683FE72C /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B06DB10651505B1202A5EBD31DC18D5E /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A0164D203F8B23EBC543816F5D46E0D2 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ACAEC752BC8A591D8EE6618F42F4205 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A02478583635DC43AF9D1BA278F4ABDD /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 83B8D068780A2181919555AC04ACF809 /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C51284D778271F65A086135D3DCEBCEE /* react-native-background-timer-dummy.m */; }; - A051A0564C3E15A6E6DC82B8E372DBD0 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = CB500AB949632FBC3E40BC286DEB19CB /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9FC3C9159E55C02263FDC38027901A59 /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B37FE4E4178184906B679078CE8782CD /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9FCA0C85E502C92ACFA86EABD32B2224 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 81B448B0F1842A660FC92E0600A6D4CF /* react-native-orientation-locker-dummy.m */; }; + A00D85CD6649D81617C458094A982D1A /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C28AC9DFD721742AEA0E86C58BFC73C /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A00FFE1F429B7EAD2D53EB3B1C8AD046 /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 193CED2DCA340288D30908C0802C05D5 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0125046A5C178DC8BFE0A1A03549AE8 /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D65ACE4894B7C6D19401FC9D7F79DF0 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A015785FDCC70957D4925994683FE72C /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 90872266C38F5CC92D54264C2475B988 /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A0164D203F8B23EBC543816F5D46E0D2 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = DEB167D2D733B0BAE26E0B16608E079C /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A02478583635DC43AF9D1BA278F4ABDD /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B84B6919E9D920E72D77CAD2EF33D7D /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E93611FB0743BE052AED317714C0979D /* react-native-background-timer-dummy.m */; }; + A051A0564C3E15A6E6DC82B8E372DBD0 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 7030667900E390F7CFB4B17B744BF434 /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A059C81E5903478539477CD5EF45FA2B /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F60ADC913DA2666BCC70A8DF01D34BAF /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A06691A45194C29EF1D311E2C72EE52F /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = EF18428DD6B5C6031E6AF8D7ED927FA1 /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A06FEF799AA13ED077FFB3494AEDD1DB /* EXLocalAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 22269C4A96526A43CA43EDFCCB2ADD22 /* EXLocalAuthentication-dummy.m */; }; - A0841EF79F0E472F1017C8BBD9234410 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = A76AAED13C095EE24F5B78C280BA7E7D /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A094F011C1C3EFE122C2E1B98BAAE28F /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DD4A6659C93D9324AA8FDCC19D544AE /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0E05E18B7340C52E3407E9F710973B3 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 3BCB76317806C715FA5771BA730E980A /* en.lproj */; }; - A108D0C39E6723A4722696896373F561 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = AEDFEC830C6396DC336515996BCABA8A /* RNCAsyncStorageDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A06691A45194C29EF1D311E2C72EE52F /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 25461BEBCFC3A2A402FE6B61D5718393 /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A06FEF799AA13ED077FFB3494AEDD1DB /* EXLocalAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AC2886B8F45376ABE29A475FF5916DE /* EXLocalAuthentication-dummy.m */; }; + A0841EF79F0E472F1017C8BBD9234410 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F747C55B7F59FC7E3A1271912321591 /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A094F011C1C3EFE122C2E1B98BAAE28F /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 97AA77101C4F58F411C23FBECA88553B /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0E05E18B7340C52E3407E9F710973B3 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F6D5B8E056EF2E9D8F21A8FCA1109E38 /* en.lproj */; }; + A0F32959A9598F7DAA984C42B4750B47 /* RCTAes.m in Sources */ = {isa = PBXBuildFile; fileRef = 34E471FBBF2F79127FB56BB2EFC0500E /* RCTAes.m */; }; + A108D0C39E6723A4722696896373F561 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 05C0A0F2BB5834C888BB920A307B7834 /* RNCAsyncStorageDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; A10A95B29F28661121BB96FE59DC725B /* FIRInteropParameterNames.h in Headers */ = {isa = PBXBuildFile; fileRef = 2896250BA85349D866917AD3CB04191C /* FIRInteropParameterNames.h */; settings = {ATTRIBUTES = (Project, ); }; }; A112F0DEF56645CF1EA28BFCCAFF8332 /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 517F288EDC87F5BC1007ACFF161BADF8 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; A134CBE0553F5F3339A4A20A87F18E3C /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 02F6463D38ACD18CB2880A035B7C5D6E /* filters_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A13E4C4D56442F5E2F209E1F3DC55BAF /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A9804B97B8351E855D0B9D9A3AB5984 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; A1471032678B3AD024125ABA40B35D15 /* MallctlHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEF42821D115C4B51E21250EE57DCBFD /* 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"; }; }; A15EBE154B437F49646D3509D0113685 /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E4E420D43A0119E792E92942BADCC7B1 /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A186320B884BE96F2889EF80916B1BEC /* RCTConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = F5C8131118E345A6D6CD17A8A3CEDF19 /* RCTConstants.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A186320B884BE96F2889EF80916B1BEC /* RCTConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = A0C63E63A81405A5C6EB32CF1018A977 /* RCTConstants.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A191267D762C345935828BAF127D7E44 /* FIRCLSUUID.h in Headers */ = {isa = PBXBuildFile; fileRef = C646FE3EB952D4ACD7AB461CA254C21A /* FIRCLSUUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A1AE828FC8863E3F751638E4F21734BD /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = BBD86E34AA76095B88203BCB3CDC5B60 /* RNCommandsHandler.m */; }; + A1AE828FC8863E3F751638E4F21734BD /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = EF44745F305CE863A41DAA27DC7F42C5 /* RNCommandsHandler.m */; }; A1BD3EF5F8E40C42F8C2E6311902DF10 /* PTProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = EB75382F4995E73E5D121F26D89892C1 /* PTProtocol.m */; }; A1CA7EBFC2566496011ABF1D36B56A03 /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = E279489923D6663F7522CD83CD71939B /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A1CE7EFADBCE2929EAD388CB9D1D9B2D /* RCTKeyboardObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8A550C495FCC6EB98720BED6AE0389B3 /* 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"; }; }; + A1CE7EFADBCE2929EAD388CB9D1D9B2D /* RCTKeyboardObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0394D372B31962CA0FBBFA69F03B88A4 /* 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"; }; }; A1D4663851C21E6CE831427D256B8221 /* Instructions.h in Headers */ = {isa = PBXBuildFile; fileRef = D0A2D5085A9C7246D336E57AB03F491D /* Instructions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2074F455694BE6032E9D02AFDEFFA13 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3BF4433763B521DCABF1AB38B9942418 /* 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"; }; }; - A21AA461DFBE94B5DA7E5BEB211CE665 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 339AA39474F875601CA8E4F14E88800A /* RCTConvert+FFFastImage.m */; }; - A2327D7C76B96ABC4A2A5BB09CECF00E /* RCTImageViewManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5637B77A3213C2C807B20486728CC434 /* 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"; }; }; - A27DF81041FA6CE21C1AE8097A8BC393 /* EXSessionUploadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = E48698ECDAA84196E2680807D1F0071C /* EXSessionUploadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2074F455694BE6032E9D02AFDEFFA13 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8EF565A096A340ED3706FF2AAE2E918B /* 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"; }; }; + A21AA461DFBE94B5DA7E5BEB211CE665 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = EF8C8BBC959D54F7D4C8F67BA8C7F31F /* RCTConvert+FFFastImage.m */; }; + A2327D7C76B96ABC4A2A5BB09CECF00E /* RCTImageViewManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = D3196CB88A2AFE340401C26838AFF849 /* 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"; }; }; + A27DF81041FA6CE21C1AE8097A8BC393 /* EXSessionUploadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BA032B99984987DC27A083C21D5F5B6 /* EXSessionUploadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; A28CD67E44E5F6FC59426040908B323C /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = B851ADC9A9ED54BECE01236CBE9EFD44 /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A29EF70E1D68CA5D32D24217EEEC5BF6 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 39AB154790624A0B5AFB87DED987FF0A /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2CF68F00447DAAF02496F00EF86A2C4 /* RCTAlertManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0C463628649DEB06109D13ACDDCCBB59 /* 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"; }; }; + A29EF70E1D68CA5D32D24217EEEC5BF6 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A2CB50F4226EB5EE8CEB3FD2CADC73A /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2CF68F00447DAAF02496F00EF86A2C4 /* RCTAlertManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 369CCA86683823974F7D248C8BEFE1EF /* 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"; }; }; A2EAE9A03359B4DEA105AC46042FD9DA /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AE9384492CDD81B506E6901934E1276 /* FirebaseCore-dummy.m */; }; A2FB46DA4CC36021A5ECDACECFFC780F /* CallstackHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FC7FE9592C368CA2F614E879D2D05F5 /* CallstackHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; A3045BF0AB3663CF2F6AE4A494A26561 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = E4A4BF9C02577C5444491D132FF306C3 /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2179,57 +2201,57 @@ A30FEB961B145B1E493077DD3D79859D /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = A974E1F948FF2C9F30C70F9BC23A5399 /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A3235E29BA5E0D51FA6508C3DBD5AE17 /* ThreadName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 428A17C2B36A0B827DE991A650647A54 /* 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 = 93857FE1524EF997E10A0BD0551E8F91 /* TOCropScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3377E75A6E4A4461B63CFAAC884C5F3 /* UMAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = D7B09C1B2107DC053C8EB1F4107DBB2A /* UMAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A33A3974F5C9C762E24A8248D8300565 /* UIImage+Extension.h in Headers */ = {isa = PBXBuildFile; fileRef = C436F1FFF2784DCB906FA3FDDE2BB48D /* UIImage+Extension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3377E75A6E4A4461B63CFAAC884C5F3 /* UMAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 96E754743729641DCA959EB39FEE4CCD /* UMAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A33A3974F5C9C762E24A8248D8300565 /* UIImage+Extension.h in Headers */ = {isa = PBXBuildFile; fileRef = 236FD4D356B59ECC08083CA689F814B6 /* UIImage+Extension.h */; settings = {ATTRIBUTES = (Project, ); }; }; A348E879FA3330E1712179F5B4FAC236 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = EFCA663B5C95A4620819BBC649634D7A /* vp8l_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A372D39001A447E659CDFBC16C14DCBE /* CacheLocality.h in Headers */ = {isa = PBXBuildFile; fileRef = 83C70F9E0CA6D994C20D82596A791956 /* CacheLocality.h */; settings = {ATTRIBUTES = (Project, ); }; }; A38E1CD55FB4C876BFA4BFFFAE20F7D3 /* FrameSerializer_v1_0.h in Headers */ = {isa = PBXBuildFile; fileRef = 484ED29811E651B51AF2D7AECC1FB5F1 /* FrameSerializer_v1_0.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3C5B95F92F2124418433EE74AF6D2E1 /* UMModuleRegistryHolderReactModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 78AFA083E8B7DDE95CE123E50480292F /* UMModuleRegistryHolderReactModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3F002AAB38C990F02388A8B45198DED /* EXSessionDownloadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BBEE77C5439F0C094A26988065D3F9F /* EXSessionDownloadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3C5B95F92F2124418433EE74AF6D2E1 /* UMModuleRegistryHolderReactModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 246FC8FE7F1893E54E265DE637E63CD2 /* UMModuleRegistryHolderReactModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3F002AAB38C990F02388A8B45198DED /* EXSessionDownloadTaskDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A9D64CE35C4B3FA675FC8DC910A1F48 /* EXSessionDownloadTaskDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; A3FEE631937CCE97FD38F800E98895A7 /* UIView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4AE2BF4B82E78E3BBA03D5DAA1EC638A /* 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"; }; }; - A3FF19B795F24AB2366AFBCCBC5FBBED /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = EE227767ADC64FA2F8A043A5AACB0A1D /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A420832BE317B6F619DC80BC9DFA9EB8 /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 92C245C6F25D618B4BDD6F457C28A9EF /* BSG_KSCrashIdentifier.m */; }; + A3FF19B795F24AB2366AFBCCBC5FBBED /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B9858D94C9EF6246EA618C0FB8377F8 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A420832BE317B6F619DC80BC9DFA9EB8 /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 438BF6D2BD2CD678DD00CA531DF3A033 /* BSG_KSCrashIdentifier.m */; }; A42284BAEF9A5D75B15BF4EFC4E4C468 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 36959B31A9B9551D039CDF56E003C5C7 /* frame_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A42C59477BEC3A7A4D2CEBD6BC4A4F1E /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E48C5EF81EBE6ED7094B1E81AA04F99 /* yuv_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A42F64B63479BC26B229023E3CC66C0A /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = B6D6086CE45490722A87835E3EA7DCCF /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A42F64B63479BC26B229023E3CC66C0A /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D6345020C64C16A655129FE1132DCDB /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; A42FDAB67EBF4040DB80B9F0BAA2BF65 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 55D0646EDC545C1CCFD0792BBFDD3408 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; A444AC14D1AB1CEDE00F63E32EA7F7E0 /* ObservableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = D1EE034565DB2081CB6210430635012B /* ObservableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4576BBC57A17E26132B2DEFB9B1B5A6 /* SKViewControllerDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F7873528F20DDEC6A598526BF8A9644 /* SKViewControllerDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4764E8EC572725B1EC20DE1F38F9ADB /* UMPermissionsInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 994EA60A4463CD206016C425E8C8D2E6 /* UMPermissionsInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A477B5D239354ADA5BD84C63F3B0FE48 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C6473AD8D884C122D30D147CB2EEA634 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + A4764E8EC572725B1EC20DE1F38F9ADB /* UMPermissionsInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 64BB163569A9DE0E7EE5AA910535ECEB /* UMPermissionsInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A477B5D239354ADA5BD84C63F3B0FE48 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31CE3BDD8A26CAAD64FBC7859195CEE6 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; A48573BC990762DA98475AA4E59F4C55 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 7401666CD03D7A880620212139E453DB /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4AEBA8D463DF973AC69F52FC5E1D0EB /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 378531966EA58592939B9F691E0C01C5 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4AEBA8D463DF973AC69F52FC5E1D0EB /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9411ACCE57314AFC3CBEF643BA9D06B0 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4B2A83F3F46087317BDA98ECA699248 /* Select64.h in Headers */ = {isa = PBXBuildFile; fileRef = BE605AAAFCDAF34DE912991CEBF479C7 /* Select64.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4ECFE935BBAB8F950062E28430507FC /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = CF478C7810D07EA971A338A7AACCE201 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4ECFE935BBAB8F950062E28430507FC /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 37DC45FF408CE4CBC601BCD6B63EA5C6 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4F849F5F0D9CD393F337409679534FC /* PTUSBHub.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A53D9823295D12BC31B2C89625AC8BF /* PTUSBHub.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4F8D1C9B27FE119D005DFC20621F99F /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B0299C2B37069873D2F1DA966C6E45F /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4F8D1C9B27FE119D005DFC20621F99F /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 47250686BE8611CBFB199666C21A4F3E /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; A50388445DF10ADD6B22876F3F69E902 /* ssim.c in Sources */ = {isa = PBXBuildFile; fileRef = B8A9D86194CC47D111EE61AC3BAC8621 /* ssim.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A530BB82BAF0C755B99BFCE96AC93639 /* BaselinesTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A14CE4F1D63089A513D208476C51D825 /* 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 = 05C7AD61F7C506555C124F03088B71D7 /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A574026171CFEEC0EECDE544E2C1330B /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = B2C807BFF82D083C7CDD29EB94C0E9BF /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A589A7984EA7376E70C72AF061F51B43 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = BF6CC9E1559313D2D819B74ED1ADC435 /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A56297DE41EC440968388D0F4A94F43B /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DF1DFE57EBF276337DA2AF560F70D8AD /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A574026171CFEEC0EECDE544E2C1330B /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 43F07B379BD885C4FF5A57CA1A3D4432 /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A589A7984EA7376E70C72AF061F51B43 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A41753B227E5C63AAC21C90C0946D4C /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; A58D964A05070A1687AEF98D527B41B3 /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 24ECF8FD895851C90EC070BC51AD2E39 /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5DC12AF6A82CFA1A940EBBB5A42D999 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 8A4525E2B09FFD4376CD4BC624AB3720 /* BSG_KSSysCtl.c */; }; + A5DC12AF6A82CFA1A940EBBB5A42D999 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 813EAEADC43DCFDDDE87F93384A514B0 /* BSG_KSSysCtl.c */; }; A5F16518FC269D412A721472DC3D5CEE /* FIRCoreDiagnostics.m in Sources */ = {isa = PBXBuildFile; fileRef = 096FF7553188008D84D648FC8933CE13 /* FIRCoreDiagnostics.m */; }; A5F7A295CE8D9AB5DE3F0B75200DD1A2 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 625C3B39CE18021DF758C70A67C1284B /* io_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A602F94288003EADC14BAE8B862E7B77 /* ScopedEventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 376FED7EB937AF74CAB358B678C90A82 /* 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"; }; }; A60533D4FB72EEF17855E3D76770B477 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ED39D48FF337EEE3AAED3D9E33340B8 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A60866B211E10A251823755E039D280D /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 9372BF2C4DCE7E376A2E15DAC6D4411B /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A609BBB80A19C54FA9CF2B839B539C34 /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 16B068281A89BEDE84D6131F2BAE8745 /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6150361DD24EB7A88604FBAC32C5FC5 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FF9F27BAECB614007A22D13CEA8F45F7 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6278A3A9CBE5044D9A576B1B77D82D8 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EE8DEBA3B976EA391E5FE4DE1E391B6 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A639AB8EE3F77DD9B619159D9250C058 /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = A56BC009F9F3D20ACF799DED02654DB1 /* RCTEventDispatcher.m */; 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 = 71B875BCA1E7C46307B9EA1C89051FD2 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A609BBB80A19C54FA9CF2B839B539C34 /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C68F6027AAD94B607FCEA0DF5649BA7F /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6150361DD24EB7A88604FBAC32C5FC5 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2003529F2EBF7A6007EB4E11A4ADA032 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6278A3A9CBE5044D9A576B1B77D82D8 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = B969DFDB250DDED871D90AEDACDA763E /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A639AB8EE3F77DD9B619159D9250C058 /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 8329375DA1CE8967879379CF7878C999 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A646ED8AD08C2BFB3F92DC72C1A686D2 /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EA5BC35AE5598354F039361FF028BA9 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A65D6376F7B1595D5DDFF54A4BA88EEE /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = F71F10D8FF2C8494E35F3E9F6BB1EB3E /* 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"; }; }; - A66E2504F9BBCA59602316BE4EA8FE68 /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = D7270FFD70B21B464B3F297F9DFD1418 /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6742224DEEE6116B21884597417C6A4 /* EXAppleAuthenticationRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D1B98C7FBEFC26856314E228A00A4E5 /* EXAppleAuthenticationRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A65D6376F7B1595D5DDFF54A4BA88EEE /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8AE67E34798D3F25FCE88549D2D4077E /* 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"; }; }; + A66E2504F9BBCA59602316BE4EA8FE68 /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = F00E8C61BDB02F994FBC09F5A222BB0E /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6742224DEEE6116B21884597417C6A4 /* EXAppleAuthenticationRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 7275174D80B124CE2B3009C59E8892EB /* EXAppleAuthenticationRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; A6776FF2CD328909E8600FDCF823B0D8 /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D7BABEDC78A2D882E39A2D379375040 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6800C2F26B834BD801B939F5BCA4258 /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = BB9408A97352ED127BA999C50F5DAF2F /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6819EA409E0033334420B790115A46E /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 33085967C658BAB1A7E41C3173AB2378 /* UMReactNativeAdapter.m */; }; + A6800C2F26B834BD801B939F5BCA4258 /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = BBD4361A03B64E5742D4F88DE5A2A478 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6819EA409E0033334420B790115A46E /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = AFA2296417D66958C0DEB49723700D2F /* UMReactNativeAdapter.m */; }; A6BABFFFD02CC5A923F1B76BE536EA3B /* BlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = EDA60D556401803478C9108C4C502BF2 /* BlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6E5A41B5330A56303AC69C291ED1DB6 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BC886792F63CBB204AF163F4F10381F2 /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6E5A41B5330A56303AC69C291ED1DB6 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 21D1A9FD9EC9CF2B3C26B5B5AA26701A /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A70100EBBD9722DAA244ECEF1BDCCF92 /* File.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7FCD2F8E9DDCAB547EBCEE92B08260F8 /* 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"; }; }; - A71C7EEA8C413CE0F26CF6E6C525375F /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = F07AF17231352FAC86958B11B262268C /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A71C7EEA8C413CE0F26CF6E6C525375F /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 974D27C6BB7FA744CAF29AFB084679CD /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7255A0E5A0B85CF61AEC27F539A8AD1 /* AsyncTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 0455887BDACBBACB48FC0692AC6079A2 /* AsyncTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; A73A92EE393BA7EFB5EF12271CD5AE1C /* ResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 92FA1F7177A0D7300887658417DBE8CE /* ResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; A74265F5E9D3396D998C4D41384D939E /* QuotientMultiSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FF6199AEAF7121D0AE424638D5725C7 /* QuotientMultiSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2241,9 +2263,9 @@ A791685400809D96C26DFA3858AD4DA0 /* SetupResumeAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 868B8E2E3BF06F434C4DF6545367BD8D /* SetupResumeAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7A7525768BA7795D9437CCCC3E9523A /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ADCEF1ED73B20EE7E814478E42002A1 /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7BE4D326DF6F9381E4D49A1C6A2F6D6 /* AtomicNotification.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 822BEA017B4A92C48753B01E55150A0C /* 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"; }; }; - A7C1A99E2BFFB03B01E3078FC5916ED2 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 741DA7B4648C7D20B1C86F960E6350AC /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2794F82035D1AF4A75088D8FC513A3EA /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7D57A898342D32D6D087A8B3B880AFF /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BD8722B88E814091C19479A32D208AA7 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7C1A99E2BFFB03B01E3078FC5916ED2 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A8A50C0FE61109864D0DE6C1C2728A4 /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 057240011425C7EB3291A95BD518EAEC /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7D57A898342D32D6D087A8B3B880AFF /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B5BC62AEECDAB5208B11B2A1D86CF5D /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7DE1C486F3DBFE3BFE72313A97AE853 /* GDTCOREvent+GDTCCTSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EE87C863A150D2C4953AA85BE51E9E6 /* GDTCOREvent+GDTCCTSupport.m */; }; A7FE4D8E743D00ECB115E087D53587C7 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = 2600EE8223950FDDA769A26272B961F9 /* cost.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A814790EEE1DB78F2C8EDC04096D870D /* Fcntl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 827D6BBA8C98FC9CE340B82257AFB2A2 /* 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"; }; }; @@ -2253,110 +2275,111 @@ A85E3E09CE5A1C1FCBE000C05F72FC0D /* MemoryMapping.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2359CD957BA4C8B2CB9A1754302E46C2 /* 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 = 92E1DA3FCE428FC7F032E7C25C255166 /* TOCropView.m */; }; A88D214A0675FD7F6B4AD5D486A4CF4F /* GDTCORDataFuture.m in Sources */ = {isa = PBXBuildFile; fileRef = D5815646C641AE1DA9DC3A2A8BE65A05 /* GDTCORDataFuture.m */; }; - A892AC7A653D1DD72046D047AD860ED9 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = AC753904BAFFB1A9511FF9C52E65141B /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 38162BEE9799790624835DCD1750F769 /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A892AC7A653D1DD72046D047AD860ED9 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 28F373C3F8B8B054FED12B035C815828 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D1134540F45D55632D4068251EFDCA2 /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; A8F65854124450A07A7180E05C65D284 /* YGLayoutExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA741DFFA933B1348377D9810900C8EE /* YGLayoutExtensions.swift */; }; A8FDF48E1A7E3A8E1CC2EAE5C6D04A74 /* FIRCLSFABAsyncOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = EB2886A12930D246EE32FB51B309ED6E /* FIRCLSFABAsyncOperation.m */; }; - A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 07ADC75B821AF8F5D4B5327F2BF23598 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A927948586B0BC8C30C3065D3AA5BCAB /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = DEEBF6EFFA56877246B99740642125E4 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A94806AABD97A919D3625DF989F7E97B /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ECB3C343296C4A64472C1905259DFCC /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A96C68C0C268482DDD4103E565FF1C77 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 96E629813A79E1A1B2A6F1C220CB9F57 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A970E68615F0A3B8CFCD90AFAA5A5052 /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = 230C59BF54A491FFA605006C56FD0B41 /* NSError+BSG_SimpleConstructor.m */; }; + A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E9DCAD941C0C871AB1CD5719D67CDFA2 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A927948586B0BC8C30C3065D3AA5BCAB /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 12F2687E63A799ED0EC3B03A0CED33BD /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A94806AABD97A919D3625DF989F7E97B /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = BD71B0B722E9D677AFBDA9BEF7449EB2 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A96C68C0C268482DDD4103E565FF1C77 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EF57337E179191A5248B5C8607367E /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A970E68615F0A3B8CFCD90AFAA5A5052 /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EF20424331FE280ADEFAF6BB933172F /* NSError+BSG_SimpleConstructor.m */; }; A976416CE94836C67A780BDA4CC35100 /* AsyncSSLSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D05E334092DECED86610A79DAA33B70 /* AsyncSSLSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A97D511E4F01BBFD768849902935DA50 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = FD29547C2C3A1FA49DF682A9262506E4 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A98FB128AA521EA9962AFC18E97BD03E /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = B87FF275E154F63E37A966F7B77A1290 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A97D511E4F01BBFD768849902935DA50 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1972088690408CEA31F8B5FB54B9F451 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A98FB128AA521EA9962AFC18E97BD03E /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 2996A59C885B15061352C2FD272B559B /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; A9C22AB6A1DFF4957F5564EE589A4A64 /* DelayedDestructionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 8597C38FF2B6314F7BBE0C87F0911E94 /* DelayedDestructionBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9D69263DC060805E1B4A5A84F0F32F3 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = C5D47C7F1E0D3601E4E12DE1B2D42CEE /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A9D69263DC060805E1B4A5A84F0F32F3 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 83C393DC702EE93BEC32346FBF212FDE /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; AA0833E0CD30D0CC1E832C8D53373D1E /* ChannelRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2200E0074F2C4D943A5070A8F442DED9 /* 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"; }; }; - AA336DD420800326EDE6AE8F9D97673E /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = FB7079DFC1E58A5E1B5B89081640875B /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA336DD420800326EDE6AE8F9D97673E /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BE3B625A28B176A73741D463C29F3DC /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; AA41B806DDD2464BA472118CA6EB6576 /* SaturatingSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = C342A484C7AF378CAF18A0CDFE2E0877 /* SaturatingSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; AA4D2BE8FBD6B2E0CAA71C501FAB68D6 /* FIRInstallationsAPIService.m in Sources */ = {isa = PBXBuildFile; fileRef = 4639BE34ACE5270615FD410A1595873E /* FIRInstallationsAPIService.m */; }; - AA7C1F95927D38B3403C705618DC8A50 /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = 2881FEC8284A5EA823672B48E20930AB /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA7C1F95927D38B3403C705618DC8A50 /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B00F220BB250E5BE21D432F2DB9D3AC /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; AA92D2FF7327196B7963E1EAFC2A282A /* FirebaseCrashlytics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 76C8411FD4ADAEE39D1AB0D8BB5F5FC7 /* FirebaseCrashlytics-dummy.m */; }; - AA97B065750AD2905DADC094E5ED46ED /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 76B12C7156A4F7E42D6CA1AA82F60A99 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AA97B065750AD2905DADC094E5ED46ED /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A88152DDF176713D7E5325BFE9C419E /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; AA98E5E760C605F57551D3D6192E5225 /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D8A76A18304EF0320E0B8B005322B07 /* mips_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA9B5FC484374062C68432D243330631 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = BF30C043E2C8978989FE992779AC8646 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AAA397302AB9735FEE54E85069DF673B /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 85C0C0551B9D3D505C413182E46450AC /* RNFetchBlobNetwork.m */; }; + AA9B5FC484374062C68432D243330631 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = F53C0812017E39A5A9861899336B7544 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AAA397302AB9735FEE54E85069DF673B /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = D836881817502EA9E41F0AE96F5D8067 /* RNFetchBlobNetwork.m */; }; AAEC54ADA9A9C0A6DD785E903782EFB3 /* ssim_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0391B43080EF6D3425223378484F3F28 /* ssim_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AAF05BFDD102FD660418FD7AE198030D /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 94FFDD103D6234CF206B76CD1A66872B /* analysis_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AB03E9B6D1F71BCDCBC752380EC4E008 /* FIRCLSByteUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C5F56BE2A8F083B1A4274718E4C109D /* FIRCLSByteUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB04017D38E62DF07CEBA7D22022A0DD /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = C37041973B07121668BCB6C55581597A /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB0D233175695AD5A5CFF80D84E56874 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 10F53A1495B8E4AA9B31DBDEE6AD6F57 /* anim_encode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AB23342DBC5C2FDCE50B87345FBE4392 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 934ADB02D0E720443CAF0F8B49A48D6B /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB23342DBC5C2FDCE50B87345FBE4392 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CCB00F23A94A8603E8F611811E34C4F /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB2920B9B1810A081F00F049F566C416 /* GDTCORRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = 77C198ECF5F510D2D53AF4ED6848A0DB /* GDTCORRegistrar.m */; }; - AB59C6234A9993C6BE675204C9AB2EE6 /* EXImageLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 697DCB539AA056E30D7638BC59EBB1F6 /* EXImageLoader-dummy.m */; }; + AB59C6234A9993C6BE675204C9AB2EE6 /* EXImageLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FFA1BDEEFFDAB36D3A227C4A87473A2C /* EXImageLoader-dummy.m */; }; AB5FA629662137136E8341AD06FC1978 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 867199107D83A031C2690C93AC51B5BA /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB66FEE1AD76390C20E69570385B29AD /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 36F6B478E1C8AA375374E0F9964F521B /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 870B3102B3CD8E9D89FAAA197875B50A /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = BCEE2A1825F67182895199AE7C75F159 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABB62FFEA507585DDEE68EB89787E984 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3264E4B462202D6412A19451847AEDC /* 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"; }; }; ABCD3CDD7AD0B48F038E8BDF3399A5FD /* IOThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9450B220E2FAD9FB66FC7D161733C1C /* 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 = 3E908157346CBB32E99418997F3DD50C /* SKDispatchQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABE92E6DD473C1C3130AFCA71ACCF240 /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = BD1B62C6CCC9B0025AF7A6FB03DC4E4B /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABF8D2E2E1BB9810CDDE4BD97264E33F /* SKEnvironmentVariables.m in Sources */ = {isa = PBXBuildFile; fileRef = B908A43E3E2CD7AF7CB8C41A2C574215 /* 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"; }; }; - ABF93991E5FF0E1A9484FE76D672BE77 /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 269BDE5F9150C53B58840D7F7942DB50 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABFAFAAB6A9175DA170C31FA219E3B71 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = EFF80CE80112452C15F49D7B990F9ECA /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC123C0D22624AB059F2EDB2C55A4115 /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = D5C69347EB7CD708F1AA61F95ED3F7ED /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABF93991E5FF0E1A9484FE76D672BE77 /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 739165E5A629E500D4E4DFFCB02D4A87 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABFAFAAB6A9175DA170C31FA219E3B71 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A797B345C745E88F12B501F50FF51E9 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC123C0D22624AB059F2EDB2C55A4115 /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8218E7443F4DE60378E3CE60A1C22432 /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC2903679DA7B6240539795ABD3F3FBA /* RSocketStateMachine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1D2768790089369FDAD067E9F5E3A1A /* 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 = 52C013BFB87AA447B327BA7400FCDBB5 /* Semaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC32932952C3DFEDD41B409756F6F777 /* AtomicReadMostlyMainPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = E3917CFBA8A1DD50F4584D0D892B7A17 /* AtomicReadMostlyMainPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC33859D09193FD00CE4DFC0B3D19B06 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CF54BA97F1204F092610662BFBA7BD89 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC33859D09193FD00CE4DFC0B3D19B06 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B0F716DAEC7A089F45EF0F96E91DCB58 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC3624864E7F8698E97EF22EF270A5F1 /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = AAEBF8516462AA52A00712CA926FC43E /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC3905F52FE0809F628BCC0CF306E76F /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = A93560B57142BA35A6DB50F982B46EF0 /* picture_tools_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AC3F23D9265E31E9BB9D581BDD04D430 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AC02BB4AFC6EDDADFA0D8EAD2E9985E /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC3F23D9265E31E9BB9D581BDD04D430 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EFA498F3E82E6172192E338E0D28301 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC59A26B99CA0893B82260C628EE829B /* FIRAEvent+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A43BCE29FCEF86AAA4D786DE72FCD206 /* FIRAEvent+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC608FCF933EFD43E7965B1B7B02F9C1 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = FE8666F7C978BCDCF45027E49C25C325 /* BSG_KSJSONCodec.c */; }; - ACD3DA42660705661D6469DD45147A5A /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B054FC7DEC6BD83B187A655CA0FD9F /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - ACD5A414D8C6211991F1D3C96B7F0D1D /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = F788C76C4B4C4BF7E938A725AA517167 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC608FCF933EFD43E7965B1B7B02F9C1 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = E87EF6A68E1F2C36411D64DD0B9F38AE /* BSG_KSJSONCodec.c */; }; + ACD3DA42660705661D6469DD45147A5A /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C68548D6C785F1993C49879BED5F4C2 /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + ACD5A414D8C6211991F1D3C96B7F0D1D /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C2AD21730EB81F558CE8F0BD5DA58E1 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; ACE7F710533E4AC5D694E89A3877D51F /* SKNamed.h in Headers */ = {isa = PBXBuildFile; fileRef = 3322F1A2E7AA2EA32611D9ADB0FD1A5E /* SKNamed.h */; settings = {ATTRIBUTES = (Project, ); }; }; AD06EFCC89799473CF856C546AED3927 /* FIRCLSBinaryImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 72B53398F7799CF7AF271D3990F6A469 /* FIRCLSBinaryImage.m */; }; - AD06FC42798C464D257A46A2BC40CA85 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = CDA22CF0190708367475F1C9DF73DD55 /* BSG_KSCrashState.m */; }; - AD0DA245B890349D01A915A669A813DC /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AD40CF96F3B5613CA523EFFB6C4F838 /* REASetNode.m */; }; - AD15E974D8793EA9FA3799E5793CC334 /* RNCSafeAreaViewEdges.h in Headers */ = {isa = PBXBuildFile; fileRef = C9DDD577ED5F2CD90CA550AECAC8C1FF /* RNCSafeAreaViewEdges.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD06FC42798C464D257A46A2BC40CA85 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B7A2D74467292B04CD08177147C9B80 /* BSG_KSCrashState.m */; }; + AD0DA245B890349D01A915A669A813DC /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E78946F1158F8D8216B26729357FBA04 /* REASetNode.m */; }; + AD15E974D8793EA9FA3799E5793CC334 /* RNCSafeAreaViewEdges.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A9A2003A028F4496FE281553E1F2B6A /* RNCSafeAreaViewEdges.h */; settings = {ATTRIBUTES = (Project, ); }; }; AD2FCDFC407F22399AA03C8D219CB35A /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 13904027F62BCCF191891DFD0ED5B440 /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD3557F440186A998F7A89EC3B5C74EE /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 504E01F2F902C5E93CA0FDF7AC084217 /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD3FD9645D2B87320330000E5DBD7C16 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = A48A8718E4BB3BBAF4546E0B15307BFC /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AD3557F440186A998F7A89EC3B5C74EE /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 30322B00C1EF0C1502C263CDA08BC608 /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD3FD9645D2B87320330000E5DBD7C16 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B6694E32E38F412D3C5C6B9F1AE7ED2 /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; AD96A58A131956BB8C9879F48A442247 /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 12E2CC69318DF0EE25036DE73B8EDF91 /* SDGraphicsImageRenderer.m */; }; - AD9766243F9026007D6EB80BB3A1B562 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F0CE731F9A363CD32CCCD6259E46EFC /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADDDC9248A6F312AD540F1D3E1D2F888 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 91C16FDAC603B24260D05A1CA37F4280 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD9766243F9026007D6EB80BB3A1B562 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 79D97CB9F7F1AA3F40B0E4514F18A9CD /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADDDC9248A6F312AD540F1D3E1D2F888 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E3A7ACD4FFD1398BAF99CDD584A376E /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; AE026FA2E0FD35314CAB62FA85B127D3 /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = FAD4ECEB1F70ECFB86378AC59310BE88 /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; AE0AE65B5B09B14D114FC2DCD2E07DF8 /* FIRCLSRecordIdentity.m in Sources */ = {isa = PBXBuildFile; fileRef = FE73A6B88E8638BC088A41F4E8AFBD31 /* FIRCLSRecordIdentity.m */; }; - AE1B5FC7166EB6E9163516313ED02291 /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = B441C3BD1F1173B64ED0BAFB195C8A84 /* BugsnagConfiguration.m */; }; + AE1B5FC7166EB6E9163516313ED02291 /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = F1E1361C4992B431E48CAD0CC738A4BB /* BugsnagConfiguration.m */; }; AE3574F9F3880AC0BB6A51947E420FEB /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = A76D6A693C0D21E2384BF0959E030A63 /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE35F51C28C993A1ED2EFAD1C5B4A08C /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7308D34C6AF817F460B36C2863BB7E1D /* REAFunctionNode.m */; }; - AE3AE48CE4B063CD7D9AF1AA6BB57AC5 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6302775582C8FB292F7C0CAB46A91BF9 /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE52A4D06ED42125C379A670ECF2B0D4 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = DFA2E97EBDDD60CE01428880EDF3AB7B /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE696B4A35AF464F62260BA86B736EC9 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 31C4204D58E0E145C4DBA328B0162E12 /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE35F51C28C993A1ED2EFAD1C5B4A08C /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = AEA9BF7061E003A72517F2BDD850F6E2 /* REAFunctionNode.m */; }; + AE3AE48CE4B063CD7D9AF1AA6BB57AC5 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 21E5E236FCC7BC21371A316603D36011 /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE52A4D06ED42125C379A670ECF2B0D4 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 506BF5CDED860C7E60A2228AAFC81E1C /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE696B4A35AF464F62260BA86B736EC9 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 16EF1252C369284E9A84463285A63986 /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; AE9BAD5416D1788A60DA1E7F3ED08F51 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 024CB9C53AE44274FF1F389BD4E97E78 /* dec_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AEB27C1EC087D6AAD63447C482C26AB7 /* RSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F293B5D977E8D1E406D51EBACCDC9BC /* RSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; AED318D41C7F3BE4C37C7FB57249C483 /* HardwareConcurrency.h in Headers */ = {isa = PBXBuildFile; fileRef = C18AD4E20713E272A237CF3B7E66CE69 /* HardwareConcurrency.h */; settings = {ATTRIBUTES = (Project, ); }; }; AEF02D003A6C637C4E79B072ADE0A70D /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = B6CB789D9800AB939DF5B886BFE4F2E1 /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; AF05B4B144F28758071058C7E8FD1640 /* ScopedTraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 32EE73EF649B61A7434249B8BB3B71CF /* ScopedTraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF1D206C1E91A995683BA28C56E6E8EC /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = 390FD09B4E6120DC6BD20D73D7DC841B /* LNInterpolable.m */; }; - AF2C90B0083799264992C7E086BB6D95 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7782572C39EF264BF13CB967491D0E7 /* RCTRawTextShadowView.m */; }; + AF1D206C1E91A995683BA28C56E6E8EC /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DE91BE6F72C1321CC40584D466B8BC7 /* LNInterpolable.m */; }; + AF2C90B0083799264992C7E086BB6D95 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = AB97DA50708919C7437E5968B9D0B3E3 /* RCTRawTextShadowView.m */; }; AF3ABFF1553A775B32EB8EFC443D7305 /* SysResource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD87456377ECC7FDB6C6803925D1D7D2 /* 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"; }; }; - AF82757F1CB66D2EC05476F4657456BC /* RCTUtilsUIOverride.h in Headers */ = {isa = PBXBuildFile; fileRef = B72CCF12206A1914948949B3950AC81B /* RCTUtilsUIOverride.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF82757F1CB66D2EC05476F4657456BC /* RCTUtilsUIOverride.h in Headers */ = {isa = PBXBuildFile; fileRef = F403C4269A40AA50795F6D3F90A05C95 /* RCTUtilsUIOverride.h */; settings = {ATTRIBUTES = (Project, ); }; }; AF94C7B27B49E1FDDF351596F49886B9 /* SKBufferingPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 118C0F7587402A5502711B19B3F429CA /* 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"; }; }; - AFCBB58514A8959F19D6A61EE1D420F3 /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EE0A5CD5E8D4CA609724F95213B542B /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFCBB58514A8959F19D6A61EE1D420F3 /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 81107AC60A7F64AEA4C517784351C515 /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; AFF898410D32282A69510728514BA86C /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 82FD998EDC69C9A3276FF8791180CAAF /* CString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B01AAF5FBC13CBC26C1ECF637E6A9C94 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 73982524566A50B6384946B2530C2512 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B01AAF5FBC13CBC26C1ECF637E6A9C94 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 999615D0AC998BEDAAFFAAB361CD76D7 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B01C36FAD05AC43B3637B8D0AB9459D9 /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = 878FD84776C457C8588F1FE37EE8F309 /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Project, ); }; }; B01E94A5DB2F0ACF14D31760C121B225 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 102A6C64850A4C68E83846F76B096023 /* UIImage+MultiFormat.m */; }; B0293EF73AFB370CF8D66F32A68DFBFD /* UICollectionView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0C8A26D9EC5003335495BA1FC4C8496A /* 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"; }; }; - B03DC8C00D4CFD74AA3E6E72D80EB0AF /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = C8265C63AC43F5A886877016BFB2C59E /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B03DC8C00D4CFD74AA3E6E72D80EB0AF /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B7BDC6327BEDD3E0C74DA3F7C78BC26 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; B0454B09C625E07098EA76D8F4388866 /* FIRCLSSymbolResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CD242961C3E62BF415281FEBFA64258 /* FIRCLSSymbolResolver.m */; }; B05521F41DF6AD44A22725CBD8B1C16F /* Framer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2017DA9EEE858CB20EB21564F85AB1C5 /* 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 = 67812C16D924B895F732ED2284D34D02 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B083FC8647E40600AE5804AFDA63624B /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = B7D366120B6EF65E206BE928F596207D /* BugsnagCrashSentry.m */; }; - B0881CA09218A618A785683BE4C79CC8 /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 444ADE0820302CE12830DEDD7CD99829 /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0B656D3BF9CED9578AC5461BB8DAE60 /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = FED99EC61698F83EBBB40358492DBF66 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B083FC8647E40600AE5804AFDA63624B /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 87C0745C2B00E26851984475A2EC1F6C /* BugsnagCrashSentry.m */; }; + B0881CA09218A618A785683BE4C79CC8 /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D036560680007EB641CBF9B43E8DCDC0 /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0B656D3BF9CED9578AC5461BB8DAE60 /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A888E9ECDA27BCE6E59F066501E3369 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; B0ED107F3AAF83FDD3035D0B3D864953 /* GCDAsyncUdpSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A9F6C643234641C2FFD0A82601DD935 /* GCDAsyncUdpSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1143BD3268E22879CC3A69C5BB79B61 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F84567AE78063F266547B4E7899B9E8 /* RCTRootView.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 = 4112D184DABABEA2C5B0B61168F06C67 /* RNJitsiMeetViewManager.m */; }; - B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AF7E1B8658037DF7DA7D129968BA1BD /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B12AD0D904923BBD956FF1A6D89EF7E8 /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = 551AC92263E7C5F08A10F56E19A73E4C /* Color+Interpolation.m */; }; - B1767292157E35544B71C7DA10DBD902 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D7F3EAAC32341136ACA4C5AB471EAB1 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B18BCE7E2534C68EA66E8C4A69BCFA47 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 38E528A2F0C70D984284B0B23350D234 /* React-cxxreact-dummy.m */; }; - B19977D9538C6ABA10D735033D729EF4 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 690521DE836EB14D6423498D8CB39650 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + B1143BD3268E22879CC3A69C5BB79B61 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E277FE9F831DE91835D6BCD502BBCC2 /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B1193470C47CF1A694DC2801AD4560FB /* Sha.m in Sources */ = {isa = PBXBuildFile; fileRef = E396F5E922027B9BC9BE1903BB008449 /* Sha.m */; }; + B11CA48DA91BE9D78A09D892242DB4C8 /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BB95C3E1D0D3F79114987E36C0717C9E /* RNJitsiMeetViewManager.m */; }; + B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F87C847BA5F52A6F7017B51D1DB5C8AA /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B12AD0D904923BBD956FF1A6D89EF7E8 /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = B29AA0DE15639835847075E5952D1DC7 /* Color+Interpolation.m */; }; + B1767292157E35544B71C7DA10DBD902 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 19C19916A2B91787DAAD4E5413ABC256 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B18BCE7E2534C68EA66E8C4A69BCFA47 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E9A5E5F6AE9E3C5E06AC13200C08739 /* React-cxxreact-dummy.m */; }; + B19977D9538C6ABA10D735033D729EF4 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 067AD4EBE0EC673E70438BE05CE3906F /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; B199F4C45C3FC5E1C5EAB6EA690EDA67 /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = B30FBF72273EED52EE488B0E4553704D /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; B19F61D3F34687101A8E5B7BE2B4EAF3 /* TcpConnectionAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1D5BD0C81CB3656FB94DF0E747A9454 /* 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 = 73DE71682AC1FBA16DABF9CE6620D83C /* ThreadedRepeatingFunctionRunner.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2364,30 +2387,29 @@ B1C753FE90549D728716F43E12DDADC0 /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = C646C169A280E39C2FC6B82856CB057E /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; B20E2104DD60A194165542B0AA180628 /* MasterPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FF0CBC22ECC08F79723E220F75ABBF0 /* MasterPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; B21572DD802891A58CD49CF3CFC580EC /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 6584FA2DE92D3128C08F07559EB1287B /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B21ED47165915C21EF394F4CA8C6DE71 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B398DEE73A5C9C348689DB92A7688F1A /* RNFetchBlobRequest.m */; }; - B23E67E4C9BE3A1C7B6E94B36BBA23A4 /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FD647A9C8CE45C38C48A0A02B147669 /* RCTConvert+RNNotifications.m */; }; - B2679FA44A18368E0569B37207A535C5 /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A7D68D15B0243DFA258DB1E62CDA5F4 /* REAOperatorNode.m */; }; + B21ED47165915C21EF394F4CA8C6DE71 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BB40BA4CFB17E9E163ED6603E659ECE /* RNFetchBlobRequest.m */; }; + B23E67E4C9BE3A1C7B6E94B36BBA23A4 /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 17DBFE1809576E6D19087F5102618D18 /* RCTConvert+RNNotifications.m */; }; + B2679FA44A18368E0569B37207A535C5 /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 717BD5D22EAAEDCCFBD56C98A64442CB /* REAOperatorNode.m */; }; B286814FE12B03656F533F95A27E6699 /* SKStateUpdateCPPWrapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 88D3F2DD016DB83E6C6176947E0E58D0 /* 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"; }; }; - B2902F1E7248FFA4EEE31834F4F6D8BD /* Pods-RocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D70D9EBB5B766C22C2364940119C9F1B /* Pods-RocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; B2EF5C82BC611CBDF4B346F0502EF1CF /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A433A2FE3FDBD3FE6F9022F40458FD5 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; B33E52DD3539A7CE133743B32AA0A785 /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A8AEE0060E2C094AB213EBCBB4CDD08 /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3599BDCAA7FFCA3615001C4DAACBD1D /* RCTDataRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 601B19978D6FC3C1B2E492D925A475B8 /* 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"; }; }; + B3599BDCAA7FFCA3615001C4DAACBD1D /* RCTDataRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = D260818C7B84863399660D3979D3A14E /* 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"; }; }; B37B24AF3B2A555EF2E1B850E56DA614 /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 84712B50AB1AF1E436DB1DA71E2D2CA7 /* GULSceneDelegateSwizzler.m */; }; B39343FE3191F0D77D03E112863A0066 /* GDTCORPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = F67E337E7F5A9F438DFB032A875437E0 /* GDTCORPlatform.m */; }; B396C44B8AF25924C7208C9A00E8149C /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = B3D918B16411C96B6E1075E810026669 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3A3B2C876B2A83FBC86B3C12EDAAEE5 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55FAD051E2AA959A4D8541A40AB4DFEB /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + B3A3B2C876B2A83FBC86B3C12EDAAEE5 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D1903DC187C0ECED2E7D9ED05B3D1E87 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; B3F14FDA0D22D6BBA1A8665801D74FDA /* ScheduledSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = A1A4306CE5201CAC7DC5E1DAD66091AD /* ScheduledSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3FC92C3D4283CD7C2F62A53EDA4378B /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = 886AC1F36B8DEE39F487D5ED93776C00 /* BSG_KSMach_x86_32.c */; }; - B41D1BE775A5E1E71F079E1661B1553C /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A1E2BD8F5FCEA7CB8E082DF3FA93768 /* EXAV.m */; }; - B42ABF16AB72DA78493DD2D4F45B4751 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7122D208E7CBDA56D7F285485D4C36DD /* 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"; }; }; - B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = D06903DA43987F38A89CFD31562F611C /* RNGestureHandlerRegistry.m */; }; - B46D8BAE4C9ACE396EE6E38D21C53C39 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 55F7906B5DB172E533F92E707FD54E71 /* FFFastImageSource.m */; }; - B4739208CCD185642B0D5DCC2FC489E0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = F301CC3E64C9B2DBFB07459A48F17278 /* DeviceUID.m */; }; - B49C371F11EABAEEAC8A16337398E30F /* RCTScrollEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = CDEA08C7FF025D3288B25D1B49D63EC7 /* RCTScrollEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3FC92C3D4283CD7C2F62A53EDA4378B /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = FD5FF97F665F9994663022299DF5B74E /* BSG_KSMach_x86_32.c */; }; + B41D1BE775A5E1E71F079E1661B1553C /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = 919838236667A64B9CB82BC946C38E90 /* EXAV.m */; }; + B42ABF16AB72DA78493DD2D4F45B4751 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 657A92B3B871AEFD45AF9375E6A386F2 /* 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"; }; }; + B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 0884824E3FE4879C62FBB5E63D34E85E /* RNGestureHandlerRegistry.m */; }; + B46D8BAE4C9ACE396EE6E38D21C53C39 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = EF52CE6D58AF9AB112ECEA7526847AB9 /* FFFastImageSource.m */; }; + B4739208CCD185642B0D5DCC2FC489E0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = B405BB575FE7D7BBF3F0C5186526FC9E /* DeviceUID.m */; }; + B49C371F11EABAEEAC8A16337398E30F /* RCTScrollEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EDCC62D0D6C9A44794ED7BF5ED2467A /* RCTScrollEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; B49D95817FB79C7EEDCCF37504DC138A /* FIRCLSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = DAB360787BD09147B7D4275C2EE9CE1E /* FIRCLSLogger.m */; }; - B4A1E0306D3D6425D748C04926E31BBE /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EC93AFD7667ECD2F429D3E8AB07E47C /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B4BA80755C5810BA53BB0E7D0F5367B4 /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 887614149377D43F39373680F4866684 /* Compression.m */; }; - B508D8495B9D9A5641D2D5ABD0D079AF /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E4005F48DF332C4BEE1AA75C1D0839 /* QBAssetsViewController.m */; }; + B4A1E0306D3D6425D748C04926E31BBE /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 663A55CF92E9480D8EB76947EB9DB479 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B4BA80755C5810BA53BB0E7D0F5367B4 /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 0053459BC93354C408781F87E305F368 /* Compression.m */; }; + B508D8495B9D9A5641D2D5ABD0D079AF /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 56EE46EBACB498E3EC9A96624351FE98 /* QBAssetsViewController.m */; }; B54B8FEC222B2A26021ED66D627DC63C /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = E66161EA3814824B6F11D5D3623AE23A /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; B5643784981C4502A4D430E65C273141 /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = 4258080A322D8874E2F5B60857DCC36B /* FBLPromise+Catch.m */; }; B57AC832F696B961129F42E68DA0914F /* SKSearchResultNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F1E01AC38BD111AE4CCF25038529E2 /* SKSearchResultNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2395,14 +2417,14 @@ B5FE9821B32A4FE93A5252BCC9DCDF80 /* GDTCORUploadPackage.m in Sources */ = {isa = PBXBuildFile; fileRef = 466759A8D3BBCCA64DB7D95C26EC8101 /* GDTCORUploadPackage.m */; }; B610078262EE860FD9F4247D191A6F47 /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = F09C010F016527E92F5F3427A5A15B57 /* FBLPromise+Race.m */; }; B625D5784F759BE494CD345370277911 /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BF2F8A4AF73D25D37813F0B113541ED /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B63190A3185A392452E244869C86BA24 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = FA868C8AEFC363B7DCA6560CD8CB2C08 /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B63190A3185A392452E244869C86BA24 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 75635BC3081A2EAC856C6B52E8753002 /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; B63DAFB06AC2D02D95A8CF66D6E1FECA /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1263A8E0612F8ABC10F754CD754179DF /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - B6842E62885EBBE6CA0C133734CBD26A /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4932753FB4A8E5CD7E3FC990BF46A42C /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B68A56CCE7D33621255DBE32C31F951D /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C6B6BA9573A3D5114944B9DD5890D74 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6842E62885EBBE6CA0C133734CBD26A /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 77238246202367125DCDCD3F148C31AA /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B68A56CCE7D33621255DBE32C31F951D /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CB307A9B47688D70F2FA2F49AFF27A8F /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B6AFF1D2AC43774591A5DEED821AF788 /* ClientResumeStatusCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 010BC0A53D08750CF770EB12F6BCC918 /* ClientResumeStatusCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6E18A6E9C73446477FAAFE3BA58C283 /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 364DB5BD16873F10FAC67C82E3C633C9 /* 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"; }; }; + B6E18A6E9C73446477FAAFE3BA58C283 /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 71235E00DAD096AE8A107B377E20AEBA /* 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"; }; }; B6F7CEB2DB2CD5B6EA61832DB1DA96D5 /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 01958C82A7AC7F3E36F09297E185646C /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - B6FE3513DF705729287D1BD3231DEF9D /* RNFBApp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9655546D55EF3CA44CC44C6FBE351C28 /* RNFBApp-dummy.m */; }; + B6FE3513DF705729287D1BD3231DEF9D /* RNFBApp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B8F9AC230A36F8BF2E5009E18DA179BF /* RNFBApp-dummy.m */; }; B70227D69A6C4A9AAC333E9A6BC9B3BF /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 29136F9BB3638A1122CB739D067F3262 /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; B718BDD197AE1C7D0EDF9A1E4B642CA5 /* tr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F6EE8B397595CE5A729585247F112E22 /* tr.lproj */; }; B7251DF6813E92CB3A82B20BE595F880 /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F838617F16EB768126A4D93CF497C82 /* GULNetworkURLSession.m */; }; @@ -2411,15 +2433,15 @@ B7AC4E524FCE57E98708FAB425402CBD /* FIRCLSReportAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 23C9283AC1D1C810A0288E7F43F1AC7E /* FIRCLSReportAdapter.m */; }; B7B02CF69AD8090F7EC4BDF6B106340B /* AsyncPipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D291DE38229CCA16DF54B55291CDD8AF /* 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 = 6E421DAA365BF5CCD4D6F4AB0C800FDC /* vp8_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B7BDE180DE1B36F39AF1EB08FFBC40F9 /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 64814E0BE194994C80E70506268CD379 /* react-native-notifications-dummy.m */; }; - B7CCC262C6CC2C693079235A307CC295 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 721327DA84E79E7B7C72A0CBF1687A80 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7BDE180DE1B36F39AF1EB08FFBC40F9 /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2041EDDEC54ED53007C0936B8D55DACA /* react-native-notifications-dummy.m */; }; + B7CCC262C6CC2C693079235A307CC295 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A9782627E4C2BC9AE88667E53322A0CE /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B7FD8E55781BD2B09D63E76DCDF4A3A2 /* FlipperDiagnosticsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 770BD55F996E7ED0809CFBD4C6986E9A /* 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 = 237316B707521AEC76705CCA86B47A0D /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B80A5602ADDC9557632BB5C6BCB3DB03 /* UMErrorCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 63E1E28392FDDDCD117772C8187B9AB9 /* UMErrorCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B803FBAD88A96C3E5446FC5948528C39 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 22DEEF405C74B0E54436D626A23ACD25 /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B80A5602ADDC9557632BB5C6BCB3DB03 /* UMErrorCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 43ED7B485C9EB2BFBE0DCA579FAD1261 /* UMErrorCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; B8143F787828257EC3C64CF3782049B8 /* Hazptr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D1E56880C335CA741243304C3685EB5 /* 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 = 7944D3F7795268BBDC2804BDF5D596C0 /* AsyncSignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; B8317134B45F9440FFFEFF835F1613A9 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = ECA1D9075F3085AE3955A96E15AC1094 /* common_sse2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B83D734EA626DAE2318E58BEBEAF9FA4 /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23EA729B2C57815E3E5B59F0E318D8A0 /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B83D734EA626DAE2318E58BEBEAF9FA4 /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0899A3D853FA1EF8BBDA50989ECD9FD7 /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B8502C80D8E6C9931169155C3D26010A /* ResumeIdentificationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C9DD9D2C25BA757CFF6076C45CEE5EB /* ResumeIdentificationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; B85819255D00BB610B66676563B32410 /* GDTCORTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = F1224AA47F780F896630B559FAFBC8D1 /* GDTCORTargets.h */; settings = {ATTRIBUTES = (Project, ); }; }; B860E187C366E80D3D751472B347400F /* FlipperKitReactPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 468E01F2EB689338BB2B3579C4FFAAD3 /* 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"; }; }; @@ -2428,31 +2450,31 @@ B902AF6B0918FB840CCD91E94FDF39B7 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = CB6C61548755A9F5988E6C06022D09AA /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; B91776339604D97A896D26A18DD95CCC /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DA474163086E4BB515B570BEFCCA89B /* SDWebImageError.m */; }; B91E70B671250005FA74AD2BC312CA08 /* libwebp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 08C6D333BA0B63D7C98E9D0C82FE4F19 /* libwebp-dummy.m */; }; - B9336249BEE54671A61C8DFAB0D3DD1F /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = BC18E8E54381F3A9539D5849A9EA0441 /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B937677FC4A34E3C7292E1923469F0E9 /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FEF1FBE718351B5FDEF0E05FCAF6F4C3 /* RCTBaseTextViewManager.m */; }; + B9336249BEE54671A61C8DFAB0D3DD1F /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = C67A1A8BD86BC3BE65BD161E3C387CF5 /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B937677FC4A34E3C7292E1923469F0E9 /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ED6B0CF53AAB7617488E10EAEF696A27 /* RCTBaseTextViewManager.m */; }; B94722DA2E0A483D06286C0BDFE937B6 /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 24180451BF7C918523EE2F2D21D04DB4 /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B96B06B635CA6D8FA0CFAA2640D74B70 /* RNFBPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = A3EA69EE11ADAF8D290E70524F9C32CD /* RNFBPreferences.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B96B06B635CA6D8FA0CFAA2640D74B70 /* RNFBPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 47282231E058257493EA6E4655AF1882 /* RNFBPreferences.h */; settings = {ATTRIBUTES = (Project, ); }; }; B9B58BE164B8ED2D35DD93B1D5385137 /* FIRCLSMachOBinary.m in Sources */ = {isa = PBXBuildFile; fileRef = 60472B6B1CDB6468AEE60402A37320DD /* FIRCLSMachOBinary.m */; }; - B9CFDFF468394D0BCCC88748F17725AB /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AC02BB4AFC6EDDADFA0D8EAD2E9985E /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9CFDFF468394D0BCCC88748F17725AB /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EFA498F3E82E6172192E338E0D28301 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B9D5296199369C3E07EEA437FB70F883 /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E42945B3FE822FA3627B31884E8F0B7 /* FBLPromises.h */; settings = {ATTRIBUTES = (Project, ); }; }; B9D989270BF39444739B9D53F28332CB /* cost_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = CFF9BBFC575965D7B3497942602B4C5B /* cost_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; B9F471E76219FEF567A697FCAC6988A6 /* RecordIO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B669426002B57006ABA90A955CBB404A /* 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"; }; }; BA1B0B45243063A109841A143245C590 /* FIRCLSFABNetworkClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 311C6FB1748BA7883B86D832345C9570 /* FIRCLSFABNetworkClient.m */; }; - BA2CD348EC967C9A230CEBAC06ADEB71 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = A6B532F95BF9183102D4EECEA65C6C40 /* UIResponder+FirstResponder.m */; }; + BA2CD348EC967C9A230CEBAC06ADEB71 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = D47A085905A6E73FE50B5B2412BDD065 /* UIResponder+FirstResponder.m */; }; BA3003D24D3BE212DB5F9467F24524F5 /* GDTCORTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C3FF3E4DC4280B964575038808876B40 /* GDTCORTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA320783C2C9624896E06C34E9BF688F /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = E7F8B20F7797DDCDECD4DE64EA6C2DCF /* vp8i_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA52E8F1211DE60E33317887C1373E85 /* FIRCLSNetworkClient.h in Headers */ = {isa = PBXBuildFile; fileRef = AC06769877230EE670F699DA9C97CA0F /* FIRCLSNetworkClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA884E615C31E28E4084698CB73A0AA8 /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = 7367E117C3129F71C0939722532DEACE /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA942A5A358D6A3A01F66E7C949FD930 /* vi.lproj in Resources */ = {isa = PBXBuildFile; fileRef = BDBBFBCD7DE76109F755131AAA2F136C /* vi.lproj */; }; BA997D0A220566AB86D6FF4BDE3FA2C0 /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = AF4CD1EFC5BF0D7131F5EB9A2C3D8A04 /* SDImageCachesManagerOperation.m */; }; - BAA3D1F013273273484EA4DE0CF0E69E /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 64E504ED3E430BD7B4CC63B2CE0D2632 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAAF1FE5B7910872AF80471430B0D4FD /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A634CE8A6832A8210B2D1D5A4393D787 /* RNReanimated-dummy.m */; }; + BAA3D1F013273273484EA4DE0CF0E69E /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BA696F8AE94237988922476FCE0272A /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BAAF1FE5B7910872AF80471430B0D4FD /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7697E9F6CDD33F2DE63224CF17384CE9 /* RNReanimated-dummy.m */; }; BAB34DC9AE18D51771AD2EFF9AE9E82E /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 44B5ACEFBDB14D212ABE5B187AE4A3E9 /* 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"; }; }; - BACF66D831BE3C45DD352D8AEE67B8F6 /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3937A2B1330E98D2F2045F13004CE916 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BACF66D831BE3C45DD352D8AEE67B8F6 /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EB29AA5041068095B78AC53CFE61C99 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; BAD73CF4BC294D4E49B0092724693934 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = ECDC3CA8CC5F201C7FAD517E34EA6CCB /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAFC7EB94EDC8488BE9E12326D442CB0 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 1002FAF9D0840C5287A1AD3B81685D87 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB075BC20AC56EFBD8CC09B74F83AE32 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A79536B310A95CADE2533A213CA0C89 /* React-Core-dummy.m */; }; - BB3D2DB1C52AB829F66F0C3F57008449 /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F46740C50C4F1E03FE092B3D1C710F26 /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BAFC7EB94EDC8488BE9E12326D442CB0 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 85F2FD52AC5B5ECCD36AA0B1E47F0FD1 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB075BC20AC56EFBD8CC09B74F83AE32 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F75B35840330DD2E84036FF5DB3CACD /* React-Core-dummy.m */; }; + BB3D2DB1C52AB829F66F0C3F57008449 /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F2BF95DCF13E2EC0A619715493ACC3F /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BB72C52113C41EE2194D3A3EA913DC69 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A36ADBAA7FED27F1E4A346CA02A5DC7 /* webpi_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; BBAB76A21C95354A81832F9C5F856D09 /* SKResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D64FF016044D6790C3FA09B272DA8ED /* 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 = F8039CCD3C7E0FDE229D3B906E841298 /* 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"; }; }; @@ -2461,19 +2483,19 @@ BBC83955233A742A5693B1C7A40E2E1D /* RequestResponseResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C74544180C6AF0CCE0506538D7C099D0 /* 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 = E69FB7A00D6D24D1E54725DEB2184EB9 /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BBEF57329313254ED8F52D89464F39C6 /* FlipperStep.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B4AD15390A80E632C722BDB4C9C7F4A /* 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"; }; }; - BC119DEABF0F6DDE91F15AA4F9D2D92D /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = CEF676D927EF30BF109A54DE3874714E /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC119DEABF0F6DDE91F15AA4F9D2D92D /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = EDF4AC5118A1AAB9BC42B53E0093620B /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; BC254260B8604B20837E6C808B72014D /* TOCropScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9397865973489CE4FCB045A40BDEFE2F /* TOCropScrollView.m */; }; - BC3209B63AED304B37FC4C884A1FF658 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = EAFB6CF89AE27D47BE60053E0B880C6A /* 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"; }; }; - BC3233A5EA25350C909293F34A9A8618 /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C72C37267ACB301B335FD0DB84E0A927 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC479BD3F6C3BF2BD1FBC876857618B5 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 667EEE31AFE56D70450BB1D7C58C7104 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC3209B63AED304B37FC4C884A1FF658 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FCB8BCA853AFFF0B707A6E40BF3A15D /* 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"; }; }; + BC3233A5EA25350C909293F34A9A8618 /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 69F829D7381FF8CB71451C3064EC65D4 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC479BD3F6C3BF2BD1FBC876857618B5 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 62675C9005432D19954712B52CDE4E0B /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BC5B61B37C8BCD8467E30F6D9F15783C /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = DF6AFABDBADF52E4F614055915B0724E /* SDImageCacheDefine.m */; }; BC618200543E0DFEF8921BCFBC97D579 /* AtomicNotification-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4168DF9F6E37BBC9E9A44D37DD4F8A12 /* AtomicNotification-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BC726EC62C981E8283E5D854F08EE647 /* SingletonRelaxedCounter.h in Headers */ = {isa = PBXBuildFile; fileRef = A3F2601C7D430A952DA08D18520AAB0F /* SingletonRelaxedCounter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCB94F554826E313F45F83CD0B2B05B1 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 79773EA522BCA7FDA74A1232B1F5FB93 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCB94F554826E313F45F83CD0B2B05B1 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9953D75B31B4F5EE4A8B43B1F7A626F2 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BCD873A143E0D34BEC00AA959AD55659 /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E57FF41943A829FAA01AFFE142B8ABC /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BCDD72F20390EC6D23080FC948D4EC3B /* HazptrThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 968663FA1FB09B860DD8510075F2EAEE /* HazptrThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCE287AB23E636C9B4A9CA60EB400D52 /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FBF889F45EB3C2CBCC0F9E4321FF1B9 /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCF5F05EA3BD5F6DDE1E330D76796DAD /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D363A821FA6441C0415E5D82EAFC999 /* BSG_KSCrashSentry_Signal.c */; }; + BCE287AB23E636C9B4A9CA60EB400D52 /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DB478E1E2FFD045A6ECA82BB259A811 /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCF5F05EA3BD5F6DDE1E330D76796DAD /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 2B5EC5BB829C668D3B8DBCFEDB728052 /* BSG_KSCrashSentry_Signal.c */; }; BD04B19D30A7DDA2110F8DD46B05309C /* FIRCLSRecordApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = CA015E8AEF215DBBEC722E24ECAD42DA /* FIRCLSRecordApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD0D4A0B32634B1D13D9E57BD4D4DAD8 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = D006B45F73E3EB98184E5E01EA61C062 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD1D9E289B85888E5A0DA85BFDB7A306 /* common_sse41.h in Headers */ = {isa = PBXBuildFile; fileRef = CC1C3D6E2E4932492A8B3B7F454E0173 /* common_sse41.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2481,84 +2503,85 @@ BD5072F01D4F31835001890346551F86 /* FIRCLSURLSessionUploadTask.h in Headers */ = {isa = PBXBuildFile; fileRef = CAFC6E52C58FF0F4DF956FBE62F844B7 /* FIRCLSURLSessionUploadTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD78FFC5FBF7237371DD462265B06FDA /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 56804968BD3EE043072C95B0151F2117 /* FBLPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD80706281E0902BE82B527D8A2E194C /* FIRCLSPackageReportOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = AB47869EAA35910D419276C3898E9841 /* FIRCLSPackageReportOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDBFE8095A6DFBDD8701A8B73916BA29 /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F51E4002185AABCB6902118765D16B6 /* NSTextStorage+FontScaling.m */; }; + BDBFE8095A6DFBDD8701A8B73916BA29 /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = BE12A1B72479404179FF9DB5E449E114 /* NSTextStorage+FontScaling.m */; }; BDC1917353224F29E170FF5FFB75F6BE /* ManualExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA42125CC2E10D520A5604301F9B6041 /* 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"; }; }; BDDDCF03B2B3F78451CC4C26A6C2E56F /* GDTCORReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = BE88E1F560AED9BE6B8FF7674386A364 /* GDTCORReachability.m */; }; BDE17974FF49ED73F08298CDC7E01D5F /* FlipperResponderImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = F26996A2CDCB4BBFC22050148D771667 /* FlipperResponderImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDEF8F949C17EFCFED5F97D8A3990EC5 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = B2031454B79FE34BF059E24DFBED2A2C /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BDF333CB9531868EF10E96EBD4863A46 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E3EA3A933063BA7551894E6DBD2131D1 /* React-RCTImage-dummy.m */; }; + BDEF8F949C17EFCFED5F97D8A3990EC5 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = 45846CC68122A0AC3051544A07D5B2B9 /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BDF333CB9531868EF10E96EBD4863A46 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C537B807CB0583208FB7549C525142F1 /* React-RCTImage-dummy.m */; }; BDFABD15A8D4DB4905425E02902B21C3 /* AtomicNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = EA673DE59200B0B5F64F611040331D9B /* AtomicNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDFC0F7AA2F89581B048797BB777AB5E /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B45A6A9F70AE4BEC97C0B6F5F9EB6FCE /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE0A9FB9E8D5E3F0C1427076535D5386 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 23DC14BC30212C2A74E396EA2DD51B91 /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BDFC0F7AA2F89581B048797BB777AB5E /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 07194359E2ECCC9D04469524E4457B16 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE0A9FB9E8D5E3F0C1427076535D5386 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = BB357A151D6B225C1A8128543A09AD98 /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE13FFBC3ECD1D252D25888F6B0FF93A /* SKTapListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E8CCF24644C1F4E7A6166AFC6FABD31 /* SKTapListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE40EDBCF4471381FF28E7701C8FEA69 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 5AA0407C275BCD3BDC6820B4783488F2 /* bit_reader_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - BE49CA81319136A74916349FF145F7E8 /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = D2B8B6E373698F862883B51B8AC67F17 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE5B26FDB57E9211A299BE9E82B29733 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 09144F81FBC14583C5005E6DA47792BF /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE49CA81319136A74916349FF145F7E8 /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 92C3D71AF53455A575541F6D79EA6900 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE5B26FDB57E9211A299BE9E82B29733 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = F83ECD37D111523C25BA951DBE815297 /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE6F8D3062484095226992E20BB339DA /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C9A254A254A1AC4B483B0AB59F19BA2 /* 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 = ED02939DC8FA00700488775914C2FCFB /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; BEA7DD3B32ECCC8891AF8E6EB931B571 /* ParkingLot.h in Headers */ = {isa = PBXBuildFile; fileRef = AD9AFE100CCA7B80C790FECCF0EA38A5 /* ParkingLot.h */; settings = {ATTRIBUTES = (Project, ); }; }; BEB4A6B042EDE942C08A59D878BBA0EA /* GDTCORConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 91BCB69A1E4DD62C7128ADF940448421 /* GDTCORConsoleLogger.m */; }; - BEB5847FA4846DFBE6DF49402DC7DDDF /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 730AB123B6CD2630D5F088205F830F04 /* BSGSerialization.m */; }; + BEB5847FA4846DFBE6DF49402DC7DDDF /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BA95D42F40D31629F11CA7A8071D173 /* BSGSerialization.m */; }; BEB8A46866B0036585164D48371F67F3 /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 6893EDCAE603C5E813325BBCC9611C93 /* rescaler_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; BEED64FF0DAE73F86741D0DF21B4CBD6 /* RSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4C8D874A90E0E3DA610AFB8251B5DBD /* 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"; }; }; - BF25CE80A3FBBC72B5A1ADEFEBBEA6CF /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = BB762257B51BEB7CCBEEC293A78F8878 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF25CE80A3FBBC72B5A1ADEFEBBEA6CF /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 804E80C6B7478B90161E0F4DEEEEEC6D /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF4FDCC4F1BC4069129114C5CC7C0E3D /* ReadMostlySharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = F121793B88730F859CA0404B3CEBB833 /* ReadMostlySharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF649BCAE7F16742B4A6781A42372DFC /* LifoSem.h in Headers */ = {isa = PBXBuildFile; fileRef = B5263EB718B07A8904F6171B9650CFC5 /* LifoSem.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF88469CCE5C3998477396ACFBA9EA6E /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34B4A366A7C4EBE2B11006AB0FF65BB2 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - BFA315F1B904E334EA552B6D6A6848F8 /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 33A8B74E82780E85783CF929D1E5C33A /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFA315F1B904E334EA552B6D6A6848F8 /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B15198656612D6F7D67CF6C22B9ACCA9 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; BFC35AD1D40EB56B4DA583649E8F5D13 /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = B3C7A19714DEBBAAF4DA1C17E3539BD4 /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFD25A0DCB8C16E01937EF26DBA8E7B1 /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = 08636E40C895F9DC5CDC13D4A065C2AE /* ARTBrush.m */; }; - BFD9C0A7CA197CC52C3CB95BB1E85F8A /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 84FBC11852FEEAEF26DA993D029DFB39 /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFDBEDA2F9345FED6BF31A72192A415E /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = AB1626DF9AA02609081D8183E536AD83 /* REATransformNode.m */; }; - C0006C9ADDF781863927DBB59A743976 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = B1C1C8D3CA86CC9AC6F90B5BA2E2D4D0 /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C0212921C9C63B53D671EE88E85F62DF /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BDB5D7FD80EE9CC211FEDAD1FFAACAAF /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C02CA725847A19D0D496A281FDDE4E6D /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F1B083C96093F9C005C9C0F18BE5F6 /* 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"; }; }; + BFD25A0DCB8C16E01937EF26DBA8E7B1 /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = 97D492645A87D04D738F814A6F684B5F /* ARTBrush.m */; }; + BFD9C0A7CA197CC52C3CB95BB1E85F8A /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = EB668FE765F74D0F9E34CF5423CE9B67 /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFDBEDA2F9345FED6BF31A72192A415E /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 426FFC257D5182156F8091284A830CC5 /* REATransformNode.m */; }; + C0006C9ADDF781863927DBB59A743976 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = C9DFAE1CED3AF75F343225DB3D0C244D /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C0212921C9C63B53D671EE88E85F62DF /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4543F7584A378A4DAD2B8C5F8B74DD88 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C02CA725847A19D0D496A281FDDE4E6D /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EC6671FF0111A395C21368B8A86AD70 /* 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"; }; }; C057DE004A17A3F8D3B35D884C28C883 /* DynamicBoundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 8313B3CD1D07DD4D6FCE7D40613A8FE4 /* DynamicBoundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; C0581C5E118FDFD225B70062D5951D1C /* FIRCLSInternalLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = C3357C3D92B275430BE1CA336548C8CF /* FIRCLSInternalLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; C06443B16AB8E3BFD89427A2B4B49DEB /* SKHiddenWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = A5CBB2C669A31CB1A41D967FB8337B96 /* SKHiddenWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; C07E5C729C5CDBA463F9B3244CB7557F /* ParallelMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 99F241E194119E22497F0BBE063E2FF8 /* ParallelMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; C07F031199013D105FEAA8C15D45F158 /* OpenSSL.h in Headers */ = {isa = PBXBuildFile; fileRef = C3D0B731AE100532F2662E22FB50CC67 /* OpenSSL.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0932A8526A3AE20FB97AC3C7943473A /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AE7685E86C58BAF7371266E3720E407 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0932A8526A3AE20FB97AC3C7943473A /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = 274F8B085DC92CB35B0F007F6D6B7336 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; C0A2023B19676FAABBBA6B2BC4D9F8F5 /* FrameTransportImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D03C24859C78FA92DF19844A21C805A /* 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 = 9C8D15BD98064FC8CD29C15DDA8B429F /* yuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; C0A764E2A7162F96CDC19C3FBB3941BA /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = DA253442FCCFE9267924F820DDEAABCC /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0DA56861F19FBD577BD41D10533ECD6 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = D8C9AD6C661265BB283DB275371E5729 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0DA56861F19FBD577BD41D10533ECD6 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = C1409995935389D3483866220BA1B497 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; C0E488789FEA375C81FE2F74F4AA9D58 /* EventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9737529540B90891761E6E271EFB788C /* 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"; }; }; - C0EFCC68350B009B251F6F3BF822AECB /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 67BAFEDB32FDB1D0AD1D217DCCF26CC1 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C0EFCC68350B009B251F6F3BF822AECB /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = B268560C9B6855ECA16713BBE8C56D8F /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C0FEA850E34B4915EAAE6772C2C0221B /* TOCropViewController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AF6C5B01FF5BAF6825B25260AA71F6F /* TOCropViewController-dummy.m */; }; C11DD2F2A0EC13794D0F91C78BD33660 /* BasicTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = DDE43A897EC38B3CB5703723105E8E34 /* BasicTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C13607802A82E097C94614A6F16A33AE /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DA57CF4D7EFB4835344739C41D24C9B3 /* RNVectorIcons-dummy.m */; }; - C1527E631CCA0A9E697CE853758205F9 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E5E991D603126D65E3986BD551B20C5 /* RNPanHandler.m */; }; - C171421434E7FB0AD572729BDD931403 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E0B57A32DBD7A4669B2470B7260E80B4 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1D36A17157394A720072DA41D7CDDAA /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C5ECDE1C5CBBFC663F87AF1A6B5B3E32 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1D9CD93279C99FECFCC6F270EE77D8B /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 94F02BA5410D8CBECFD4EF39436ED427 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C13607802A82E097C94614A6F16A33AE /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 432AC71E049E339948D81B82AB73545A /* RNVectorIcons-dummy.m */; }; + C1527E631CCA0A9E697CE853758205F9 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 29FD9D843251F1B79E260C857FD8ED7C /* RNPanHandler.m */; }; + C171421434E7FB0AD572729BDD931403 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C1E624888F4BDE97295B8A0B99C6913 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1D36A17157394A720072DA41D7CDDAA /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 726CBA205A1B09241B259A246F18F45A /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1D9CD93279C99FECFCC6F270EE77D8B /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = CB178F8CC178C95C40F8D661E4ADE424 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; C1E765069FBFC5049BDD3048CF48C443 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = EA248B5B87A57BDD6811A1434C7E9AD5 /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C22103D361A0F0596B683F3978E75417 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F82DAB0168C9A616529AA60F814D8381 /* InspectorInterfaces.cpp */; }; + C22103D361A0F0596B683F3978E75417 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F795504F2D7DDEC908D2F55201ED70A4 /* InspectorInterfaces.cpp */; }; C2210BD937C3EFB00A98950CDF17E200 /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = B870E1D42C8D3B51683AAB305991AC42 /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2263B03329251F5D94C20D3F6D7C153 /* RCTNetworkPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 06C98C79B5EF2C133FF6CE557FF42847 /* RCTNetworkPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C23AE48B3ABAB7EA35C3438C5871DB35 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 90E1207CAC8C95AB1F458E75F09B7813 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C2486B1E8EE87EF597289BD464B80857 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 55D28C4F446EF85B88F966A14F398624 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C26192AB566D334572D7F6C1BE8FB4F0 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DC6AB712F618A1FAB640E85CC25EE6D /* BugsnagSession.m */; }; - C263E42FDB347F766656EF42E821797F /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DA4C0665A79F02E040D94E17AE674D4 /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2263B03329251F5D94C20D3F6D7C153 /* RCTNetworkPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = EDDF23E79B93E331FC5A7DFAB18199D5 /* RCTNetworkPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C23AE48B3ABAB7EA35C3438C5871DB35 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 06AA6F0C5F0864240C9A960BD34E2F3C /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C2486B1E8EE87EF597289BD464B80857 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = E21CE3623C1ADE5443172153BEF0D74B /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C26192AB566D334572D7F6C1BE8FB4F0 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 1513AE7CADFE33E4EFA8F55AF595DA06 /* BugsnagSession.m */; }; + C263E42FDB347F766656EF42E821797F /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E627698DA595C4CF5C9B66C208968ECF /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; C28013B0E6EE2B2312C28F6C894195C2 /* SmallLocks.h in Headers */ = {isa = PBXBuildFile; fileRef = 9893F1FF5D07793FA6DCEC1628856C0B /* SmallLocks.h */; settings = {ATTRIBUTES = (Project, ); }; }; C280FBA6CB4B66759E107B5F44C4873B /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = B52F8BE551A2E00D181C98D318D45A83 /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; C283BBD7ED04212B9A808864AC9ADEA3 /* FIRCLSHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 74456F55B8E8CF1F872EDB3F968C9962 /* FIRCLSHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; C2A20A2FC7C090819B293CF1B8AE1C79 /* TimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BE839073D61550D2CD5027048D1E550D /* TimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C2D27B35A495F5703A7F5E47C01CDB27 /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 942063CD54FC46D4C00E63EC9C824B6C /* FIRComponentType.m */; }; C2D28B4B3FBFC6E8C78FF52F978104E4 /* AsyncSocketBase.h in Headers */ = {isa = PBXBuildFile; fileRef = E670FDD3653083B21240F5654FA2215D /* AsyncSocketBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2FF2F386635B257EEA20673524B2106 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C168E75C2CE01B7AA6795B1E1B62A1AC /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C30A06DEED796382057162537ACB1715 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D0653104BA4E9F8485AB6596BE5678C /* RCTBaseTextInputView.m */; }; + C2FF2F386635B257EEA20673524B2106 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = DCCC0FBA80759C3891F44BEEA84ADD1B /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C30A06DEED796382057162537ACB1715 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FE8C9FCAFAAFB71121ED525719CA807 /* RCTBaseTextInputView.m */; }; C318F088EA3D878A0D1E44C71C8E6455 /* GDTCOREvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 58AFBB414F2940E2FF8F9B599133C97C /* GDTCOREvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C31F666D38E8D1506F1AEF6677746719 /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2BA31F4E951C3CA9392E5BA152BFAEC8 /* BSG_KSCrashSentry_CPPException.mm */; }; - C32492EA797CF1D1565DFE4CB2965937 /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F5784CDDB261C02F14394FDD99A97BE1 /* RCTSinglelineTextInputViewManager.m */; }; + C31F666D38E8D1506F1AEF6677746719 /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 64D4DC98154B5D64F7D7D60191BB0944 /* BSG_KSCrashSentry_CPPException.mm */; }; + C32492EA797CF1D1565DFE4CB2965937 /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 52E281CB0D4FFD210261EB1E2D66D8A7 /* RCTSinglelineTextInputViewManager.m */; }; C3349FD62950CE68B534E08E98989248 /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = F877C7367E9978E5268E70789C264BEF /* filters.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + C346D05831C7C31A058EA2D7DEFFF89C /* Pods-RocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D70D9EBB5B766C22C2364940119C9F1B /* Pods-RocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; C35C08137C73A031B842E342644BA18C /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = A9BB4EF9FE8F53144150B0C641B7AE66 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3657B5EF0154F1BA8833C49B3CC2348 /* RNFBMeta.h in Headers */ = {isa = PBXBuildFile; fileRef = A253EF83DF55BCC8F110EFF0E561CB3E /* RNFBMeta.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3657B5EF0154F1BA8833C49B3CC2348 /* RNFBMeta.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A7C3E5A074BF59D305AC0D39A4B421 /* RNFBMeta.h */; settings = {ATTRIBUTES = (Project, ); }; }; C375C167B744F2795615999A24BFDCF4 /* SingletonStackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92E0FB9EC2BAB227D17599B5793BD136 /* 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"; }; }; C38DD9DFD1FFD996EE9F0E74D6224174 /* FIRCLSReportUploader_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 70A94B572FCAA0767312D88D681D5140 /* FIRCLSReportUploader_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; C39D561E85EFC337D50ED754F7246617 /* StreamFragmentAccumulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B7678D61DF199B6B6D791E3476435B5 /* 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 = 4F4A7AE2D14F08F5D290D66C995D7AE3 /* RNPushKitEventListener.m */; }; - C3AF87D9D12C1AEC2EE36F4AAFCD8A97 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1190B430C3B05FA583717372CFB1EBC0 /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3ACE4D0C00034561584FEFEAA6F9016 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 872B20A313FEBB2D2A17EDA1CD8A2D3F /* RNPushKitEventListener.m */; }; + C3AF87D9D12C1AEC2EE36F4AAFCD8A97 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DF73C2F5D79B3487433A4311C145E2BC /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; C3B789F1FFA2D63B4882E3FD6A2C8A98 /* FIRCLSInstallIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 979860C073443F85314DE3A66FB900CC /* FIRCLSInstallIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; C3BC1E0AA405968BB6EF6C6CFC4C639A /* AtomicSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 592B252AB58909176BDDB7B3701554A0 /* AtomicSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; C3E036FEC576797A6BFFFD89A6BDFCFC /* Fixture.h in Headers */ = {isa = PBXBuildFile; fileRef = F14675070B84D7A6C131F55FADF2F6FE /* Fixture.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2569,93 +2592,92 @@ C4307E73DDD599B8D73C2F25D0D8C3B3 /* RSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08343DB140C4A3FDF2999193FF44E6C5 /* 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 = A0A1664C74155B12F00681B9D4E85251 /* 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 = 60F5F5F57792A5F6B7DC07376665ED9A /* WaitOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C44BFC440E071BDECCD7496ABA020DE1 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E4171CF7DCF4F5146DEE052A9D54BB84 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C44BFC440E071BDECCD7496ABA020DE1 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A1B7F2CAA77C2A06EFE232F2D59DA79 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C470700CB17359170121D3848FE063BC /* Benchmarks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F297E2C22F7A74264423B9A80AB10551 /* 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"; }; }; - C48CF381E218303B3192CD4105611352 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 62BA82B300122C937F6ECE9746E951BE /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C48CF381E218303B3192CD4105611352 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 940B22BA9A4EB605FC1C5AABA249EDEC /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4A377EE7504F7B0BEA766EFD9885DD8 /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = 81B71D08E3CF203A49D78B381A119A15 /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4C0690D0CC7D0EFC458CE9E1C67B9A2 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E1537FA4C8F695610A6B4B8391496604 /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4C0A411FE602EFF5F4265F17BB1CC94 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = E685060B7E28DE532F3A85C18B146079 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4C0690D0CC7D0EFC458CE9E1C67B9A2 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BC63C1CF2DB0D3038568B54B1DC909E0 /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4C0A411FE602EFF5F4265F17BB1CC94 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 1367B111BE9784BD88594DFA688C1E08 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4C603BD962E852D3D6ACCDC7E1FA6D9 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 57C73510853533815CACDD3746C4FCD5 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4CF1A9274B26F538346FA24265C245B /* ExceptionWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DEABB9B94AE47F03448DD3A5A17E6953 /* 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"; }; }; - C4D0C46A8BC7FD766E9C0B4A59572459 /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0E4142B407E6E4E9BDB00E3BF5FA229 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + C4D0C46A8BC7FD766E9C0B4A59572459 /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18DAC6E16E8080631EB6D2F47338C8AD /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; C4ECEC9864CEFBADAB76ACF75704CFF3 /* FlipperConnectionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = DE77504710A8365B6F4B08E60A7323EA /* FlipperConnectionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; C52EA3FB913ADE72343ED96051402BD4 /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 842379A4394123E6374666E8FB7969F3 /* SDWebImage-dummy.m */; }; C573ADD266BB9FCD73F607FDF9683F58 /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = BA7476F2D05A4A7CEF06C849E2A6AAFF /* pb_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5754429324490E0B719A268D20FDD4F /* Tearable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D22A72EF987B784AE5C54A2A8EFB2AE /* Tearable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C577EFA9933AA7DFD0C9DD27C65C9CF5 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = B98A890925D554B7EDDC37D6D880FCF7 /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C57BE850AD61F126370C11804774D465 /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = D91BB1ECE44DA6D5D6FC3E2B8B084F56 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C577EFA9933AA7DFD0C9DD27C65C9CF5 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = E824417A235EA0452352E6844625B4F7 /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C57BE850AD61F126370C11804774D465 /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 850F8D7D69D1910927471A1CAD63CED0 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5802BF2D7023EA04E528D82B48D9901 /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F1DF8E8135EE9941DE57B6D73193444 /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C583A63E1B56604298FD2FFC5AE4BC56 /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DB356BA7F34588BEC110B7A48353C7B /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C583A63E1B56604298FD2FFC5AE4BC56 /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = A33661B6BA1AE837B7D500B9B7BAC3E1 /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; C589A35739F4BFB30A730B9898674387 /* ScheduledSingleSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2E161EBDEE94559C264E94D3F607551 /* 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"; }; }; C5A6906F44D4B0C9AE50B1CC8EB9DA96 /* FirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = EC7C0D1A5675D5212F6CDC8DC050FA91 /* FirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5AB9C2CB629DC7637FC6C350274D3D0 /* FIRCoreDiagnosticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = BA22C4DE66B3426A117A12C8FDB66876 /* FIRCoreDiagnosticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5CCA75F65517FBAF1ABD1756E101744 /* FIRCLSMachOBinary.h in Headers */ = {isa = PBXBuildFile; fileRef = 25536AE414B531041F0CD8D17D1924FF /* FIRCLSMachOBinary.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5F273B1A904F4556CC59978DAE262EC /* FIRCLSOnboardingOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = FCF48F762050C1BDADEAD9656CF08F25 /* FIRCLSOnboardingOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C644C02A988787D6DBC7DD0DA9489024 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CA23B711DE0852EF3E1C3E50898D485A /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C64F4F00624C0150F8F1D9D766111693 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 79957C9CDBF18E658BF88BD2F1A219E5 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C644C02A988787D6DBC7DD0DA9489024 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F582E7DAF77D62316B8073919E010470 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C64F4F00624C0150F8F1D9D766111693 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B1A59D286D2DB96AFA4A62F0B482CBCD /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; C653F36D3272A555537151A6DC9CEE7F /* FIRCLSURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = C1DEFABAFF75C96B932168C9BACE677D /* FIRCLSURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; C67E74CD75F4E6B9D8ADDD965B00F75F /* Unistd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66146BC2B85C13724BB29EAF2A487421 /* 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 = E000C11C6DF90635207CA5133B38C806 /* ObservingInputAccessoryView.m */; }; - C698EF32718CB847E5A2D18D7A80CCE6 /* RCTStatusBarManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 23A7E51EEA6CB9F0BC2B16575E04CDCC /* 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"; }; }; + C680AAB543D4CFDB99EF76CED42462E4 /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 39F82558CB4745D46F543010E33BD420 /* ObservingInputAccessoryView.m */; }; + C698EF32718CB847E5A2D18D7A80CCE6 /* RCTStatusBarManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = A794775F8DF971E6FD1695648F1CC33D /* 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"; }; }; C69D82AAFB23D14F38C990FDD557510B /* FlipperKitLayoutPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 656F308D44FCCB1D7F8E085107F579B9 /* FlipperKitLayoutPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6A936FCFCA729233A8763BEE3CA052B /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = B28281D8A3C5B7A81FD9068BBF81E78A /* RNNotifications.m */; }; + C6A936FCFCA729233A8763BEE3CA052B /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F434E7049538AD6A094CED1BBE590DB /* RNNotifications.m */; }; C6B1A2F2FB22FD061CBDEBC73699BF85 /* Retrying.h in Headers */ = {isa = PBXBuildFile; fileRef = 3745C343C8F94172F4009052118AEB2E /* Retrying.h */; settings = {ATTRIBUTES = (Project, ); }; }; C6B33D87843409BFE30D6E184F503117 /* GULSceneDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 563CDA5896F58BC15DFB5DC4034FBD97 /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; C6CC8CC7678B10107D83F3250F05CA3E /* RSocketErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F69B13F0C30451FC15DE11662F77CAB /* RSocketErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6CE0DE6246C78130C0341CBF5CB5EAF /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = A92A23DF1C627F65E62E5CF16694F9C9 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6E32A2C5B362327367469B5A5AB707C /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 3685AFCA46B96B97799850717F28EBAF /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6CE0DE6246C78130C0341CBF5CB5EAF /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 7672D5C1927628EE8AEDC9FFE0CC19A4 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6E32A2C5B362327367469B5A5AB707C /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 60881A4699573C8909A7CA531AABBB16 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; C6FD6C0DC9F80A90245FCF4CA62032FF /* FrameHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 018E19081D271BF7A075A3A2B1C2153C /* FrameHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6FFA9AA032D3D9B5EC61F106F130182 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = 119031EBC17DB49D08AD59362E3FB948 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6FFA9AA032D3D9B5EC61F106F130182 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F85526DB5E381E554840E0E96CFC48C /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; C705373FEB64A9758E0642ADACF65A94 /* PriorityLifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = C64BC1718707B1A113EE6BE56A5AB74D /* PriorityLifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; C716E94E1FC3FD317F9317D4B823F47B /* SKViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4541A5411164DE13E73872BB06EC2AE4 /* SKViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; C722F120971D6AAD6A8DFC845041263A /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = D9AD953A08259ECE88C05A86A3E7C5F6 /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; C72CC6BD3565CD3EC264AF9A1ACA561A /* Flipper-DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A86F23BF854AD6BAA200C9C9E7F01997 /* Flipper-DoubleConversion-dummy.m */; }; - C73854B286010939B9CBF8DE8E4EB6F0 /* RCTRedBoxSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = C213DF80BD8103AF65A5D4187A9119B3 /* RCTRedBoxSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C74E6E1B7E9C973388A7F33F4D1019A5 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A57BA32A859BD99754F04A2532EAA4D5 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C73854B286010939B9CBF8DE8E4EB6F0 /* RCTRedBoxSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CD0ECBE15E8434D2E92D4AF5E0A3A0F /* RCTRedBoxSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C74E6E1B7E9C973388A7F33F4D1019A5 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 67A03002EBFC6AC6C6B62A11A8A188FB /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C74EDD68BA9D43E389E690BC19C471EB /* GULKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D20F37A934540CF6448BE3C1C76F6CF /* GULKeychainUtils.m */; }; - C78643F92D6BD8C75CF62D5602634503 /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 3111A9EF6ED1EF6F2F9DD405E92DE74F /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C79105828CDD7137E612035CC4B9A5EB /* RCTRefreshableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = E6596709E7981E42D7BDC163690719BD /* RCTRefreshableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C78643F92D6BD8C75CF62D5602634503 /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = F3BF025C2B821E1BC9D7DD9F37571605 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C79105828CDD7137E612035CC4B9A5EB /* RCTRefreshableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 923D9FA5FAB28A78DA172A5126E48EAE /* RCTRefreshableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7A9C914D1147D6A5DD39398DF218798 /* ConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = C2DB8461A2F9054FB548ED9944DDFAE3 /* ConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7AC334C71CD87B757084ED03CABC794 /* SequencedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 629B4B01D6EEBECB27F2A51805DA6D13 /* SequencedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7B54C967318F61468B5526684FC207A /* RNCMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D81E7D8E09879708218A86BABEFFEE3E /* RNCMaskedViewManager.m */; }; + C7B54C967318F61468B5526684FC207A /* RNCMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AFF9DA7B4C4466F41A8425FC5E2A9C4A /* RNCMaskedViewManager.m */; }; C7C762139012AC78A94526A80497A74E /* FIRCLSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 58D253E3ED3F575E7CC390AE1901A34B /* FIRCLSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7DCCDBFFDF42436901FC14DFF8F79D1 /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 451E64AE86B1D5322878D5995CA0C90E /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7DCCDBFFDF42436901FC14DFF8F79D1 /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = F76A324B95B15C2ABD32A48C3D7A77F5 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7EBA3555289B8BBEDD910BDB3C7FCC5 /* SSLSessionImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE7A439AB1D7DA8406151F48943F0FA2 /* 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"; }; }; C805F6088C0BA02E7153F45BB0997ABA /* Flipper-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B11FD6CCA905A5EF664866CC2796594 /* Flipper-Folly-dummy.m */; }; - C83E5E636FE3D4BC3D5E0935412E5F4B /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F4EB1A7EAB18453C0D385A4B95875284 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C83E5E636FE3D4BC3D5E0935412E5F4B /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C374A285EA196B85F5BD56ADC2C73015 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; C84B9A835932634C349577E1D787CD90 /* FIRAnalyticsInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C73AF067EE017B1C7D4DD37C9D29AC0 /* FIRAnalyticsInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; C86859572C69BC64FFBD0CDE09D902BF /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = 1772C780D2DE5AADFE26B8A246B3D1B4 /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C88239BAB97F0174A93D4CEBCD773F0F /* EXAppleAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 66BB2F39CD1DCD4CC40D56389D590E60 /* EXAppleAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C88239BAB97F0174A93D4CEBCD773F0F /* EXAppleAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F1719491623B5D8449247E249A5F080 /* EXAppleAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; C887E31027E8BFCCC686D1ADBA9A51D0 /* FIRErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = B8084064F0612995D9D98DD02CA3687F /* FIRErrors.m */; }; C8889525AB03223E9DDA3ED5DF1D31AD /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 00EA3110EC052F471895B08BDB95D14E /* ja.lproj */; }; - C8ADB8A15F701A88C476DD0A3D66386E /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A5DBF0EF0AE9E9D08516585E61E7AD3F /* zh-Hans.lproj */; }; + C8ADB8A15F701A88C476DD0A3D66386E /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 1C12E6A24DC694C539DD57AADBCF1E36 /* zh-Hans.lproj */; }; C8B2A7B002756926645AA7F6D5BEB658 /* FIRCLSThreadArrayOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = AF91ED62C8FCABF57348996D54435C62 /* FIRCLSThreadArrayOperation.m */; }; - C8BFCEDD3B494A2F62E8BBDE90DD77CA /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7D49DE36A032F79C8774BCE239F7D4 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8BFCEDD3B494A2F62E8BBDE90DD77CA /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A65D1885DEC5BC40029DC25BF7608B5 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; C8DC7F316AA448EFF2750D2E38A093BD /* IOBuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D3D9958F6CB7E4E0642099398810093 /* 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"; }; }; - C8E85F98C748E7A16FC78C6B8E773623 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F9EE93BB82B6922ED3469317BC8CA049 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8E9F47BAD370300BAAA1BCDBDF04C7F /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = FD30FC48D149F5E26DCD521E8D4FEDAF /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C90AFF718E45E2616D23519AC26AD09A /* UMAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 42C98BD451DB83FE983EB7711ADAEEF6 /* UMAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C92BEBB81C19D306E0BD827BE321E6CC /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = FFB72840C115C96E91485EB841DF6373 /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8E85F98C748E7A16FC78C6B8E773623 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C208216896601E60980FEE68919E480E /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8E9F47BAD370300BAAA1BCDBDF04C7F /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = F992E01ED5F77EEAD29CF84E8A7C40E1 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C90AFF718E45E2616D23519AC26AD09A /* UMAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = BC68D012D9B82C10D2104ADEE0351D39 /* UMAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C92BEBB81C19D306E0BD827BE321E6CC /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = E0F250B32A26B77DC1FE95A397D6F3A7 /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; C935EA88458F6D63A29BBB247BC8EE2A /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 66207FEC17AA84822BD40161C945A5DF /* UIImage+ForceDecode.m */; }; - C93D65290516F68BF10DACC8DD358833 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 63B24C00CC5FBFF0104C5CEAF26E85CD /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C94909826EB31FE3C9016B6E13C2FCF6 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F98E0BA9F8877F7C6EECF6B2FBCB9C7 /* UMViewManagerAdapter.m */; }; - C959C30758688B00A7F89AB0065DBF4A /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B00F4D65453EEF2485354900ADF5356 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C93D65290516F68BF10DACC8DD358833 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = C53C15122D0E87369DA8ECFF045FD3D5 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C94909826EB31FE3C9016B6E13C2FCF6 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = A13175FC7A083A90924486CB240BB740 /* UMViewManagerAdapter.m */; }; + C959C30758688B00A7F89AB0065DBF4A /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C063A41160D5988A3E603368F4A2FCB /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; C95C33E8EC0502927BCA940B2DB8C26A /* FIRCLSException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8A546B934018A1CEFDA66A8FC345EB48 /* FIRCLSException.mm */; }; C979C8642FE68CAADFB4D908E7CE958A /* FIRHeartbeatInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 08E4DD7F336AF77DA825C7A56EDFE3BA /* FIRHeartbeatInfo.m */; }; C97E9BE75C40B8D873C2FED2F30BD9B5 /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A382AD3DB08D3BAA1277207D85CDD48 /* PromisesObjC-dummy.m */; }; C996524E284ABF18068EFC4E43751D3D /* FlipperKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D00B65707E5C14E15AB0333A0DBAF49 /* FlipperKit-dummy.m */; }; - C9AB4DF90B1F2F479B2049D106A5ED95 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EDDB0BF77E0162298A4164C90A4F5EB /* Pods-RocketChatRN-dummy.m */; }; - C9D91EA8614D66BF4925A1B02C2440DB /* RCTConvert+FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = EF4B57E1481A7B4B821B68EF26FAEAFB /* RCTConvert+FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9EF392388DE1A342C2D371AD1E2C045 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 01802F83F42FC8D13032035127C05A90 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9F6C38E098D2DE6E919A5CB02024C3E /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 21C0530CD41205567B26D3166D29E34B /* BSG_KSSystemInfo.m */; }; + C9D91EA8614D66BF4925A1B02C2440DB /* RCTConvert+FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = A601AB634FFB37458BEBDCD55A86F8EA /* RCTConvert+FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9EF392388DE1A342C2D371AD1E2C045 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F0CA991D1B308FA5DE4E5F6F48509F2 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9F6C38E098D2DE6E919A5CB02024C3E /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E66DBD0980F12A5BA8375066A5B4685 /* BSG_KSSystemInfo.m */; }; CA1B639183072FD3D497C782D81793C6 /* Subscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EF606464F999EB9141C654172E2A94D /* Subscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA2FC0CC5BA6A8B14C7459EDB5E4AE74 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A951AFF7D34237793354A27AC143677 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA2FC0CC5BA6A8B14C7459EDB5E4AE74 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 60640518039110ECA62D49D4C54753E8 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA358CA581FCD7B53B91B2DD197E9052 /* FireAndForgetResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5177AF46905ECC31326F011C7A15BA04 /* FireAndForgetResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA41ACD4F3E8606385E277133F084FE6 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = BF37DE038BBD1FB36F8EEFDC5A3042CE /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA4F510964D66B8A8ECE2B6A93084CDE /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = D58AF32ED9DB1F74C78993A077BD0FB9 /* GULSwizzler.m */; }; - CA67199CAF85BD631A173567EACB114D /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = DF503594CA1DAEF07071E64383DE076E /* Orientation.m */; }; + CA67199CAF85BD631A173567EACB114D /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 596978F92933A7221E7CB042A8E8B971 /* Orientation.m */; }; CA6E8BCDD8BA3F3A19D47CFD4CA9E6E0 /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 87B456B334445E95DA63057ED4A28D8C /* msa_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA72BED4AFAA13C8832631FD16BF4272 /* RNFBCrashlyticsInitProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 58A97643CC731C7626CF8D324A13E90A /* RNFBCrashlyticsInitProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA72BED4AFAA13C8832631FD16BF4272 /* RNFBCrashlyticsInitProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FC8B11F6FE6438E0FEF56E176E425CA /* RNFBCrashlyticsInitProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA78D116295A9800B4B0DCB80CDEC217 /* FIRCLSDwarfUnwind.c in Sources */ = {isa = PBXBuildFile; fileRef = C5D5B55DE426FBF8666A75743E87094B /* FIRCLSDwarfUnwind.c */; }; CA7C3CCDF100231E301CFFE195B6FA17 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = BDE85F2AABBD97AB6DB7675D0A4E253E /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; CA7F2680DDBC7A3D04FBED8EF5242924 /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BC4B6B859189315E479A3B28B20CC45 /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2663,30 +2685,31 @@ CA976FD6989F3B1EAA13A7F8760C1922 /* FIRCLSURLSessionConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F1A27E3439D9ECCF51F08419D9AFEBE /* FIRCLSURLSessionConfiguration.m */; }; CAA79EA2F883D11144D8FFD4130687FB /* SysStat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B41D245736BFC4423B50A15CB56959DB /* 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 = 9725C06642ED2A558A105962D98A73F1 /* SSLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CABE3F62E437BA1D8178BC3D2168DCA2 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F8AB7578113C306217F64EF0CBBA6A86 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CAC7E02596426939C6B1169EB15CFA6A /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = CE374EBE8F0C05C51482CF61FFCFF753 /* RNEventEmitter.m */; }; + CABE3F62E437BA1D8178BC3D2168DCA2 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 0967A5BF0AB0DE6DDB18BB351F740F38 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAC7E02596426939C6B1169EB15CFA6A /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = A5E8B7591097E0D40C455828E434DF81 /* RNEventEmitter.m */; }; CAEA7F7BBB0FE8A1CC81D246E71CF1A6 /* BitVectorCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FC8A17AF94F032F2F9C8219997247BB /* BitVectorCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB0D74E997007796BD50F14F96295806 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 88F8834973F0172F692546FFF74125A3 /* UMExportedModule.m */; }; + CB0D74E997007796BD50F14F96295806 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 67883964F79EB90B5BB160385717F633 /* UMExportedModule.m */; }; CB3A8EFBD7D962BB9B59F570F76E4B71 /* FIRCLSOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EB62790A8FBB69F1D3EE7F8033B7229 /* FIRCLSOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB4E28DDB810F86F6D34354BA9679305 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A846D19AFA9BD80524577EBBBF4AC156 /* React-jsiexecutor-dummy.m */; }; - CB53CB8940FA626EDC9DA002C71F0199 /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B91E14DDB92EF245CC0042F0DEA2139 /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB6F4DE004B91EF2022F808111AFA9BA /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 74D9DA584C674BBCE6CF4D110D3282B5 /* RCTTypeSafety-dummy.m */; }; + CB4E28DDB810F86F6D34354BA9679305 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DE03E352349C63FE35EFEB9458363A05 /* React-jsiexecutor-dummy.m */; }; + CB53CB8940FA626EDC9DA002C71F0199 /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A2B3DD88B83F53B6319585273130C76 /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB6F4DE004B91EF2022F808111AFA9BA /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 591E617616FC2BB73F72F1F8958C59B2 /* RCTTypeSafety-dummy.m */; }; CB70CA7763BD4D2B937C291757D03F8B /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 32E129B116DD8EE63064AEFD0AE7B2E2 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB72935343A22E6661702C05820F6ADE /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = EC255BAA6FA2C79B5C6671829A6195D6 /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB7AF504CF55228FE97BE27D1AA84EB7 /* TcpConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = DD9134F5951D1C0EE74B8B30BD86586E /* TcpConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBA0CD4EAFFE8DF9F513B94A1BA483F8 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2314FCA6CF37C437CC193B6B2CDDDD70 /* RCTBaseTextShadowView.m */; }; - CC038B6CC87CFEDE744695A321D8AE5B /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D4154C92841AA06A2A4EDF702866E88 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC06B3F867126F882C24D697CAF07276 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DDC8CC06B0A403ABBE1F567B10E4560 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC2AB736007F0715B7BDD403B7D738E6 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A493FF5ECE799F8773951B83D84B40D /* UMCore-dummy.m */; }; - CC2E7A5892E595B5BA476ED0030918DC /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = AB53E5D98E91A696B994A91DA3E4DAE8 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBA0CD4EAFFE8DF9F513B94A1BA483F8 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = B10AABC42F01ECC08694EA8D96B811F6 /* RCTBaseTextShadowView.m */; }; + CC038B6CC87CFEDE744695A321D8AE5B /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DE0465438FA7DCC04C52FEE2F4C95ABC /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC06B3F867126F882C24D697CAF07276 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F00203FB366474315D6587C988BF7F0 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC2AB736007F0715B7BDD403B7D738E6 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C11ACF913DFC22CE3342B5D4223B037E /* UMCore-dummy.m */; }; + CC2E7A5892E595B5BA476ED0030918DC /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 831946879AD54FC1043B75760434B1D6 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCB6F59AABF0E21BC0F9A4A9021C9181 /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = FB48088D8278361389A0CA29114558C8 /* alpha_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CCB86DDE799FFFD82D6A82D2C74B0FAB /* RNFBVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 26CD50B12450494507E950828B622558 /* RNFBVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CCC017781F5276E57F6FBABB37AF3077 /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = 00CE7932055F4F2101C67F5023A81F43 /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCB86DDE799FFFD82D6A82D2C74B0FAB /* RNFBVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A00EE5B081426E430409D0FA4B68F81 /* RNFBVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCC017781F5276E57F6FBABB37AF3077 /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B3E2F40E27B6FA2B0B0CDE3696A9F5B /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCD493CA845E56EFFB36328003F1B60A /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D4C7691E8B7A159349986F7D98EF55E /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCE2222A3A80A75225E2F7E51A4BF168 /* UIImage+CropRotate.m in Sources */ = {isa = PBXBuildFile; fileRef = 69A1CCE7CB28F7C57F6EE1784B1137D6 /* UIImage+CropRotate.m */; }; - CCE8FCBC722FAF50E1207923BB9E831C /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = DE9D1DB0F7F8B888A942D173C1F8A3A7 /* EXFileSystem.m */; }; - CCFD6133C6A15F31E4F17B8EB6E3DDC3 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = F66CF81B10C7E56E280D4BA65272BB3D /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCE8FCBC722FAF50E1207923BB9E831C /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = B8A73154CBC41CC0533A283D89499792 /* EXFileSystem.m */; }; + CCFD6133C6A15F31E4F17B8EB6E3DDC3 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 46C991973CCE1C61F27547DE4959FEBA /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; CD06F8DF31B965A09D35AC883E850127 /* GDTCORUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BCC6F79668FBB113CA02877BB317A79 /* GDTCORUploadCoordinator.m */; }; + CD3A4A496B040E5DD375ED4388AF9EB9 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EDDB0BF77E0162298A4164C90A4F5EB /* Pods-RocketChatRN-dummy.m */; }; CD3AD11A8C4C775115560027F7AD3338 /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = AB4A1B46C170A5BC5BE09443C1460189 /* GDTCCTNanopbHelpers.m */; }; CD46B808BEAB53C8AEC3529826B8551F /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 98EB8AE36B3ADC1E1C75984D08CA4F69 /* 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"; }; }; CD52A4AFC3FD3D2461A0A97D88D9013B /* Common.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD679A0958D507FA6F83952666DF72D3 /* 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"; }; }; @@ -2695,101 +2718,102 @@ CD804FB79353F1D929886460D8F8817E /* RSocketConnectionEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = C85D88EC210D312E3F7C5285811CDECE /* RSocketConnectionEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; CDA2E0586EEA705D076F557E182B0848 /* FrameTransportImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C06A99C6FF9AF8A830BB81F3A436CB8 /* FrameTransportImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; CDAC7C662991CE550BB6F080249D45DF /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 606E27A1122CF20B207D9EDE641C54AE /* FirebaseCore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 185BAEF4EA67ECDB3F3C8D8CB12A839D /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = AF1ABD19F3566903B036E55A5ABCFFFE /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; CDE265747CB7B6A680D6189792C377CB /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = D156D0FA1E2F685372E62ABE58EA2C73 /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; CDE2F691E96FDD1A37506120DDC069C0 /* FIRCLSProcessReportOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = E6E3AE6BB8DEC2E24087DB7AADE60E41 /* FIRCLSProcessReportOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDFBD4DE841B0F2AFDAE7737D5508E6E /* RNRandomBytes.h in Headers */ = {isa = PBXBuildFile; fileRef = EEF0D8619BE0D72C2C28450FE40A9E7F /* RNRandomBytes.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE018EF8459E8FBF8A9D9D34C2EC78FF /* GDTCORTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 66A09F3485C29F843DC58CACF22BEF9A /* GDTCORTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE0C6EB5F386C798A10DE6CF9D9D3163 /* SKHighlightOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = D27C3F612CCCE53B76EEA2A7FE15C664 /* SKHighlightOverlay.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE240EA868180FE4ECA7DDFF4A387514 /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 10D0ECD597DC47C6BF1B3EFF30F0B5CA /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE246B49EC4C8A293BE0DA3A8282AB7F /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = A77252654B46B877F690EA895ABFECCC /* QBImagePickerController.m */; }; - CE24C7E45F367E41E35E4146680AFF9C /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 018AFBB0C9E2D3C964535C8E1095F798 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE25C95BBF3F1E5830A8EF8E1F7A9929 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F32480CCE6172241CC35FCF80FC4695 /* RootView.m */; }; + CE246B49EC4C8A293BE0DA3A8282AB7F /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 17EA42165432348C13C9AF03B235A72D /* QBImagePickerController.m */; }; + CE24C7E45F367E41E35E4146680AFF9C /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 65970A1B28524528AE90831181C5EE9D /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE25C95BBF3F1E5830A8EF8E1F7A9929 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 49707F95FEA5E346F016F3C104FA56AF /* RootView.m */; }; CE3A139FD95866808065114C3CE2F2F5 /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = 19BF06738DD0F51C47546F1D2283D906 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE5150E60AB674AB60524EF055A64D8D /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 1154F2BD12B38548689C278F523B692F /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE535C17252BAFF7F01344DCD59DE2AD /* AsyncServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = DEE74521553B07DF14372091022DF068 /* AsyncServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE535CDEB9D6DBBB9E70C19F3BE1369E /* RNCSafeAreaViewMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 065C72E5ED957EA669215A314CBC0BCA /* RNCSafeAreaViewMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE7D2EC4BC4465158C1D7100CEB349A2 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DB342CB3D65E6B3C7690F3A485DD4A17 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE535CDEB9D6DBBB9E70C19F3BE1369E /* RNCSafeAreaViewMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 431878370E2C53C0AC6F14CDE90AA760 /* RNCSafeAreaViewMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE7D2EC4BC4465158C1D7100CEB349A2 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 91F4E3FEF1E29B754525D8E4AB04F6BE /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE8304B7838F36B6DC0F8915DF399A22 /* FIRCLSUserLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 38474893F2379F64947A91290FA2D4C0 /* FIRCLSUserLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE92DF0BA0CC96BD819D5395E3F5D4AB /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = 5964D03579D8DF03055FC4FDB2751E39 /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; CEAC4026292553F61925463F50AAD811 /* StreamsWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1586AE61C5740FD8AF5071A8AC425065 /* 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"; }; }; - CEC319269D7BD620F821C9FD9E36E089 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CB4AA67BD2B213132F628BADBB74527 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEDAFDB3B3EA3DCE1E62FF82FCD516E3 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D944C63EDA3A10FC4407E6B58B9488E /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEC319269D7BD620F821C9FD9E36E089 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 80D1D5F1826A5E9F932C1951394A9E67 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEDAFDB3B3EA3DCE1E62FF82FCD516E3 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 81EBB5D94D81326E4413AF3185FF9958 /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; CEE0D3B7FFD05BE2465C81B2684F976A /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = E5AF56A8D2B5A1A72FE8BCD0955F15D4 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEF6DC752682E4243AC785B96B9158C4 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EF967F584911A689161739AB50AEC21 /* RNBridgeModule.m */; }; + CEF6DC752682E4243AC785B96B9158C4 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = EE35051464522271A5C22307E050997A /* RNBridgeModule.m */; }; CEFA85387A5815500FDB776E71D8925D /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 21555701A3530D3B5C82697493CB7B37 /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF0F0EE11DEB7BDA2FB659D3F65ADE64 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 22A3931AA81AA9F92BD05C58C01EB3E8 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF110BF21690E9F07E17AD337B066562 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = D324B9F20D3B0BF34F35245AC8ABC505 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CF110BF21690E9F07E17AD337B066562 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = A4B3A69AC62C974C063165EF7246FC11 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CF28B6D2C7CB7060E1B6ED070988351A /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = C42C5CEB47051C0274973F10D377EC96 /* FBLPromise+Testing.m */; }; - CF2D3F2E3A348ADF3DBD9EF35343E212 /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B70F1DF507D00E00B3FFC520389E46D5 /* EXAV-dummy.m */; }; + CF2D3F2E3A348ADF3DBD9EF35343E212 /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 75FB3FEFE478D2DD23AB936C020D3D37 /* EXAV-dummy.m */; }; CF414AEB4CBAD8DF30894113E61CD76B /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = B88A238698DB985A72ABBB4934774B45 /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF44D440631F5B8957AD89ADED1F1D10 /* FlipperDiagnosticsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C9C553C8F56C05B906B96AEABE78037E /* FlipperDiagnosticsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF49B15B413D33BF83043EE3285D408A /* RNFBVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = C8D0607E6F1D8EEAB90007F6BB4D6239 /* RNFBVersion.m */; }; + CF49B15B413D33BF83043EE3285D408A /* RNFBVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 710992E8F69D60BFE88E365BBC455E10 /* RNFBVersion.m */; }; CF5355174AE8A3C6572EAF4F036E5C6F /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0561592146E0B71B444B2A5D0C8E4DFC /* NetOps.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CF61BC82A77EAABC5ECA0BB0E57983C9 /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF245A6D76CD58ACB2E1A543696547D0 /* UniqueInstance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CF951D21CFD9031FE384D48969D63034 /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 57F90EC11E2BCEB8D2203AFCC6DD9C75 /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; CFB0EC291403E07E9728A8ABA7E36129 /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E88D4C1E3B50296AA50B1E0645DC0C4 /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CFB845C9C4AA6311EC16A3907F537C37 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3A9DC1D9F0B8012EE56D474C37681860 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CFB845C9C4AA6311EC16A3907F537C37 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F52ACD9DE00657BFFCBBC48F64C8AA2 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CFEA96EBFA4939A78536A1C1A6DD63D7 /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = FBC2DDBE90E7BFE19BAE4D1E299F8E53 /* lossless_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D0108264911D29A92E4A0F784F7D000A /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = C900C13132D72C348F00160742357092 /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D017A2D31E3E20C791F6F44D7A01B8A6 /* RNCSafeAreaProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 83BA9ED803CF7A51968401924C6E499A /* RNCSafeAreaProviderManager.m */; }; + D0108264911D29A92E4A0F784F7D000A /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = D04162FF7702661C01D7DC283C5D7452 /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D017A2D31E3E20C791F6F44D7A01B8A6 /* RNCSafeAreaProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B6513CA650B24002DEDA91FFD42C220 /* RNCSafeAreaProviderManager.m */; }; D02983F9F8E968E99F28AC389A5C34EF /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = DD4D28611153BB043B6A4D50390FF9C2 /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; D034FC411932B8C3C8F83C7E9D7687EA /* RangeCommon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7096A5AD801F63DB158C959977ECC850 /* 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"; }; }; - D0A47FB0918164AE46084571A36FAB5E /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 910D50CD85DE5BAB15CFB3344F112A9B /* BugsnagReactNative.m */; }; - D0A86616D5BBB90D996947E2E4A39F89 /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A627A4904D393225F4D863ED996C06F /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D0A47FB0918164AE46084571A36FAB5E /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = BD8C712E7588F5E8C98B731E57DA0E69 /* BugsnagReactNative.m */; }; + D0A86616D5BBB90D996947E2E4A39F89 /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 74FA8FA0FD8156A52615CEF09632EE7E /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D0CC2110764169A031BB05D078F35A7F /* AsyncUDPServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 7598CA288C53C7B3D212231FEFEA0D8C /* AsyncUDPServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0D28C9CEC77D91A54DB5C41C9AED752 /* RCTRedBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = AC31DEC51B5F0464273FCE1E863FDA95 /* 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"; }; }; + D0D28C9CEC77D91A54DB5C41C9AED752 /* RCTRedBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = CB605356388C336D2CF6595A3FF68DD2 /* 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"; }; }; D0E3DBC2AC46A8D0D2E381F8644DF514 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = F11667E63F773F1B77351BE08AD3502D /* FIROptions.m */; }; - D0EBA27AEF7474B70F4BEA01687B42A4 /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F4FA2E7FCA0D243EFF56F3270F2EEFA /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0EBA27AEF7474B70F4BEA01687B42A4 /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = C09B0FA159AA5DE352504C0F23838725 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; D1249775C6575028B25BE687B4F0C982 /* FKUserDefaultsPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 57BD096A0AB10042760B13F762F639AA /* 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"; }; }; D12DCE3C23ABB5C83BDAA983477883FE /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E347C6BF2B9F76C0059F9F21C9BCB80 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; D142D080A3D2C709F861A423CEFB0461 /* GoogleDataTransportCCTSupport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8103BC8A6B6A7F3845669FADDDD92BF6 /* GoogleDataTransportCCTSupport-dummy.m */; }; D15B1D25AFE4F0CB60215790F195A38D /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = DFEA62358E782ACE8BBBDCD4176D1CC6 /* quant_levels_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D186229DC550CEDA1B9D8412530B56A3 /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A0D9D6A2339F0BA2D9379EC5E5A14AED /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D18F1AA016A320DF73EF1C46D21A9004 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 06B86DCEBCB5BF2A5B783A9A7CFE66FF /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D186229DC550CEDA1B9D8412530B56A3 /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 033EE9EB15CDD23019C85455C0841D27 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D18F1AA016A320DF73EF1C46D21A9004 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 90FB941DD33F09DDEA39C157FCAF1264 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D199E0C3F8DF1441C00AAAE2E597A99B /* Future-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FDE8856D93DD3D024AB6B02BD5671EC /* Future-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; D1A587C0388303098B385EE306BFD2EC /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 60845EDCBF086F226A67812959AF5D6F /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1BA931BA03A98DC16F4F404CD1C0D82 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 382A426BE4A12489EDDCD59CB0E7AC12 /* React-jsi-dummy.m */; }; + D1BA931BA03A98DC16F4F404CD1C0D82 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 143748CA56E79CF5803DF5AC43438349 /* React-jsi-dummy.m */; }; D1BD97AD13B56426DAA26A2468DA440C /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E5A32CBDEC9C56EF0D0DB69668F2DCA0 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; D1C6F6705A1FE1010070DCC4A3102D3F /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = BD8FF74FC2C68F044BCD34CCD9D0889B /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; D1DEC09BFB8020649801F18884526D9D /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 61BFB0B901C7FC1440F6B01017648161 /* SDImageCoder.m */; }; - D1EFA7416105B57A185CC4519F08C222 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F81D7793360D01BE72A5DA71D7FCCBE /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D1EFA7416105B57A185CC4519F08C222 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6EF1AF19E8C7DDB50175283B2589AD97 /* JSExecutor.cpp */; 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 = 4DD5C44595F99A4B62D7B2200C5C8F09 /* yuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D22B678E28A081430F5E92AAF0771B67 /* RCTNetworkPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 04E49807A13249B8A4C0055848558507 /* 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"; }; }; - D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3142D127674EAD61004C36F95108BE59 /* RNLongPressHandler.m */; }; + D22B678E28A081430F5E92AAF0771B67 /* RCTNetworkPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 76F2FB44DBE396A442A93CFBFC40D499 /* 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"; }; }; + D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = F63BA0D54DB528DA458BED659F440D15 /* RNLongPressHandler.m */; }; D2A983A6F32EA1B5199960179F79261B /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FD431B49BB02C8439651F9071824D20B /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2BEC0C591A1E9AB03001E1C376385E4 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = C6AAB4B2FE1673E707CA8A15E36967EF /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D2BEC0C591A1E9AB03001E1C376385E4 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 64DAB2059368352B6449ED3CFA077EBA /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D2EF73B37E88FF241247DD0776642D6F /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8960989F068E7074D7F5F729BED89923 /* 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"; }; }; - D3050C7C6584DE54F221A91A11DAB55F /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = CB51A939D391539943E41BC790E64512 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D32641F67070054A3F0AA83E3462C742 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 42CD5F5B3B3358A771678186FF2FFF58 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D33FA15C347D56E40DF4094E46FD25B8 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9BF6CF75337707C6C44E8C493666FDC /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + D3050C7C6584DE54F221A91A11DAB55F /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 102AF1F2A1D24527D1B507699C3AEED1 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D32641F67070054A3F0AA83E3462C742 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FE9C094D694442BB62EF19E890366CC9 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D33FA15C347D56E40DF4094E46FD25B8 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5654572C0C76ED72D843423BC53FDB2B /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; D3461F25CB195DE12347CFB156107C31 /* Payload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBDDE7676CDFEE61A5F653B015EFDF7F /* 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"; }; }; - D3579009269FEC6A34542333B942C9FB /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 28341F3A91E1977E1903CEB50390D7D6 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D368D48DCAC4E19BA3271451541AA811 /* RCTImageEditingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = D340B4EDA1C2D6952B90A2FDD2CE52BA /* 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"; }; }; - D38E6C4D9669114FBD6B9560CC87F16F /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = DA699A133FD5F3E9FD88AF5DA3E43439 /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3579009269FEC6A34542333B942C9FB /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FCA8EBC83678AC28E2CE66AC1B08AE64 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D368D48DCAC4E19BA3271451541AA811 /* RCTImageEditingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E78E20A2A789BB4B273DD8B871B47B95 /* 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"; }; }; + D38E6C4D9669114FBD6B9560CC87F16F /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F6B1C3ECC5367567E61653892F487170 /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; D39505AA86E323C96932E3A04B1A0351 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = 77539BAF3378CB0CB768CE455C43DD77 /* alpha_processing.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D3A5D5097DE0B5618568A96388A62D00 /* FIRInstallationsIIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = E2AE422151981E073F684C2F5F0943E9 /* FIRInstallationsIIDStore.m */; }; D3B16597778203DE6EDD2C915FC363E2 /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B699A18AB09508A5C68AA1C194848B6 /* yuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D3B5E7CD68B29084575732B1464A24CD /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = FB6D4BD0BDCC88F0C30AB09638EB639C /* pl.lproj */; }; + D3B5E7CD68B29084575732B1464A24CD /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 630F85A3FD67636EF9F6323F0EE15C1F /* pl.lproj */; }; D3B75426ABB5BF990386B02043B53B75 /* FIRCLSHost.m in Sources */ = {isa = PBXBuildFile; fileRef = D39F2F593B426FC17FAA344D8A0C4BB3 /* FIRCLSHost.m */; }; - D3BBAAEC1BB62E99D63C32C6742A60ED /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D3B83B7B2B70F1BEE028F4BF4D66027B /* UMLogManager.m */; }; - D3BC17F5F269A1DD35176BE79D74F2C4 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = EADB5F86FFC4069DCA86C791DF6CCC10 /* 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"; }; }; - D3BE4AC7988B7A740B423AF784E299E1 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = C3C050640767572917109B49EED829C0 /* ARTSurfaceView.m */; }; + D3BBAAEC1BB62E99D63C32C6742A60ED /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A3151DD7D723C608DACC7F041A26C855 /* UMLogManager.m */; }; + D3BC17F5F269A1DD35176BE79D74F2C4 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7A53029F5935263F4D29FF1DD051F618 /* 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"; }; }; + D3BE4AC7988B7A740B423AF784E299E1 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4169003E075269954D2F4B2645319C31 /* ARTSurfaceView.m */; }; D3C108FFA4787ECDB0A68E07CDF2BDBA /* FlowableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 457CAE693D658267FAAFB2A1E61A3DF2 /* FlowableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3F1F2786E81D2998037E666F2138400 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 018FF17C1BC7E4AEA45E2A67DB2ABC92 /* REAParamNode.m */; }; + D3F1F2786E81D2998037E666F2138400 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FE3B2FCEA1A0BD87D99A59A4D27CDAC /* REAParamNode.m */; }; D4040F200D00D6261963F43CBE89C880 /* KeepaliveTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B9E2D0EC4BB701F7942BC20D5A61FED /* 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"; }; }; - D412419822F9E10F0CA71836166FCEBD /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = E81376F4DE90D4131392325330C4AE4B /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D412419822F9E10F0CA71836166FCEBD /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = BBA166BE67A84D2F441EF657DC27E453 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; D41D18AF85CDD9141B0609341DCEE5DB /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = E42F139CBEC9EB2C181EB961F1BCC7ED /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; D41E53EF9B0E35CDFF682EDEAA2B70AD /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = D21E34F415CE98C43A45525B1341DBA2 /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D44929278211CCFCFC93414E2EF04F84 /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = BF0C4AC8BB6062280C356E9369DE4721 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C374255E35FB55E75A6438EEA6E61BB /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D44929278211CCFCFC93414E2EF04F84 /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CF82584EDEE9AF01438A19F1644F2F7 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CA294834D69149A9010595E516E44C0 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; D44F4B162A48877F712281A9ACDD787D /* EventBaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CFCC2D274ED22535ECD02924D62DE800 /* EventBaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D46387E3B0A1286B1C2AE3504677E6C8 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = A020774C760BA3ADBB770E3ECC848753 /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D46387E3B0A1286B1C2AE3504677E6C8 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = FBAC7CDE546D7D2889270A00B9B289C1 /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D49C2B5AD12F94C14929E9614A269641 /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = D1036F01106D7DF59D8A20219D893A91 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4C0E1A201222E7501D0ECE40ECB735D /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 48646B3B495315C0F32EC39A20A7CADA /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D4C0E1A201222E7501D0ECE40ECB735D /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F2C0A8646EBD720C88BD6CDAEBE2C7B0 /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D4C5F57F127C8AD253CA39F549EA8142 /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FC181666A2195399AE0EDA2B3969407 /* FIRApp.m */; }; D4CCA1BA396882B6AC8AE5EF772DB855 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = D1FEB8A17E597B536CD017BB386ACF22 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; D4E76C84F728AE7A68A06809D4691592 /* FIRCLSURLBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3335457CAD39AD9B8912FA0C97F35C0E /* FIRCLSURLBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4EF29669510C233A73C4D1BF709A3F5 /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 16068D73A49A5A26BFF88CA416CE054C /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4EF29669510C233A73C4D1BF709A3F5 /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F200047510DDD9139206D22E894C7E1 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; D4F03A622584B061121D482B0D08CBE1 /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 7534A3833A1B734D5A8DB97D4DDF778C /* GULNSData+zlib.m */; }; D4F870A3745DAC99F9D1DE10267A3FDC /* Codel.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F42A4FFE0C6D566668EC7A2D36FDF5D /* Codel.h */; settings = {ATTRIBUTES = (Project, ); }; }; D50276F979C7915BC1E670A13F14C468 /* FlipperRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBF35F269F48AD2A014C0EDDD494FAFF /* 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"; }; }; @@ -2800,21 +2824,21 @@ D55F976F4368D978B696E3A99B3665E4 /* StreamStateMachineBase.h in Headers */ = {isa = PBXBuildFile; fileRef = FEB192CC648D2770FB2A22E7521CC002 /* StreamStateMachineBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; D56AEDCA89023A1E7C86652FEE5B716B /* DistributedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3484287C86F3C361E19FA82FE4676E8 /* DistributedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; D5B67F8483C8FB4C3B5356D28C3374D7 /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AA59F2DE9131CB33AEF6E9EF67053D3 /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5EB936081DE1ABD23F6EF6E9A31D4A9 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 65E81EA296BD259AB8E0BEE3EF4529ED /* RNGestureHandlerModule.m */; }; - D620337A9B762FE1D97DC1C29D8D9590 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 36BE1D0F231B6C4F5E25643D57EBD82F /* RCTConvert+Text.m */; }; - D63D855F5E5694B1078376751720F336 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F6C994069BF6D4C75770D79959F358B /* UMModuleRegistryAdapter.m */; }; + D5EB936081DE1ABD23F6EF6E9A31D4A9 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 870A0FC7FD6163455CE70509D8BA7DDE /* RNGestureHandlerModule.m */; }; + D620337A9B762FE1D97DC1C29D8D9590 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A672EE4E79E7D06E2F2CEA3A984E2E0 /* RCTConvert+Text.m */; }; + D63D855F5E5694B1078376751720F336 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 714B2429B32C0084EE361B57F2300C67 /* UMModuleRegistryAdapter.m */; }; D63E8D24C60EFE8B5B1D85CD8003C1A0 /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = C0A22C9278CA947AE60BED7BD3998B1E /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; D657B1508E0606220A7DAFC0D6614475 /* EliasFanoCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EBEBEE1954663B995A9E6D7C64199F0 /* EliasFanoCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; D65D7C232EAFE669AF0F91D277BF2318 /* FIRCLSUnwind_arch.h in Headers */ = {isa = PBXBuildFile; fileRef = 626A959999CE881ECE30346AAFC28430 /* FIRCLSUnwind_arch.h */; settings = {ATTRIBUTES = (Project, ); }; }; D6673FCC4F15C960D35782A1349CFDED /* FIRCLSSignal.h in Headers */ = {isa = PBXBuildFile; fileRef = F94D1AEE1A1631D64AD7152A2C5DDECF /* FIRCLSSignal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6AC7EDB5587A21F751D2AFB473D2558 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0802964F223D7584D2261C2F5A90277B /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D6BE43E386E838E2F1C713789DFF481D /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FCDB3D5FD7684FE9738D1D5DA00CCD7 /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6AC7EDB5587A21F751D2AFB473D2558 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CBDEC1EEE9DE1FFBF3979C4ACF74C9B /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D6BE43E386E838E2F1C713789DFF481D /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E6F146997B96086A074C4015761ADE5 /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; D6EE21E0A81DC7E63751687071790BD2 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EAB131C6AB34AEE54C5A410672BBB28E /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; D72503B8233647DFAB18589EFE0F1091 /* ExecutorWithPriority.h in Headers */ = {isa = PBXBuildFile; fileRef = D49DC92A9BA7853CA58F46AC9266A803 /* ExecutorWithPriority.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7386042B011F13F43898B1B9A5DEE54 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = F382D054D64750038F056CF817ABF9CD /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; D738B9E26FD586C78BF0DAF81FB62ABB /* FIRCLSReportManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D24CAA086F77F9010EA8201A3EFF59A9 /* FIRCLSReportManager.m */; }; - D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = AC5BB9D02C5CCBA69F7401F894B9152A /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D753116B40ABF09DE9537CDC8985462E /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 05C256C0174F99CDCB35A0DFD17CF608 /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 53B442F0BC9400B7838C67986AD9F802 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D753116B40ABF09DE9537CDC8985462E /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = A5C6250905443356CFCF031CD00D61A5 /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7690664E9554486C6A08570CCA16219 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 0AE77E43478AF3121A949E900723EC41 /* alpha_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D76D243B815E6B6FBC1319E69838AC67 /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 53BFA5B72FC8C9E59DC28F1C6AB7B662 /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; D77CF59BDB5FC2113CF820C1C8CEC5DC /* FLEXNetworkObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6E2C28BAC624BFE10AB8DB4DF2E4028C /* 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"; }; }; @@ -2824,158 +2848,159 @@ D7EE17DC61F2C233EA1F0DB1D29A9473 /* NamedThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = CF7C5FBE44267D75D7624C4853972AB1 /* NamedThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7FD43F4DBA506841D6A9E2A4EF20089 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 091CD97C1986638BA7F1ECA01086271D /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; D80637FBB5211C6DA10EF1A6762A297C /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F92857193485FA77EC2925B935001E3 /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C243495974C4509A2870B16FFD36C84E /* RNCAssetsLibraryRequestHandler.m */; }; + D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 59A8F834074C144BF9F2A56BEA949D40 /* RNCAssetsLibraryRequestHandler.m */; }; D82111A4E6432431C15468B9E171C02B /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E78A6591875A2E87C3D9B92C25BA517 /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; D82A9BB2212B45FA75D895A40645B283 /* QueuedImmediateExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64FC54E588C81F0206FFCDFC84ED4876 /* 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 = BFA58B5670781EDFB4499E3B407B0D8F /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; D88BE8A09092572D594C0337AD2C039C /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 59605669D19CDC4CEF77C9F70E3F4FEA /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; D8A14C1136C6E6F8D65875FB52ACC6F9 /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F80B46EE1ED0DDF73DA0C187058D9F8 /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; D8BB8787764B7EB4D18B8371DFCDDB62 /* TimekeeperScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CBC6A743A4576AB895C1007CEE84A86D /* TimekeeperScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8BE1C65E30421034BDF3B754E368854 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 77B9A05CFE5541F8C23026310A33F4BB /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8C90CB5416F8ACD7A96BE492BE76CA7 /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = B9618AF8600308521930317617B79BAE /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8F0C0DA31A17B805ED9F1CF41673F8A /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = BC40F8216DC8525D701B380F73B2CBF4 /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8F8196B3132B554A7D3384B3420D59E /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 157A433195BF742EE998DC049AC4D061 /* BugsnagSessionFileStore.m */; }; + D8BE1C65E30421034BDF3B754E368854 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E002D3D0835B9BAD650C25C5FD482FB /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8C90CB5416F8ACD7A96BE492BE76CA7 /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = E8942F0326870A19E19396FF8D4C8AC8 /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8F0C0DA31A17B805ED9F1CF41673F8A /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2294B5E4EEB782F74D763F48A0417DFC /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8F8196B3132B554A7D3384B3420D59E /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 53B7B87D245938972CE9032911CC1F1B /* BugsnagSessionFileStore.m */; }; D9136385F86B439BF4110F471C710BCB /* FIRInstallationsItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C32E1F6881FD663F56C65A9C447722C /* FIRInstallationsItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D923D10E1895387F63D665FDE9B8B7AF /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = E231195686DAA93C6215F5A37596789A /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D92CAE62ECAFE549B7CADB800BE130C3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DCDF199F3B656D34D7B505E4544C402 /* RNJitsiMeetView.m */; }; - D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D1ED42C56DC5FCC815A8BA2BCC5A8831 /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D923D10E1895387F63D665FDE9B8B7AF /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D46DA8EF5A43BB3EB6FBED2BE067861 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D92CAE62ECAFE549B7CADB800BE130C3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = C601EF69E33157791DF6996BBD80C7EB /* RNJitsiMeetView.m */; }; + D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 04B98A6541C44BDE588A8BB0762135B4 /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; D9509DE6780CB281F74D9447AC38ADD5 /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = 51E287770059662644655FA7FC865FB2 /* FBLPromise+Reduce.m */; }; - D973144F4667728901E3B10EF2D56D9A /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 55D28C4F446EF85B88F966A14F398624 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9BC1F14A53B515443E323E9031D582C /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FE57DEA174169B58FEDB52B80D89BAD /* EXReactNativeUserNotificationCenterProxy.m */; }; + D973144F4667728901E3B10EF2D56D9A /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = E21CE3623C1ADE5443172153BEF0D74B /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9BC1F14A53B515443E323E9031D582C /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = FF5EC75832509595F34CA844C2795CF5 /* EXReactNativeUserNotificationCenterProxy.m */; }; D9CE5C4ED521A9CCCEE7E5371A8FEC83 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = EFFEDF8AEC1135DC222C4AE58E738140 /* SDWebImageOptionsProcessor.m */; }; - D9E8EF785F0508D50522BF668E520107 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CCA1D7E14117C738A5119AA2C3C7FA02 /* EXHaptics-dummy.m */; }; + D9E8EF785F0508D50522BF668E520107 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B972397B2F0BFF8BD1752E0FEAF70252 /* EXHaptics-dummy.m */; }; D9EEB7D779C730BA8D7084CE1C82C2F7 /* FIRCLSReport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = D25D9BFA97BE17F3CBD7B42D3D39A123 /* FIRCLSReport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; D9EF1EACEF391E2D098EDDD48B5C1F7B /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = D49DBE19A2224B63E60F7946DCE2DCBC /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; DA0494C97A2819836F2DABCB79CCC65E /* FIRCLSUnwind_x86.h in Headers */ = {isa = PBXBuildFile; fileRef = 810DEDD3635F8744DAB27871885A95DF /* FIRCLSUnwind_x86.h */; settings = {ATTRIBUTES = (Project, ); }; }; DA3E756FDDBB22F63B92675EE270BFD9 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = E53236B340E0AEC8EEB3B5FDBFF79B7F /* cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; DA5203CF64B1E9D5DAA840D3417F241E /* StaticTracepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 50E238170AB70EFD6AC1086EA2F251DA /* StaticTracepoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = D5C4C528C5F7D7C8CD0F56A9349E9D6B /* RNSScreen.m */; }; - DA572D4C50F338A98DE859B93CF439DE /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ACD9FA7D9220BD86AE0DA31FF978724 /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A67E6E6D6E01DA69AB431B0D72A50CC /* RNSScreen.m */; }; + DA572D4C50F338A98DE859B93CF439DE /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = A407E803874A512180988E07B0E2ED4D /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; DA5EBAFC713BD2CA418F7A71F8351853 /* FIRCLSCodeMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = 44D40C676E1C46BA4CA6A4F2C51C3366 /* FIRCLSCodeMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; DA6126735254CBAD81AE08F7B1ED78B7 /* DrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 21E4E2187CE05275E6A620BAF348931F /* DrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA658882BDB6CB0C758051C2BFF39DFA /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = AA1B111B2E6AD4B9C43B10BE64552485 /* BSG_KSCrashReportStore.m */; }; + DA658882BDB6CB0C758051C2BFF39DFA /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 444B7CA4B8D54CA3B5B147A5DDA41D48 /* BSG_KSCrashReportStore.m */; }; DA779370248FFC40EA77D4D44A6BDB54 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = E7148ED1906EA7159B20A07574A706E8 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CC77545A49BFB3DE12C88A4FC1FD542 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAA91D743F867A4B65BF511DB61F5087 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = D1C4FC5E1F23F942780D21CCBD9CA28C /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 50984062FEBACC98E301FE8C5FB093ED /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DAA91D743F867A4B65BF511DB61F5087 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = BC9FDD88B9204303D70026F7C404AD1D /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; DAAE0E3FED2202C7C92F463A7C4BAA2E /* CertificateUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2D902806CF778A22E4AEF91885DEE9A /* 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 = 99F03C1665761FA81336C8E67D423DAC /* RNFetchBlobFS.m */; }; - DAB782CBA723F21A9F6BAC43E18B14CF /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 98A13AFEBB39F488516653C7CC75C935 /* 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"; }; }; - DADC5939C3403C5244AD51F6C1CA548C /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = F8E3E041B86D708D61869B837ACC9A61 /* BSG_KSCrashType.c */; }; + DAB77630ECE8FFDE64A9BEFBD0B44DFF /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = EEB60FA72529E43882D9ED3F8EDC5D9C /* RNFetchBlobFS.m */; }; + DAB782CBA723F21A9F6BAC43E18B14CF /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = E11337E75FB0DC8A84038AD805A26E3C /* 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"; }; }; + DADC5939C3403C5244AD51F6C1CA548C /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 5FFAE82666F21B7462CA0538142D1449 /* BSG_KSCrashType.c */; }; DAFC2F91BEA931FB9BA022CB9B77CA90 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = B218FA1B891938657EFAAF30ADC50387 /* backward_references_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; DB23770DDD223F6F66DD3161FEED485E /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F8C8A39F7438E3AF108E6B210E6995D /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB48347AB0CFAFD261FBD2BE8861EE9D /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 27ABF28F90A20FAD70E62816ED19F5AA /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 85920769A67980742E26BD6D5DD20327 /* RNGestureHandler.m */; }; - DB802AF253B585166A65DE3AF2807ACA /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E07A9D647C61E63FBD2A63EBC6014AA /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB9717086AE45CE81AA97C3D12CDE9C7 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 44B5F12FE1FB7D76171891F7BDEB9249 /* rn-fetch-blob-dummy.m */; }; - DB98C51FFD075C2E920AE1CFE2B57068 /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C920BEF72370EA52077556BBECF365C /* ARTGroupManager.m */; }; + DB48347AB0CFAFD261FBD2BE8861EE9D /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = E14F2452B68E058A43444DF88AF3572C /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 7492D25E2059352EE7754C9C74AD3718 /* RNGestureHandler.m */; }; + DB802AF253B585166A65DE3AF2807ACA /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D39ED875E1AF7CBE2525DF832377314 /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB9717086AE45CE81AA97C3D12CDE9C7 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AC53EB8AECF7D69E4E3497C1D8161B43 /* rn-fetch-blob-dummy.m */; }; + DB98C51FFD075C2E920AE1CFE2B57068 /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E34E6709F16036BC6BB45D0C02128B2 /* ARTGroupManager.m */; }; DB99B89B363F703C56CC1CA9540AC911 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 940A2EDDED3BA8FE4F7437F924DE902C /* SDAnimatedImageView.m */; }; - DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = B66CA779567DA05361DA46F034BBF906 /* RNGestureHandlerButton.m */; }; - DBB7C961CF22090D0F1F8FB705151A2D /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C486A606163B725BA83E893805DD0904 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC00358D8F13B35F5D00160272FCBCAE /* RCTImageURLLoaderWithAttribution.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6D57017CE6DC5FED451665110F822998 /* RCTImageURLLoaderWithAttribution.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - DC0DB5E6E1AACF1F85DE463B864C97D8 /* RNFBAppModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 30292170DF471817AFE23AD88C8A08CC /* RNFBAppModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC138CE0F250720A264B598D27AB4C84 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = B38E7428E0296176DEC476D2C96AB5E5 /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = A019AB4378C025E44D01E34104D1ACC9 /* RNGestureHandlerButton.m */; }; + DBB7C961CF22090D0F1F8FB705151A2D /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 974179F395B152EAE8203AD985C85A84 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC00358D8F13B35F5D00160272FCBCAE /* RCTImageURLLoaderWithAttribution.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0C173D036F23E5FA4077710D239481BD /* RCTImageURLLoaderWithAttribution.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + DC0DB5E6E1AACF1F85DE463B864C97D8 /* RNFBAppModule.h in Headers */ = {isa = PBXBuildFile; fileRef = AB0C95038AC70E05623DDED58EF89C6A /* RNFBAppModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC138CE0F250720A264B598D27AB4C84 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 7193DD8F996D5092A94E118B8BB844F4 /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; DC28E96BA8BC8E051CA66420F836DDB5 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 02F7C66002954BAABB2DE0C8A87297A2 /* idec_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; DC47EFB7D481B5840B0D006FDB06611E /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 514EF94B0DB62E4FB66DC61729864036 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; DC49ABE2532839A7312B849463F539A0 /* FIRCLSUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = E37EF9DC59FA0F39D3EB6A22D9BF7B7C /* FIRCLSUserDefaults.m */; }; - DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BD0A0DA49CF85CCFD14B1B3654E4F4E /* RNBackgroundTimer.m */; }; + DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = BC7F1DCD2BB3AEC13C0DB73A0DBE7B2D /* RNBackgroundTimer.m */; }; DC905C9E567307F38868AC249E90807E /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F6F842C80AF223458EB655C1759715FC /* FileUtil.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DCA414020D88CAF6245519F286313FD1 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = D8E38E17D242F20046B5C18296FF4036 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCAF4A441F6D8402567162FCA828FE3D /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D45BCFDFAE6F6EACAA99CCAB789EC43 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCA414020D88CAF6245519F286313FD1 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B054E6F12AECCB3D6DC93C4596190FE /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCAF4A441F6D8402567162FCA828FE3D /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 868FE5B287B4AA1A630B83060B377279 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; DCB90D8D8966F8964BA8B9A333F44E4F /* Base.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 629E8C2261D0BCC86154D286AC562FBC /* Base.lproj */; }; DCC79093B0298C5C73431BAB4A5CD43A /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 74956CEE21DDBFE8376A86DC8FF7879A /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCD9FA4EA551EDAA53BFADF01A383A80 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ECE254E55D820019E2A31F099741180 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCE2782B3536ED43A64E1BE59D8A16AE /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = CB65047EC0D46C0C4412606BF0EF6382 /* en.lproj */; }; - DCEB1454DC848851872A3C10BA32C7BD /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C39690C18200C48305B76C89E2EDE45 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCFC4E68E23C6B0E490740857C70AA80 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = B9EB4B1BD9B256964FD8E9469D4FDF22 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCD9FA4EA551EDAA53BFADF01A383A80 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7963576B0C09EBB4B8472DB1FEFC462C /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCE2782B3536ED43A64E1BE59D8A16AE /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 26131611C4C08C665ADB4FEFB3DB096E /* en.lproj */; }; + DCEB1454DC848851872A3C10BA32C7BD /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = FBCFE26714872422A8F2BF2300250DEF /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCFC4E68E23C6B0E490740857C70AA80 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = C73D49DCE02BB49A6916CE159C31DFD1 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; DD0172C138C004D1206227573AB94742 /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = 046FA754D7F247F0E2FE8BF6BCBF7184 /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; DD0ED0194269A9546678AE2F538F3017 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = DCDD037A359CA7D019F0241DD6AEAD58 /* SDImageFrame.m */; }; - DD1BC3892CC8386218B2AC5A82F6D729 /* ReactNativeKeyboardInput-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C59E950AED0EA83139AD0A0DDD4D111 /* ReactNativeKeyboardInput-dummy.m */; }; + DD1BC3892CC8386218B2AC5A82F6D729 /* ReactNativeKeyboardInput-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C3DA8029EA7E15298CB70CEC74E30EA0 /* ReactNativeKeyboardInput-dummy.m */; }; DD31E664C8D93EBC57110B8E97E90E9C /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = DEFC4AC23F3BDCE1E880C7FE6F254A66 /* NSImage+Compatibility.m */; }; DD435B05F38B5E0576E48D7C760A2BB7 /* FIRCLSDataCollectionArbiter.m in Sources */ = {isa = PBXBuildFile; fileRef = E9155CDCB6F9477DAA638981DD1F8EF1 /* FIRCLSDataCollectionArbiter.m */; }; DD4C7A9E5CA5013D7786CFA9D177B890 /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F22E961462439F5DE19AF2A9AB73729 /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; DD9309AFE001B268FF2786660DE9D588 /* GULNSDataInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = C85CB77B6343410166E443F990D0BFA6 /* GULNSDataInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; DDC5B985B4264CEA5E226DE7E0AF90E0 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 492289B5B4AF7C2DF8BA029B2BED83A6 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDE41C0E363F22BFF971DBF95C46D05C /* Pbkdf2.h in Headers */ = {isa = PBXBuildFile; fileRef = 9304F71D50FA4B8D88B58E16E3309E0F /* Pbkdf2.h */; settings = {ATTRIBUTES = (Project, ); }; }; DDEECFFF302A446DF9F1194D17A36925 /* FutureSplitter.h in Headers */ = {isa = PBXBuildFile; fileRef = B7F97D52CFDD14A3350B46776025F1BC /* FutureSplitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; DDFA735F743E8D12661098DC58DAE485 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = D60BFD037003D28671AC378A8151A57D /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE08A0A0EAB4D1F3D4205E9C02D6D771 /* EXSessionTaskDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 685846496BF0EC2906DA008F252304B0 /* EXSessionTaskDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE08A0A0EAB4D1F3D4205E9C02D6D771 /* EXSessionTaskDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DB1839D2FA81FC0A50ABC1FFAF00941 /* EXSessionTaskDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; DE362CD58EB6E55028F789361187A702 /* ThreadCachedArena.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C4F07654FD3094B454512BD85A427606 /* 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"; }; }; - DE5F047EA25CC9CDD2F98D6EECD0CC07 /* RCTDisplayWeakRefreshable.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AE77E1DCDC659303A03C783F929EA4F /* RCTDisplayWeakRefreshable.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - DE5F1EC1B7CB49F4ADFE01D959FD0D22 /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = 6DC73D7830AD0849F776EE7B654C78CF /* BSG_KSCrashSentry_User.c */; }; + DE5F047EA25CC9CDD2F98D6EECD0CC07 /* RCTDisplayWeakRefreshable.m in Sources */ = {isa = PBXBuildFile; fileRef = 5170D6901BDF6DA1D507CE64989EEE5A /* RCTDisplayWeakRefreshable.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + DE5F1EC1B7CB49F4ADFE01D959FD0D22 /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = D480A731B9A6D6FEB9ABBD7BD3FDFD0F /* BSG_KSCrashSentry_User.c */; }; DE9795B12DC6F34813DDA08D4B8BA982 /* FrameType.h in Headers */ = {isa = PBXBuildFile; fileRef = E044788C0133718446E226937A12F440 /* FrameType.h */; settings = {ATTRIBUTES = (Project, ); }; }; DEA5C2E029C4386529EDF363FDD8BC67 /* FIRCLSFile.m in Sources */ = {isa = PBXBuildFile; fileRef = CD3C9A9022B9DD377CC29BE1056E468D /* FIRCLSFile.m */; }; DEBFD8640231926B88FE3CD4FDDDF381 /* ManualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CBE8DA9EF47B2DF6E24BF46ECC99504A /* ManualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; DEDBA7D5E0A65DE6FE7B04A4E3B87CDD /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DE60624E76F59C29DA8F63CAF38D59B /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DEE4EA1E653EC166B12DE85CB96230FD /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DACB159C9A8E31A5E1E3F9B4BB13AD5 /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DEF224658766C0BD97431F5DCA3B399E /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E71DA2D60FC56604BFCB521A774C92D /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEE4EA1E653EC166B12DE85CB96230FD /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = F244FA41509E882BAFEE150660326CE2 /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEF224658766C0BD97431F5DCA3B399E /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = F29BBFA8D317C643C8EFF279CD642EFD /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF0051ABE6FEEEC784557052147EE672 /* FIRCLSDataCollectionToken.m in Sources */ = {isa = PBXBuildFile; fileRef = DA6858A479AB9FE0C884C5E7FF4046D8 /* FIRCLSDataCollectionToken.m */; }; DF22A8BEE5FCF76A31BE7C8A89E67C9F /* FIRCLSInstallIdentifierModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E981B382A68E854FAC7C861289CB2C4 /* FIRCLSInstallIdentifierModel.m */; }; - DF230F67439A660A168B218C3660290D /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 092712BFAC70FAB2B3B011A19B02873E /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF230F67439A660A168B218C3660290D /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 79F394934F8B412E7CD37367820C088E /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF404DA0B392DB192D47AC020D531A9A /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 0117554899DA5E30A66E9EF1126DCBC9 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF417B206C991E16FF579777C4FF1C96 /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = DB6AA76CA965FEB21CB4E70BC077B312 /* FIRInstallationsItem+RegisterInstallationAPI.m */; }; DF7078E5269EF7551228DFC3F9501FEC /* FrameFlags.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9EE3279EA0E17FEC633AF8BD94F01D87 /* 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 = 121AD784F9815F279F436F8D2E8372FC /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF817BD1F5C4F6F35E9B867D0DFABC10 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = ABB1F06AA1DF276D588AF6CC5CDF84D2 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF817BD1F5C4F6F35E9B867D0DFABC10 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 63DE13455B1A7FFAE9F8870F41C1617F /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF8D5DA3700432625CCA28276EBC56FE /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 74E3E34702FFA1318BAAC42F8C32B15E /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF97168226658C94C8D943BA99ED557C /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 368BAC52F7295200297F65711A5A9483 /* FIRVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; DFA2F79F9121657E2DF8E7DDE482828C /* ThreadCachedInts.h in Headers */ = {isa = PBXBuildFile; fileRef = F2CB8699905D4AECB2EA5ABD317EE9C9 /* ThreadCachedInts.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E00AE219C77E8D17BBBF9A091E04A29D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 940F2ED5D095A85104318D927C91282C /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E00AE219C77E8D17BBBF9A091E04A29D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = D61FD2194D31E36528E34EBD1F4DDD96 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; E00BC402FDDAB7D225D87AB8410D1B1A /* DecoratedAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = ACCD86DE9ABFDC69CD5982FF9C8BDA2E /* DecoratedAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E00FAD0FDB26AF9FE9B56ED65F8587EB /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A8A4CAF7647BA607557E4EBE2019B78 /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E00FAD0FDB26AF9FE9B56ED65F8587EB /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = 41B6F22CBEBA8D3E24A8B4CFC50F2BA0 /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; E0362698CD153611761F5468EE9F1CB5 /* FlipperRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = ED6F99672BDD6A13AE6CF26C4A454EBB /* FlipperRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; E050964E1AB1383EA71092C52BA08CAC /* Syslog.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AE0ACDDB3B412C3A6D01B047B21CF81 /* Syslog.h */; settings = {ATTRIBUTES = (Project, ); }; }; E0598EB7CB9E335E0333E4E5170ADD1F /* FIRCLSUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F79B09A11FC5373131D8BD312B9C5FE /* FIRCLSUtility.m */; }; - E074CA82D2417D4A0D890DD071A453F4 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D70ABA751AFDCA0FB499B0AB9D797BB /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E074CA82D2417D4A0D890DD071A453F4 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = FD5605970FEFFB23ABCCA413FA4E45B2 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; E087DB435044D30051DCE1885634E2C9 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FB8473115801B8DAADF0B2E3A59B836 /* UIImageView+HighlightedWebCache.m */; }; E0A95348DFCA5B73FAE577A45F6822FD /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = C70F877B24AD4A37B3DC052BD07BD341 /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0B1006374966800475ECF303FC19508 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = D52B18ADDB0220AC45266D155DBBCD63 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0C46A52452ABB7A82187CF8BADC033D /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FB5D1E227C83FE844D22E47D2C21D0C /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0B1006374966800475ECF303FC19508 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = EC48217D6190DB1353769610736D2C79 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0C46A52452ABB7A82187CF8BADC033D /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 80963E85D3C5C51EF1799E0A6172EFBE /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; E102CFF1546031E99D8ED019337D349C /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B411D56B0722F0042A139888031AB62 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E11061E344FB4CBB84F6A1202D9965EB /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = 25BF77E2F0F25E7216E606048EE1180A /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E11061E344FB4CBB84F6A1202D9965EB /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B1D56ADFD1059B3E709CCD732DB57B7 /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E112A255C08943966E750880118D5170 /* GDTCOREvent+GDTCCTSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = C518097A36C3D994BC4CAD27FBBA3204 /* GDTCOREvent+GDTCCTSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; E11E13EF27F699205C8B6E7CA84524E0 /* ar.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A147A30B6FEF86333F09AA5A26499A1E /* ar.lproj */; }; E1266B55B38842C13A05CFD3DF2E4C0D /* StaticSingletonManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BCB47EEA132D582BF77322AE54F499E /* 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"; }; }; E15D130E3C58DDC3D2D8FFA5FBA60F8B /* FIRInstallationsHTTPError.m in Sources */ = {isa = PBXBuildFile; fileRef = FF3F390A9E1DA13321325D9F3130CB1A /* FIRInstallationsHTTPError.m */; }; - E184ED1EF650D5B76404EEEB16CF6A83 /* RCTSourceCode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 754D5140B8345DD611E51A98DBCAFDC1 /* 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"; }; }; - E19B575090355E623900BC4E520EE66A /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 822B444D29B95EDFFB587206F722FBD8 /* REATransitionManager.m */; }; - E1ABB84690F52BCA204739061FB1D822 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = B404EF4438136C9589D21E0096944B6C /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E184ED1EF650D5B76404EEEB16CF6A83 /* RCTSourceCode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 00B79655A9D81E5053B0464854B20048 /* 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"; }; }; + E19B575090355E623900BC4E520EE66A /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 13200C5ADF1D0A9A9F65306FFCCECB5E /* REATransitionManager.m */; }; + E1ABB84690F52BCA204739061FB1D822 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6623DE17D51849D5F24CAE56CB5AB658 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E1B270459C9A3A1F331BAB2B69F8B319 /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = B40817A55A6AE1DBA3B73B68BCE8E6D9 /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1C92AEEAF907D9FBB3D536670867DE4 /* UMAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B50238FD1725E549B8016F06B6EB51 /* UMAppLoaderProvider.m */; }; - E1E55537614C50B66D0A05AFA76CF618 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1EA3646E7747349B4D4B73F91D688BE4 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E1C92AEEAF907D9FBB3D536670867DE4 /* UMAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 043F2F9D122F7DFB997AE801BE095FF6 /* UMAppLoaderProvider.m */; }; + E1E55537614C50B66D0A05AFA76CF618 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 89D80FA7EDEA9BB9685AF92143C0EA14 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E1E6C85C75FFE608F8639A084D7ADD81 /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E25A8E08E4DD46E8E9C8DC95ECD4B59 /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; E2067AE94EC192C9626F836E18255B3D /* SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 46776BC8C52C95495BFBC14AD56C899A /* SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; E208C5E8C08C4B7CD8BF285F8C6BBE3B /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = CE3530F492846720B51391F9AB783A52 /* GULLogger.m */; }; E22214E4EF2CE522B3E8311CF4A002F9 /* FrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = ED2A33F7311BFB11DE8592DB33185D3C /* FrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E246B0FBD593E407AC5122AE3D282326 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 820D918138C8817D6905702A9CB94BDE /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E246B0FBD593E407AC5122AE3D282326 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = EC4BB61B670DA1E424388EA029520072 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; E265227A4C1DB2311EFF7D1A481C37A6 /* SSLOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = C31EB01DE51A7B7602E85F5B860644AA /* SSLOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; E275864857518C091CD5FF4CEEE87FB0 /* PTChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 15D5329068242004C23C8750C7518B99 /* PTChannel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E28C347037A4A0DFBD48DDF156857B2D /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 85E12D48404FDE5B55261A25F28CAC25 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E28DA42054EF0B4797C743DDC9F6795D /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F32EBB6E239720223E1514CBC0D59C2 /* RCTVirtualTextViewManager.m */; }; - E2B505BA3561339CEE156D9624E37D99 /* RCTGIFImageDecoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 67CF0C6D3EDE363E59393AE8805F6799 /* 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"; }; }; - E2B50BF3ED60EBB52F0FED02FF43B131 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 4450F9ADD5F49A659C51ECE5AAFA1B19 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E28C347037A4A0DFBD48DDF156857B2D /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EA8E7DCF2FD3A1D4EC6ED370230B5CC /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E28DA42054EF0B4797C743DDC9F6795D /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 26A7CF1227E14CB122B549C8DD1F0BDE /* RCTVirtualTextViewManager.m */; }; + E2B505BA3561339CEE156D9624E37D99 /* RCTGIFImageDecoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2AB031C0FB522A7A9178F961782D5199 /* 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"; }; }; + E2B50BF3ED60EBB52F0FED02FF43B131 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 65500049A3CBC85DC85FA8B86E2E5386 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; E2B75EB8E105F9156805FA135498B216 /* FIRInstallationsStoredItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DE8C076A7F3BBAB0915FD7A48723018 /* FIRInstallationsStoredItem.m */; }; - E2C94D67399BCFD10FBDAA65B853AC31 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 61F73002F5357C4765AF70BDB41AD9B9 /* RCTProfileTrampoline-x86_64.S */; }; + E2C94D67399BCFD10FBDAA65B853AC31 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = B22B7605941D7A7BF4C6A92B469BD746 /* RCTProfileTrampoline-x86_64.S */; }; E2D0E73041944854FC7C8B24B7C2D9D1 /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CCFA58ECEC7F398263D2B001C299167 /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2D1A3C05D90991A1A8F6DC350A98783 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A849B46747A2D27F06CD4B0F19DFA865 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2E490B23FB206AE0B3CD336767D0DC4 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A50FD284847D089996CE7B9D64B5E2BD /* RNDeviceInfo-dummy.m */; }; - E2E76E1C58DF161E23D699B24CF713CF /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 41F7EDB221C6D8E6528242972B85E19D /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E2D1A3C05D90991A1A8F6DC350A98783 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 81FAFDED367C8C2C7CEBB5421B0E80E1 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2E490B23FB206AE0B3CD336767D0DC4 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 08A3CB43927AA948103E773C29ACEAB4 /* RNDeviceInfo-dummy.m */; }; + E2E76E1C58DF161E23D699B24CF713CF /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D0E0CE65EB4278FDD03DA431F7980D3 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E2EAD453E4A4317DCF42ACCF7D081D48 /* FIRCLSHost.h in Headers */ = {isa = PBXBuildFile; fileRef = 75CBC4556E468DC2DE1975958B072823 /* FIRCLSHost.h */; settings = {ATTRIBUTES = (Project, ); }; }; E305DF061F26647A3385379DB71FFDC6 /* RequestResponseRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 24C1DA274D9AFB3B7A190477D9909A62 /* RequestResponseRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3087E303D8E64C17038E7A303283D7F /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 59250CFC953F23E038DFE20F0BE11B49 /* EXPermissions.m */; }; + E3087E303D8E64C17038E7A303283D7F /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B9B94158DF5FDA7D0229C21905E263F /* EXPermissions.m */; }; E32C94E302AD5CB8E0E94BAD8A66D753 /* FIRCLSMachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 508BD37104E3C01A678A4EF80C2DA628 /* FIRCLSMachException.c */; }; - E36929018C3957171BBCD0F33593A233 /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 478FB48FB5CDE7B792FDE0B9E8746200 /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E36929018C3957171BBCD0F33593A233 /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = A38CEF72E84E4D8CCB3AF1580184553D /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; E36CE82EE6E8EB310110289E09673AA7 /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = E5657D0821A3BB1A7FFECD2E0D206874 /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E39E3634C4CA7E2E69BB72A8AF9DF0DC /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 21DBDBA437786C746351D2DFC78A97CE /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3BEB1D6134538FEB6EF8E1F561712D1 /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CA0D1B313D1DF488566BEB346ADA59E4 /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E39E3634C4CA7E2E69BB72A8AF9DF0DC /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DB1B8CC10B42DC93855CD660E107727A /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3BEB1D6134538FEB6EF8E1F561712D1 /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E03059FD36393C52DD41D9ABB70E5089 /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; E3D417E505AF2104EB996901585FD373 /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FA3159AAF0ECCC984463AA16EB09095 /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; E3DEE879EF45B3369CCA589810AC4F9D /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = A926914D137BAE3D5B0D9EA130554748 /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3EEF9497ECA3E6A336597A52AFE725F /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = AE5EA27B9331ED54A9B03E4A673E572A /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3EEF9497ECA3E6A336597A52AFE725F /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = AC2E8AEC2D0EBEB57417B0D43F82BC8B /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; E3F33BB478775D7C31E8EFF44424CABC /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = AC142A670CFA71C3B078555A66CCEC37 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3FFAD5E1E8EB56B739FE7117329E4AA /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F111332F8BD2666EDBDF7148438E369B /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3FFD8F2909FB8E08E4EBB0C117005F5 /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 281709ACAA55D9AFAACCE5AA7F5903BF /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3FFAD5E1E8EB56B739FE7117329E4AA /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 15997B9B9CB7793942F1266089D1C249 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3FFD8F2909FB8E08E4EBB0C117005F5 /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B45BDBC8E99B1E5BC5D196041031AAF /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; E432F1ADFEA6AF93027885C4153879EB /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 9F80816C241D2134924EA901807D4877 /* zh-Hans.lproj */; }; E4346CBB30A1CE0D0CCFC60AB0111070 /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = 59776B710AC4B9E37259D6CFE6591268 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; E435A140ED65F86C87BCE291EDA0F8FE /* StringKeyedUnorderedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 547D9D9E1723D0A2A1D45DC41B3054F6 /* StringKeyedUnorderedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3984A382171C5FDA575BD1C38060BE33 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A29BA3BE31502514BF510857200FD3C /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; E43956E9A9E6953EC5051321EF2BB8A4 /* FIRCLSDemangleOperation.mm in Sources */ = {isa = PBXBuildFile; fileRef = D5DB6FC2EBE9CDD062A29F854D56A109 /* FIRCLSDemangleOperation.mm */; }; E44CC82BF34E84E10A31CF56B0A6337A /* SKYogaKitHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2408E7ED07AC6EB017D9E56B7D1185B8 /* SKYogaKitHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; E490A09CBBCE0CDE87FE320AACBA49B5 /* Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AC594F02CC16F66B98E4468C6C59C62 /* Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2986,48 +3011,48 @@ E4CB4269099FD9CEF2F73AB9439C7B4C /* FIRCLSDwarfExpressionMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C20EB0B39CA362AB7A0DAD5602D348E /* FIRCLSDwarfExpressionMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; E4D6FC3D6058A2F376C5C6D38B9C8442 /* FingerprintPolynomial.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EB07BCC69F2E556561AC35C72234A71 /* FingerprintPolynomial.h */; settings = {ATTRIBUTES = (Project, ); }; }; E4D838084D6CC4D8518F1896EB83CCE4 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4639B772DB39D4D2A279DB9D79471FD /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E4E551E1ABD6CEF778DA224C74B13641 /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = E235B8279246B8AADAC03EC3906A030C /* BugsnagFileStore.m */; }; - E4F5ECEEEDC18FAF0FA4F228EF2A9596 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = 012E91A98522B764E7DF1BE713D5044A /* BSG_KSCrashSentry.c */; }; + E4E551E1ABD6CEF778DA224C74B13641 /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 35FFEB9CD4AA29208CB12E309DB7B2C5 /* BugsnagFileStore.m */; }; + E4F5ECEEEDC18FAF0FA4F228EF2A9596 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = 8B4979F5348E68CD6231849E89CDFEBA /* BSG_KSCrashSentry.c */; }; E4FE62A73A78E2082178236455F1A718 /* Shell.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D0AD6D3CF3E6E18BEB41A6A681E7AA7 /* Shell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5197CAC70A0736A48A6B440088782AF /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = B1B7C35B671F31D96B7568B4B60D3148 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5197CAC70A0736A48A6B440088782AF /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 4106F5CD23A775271062C62403E9C693 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; E54627196D731B399218E48C6FA9CF9C /* FBDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A3A289202E11A8147FF31242296ED8C /* FBDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; E547BCB79227691987B5794BFB30C99D /* StackTraceUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F879CDB2EBBAB29A51252B795D9C0342 /* StackTraceUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FC1D83CACEF7424175AA61B3864FD586 /* RNScreens-dummy.m */; }; + E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5695F3830A5F1AFE41DF9B5BD0A30DCE /* RNScreens-dummy.m */; }; E5782D8BD91896AAF55C1CBCBEF37684 /* SDImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A3C306919D7B3AD2C1EABA2E4ECAA80 /* SDImageWebPCoder.m */; }; E5AC340EBD1517A25C5CD160306456FA /* TOCropToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = DCCDF4556C559E94C1DFCBE573138E5D /* TOCropToolbar.m */; }; E5CC97DD2276BCDD567C0F159E753813 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FB245DD490CE4FC2275E1D3C43AF643 /* SDImageLoader.m */; }; E5E200E55C0D22A46FCBB2335FA84B25 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B485CDC4034C41AEEBF96D68090FF0CB /* 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"; }; }; - E5E972FB7DDF74A89E1E077D72F77FD4 /* RCTVibrationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = EA94FC016FD45F960D93DB70FBF796FA /* 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"; }; }; - E5FB31F6C23D375DE5CBC98123BE9B8D /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CB484617B32D8C2ABEEEB0DAF1CF6BF /* RNGestureHandlerManager.m */; }; - E5FCB3B56EB9D8309120717E8C908ECB /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 4C1B78E1803C23813A250CC2A5EC4ACF /* BSG_KSSignalInfo.c */; }; + E5E972FB7DDF74A89E1E077D72F77FD4 /* RCTVibrationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5BE499D66934F89AFCED0881CA61AB05 /* 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"; }; }; + E5FB31F6C23D375DE5CBC98123BE9B8D /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B2E84F01E5CCFCBA63118C19E8A5C4C3 /* RNGestureHandlerManager.m */; }; + E5FCB3B56EB9D8309120717E8C908ECB /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D9D1E2BED34E1EEA324F2AFA3C64956 /* BSG_KSSignalInfo.c */; }; E5FF1743F9D79897E8139453D5C34C92 /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = AF2A19ACD78BA942503C43E989CB083D /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E60C8A26C5147E5A4E959B202E1C7BDF /* RCTJSInvokerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E661AC9A93AFA9392D5964B5E59E738 /* RCTJSInvokerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E624CC4517B69DD2398DFBFCBB6C35AC /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = B4735C3818F5505C46AA5FB0839CD0B3 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6264E5B361D4864874699CAC2CAC3D1 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = F05BD8943320E7B1D726C43EAB73622A /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E60C8A26C5147E5A4E959B202E1C7BDF /* RCTJSInvokerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = BFB75D2486AC6C6768591D614DB9B395 /* RCTJSInvokerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E624CC4517B69DD2398DFBFCBB6C35AC /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 491274E34D9FF018C5F4BB99ADC78DD9 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6264E5B361D4864874699CAC2CAC3D1 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C0D075CC671699DE5DB6547128FD6BF /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; E62D0F093E777DD81625A8DD305B63A7 /* FIRCLSExecutionIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = D949714B82A3876A47FCBE15A0ADC935 /* FIRCLSExecutionIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6335683CD8324A549F41BBB5F393D3A /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = 66BB210CBCA5F4AD9251055C78E34EB5 /* ARTShape.m */; }; + E6335683CD8324A549F41BBB5F393D3A /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = CCC8C2C47E5C9669DDA0108E7F417BFF /* ARTShape.m */; }; E636F64793DF12561685F8A8C80F63FF /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 4165568E88906B826A0C324ACC44594B /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; E639715159F444D5BA9D88E495ABFF4B /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C52B41C88AB9A712CD2F32C98446048 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; E63EA8710EE016ED7487643D8A30E255 /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = C6837DCCFD84960D87157F938E6F85AF /* FIRAnalyticsConfiguration.m */; }; - E670EB08E92C89207D30458665DC8BA1 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 30E873B2AF20F8F5322BD2B723FBFBBE /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E67397B57A67F4537980EFFB165C4138 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = D9F797ADABEA1D975F651342F0747B47 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E670EB08E92C89207D30458665DC8BA1 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = C4D29E3BF5AFA8963710D2CD11A6A533 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E67397B57A67F4537980EFFB165C4138 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5F258FBDC8ECC96EC47F227E7B4B017D /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E67F1572C88EAE81A75D56813DC25A81 /* Init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB2B2706232F03B53A8D43357F13823F /* 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 = 639DCD59A293C7E3E947F9E703532426 /* RNFastImage-dummy.m */; }; - E6BE61368A0EB10BF9656C94C0B1F6ED /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 621B45CF8AEA5E510285EF99F0721936 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6B28EC2EAA76DA7CBCA209D55786E4C /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D7FCCDD87EBD1FD593954249061ED13 /* RNFastImage-dummy.m */; }; + E6BE61368A0EB10BF9656C94C0B1F6ED /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = C8F5F8EE47940E56A11D1F6336DCD3FD /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; E6E661E87351F35E9363075A0879E1B8 /* UIView+Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DDEC3E3D9689B59ABA5F1BA0DFFC7ED /* UIView+Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6EEA57B39231F94F387361EDBC11C38 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 89BD880E0A73881F2D829E47488EB8CE /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6EEA57B39231F94F387361EDBC11C38 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 136FC5D5AF2F68E611ADC8A187889B10 /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; E6FE2807B85DDFB3EA91EEF768018D80 /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = A0084D9BDAA8D290DA7A8AB2A3D504D6 /* dec_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; E707A2FAC0C36218BA2830206A0D76B0 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 01FE36D624878EBD60F0E573CB5949C5 /* NSButton+WebCache.m */; }; - E7082C644CFE1566090060EC3C44F13D /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = B15471ED62E393D50463991E5883996B /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7082C644CFE1566090060EC3C44F13D /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E52C40A128A4CAFA477921952CA2FBB /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; E713C3CADA28F31EE3CAAF5FCC72E4EB /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 899F662725775307469383BAC8039062 /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; E71ABA1C157CF07D0AB0F5123F4B3DF8 /* FlipperUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E28C96777E2631FC07448E1C13253A9 /* 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"; }; }; E71B72B642D137E677797CB142A8FF72 /* FIRInstallationsStoredAuthToken.m in Sources */ = {isa = PBXBuildFile; fileRef = F3FDF8EA6880ED4CA0959629FFF8285E /* FIRInstallationsStoredAuthToken.m */; }; E71B7C43CA2B681CE0F3BE76936B0452 /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 082D536AD9A7EA2CDF47A276ED8A62B8 /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E725C71DABD8F1D1E7A7BD298B51CA30 /* RCTDevLoadingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2DD2C3F323139CD047CE80B6F2D9C395 /* RCTDevLoadingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E725C71DABD8F1D1E7A7BD298B51CA30 /* RCTDevLoadingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = D8F85567D82EC97DBA341F1041B12D6C /* RCTDevLoadingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; E72CD319C8F15EBFB6810ECE7EDA7A3D /* dwarf.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DF52B5E92EDB8E2FBAC99CAA3758D85 /* dwarf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E738B749AC9DBA6C3C3873C41415DF75 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = CAF380BEAB1E336DF46EA3D02D047BDD /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E738B749AC9DBA6C3C3873C41415DF75 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = D2F491348EF282ACF8546F4C85ADA1FB /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E7584AD4F81B71B32D045FCA44EBC026 /* SKDescriptorMapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9281C6096649860F621018DA9B27F992 /* 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"; }; }; - E79CC0FEF54CA45A7593ADEDEFEDF2F7 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C0C2E58B15F6B96D6E542C553E6248E3 /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E79CC0FEF54CA45A7593ADEDEFEDF2F7 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C987E0E268B890DBF8F6078F9904CFB3 /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; E79E09130D1B077C25C4840E4C51B025 /* HazptrRec.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DEBCBF1B626C6C41228540C6474FC8C /* HazptrRec.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7A62D6CDBAA229E65AE672373925C76 /* fa.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 6B12E388B902855C75660E278B62861A /* fa.lproj */; }; E7B341F66C139B10A13B3829F1EF50BF /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F1D0A45421638681EE0B25C8196FC10 /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -3036,96 +3061,97 @@ E7C35E716B800BD4F5E87951BB2B21B6 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC0B4EA10E268A34C5AC36C0EBF4815 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7D2340812F03790C705D669D0BECD8D /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3BD5C236B3C384900BE54D78F456616 /* 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"; }; }; E813A1041A763154AFD217F24E043128 /* GDTCORPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 79C2A6D6CB90249B8095C5C87E1BFB99 /* GDTCORPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E81B4FD413363CBA1C3EF0C8871AF34F /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 16D4254ADF5C3F6A41BE4F12C7750B8E /* REACallFuncNode.m */; }; + E81B4FD413363CBA1C3EF0C8871AF34F /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 11756D1E5DAA021125AE9E03335A424A /* REACallFuncNode.m */; }; E82C91CC8CEB33B774DB5E1C9E5D8FB8 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 29E7A2AB42B85B66A198276F7D9EA95B /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; E835E2397E28D09CD18820BE0D360894 /* FIRCLSProcess.c in Sources */ = {isa = PBXBuildFile; fileRef = 21A7953AE54F39EDE08EED767866B12F /* FIRCLSProcess.c */; }; - E84ABD9A0B93F64D9C7933A5EFC6C633 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = F219018012DA45015DCF19EAB4E7C1C3 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E84ABD9A0B93F64D9C7933A5EFC6C633 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = C0D47778668E7FB9D16EB61395631AB2 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; E851828779F5FC7B8B8C177DB884EC6F /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = 0306AEB24BC4B1375D0CA7810F937A03 /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Project, ); }; }; E86715E049DB72C646A5223D1367BA05 /* AsyncTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 608FB776F77192F81A2FA13081A692FE /* AsyncTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; E876DAF2BA76684D8B7601C3DA05A5FE /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5D94326297B8CDFE3AD6AB8EE90F1526 /* SafeAssert.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E88527231957C341D17DF6C918BACCB7 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CD9D731B39517C220C0D4478A442157 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E889BAA1202A6A6A17D561D0EA03F2D0 /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = 155D0F1E2BEFB2E49EF38730DD15B083 /* RCTTextSelection.m */; }; - E893729E87251274E6D1D3B51566E3B4 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = B69C7C00A5732F511B0954ABCC50E172 /* RNCAppearance.m */; }; - E8A6ABDCF3C0C5876058B074C4E29BB6 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 079800DA2EACF334AF35597194FAF376 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E88527231957C341D17DF6C918BACCB7 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = CE93C8477745682D17113E1E17B028A3 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E889BAA1202A6A6A17D561D0EA03F2D0 /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = B1750DB806612F24A8E2960C3680C7C4 /* RCTTextSelection.m */; }; + E893729E87251274E6D1D3B51566E3B4 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F6DD84D7EC2CD23AA2CEFADCB9D58B /* RNCAppearance.m */; }; + E8A6ABDCF3C0C5876058B074C4E29BB6 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F31F3905848F213112403D0CDBFB144 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; E8BD5EA5DBC41BFCA5B323A9C87DBAC1 /* FIRStackFrame_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F07A9E46FD0C2F2752683C14A8BF8CB2 /* FIRStackFrame_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8C7FC466065D3CE50FD279E21715A2A /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = F2087689D10D13039100FAEEB8160DDA /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E8C7FC466065D3CE50FD279E21715A2A /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = BDEBFB4DD6D7394F69B5F9178B6DDF02 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; E8E57DC7FD3E1405D821BA98E547E940 /* CancellationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F544917428E69389934AA67C6A36D47 /* 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"; }; }; - E90C8AD82ACBCAB7536776D26BA11D7C /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = B88CF7572FC59624D214D535B06891AC /* BSGOutOfMemoryWatchdog.m */; }; - E91AFE814DC9B57EED9EBDBB863931C2 /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1404501382CB386C5320152A48D6EC44 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E930EFA4028C347FB207A0C4EF2AB204 /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = B675A0ADBD0E25B3F1B3ED5CAB45A210 /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E90C8AD82ACBCAB7536776D26BA11D7C /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = EAE79DFBFBFC79287C9F2B59BCE461FE /* BSGOutOfMemoryWatchdog.m */; }; + E91AFE814DC9B57EED9EBDBB863931C2 /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 2991290E6EEB04FC713CA273A601DA2F /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E930EFA4028C347FB207A0C4EF2AB204 /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 9906551BAF3D78633755ADBE82C8358C /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; E94077F8910379C6DDA3AA207C762C86 /* FIRCLSDownloadAndSaveSettingsOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 75EC9DD95652E29C13E312C8FE13F59B /* FIRCLSDownloadAndSaveSettingsOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; E9420AC963BB88173D440157F5C2F49B /* ConsumerBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A0D01A52360768FC6897EAB467A0854 /* ConsumerBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9538D6C9D4813EAEC35C5BBA2C69479 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CAD5E6F474AF1FF7AAE8DF1FA61FCA8 /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E9538D6C9D4813EAEC35C5BBA2C69479 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 14CFE64DB22C8515E734CFD8AFBC47B0 /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E955BABD4485D7B2B958836126D6196A /* Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 55C2011F83AA4DDC64CD927FD8447E5A /* Cursor.h */; settings = {ATTRIBUTES = (Project, ); }; }; E98690E099869FCA322CDB7C8AB9B323 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 0AA489BE3D7EC4CF77C2829C41ADD32C /* webp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E98FCF4D10636570A0DA1EFE3CE47A45 /* RNFBCrashlyticsInitProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 31D0D18B5D9D3B7F294402FC5289F1FE /* RNFBCrashlyticsInitProvider.m */; }; + E98FCF4D10636570A0DA1EFE3CE47A45 /* RNFBCrashlyticsInitProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DCBCAAA1C5B8CFBA388A0B189CA71E0 /* RNFBCrashlyticsInitProvider.m */; }; E9A824AE0E78956A27149966A7E03D42 /* SKViewControllerDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = D9637F6F9E5D3EEC9D14D0BC7D5FDA17 /* 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"; }; }; - E9ACBB81BB2D21567E75CB08C2B132A4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 51390823E553441028A6FCF5E88F91BA /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9ACBB81BB2D21567E75CB08C2B132A4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = F0C6B5137991848A85D0CD16863BBE3A /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA0FBF913FD0E76C393BC35D6CF6F339 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = FA03B0E32A0C529E05F4D69DD7243387 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA1177A39135D58784EC37A4E968A7C4 /* SKButtonDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = EEBBC047CE8C4E65CCCAEF93395AF909 /* 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 = FD88A1E55DCA511E43CFE5EE6BAF8026 /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA82D914F7C4376FA679563B04C8C252 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 2821567518024875EA0FE9DE47F759F1 /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA87C832CF6E91F3233B9E41993D100D /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = C54B454D6AAC14D6C0EE7A5D4235273A /* UIImage+Resize.m */; }; + EA87C832CF6E91F3233B9E41993D100D /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 74AE01A5E95738B5A672C5BD0D6D891A /* UIImage+Resize.m */; }; EAA2B4C60F7BDB41A80308A76A4D9848 /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FCDAC116F2F1C9BCC1E86AB1DA69FB4 /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; EAA8A9E74453CE1C374EFD94C1B7098F /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3D71CDCA1654949EF0014FA1F5873DB5 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; EABBB15709D35D5F8EA21BC4880847C9 /* UICollectionView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 47719EDF68F328D934B38195153BB06F /* UICollectionView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; EABEB2DE7ADB678B7E0DCFFBB64EA5F5 /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = DC6A9ADCC13FD83092A97CFFC08CF82F /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; EAC3C6074678F577E47481233D845A7F /* OpenSSLVersionFinder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AF70313D7D290F3F9DE0DAFC6BBD307 /* OpenSSLVersionFinder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EADD59C554DA8E2CA0EA369DE78914EA /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 5FEF2352D2144A3C571293429FCDA8FE /* RCTProfileTrampoline-arm.S */; }; - EB0FFB8AB196A5D2E91C3B846CF0BCF4 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = C77C9FBBCB438359DBDE6B871BF7983B /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB1040C3BACA0BB67C3278188C50D802 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = E2C1C9DDD2E9FE2340E0EA49FFE6D2FA /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB15609268E86B4D0F86331DBA9B9028 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 59965455D74C0B438124F5835829913F /* REABezierNode.m */; }; + EADD59C554DA8E2CA0EA369DE78914EA /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = D17D4F57B1C655FAAEC659AD35B8F9B8 /* RCTProfileTrampoline-arm.S */; }; + EB0FFB8AB196A5D2E91C3B846CF0BCF4 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = CACA43D7BF27B12F7FE692E8B266B622 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB1040C3BACA0BB67C3278188C50D802 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A746830C36F524041D35A9875F9BC87 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB15609268E86B4D0F86331DBA9B9028 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D709346227CA2AD202AF96E58B646A0 /* REABezierNode.m */; }; EB2C44784270DFBA3B582FB79FB0B4CA /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = F98B8C80BAFE81848211A2B082408C5B /* alpha_processing_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - EB49C5BA84A9241B4A2FD914CBB83B70 /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FC5884C82AABE2EC8332BCB64221E9A /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EB710D2C273757D2990DD2259396D5D3 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = 81F11EEDC14F7C4E2AD6F2CCEA310344 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB49C5BA84A9241B4A2FD914CBB83B70 /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7CF8B3166B0FF5F6D465D0C826C4A4FA /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EB710D2C273757D2990DD2259396D5D3 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = 50F5CAA70BB1BA26998D5B713D91C06E /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; EB78DF06626706A548B14F9714BFCE81 /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = F28DFDC5960D4529CD17CFEF080E911A /* FIRConfiguration.m */; }; - EB94E713B05C06FC5784C9D426370C86 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2514C82C07D8F8357A30EF31C34F9E65 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A2DFEB156864F57DBEF42F4071B1EBA /* RNGestureHandlerEvents.m */; }; - EBA878971E9F0642C4A9BB01CC1CF5CF /* EXKeepAwake.m in Sources */ = {isa = PBXBuildFile; fileRef = ACF96AD73B645DC5180BCEF311D6C93E /* EXKeepAwake.m */; }; + EB94E713B05C06FC5784C9D426370C86 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = A5677D7CF54E83BEDEC8DB86156DB6E7 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = CE92F9D67E3F9B8FFB96D0BCB42800DF /* RNGestureHandlerEvents.m */; }; + EBA878971E9F0642C4A9BB01CC1CF5CF /* EXKeepAwake.m in Sources */ = {isa = PBXBuildFile; fileRef = 33908E4F998C3F161A63C4BD11574B38 /* EXKeepAwake.m */; }; EBB0B32AE8A9FE7267668D1F2DF10CE4 /* FramedReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 246D544B1A69EC0F055B8457ACD4C531 /* FramedReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; EBEB8E966F0000E5B9996ECAAA718A72 /* fa-IR.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 72BA6DE823ED11B26089A421120411D3 /* fa-IR.lproj */; }; - EBF611C9DC3CABD7E29C5B423E167DC6 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 501B1F9E038601FBD2E2DD684A90B5D6 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EBF611C9DC3CABD7E29C5B423E167DC6 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EBAE94D498C12976D44660A24F324ED /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EBFDE9B13797036B29AD2F803D62CD5D /* RsaFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = C30105D555B17C02F5E431DD902F8CC3 /* RsaFormatter.m */; }; EC60D5885663C26EC9E47C3CBEC60DF1 /* Sockets.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4458140E6D2028D79E668F93BBC2D1C /* 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"; }; }; - EC6FEA75CC5E02F4EC760C49A764BF56 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2501712FFF7A2530FBA2F2F040E5EAC5 /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC6FEA75CC5E02F4EC760C49A764BF56 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F5AB2E32FAAE43B89B91433D65C1FAF /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; EC7E6F8893A892C6B2B9C4EFE90D5452 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D3AF1808495A2065CB67DF9B2DC375F /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; EC90A4E51EF3B2F0B3EBC17E4880A9C2 /* SetupResumeAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF44DB3BA93A422D2426F319941BA646 /* 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"; }; }; EC97CB108E671D75C839203CDCE70E3E /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 074D4A4A9130C19A9F5949A72741FFE3 /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC9C2D92DCCD546C61F62AD33DAADB73 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 192683E949AF1D2610DC723ABB0A0228 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EC9C2D92DCCD546C61F62AD33DAADB73 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = BE962801C192A4B5C58CC93EE76E4BDC /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; ECB6B7BA94B66641FE3315168B7D0F3D /* FlipperKitNetworkPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 41227C78FE12E5BF01473A6F8BAD0F69 /* 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"; }; }; ED241C44D1BE21C144A33B37AD586BD7 /* EventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C3989D4ABB04D0A64F86389304BC5D61 /* EventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; ED31D2231242DCE2DAB3492A23A54349 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 5038CCE02C5B29F4CB7BF5020F2F81F0 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; ED368130DB855003BACEA28F8A340D7A /* OpenSSLPtrTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 31A9B41A3FBE3A46897085F5D47B72D8 /* OpenSSLPtrTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; ED62691B003B2C54B15DD706EBD7FA6B /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 01C81E114DEBEB3CE8A88939DF4FAA9B /* histogram_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; ED95751FEA58215AFA04947C656EF88D /* ColdResumeHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A01DA722C61FB4D44F6A702AC8CF078 /* 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"; }; }; - EDA4F24FC4EA7EFD49E6E768EDD66BD1 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 39E83F686D7D84C65FA7EAA7041144F1 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDA4F24FC4EA7EFD49E6E768EDD66BD1 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 28C0F345255694EE5B845BAC11D2F9BB /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; EDC979A9D849201D6DBC483E8B92354A /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B7BE8F2D52CAAC1A1A0D5FA4C11331E /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDD233C9479285705E6B9089299C576F /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = E4F78EF9B22CB4410D26717C4AD41513 /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDD233C9479285705E6B9089299C576F /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = CAE325D44FDA7C1A7B388037506C94D8 /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; EDD81D5D065ECC3489D1E01E230664E5 /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 64E9038FA03EF60BC9D81D7B541D1F9C /* SDImageLoadersManager.m */; }; EDDC688091DA36B599E3070AF38C8E58 /* SKScrollViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 42B27763ADCDC1680EA0DD97F8F26369 /* SKScrollViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDF498D208004568FE66A61A1AB0A557 /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 132A5078717FC91D9B2D0EC41ABE914A /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EDF498D208004568FE66A61A1AB0A557 /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3398B9FD014CF6094ABBF459201EA334 /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; EDFFD7558303EBB109FEC50A5C046509 /* FIRCLSCrashedMarkerFile.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D27532401A51A34C1A13132C34C219 /* FIRCLSCrashedMarkerFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE1C06DD01F149D622523DFE51E65C41 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = E507C5FD255553A749C8EFC6424CA581 /* RCTMultilineTextInputView.m */; }; + EE1C06DD01F149D622523DFE51E65C41 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = CD3F1AFD73DFC9EEE504983BE9768173 /* RCTMultilineTextInputView.m */; }; EE26C68BA1E4A373F6AA58F711E44168 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1579E525EC6E635D5103C145213B381D /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; EE545CCD58E4A2E2390092397FF90035 /* DestructorCheck.h in Headers */ = {isa = PBXBuildFile; fileRef = C617F30F38D7264BBC69D87465DAB6E4 /* DestructorCheck.h */; settings = {ATTRIBUTES = (Project, ); }; }; EE6BE6092C061EB63937F805AEEE9D40 /* FIRCLSUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 390F7D62151F3EA2D4859C7539AAF535 /* FIRCLSUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; EE7F301F7EB3117BC1E77E72245E3FDA /* Sse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC46FA42142EA5C958585925BD6A4690 /* 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 = C453D6935668B31A88214650D990B85D /* 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"; }; }; - EE905AFF52F9B74FA85C761F03DCE8A4 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 58BE9A060DAC9EBDE39709D5DCC17757 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE905AFF52F9B74FA85C761F03DCE8A4 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B619E995571D38B8DE3E9A0CA6F6E7C /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; EECE8417F87A642504A215B21A1BD894 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 90A101C1BF62F8015950FE51820C9005 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; EEEE7946609F4EB86E6A6971970E1A7C /* DistributedMutexSpecializations.h in Headers */ = {isa = PBXBuildFile; fileRef = B8FA1BDFCA7226956CF2EEC8AF63E901 /* DistributedMutexSpecializations.h */; settings = {ATTRIBUTES = (Project, ); }; }; EEF97C679BEE5F2A9C7F7D95720C9AF6 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 592937387A8E9082FA2D10A40E1EED21 /* lossless_enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; EF01BB9A24DE8FC2D257B34F391FC5E1 /* FIRCLSdSYM.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F6C17F149C53C8AA14FDD3901B51759 /* FIRCLSdSYM.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF040B9CD7BA50080DC1780BDC9236F3 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5175740F17A5CC2C16CEC2CBD1CEF513 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF040B9CD7BA50080DC1780BDC9236F3 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CE6C71E81A3421C2F847E1D1C738018 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; EF0BEB03832B6EE08C1A5B8CC1007A9C /* SanitizeThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CC2419D1E848812600A0F87DE6BD33A /* SanitizeThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; EF11639F4163606C334B78456636022E /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = FFE6E8C786BBE3BB5B6A0479A2E53867 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF117E71F325A70F113BF280B230449C /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = E53093268FF499F2B034BAC7A6B2AAE1 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF117E71F325A70F113BF280B230449C /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 920A4A1D7E30CF2F6A466C6DE5927C0F /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; EF22605AD9E69B3DD5D66D833CE2059D /* ExceptionString.h in Headers */ = {isa = PBXBuildFile; fileRef = B419D9B36020C7037A307DD6EB37644D /* ExceptionString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF5899B0D4193349FBF756DD61CBE8CD /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B7E2F239C8FFF859F2A01A2FA0E32394 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF5899B0D4193349FBF756DD61CBE8CD /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 281796CF58FC51481141FBB53E083A88 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; EF6FC5B8C01048CA9C2F2F96CFA6C81C /* FIRCLSUUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 96F3280EC2ACE76E96BFBDD0D16DEA5C /* FIRCLSUUID.m */; }; EF78A78AAD79DFDE72D424FF8F35DB23 /* GlobalExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CC85EC7FAAD59D077810D1D2CCCE4CF4 /* 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"; }; }; - EF8E5F0797808048CADFC607D7BCFE5D /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 89934B9D4927DCE9310D7C45B12B7B3E /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EFA2192B074A6AE5BACE7456B28FC075 /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 55B60445B564430D8FCC6703A32A708D /* 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"; }; }; - EFA98193F4243EA8303D6508F5ACFD3F /* RCTLogBox.h in Headers */ = {isa = PBXBuildFile; fileRef = F1652A4C1A9C832A0FE94E037EB052BB /* RCTLogBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF8E5F0797808048CADFC607D7BCFE5D /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = EB3B14FE9CB7128A28A56F851854B63C /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EFA2192B074A6AE5BACE7456B28FC075 /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 41DCD030056F0B4E4962EAE0BFDA0FCF /* 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"; }; }; + EFA98193F4243EA8303D6508F5ACFD3F /* RCTLogBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 55BA7916B742AC8CEC530CC91B169759 /* RCTLogBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFBCD28CC96CC7D7629CE6C73653B2FF /* FIRCLSReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 35C794FF5DAC4896B30F9F73BBF1157D /* FIRCLSReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFD68E385A78185DD955ABACB421ED01 /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BCCF8FE3129240D5E1CA436BB461A65 /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFDDDA86D58A5A3B5A5C52CD2E4684D8 /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = C9B2686D36ADF4DF858FE6E74E729BAF /* random_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -3133,50 +3159,49 @@ EFFF616FD9B0B9494F7242A085F23A95 /* NotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A9D8B5A5ACDFEF9FE69B3333035EB63 /* NotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; F026131495373C5DE569B201034D9101 /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F81F8ABF465B60C8D272535E23F4818 /* cost_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F029DBE2241C707F43B4AEF3919C8C0C /* NestedCommandLineApp.h in Headers */ = {isa = PBXBuildFile; fileRef = D6F59D495EA402CC8014E131087820ED /* NestedCommandLineApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C8E7806004C4DC8DFF006B2AAB08738D /* RNPinchHandler.m */; }; - F0552CB46A90D3030EAAE47B66962B44 /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = 52D609398B2F685E567D116134F67325 /* BSG_KSObjC.c */; }; - F060BB0A99A818871B4FF4CDDE8131E6 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = DB734CDD85DE035D3E3648615C166C51 /* 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"; }; }; + F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D72DD647D416808BF34974162C736FA /* RNPinchHandler.m */; }; + F0552CB46A90D3030EAAE47B66962B44 /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = 01B89DB928C2C8DE27EFE0F02E24BA81 /* BSG_KSObjC.c */; }; + F060BB0A99A818871B4FF4CDDE8131E6 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = B8BEFEA43B969B5272884B286965FA5B /* 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"; }; }; F062B79236AA526A32FA60C8582C91A7 /* AtFork.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF65D9B11D6F359DD6F8BDBD7A62082A /* 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"; }; }; F064F5A353BC444A596AD767859C7E3D /* FIRCLSReportAdapter_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = B496DFF7D0BB3686DC6EC9DDE2163B8F /* FIRCLSReportAdapter_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; F06D028A6F88B5E5C99E9486691C1816 /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F00CE382FC97B23F198F2EF91229C8C /* SDImageHEICCoder.m */; }; - F07371A2BF65324D8562074250CF350D /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 70A7AA0CF634AA09014F3FB65CB56925 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F07371A2BF65324D8562074250CF350D /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = E98474B5BD1600E5D6C37DF8ADCBC991 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; F089F83DA2C72E81AD2B58C6535A6626 /* Executor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61B17AAA64F910027FEEA9DABFDFB34B /* 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"; }; }; - F08EF621568D6C92035F64B33AEC59C8 /* RCTLocalAssetImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 856F519FB7E58FD7B2108F74EF0A1A1B /* 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"; }; }; + F08EF621568D6C92035F64B33AEC59C8 /* RCTLocalAssetImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = F1223FFA5A218A24BA119E796EB96043 /* 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"; }; }; F0A43A4B163BF7CDF1684938F768C1D5 /* Synchronized.h in Headers */ = {isa = PBXBuildFile; fileRef = F0F8A94287F4DC9CAB895057C1501197 /* Synchronized.h */; settings = {ATTRIBUTES = (Project, ); }; }; F1077AB8D86DD9D6C3C84F7EB71B01FD /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DB0EA054562F72CC84C74D6F5E01E43 /* SDWebImageCacheKeyFilter.m */; }; - F11FC2CA1B4985D0A99985893A55EA80 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0F1C722F4B456CC98E1A59E169555EDC /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F11FC2CA1B4985D0A99985893A55EA80 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = E6327942D019CF4C0C0528BE4CEC9236 /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F1270B3BF10D921BCFC9023E8D24D71D /* LockFreeRingBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 16C81446AB6763731F3465143146C7A5 /* LockFreeRingBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; F128E5421AFDD733B6EA5E6DC0BDBBBF /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 8696F258B45090E3396F2D3363913CBB /* dec_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F13D5204BA38F81E8AABCCEEFF2EBB49 /* EventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7C3160EF2F747B2440F1A3C5FE058D /* EventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; F14AEB46631F4B9EE89D67F568E6713F /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = A3167313ECE7FD9005A4185BF31DB2EB /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F14F3611C17F09635194628971D7D0CE /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = AAD5E595AF2F03838EEC047E74643F8E /* 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"; }; }; - F15EEC0BB24783CE4BA749F8D9268035 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = C435C76EADB943EB9C2B899EDB65C8E0 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F14F3611C17F09635194628971D7D0CE /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EA010D4718C61DB673DBF4FB80811FD /* 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"; }; }; + F15EEC0BB24783CE4BA749F8D9268035 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 522E6FF98519B1462C6426A6C0D7CA11 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F161334CFD6395BBE0856CEBF4DE186B /* WaitOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 30A39872B9BBD02F4762B6A106F3648A /* 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"; }; }; F165EDAD91DD10268DC4ABD69FCA84F7 /* GULHeartbeatDateStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 256F7DB27ACB7D7FA896C141FB145882 /* GULHeartbeatDateStorage.m */; }; - F1861F0B801CC50205C1F7C444A3FB42 /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = FD2022CE8709BF25A95565699B9E4EED /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1861F0B801CC50205C1F7C444A3FB42 /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 5592D9102B1946F1E2951AE96ECFD981 /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; F1964D3CBC02560AE36785B0F166FEE2 /* FIRCLSDwarfUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = C98EDB5D7FC65AA16888B7C5F5C0B236 /* FIRCLSDwarfUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1A2DD210F5AEAC81A8D438321D1A16F /* EXResumablesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CB7FAEBA9D689C73A940EBDAEC58B625 /* EXResumablesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1A2DD210F5AEAC81A8D438321D1A16F /* EXResumablesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C7922B598A8816128E19340F2BE2857D /* EXResumablesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; F1CFAD1BBFF7E0BDA26021957C170257 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = C096C897C4DDDD531EA3E0EFBDA11B31 /* vp8_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1D29EEE977196CF2060E83F8D6DC9F4 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = F398B91E8838747B7ECA29A66CD5B25B /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1D29EEE977196CF2060E83F8D6DC9F4 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 895142227D5E1DCFE5188DA32DFEE118 /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; F1D8204CAEC154C28A303A0B0E0D8B7A /* TimeoutManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DFADDB9096EAE269A1047ACDC3909543 /* 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 = CF8DCCE23CDBAB54A36458A4E4D5EADB /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F219A70CF27FA9A9415A213BE789E6B5 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 745454FCA2F5FFD4F63F8780BEF4C6FD /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F225E0A4C81CB21377BEFF6BB385D094 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C44288E4F9D989101F85D6BC24EA9B5 /* Pods-ShareRocketChatRN-dummy.m */; }; - F242BAB0E83DD4405CC1FCE0D2D9B7BA /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BEA0C29C88EAFB371FCBCBAFA61492A /* RNCWKProcessPoolManager.m */; }; - F252EE542CF5FAC448CADE1D81F56DF6 /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D674A3976574A3B46BAA6F260B8F4D55 /* RCTCustomKeyboardViewController.m */; }; + F1E1333AEA9A20A7D09582045666A987 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 454B54B7087E41A573880B5678B1115F /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F219A70CF27FA9A9415A213BE789E6B5 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ADAD52576EE9CBE6504D65A100308C1 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F242BAB0E83DD4405CC1FCE0D2D9B7BA /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A979BF7BF56746A069E2BC3516257E7 /* RNCWKProcessPoolManager.m */; }; + F252EE542CF5FAC448CADE1D81F56DF6 /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EF2845ED692CD22426BA122C6EFB3A1 /* RCTCustomKeyboardViewController.m */; }; F255767A43EB01B5324B1B7536288503 /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = D52A0BB4D92DDC9B593AF5C5AEF7FBE9 /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; F26D41F01E683998AAEC1A00C470EB59 /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 389A2F106242A1700788AA59486109C4 /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; F277DD730C5DC4670DEE570B9E364BE5 /* FIRCLSURLSessionDataTask_PrivateMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = BD61C89570B5A88E2570EC349EF795FF /* FIRCLSURLSessionDataTask_PrivateMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2945935232CD99D498FB3FE1736D00E /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E0048B2497147AA4895F2EA369A04B9 /* EXFileSystem-dummy.m */; }; - F2BB2DE2C45DD98C2F6464408C4D3532 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = AD50CECE3CCFF5A4DC48B6D5C0A607B7 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2DB009793E935272AA918B905E0008D /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = CF2873E4B2CEBD2FC34DA56588176ED4 /* RCTInputAccessoryViewContent.m */; }; - F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = F350944EA40CEADDF0F4C7171F813B59 /* RNTapHandler.m */; }; - F2F6974CB2911E6E418367E261E1CB4A /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = E501194E937A3BFA2518E6A318AF5C0B /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F30EE47AEFB6C802DE984F833AF2E8A1 /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DA4E2C2F9097E387CE2E133BE46A2E6 /* React-RCTVibration-dummy.m */; }; + F2945935232CD99D498FB3FE1736D00E /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A8CC09998BD35D6727E081D22D1EAED2 /* EXFileSystem-dummy.m */; }; + F2BB2DE2C45DD98C2F6464408C4D3532 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 20F99F7CC514037A5B67989AB5004552 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2DB009793E935272AA918B905E0008D /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 94107D879BCEB21762CBDC99DAB6E41E /* RCTInputAccessoryViewContent.m */; }; + F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BAF23C946EE11A743E0133F6D4DE059 /* RNTapHandler.m */; }; + F2F6974CB2911E6E418367E261E1CB4A /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A95002F1882C006E3D362CE26A656E2 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F30EE47AEFB6C802DE984F833AF2E8A1 /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B940B2BC2F80F750B2D3E98D7D49E910 /* React-RCTVibration-dummy.m */; }; F32F2C636023C27F22172F64D4D1936D /* EventUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 84F345CAFF57A670A6E8ED740FACD476 /* EventUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F33C3F5A2DEF21B318B13E1FA9513B5B /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CCA445C75B442CC0833E539B3948F610 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3760352C6E2106593BD9B3363324DFF /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 80EF70DCCE7665BE25CF10B6C2C26C27 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F393DD4C89DD0E8E5458A560789491A4 /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B9706CFF0FD41D5E952E02D40AFE565 /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F33C3F5A2DEF21B318B13E1FA9513B5B /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CBD3620C5B220F156AFF3553B144A2C /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3760352C6E2106593BD9B3363324DFF /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = EEF9C253E10CCF846476FE128A058BA6 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F393DD4C89DD0E8E5458A560789491A4 /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 31B7579B8EC1A7AE35CA76444EB64945 /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; F3A009B81FF8A92B347826968ED9AF1E /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = CD4FFA9FFC507CE5B36986E997018FCF /* demux.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F3B34CBCC961EF36E3ACA1228C478F39 /* FlipperConnectionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 22758F44D32AD04450E19079C740C6EE /* FlipperConnectionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; F3B80E2B758010DEDA95D8CD4B00CB84 /* OpenSSL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C32D1847F790C890FF54165A3577E950 /* 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"; }; }; @@ -3188,8 +3213,8 @@ F4354D6C88C4F7CFDDF66638852FE083 /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DDE6268D4CFCC59232D05F80DED657F /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; F43EF5DB5AC2D8D783DCCDD92DEF2232 /* HHWheelTimer-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = AE7F4E89ACD757D1414078813800BCC1 /* HHWheelTimer-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; F444CF6C93B81884CF0CA3309DCCC8F5 /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = B5A91E6264A8A5A08D257204360C922F /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F473CBA9591B30E13DB1413498313348 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 327C7A08C522C7C67B2A82ED9E74242C /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F478015B710CAC703BD59AF8CB9D2791 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2103DD4CFFBE30E3B847E50B74EE0097 /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F473CBA9591B30E13DB1413498313348 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 556926480456AAB0A39A0D00ECD7DC05 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F478015B710CAC703BD59AF8CB9D2791 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = A4DEC320CA763FB8B1568A52946CE756 /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; F48A0381C51B2F0D24730133B0C5D5FA /* GlobalThreadPoolList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D0F292DC9D03A66EAE4CE1EF2528CB4 /* 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 = B919AC00C231FCA8B3216BDE1CA1EC92 /* ColdResumeHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; F49F1B5A4B1DA201D133771E9923D648 /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = B0117E01F7E3F2005550463BB87253AC /* webp_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; @@ -3198,54 +3223,56 @@ F4FA192DF8E95C26C55DAC65EE6B310F /* EmitterFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EFEBCD1C1538F3A6D9F55E1236D95AF /* EmitterFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; F506CCC7C34A049D1253C979B7807514 /* SKNetworkReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = DD6CBAC7265A674A7DC4821652763024 /* SKNetworkReporter.h */; settings = {ATTRIBUTES = (Project, ); }; }; F5106A9D245E7C593DA00BD467654ADF /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 446493CFD0C6CEE379392E362B08E9CF /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F518CDF6FC7F5085F4C33D36E71E6B35 /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 83CDE58D5FBF2A177AD8AF13164513D9 /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F518CDF6FC7F5085F4C33D36E71E6B35 /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 03BF0A90CF65FA59B2E90198B802CD0A /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; F52336859BB9F756E055C93AE2968A87 /* TOCropView.h in Headers */ = {isa = PBXBuildFile; fileRef = E35155B42AD8288D023953AA4B15D449 /* TOCropView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F523644CE74F3F365E8C1E26EE20FE0F /* GDTCORTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 9704D4A31BB885EA1F89FD4630AE3B2D /* GDTCORTransport.m */; }; F5254D7669A08E6C5EC0EF0BA4AE59D9 /* FIRCLSDataParsing.h in Headers */ = {isa = PBXBuildFile; fileRef = 7019BE6F2D6A11B8C865FE227BF87C7A /* FIRCLSDataParsing.h */; settings = {ATTRIBUTES = (Project, ); }; }; F5292BB5CF2C799435F4B1E53237DFA4 /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C3DF31F31BFD595F0FF72EADD21C14B /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5461BEB4C9D9CA55F6CC819DC1E4E79 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A5C96A1C11DB3ED91606C4295CE5004A /* RCTMultilineTextInputViewManager.m */; }; + F5461BEB4C9D9CA55F6CC819DC1E4E79 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A320A3911341C5140ABE961520BBE0BA /* RCTMultilineTextInputViewManager.m */; }; F555F8C238747A97FF295FA277B84567 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = C8F503D43AD34E7D7A4E826535F57AB5 /* lossless_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5569D7601768A0E8A97A9EDE6CCE8E0 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 7517F6785EAF523E0B35CF8D35F9506D /* RNNotificationsStore.m */; }; + F5569D7601768A0E8A97A9EDE6CCE8E0 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = B07ACF687700BE6CBB826B6777AE4311 /* RNNotificationsStore.m */; }; F557D614321C8F93BE3F898A9BCAA82A /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C726E05B4F05E6451476515A1092F10B /* 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"; }; }; - F55AAA8E0EA9C9CAC7F32F6391C66828 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 434261158EB5302CC074E0D9AB6F6442 /* BSG_KSString.c */; }; - F5716B71E408328E02A7D09CA4FBDACA /* RNFBPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = AC5B50A9A39C315EBC6182D6DB59056E /* RNFBPreferences.m */; }; + F55AAA8E0EA9C9CAC7F32F6391C66828 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 85152428D8B21481787B9DE6A47B1B73 /* BSG_KSString.c */; }; + F5716B71E408328E02A7D09CA4FBDACA /* RNFBPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = 1605C9EAE0DEE3CBE60D46E9928104E6 /* RNFBPreferences.m */; }; F5978CC4D77598D1A49F9D24FA00C184 /* EventCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 25BE401A75E8670829B853400D0421F1 /* EventCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5BC03175EE7232A1912FE3CDDCD970A /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = FC71A00FA060F57793E94E9200EEB2D7 /* QBVideoIndicatorView.m */; }; + F5BC03175EE7232A1912FE3CDDCD970A /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = D99400D4DC6E0AD110A8A92A8577A89E /* QBVideoIndicatorView.m */; }; F5CCC2820D92DA02FC629CD7A119C9E6 /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F00EDCD269A21E920C3C2826B45E05C /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; F5D8D91CB3F9C56E62D0576785A26819 /* FirebaseInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = D0E937DC56A82C3FD397AC2B9C6CA46C /* FirebaseInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5E6629EE09FD61F74EFA87FD5FFFF1B /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B051D85376D40D49CC0BE842A3DA5FC /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F5E6629EE09FD61F74EFA87FD5FFFF1B /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 19AE8A77D2ECBCEDF312264CB5105325 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F6086ADBCBE0EF97E2FEAD8C5415439D /* MemoryIdler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 414DFE8CB8A396E7C28F380CFFBFA5B9 /* 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 = 851B54F330B9717D1DD606ED30512BA0 /* UIColor+SDHexString.m */; }; F657530EEA9AC9426F2F7045A997234F /* Singleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E937E785B312959005739495C040D53F /* 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"; }; }; - F65BC508CC7F01D9AE11B7A5FC011ABA /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 480390D428F4E32DE30B133D02909A91 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F65BC508CC7F01D9AE11B7A5FC011ABA /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 33EA54E898E5CAE199E7654058234757 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; F680A09D6874079978F4C5CAD3748BF4 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F6561E3F265A1D5850ED9807D713DF2B /* fr.lproj */; }; - F6A08EBB2786817789F85782D918A2DB /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C0AC5526C17F630002EFD6125097719 /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6A08EBB2786817789F85782D918A2DB /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C1D2430316CBD16AB89639D699E474E /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; F6F66797F0FC78C2248492479CBE62CE /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EFAF6A782701FE357235EC92BC286F99 /* 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 = 55D8493FE613EB1B542F98A8B4230806 /* TLSDefinitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F71009C4536A27002D076CDBFEAB8B0E /* BSG_KSMachHeaders.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F83739093BCCFAE205C9136BE161A71 /* BSG_KSMachHeaders.m */; }; + F71009C4536A27002D076CDBFEAB8B0E /* BSG_KSMachHeaders.m in Sources */ = {isa = PBXBuildFile; fileRef = F1A524568ECC5352902538AB8E44E8BA /* BSG_KSMachHeaders.m */; }; F7141CF921934893B165972EF3CF53BF /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = AD5EC6741D9CADA0C823A8FCF5460C05 /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Project, ); }; }; F714A528842E6AC83C6A9282ABE869CD /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = FA82C05B69A05871A507E87CDC332270 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F72A290CFFE4FFF5B6E75CE55490C392 /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = D6C5597DE25F8E7626314E989E46E869 /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F72A290CFFE4FFF5B6E75CE55490C392 /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 68BCB8E2DFD66A5A7CD65A2DAA4A220C /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F73F0A045B9EDB72DE99845E0C04AA3B /* Rsa.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C906F762E802CDE135B348A278004AE /* Rsa.m */; }; F75DC605FC8D1F7681541CE667AB7CB4 /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D288AFE463AA20280B392AACF944EF72 /* huffman_encode_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7792BF3636610713062788116665BF3 /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AB2925D8C2603401461F149542B5552F /* RNCSafeAreaViewManager.m */; }; + F7792BF3636610713062788116665BF3 /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C79C7F37666022CF39C5F90280C4FDD5 /* RNCSafeAreaViewManager.m */; }; F79075F88B5F0A11693594549A7B8C5F /* SKScrollViewDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = DA2DE3757EB80813FE0335992D2801E2 /* 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 = 37C6DE82423B5DF445238E521397F88E /* ScheduledFrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7957488A7E05B294D0FDCB86F08DE8B /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 10978F432AF4EAAD7BC8D6CF923B2CCC /* react-native-slider-dummy.m */; }; + F7957488A7E05B294D0FDCB86F08DE8B /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B41FBD7F6CF25150FA96D491254ABD65 /* react-native-slider-dummy.m */; }; F7A64B1A662F62B2B52185C92B653CC9 /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = 8423966CED67725A82187FB62E77A69C /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Project, ); }; }; F7AA02141B7C9712F22D1023EE2FA272 /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = ACAD98DF8A6ED7B5051A3D0232C1C329 /* syntax_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F7ACA0219D0817840C5BDC9A69E4BF5C /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C4B488DCBE297BF27E5027CA04CD1C41 /* 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"; }; }; - F7BDB07A4A5F108754DD90CC9A907A43 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = 14FC13817F76A9E1878059266BABDA0E /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7BDB07A4A5F108754DD90CC9A907A43 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FBEB1ECEFEADA407C749A1E1ADCFE23 /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; F7DB28588EC66275F9EF5B5DCA2330A8 /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 23EC78D9E585E6FC3B84966F8990DC32 /* GULAppEnvironmentUtil.m */; }; - F7E91880C97DE47E2B17DBDA5B8F9966 /* RCTLinkingPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AF66D72B5D6952C34E6C65E90CF41F8 /* RCTLinkingPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F80C986987B98CBEAB69F7AADF7F696B /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E0F7EEE9DDCDFA5D9EB9C5B049E7FB6 /* RCTBaseTextInputShadowView.m */; }; + F7E91880C97DE47E2B17DBDA5B8F9966 /* RCTLinkingPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 9112E2FAF4D576BAE202B4F4281B5FF5 /* RCTLinkingPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F80C986987B98CBEAB69F7AADF7F696B /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F0B2ED39A7FD3B15258303FBAD4EA77 /* RCTBaseTextInputShadowView.m */; }; F8382867AA53861CD193DAF210EAE2DD /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 114BD75B686EA1B03D9B45F94A22306E /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; F83D6DC16A3DDE2C67D8E9F41EF111A9 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C6B584E70EA23D8AFF7CA9B95886F3E /* yuv_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F868B0F2EB72D34861497F45B6754CFD /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D6E677AA069F3B2E0C95E2A3532E7545 /* 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"; }; }; F86BDEE0D96DC60283796B6F863E564A /* FIRCLSSerializeSymbolicatedFramesOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CB9B22C72AA59D0A6AAC17079BACD05 /* FIRCLSSerializeSymbolicatedFramesOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F86EC2AE204708776025E99A560BD464 /* RCTAes.h in Headers */ = {isa = PBXBuildFile; fileRef = E7FE1AF035593CE875A5CA47B864A2DE /* RCTAes.h */; settings = {ATTRIBUTES = (Project, ); }; }; F87291CF6BE44C7D989180B811879180 /* ProtocolVersion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55FE544AB1285C52E46E7AC052098713 /* 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"; }; }; F89E3730A9F2FFE81F7F870BBA9EB924 /* FIRCLSCompactUnwind.h in Headers */ = {isa = PBXBuildFile; fileRef = 02D12BED99C08C449134F3ABA2D7312E /* FIRCLSCompactUnwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8B02098A9ED6DA1336E35FC2E2937E0 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62A0B2B2E8640538334C1517D268C700 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - F8CE0653087E1B5A8D3BDEBC4D9AC6C1 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A5A72C91B95BBE1B5764C5113D1042ED /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F8B02098A9ED6DA1336E35FC2E2937E0 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA45DCB66A546613091AB4B5E18C0C9C /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + F8CE0653087E1B5A8D3BDEBC4D9AC6C1 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CB60E2C44F5337D7A4F109C9E680E98 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; F8DB5DE2E38CD1A3156CE3DE8EDB3FB5 /* pt-BR.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B2AEF8B48EF07823C59E4886848C58C1 /* pt-BR.lproj */; }; F8DF4276E3FB3B7C5B8439933EF119CF /* FLEXNetworkRecorder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 633737D6994987500E6EB4A6C7579466 /* 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"; }; }; F9231F6B75F9828C1E7E7BACA93EC40C /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = A081FCF8E24CE17EE6C1EF96819E169F /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -3253,89 +3280,89 @@ F942FD556E631FA6501AE10641961074 /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D1C4ADAF03A7DE74F168C5BE8AC730 /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; F978ED42F40D061340DAF5CD22373734 /* GDTCOREventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F5B32E3CA7B2F67B639D90AFF94E9E8 /* GDTCOREventDataObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; F97BED093A11441ADBF6C0E05D48E8CE /* ProxyLockable.h in Headers */ = {isa = PBXBuildFile; fileRef = EA689CB45B9255133B5191E3C67DE789 /* ProxyLockable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F97D19A1506555DC36F3E885262E13B2 /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 9989D8FF156402DA473B382F354E8546 /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F97D19A1506555DC36F3E885262E13B2 /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = C2E5D1F1E35AC184AC035DF596842089 /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; F9825A64AE0EA188A375ACC599B19B8F /* FIRCLSSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = E0F605EDBA48EE3FB4151B10849A2C0C /* FIRCLSSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F99C6EF148A5F929C6714A10414821BB /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F12B59F9DF6782E82843788360369FA /* react-native-jitsi-meet-dummy.m */; }; + F99C6EF148A5F929C6714A10414821BB /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 045627483BE41B9F29A5EF1C4BD3D29E /* react-native-jitsi-meet-dummy.m */; }; F9C79E07315E4101EE1E6284DBE96B6D /* json_patch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DCCB7B5B285B545249C9E330DAA4275 /* 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 = E318D17E660F6CA73A545BC8D003CF6C /* DeferFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; F9F5491A40F3CD7B492D73AFDCD9B8CA /* FIRInstallationsVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 42D0C29061CC820FBCD9032916798682 /* FIRInstallationsVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9FA39DEE8351B67F7194784AEE28EB3 /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AB8A3C286ADBC0DD45803999A7441D /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9FA39DEE8351B67F7194784AEE28EB3 /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = 09F30ECACC804C987E88BEA748DC15EB /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; FA14342E79B4712BB89BFD6F442A6A64 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 61882888005B92D15750380FE61DA5B4 /* enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 54A6E487DB2F1751784F728350946322 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA3D5C2B97EFF2FCD6ADB8D56A187AED /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E4DD71BD854DF6DF64F53A99C186A8D /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA3FCEE4D4F5F67613699A79BA042772 /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = BE266C9B8E76939FE5C71EF566479AE5 /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 870619E9BD4D6E766AEEF6AF3B407256 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA3D5C2B97EFF2FCD6ADB8D56A187AED /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 771B6878D37E14371F603D5D07EC7C2B /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA3FCEE4D4F5F67613699A79BA042772 /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EA7B638DE3BA0082760D9A915C72D46 /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; FA4153C149EF3F1DDED6E4846513C67F /* ThriftStreamShim.h in Headers */ = {isa = PBXBuildFile; fileRef = 852DF2EB0BA9A845ACE4C9A35AF3DCB2 /* ThriftStreamShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; FA4347EF4A800F16CE57D834D4859D8D /* CocoaAsyncSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 40BF62650BA18DDC6EAEEFD2E04436C6 /* CocoaAsyncSocket-dummy.m */; }; - FA6CDEB2A292F61C8FA52F4239629B79 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EF240967AAD7D875A2FAB0A143E7B0E /* RNVectorIconsManager.m */; }; + FA6CDEB2A292F61C8FA52F4239629B79 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D28FF780ADD086B1CE3A16CF70E819A /* RNVectorIconsManager.m */; }; FA93C80941FFA425F6A8217DC86AF716 /* FIRCLSURLSession_PrivateMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = 48617060209F19DDDA7E39BA141B9C5B /* FIRCLSURLSession_PrivateMethods.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FABD46C0F909DA26B81CFB9726F25A3D /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = C8265C63AC43F5A886877016BFB2C59E /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FAC72EEDE680CE42571135D4F06ACD0C /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F57BABCBA0174D900BA54401B43790B /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FABD46C0F909DA26B81CFB9726F25A3D /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B7BDC6327BEDD3E0C74DA3F7C78BC26 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FAC72EEDE680CE42571135D4F06ACD0C /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AD7952A70C692300EC7AFB4D7971FF7 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; FAD325C61C1C6B01789917FAD2FA0541 /* FIRCLSDownloadAndSaveSettingsOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CD01D16EF9FBC5A8826CD74D7B2B0B0 /* FIRCLSDownloadAndSaveSettingsOperation.m */; }; FAE0FE7AD22D774BD0A3DF4A75DB5761 /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 0182F9D56F6C097229A5B2291E7D6EBD /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; FAE7FB7F49C39C5CC3B15E412575429D /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 122E2401229CFF382C23869C6B7D99B8 /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB0A28191AAB089A2B180B0CDD512FD5 /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = 84645EBCC45720045E50FCCEC8333FB9 /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB0A28191AAB089A2B180B0CDD512FD5 /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = B523AB0AC4577A94C44BDEA527DBF0A9 /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB0F92706EF1B0B3F1CCF387BAFC3433 /* RSocketStats.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2DBE8246F143EB260DC08F7E8375A906 /* 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 = E43D4354872E035AC1C8043C67B92DA8 /* InlineExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB11A9AB3FB910CA62559D1E7D872869 /* FIRCLSAllocate.c in Sources */ = {isa = PBXBuildFile; fileRef = 8B338B13FB2A0CB1CDCEFC615CB7B580 /* FIRCLSAllocate.c */; }; FB363DD0DCCE96B7BA6C098C27EE5B4F /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 316847DDC1EABB4826243F54E7CB1BEA /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB530F1A567791D6927710373B7B9DE6 /* FIRCLSProcess.h in Headers */ = {isa = PBXBuildFile; fileRef = 563E55D46F0423FFC2241430780F937A /* FIRCLSProcess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB5AC6BF479F7E96E183355FECFFDC4A /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 403BA7C6CED5DD2F2CDE32266DD115A4 /* 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"; }; }; + FB5AC6BF479F7E96E183355FECFFDC4A /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 26E7C4F4E7454C0629994BC0E90F6C31 /* 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"; }; }; FB623A4CA5268F0DB215580161FD6A2E /* FIRCLSURLSessionUploadTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 099DB66F5F41C540E35EFFA2DF9A8A40 /* FIRCLSURLSessionUploadTask.m */; }; - FB64BA5C11ED82DB5C4BF04D0FFA4C4C /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D7D30FD062FA2F4CE761A3A1CCA8F85 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB72FD83F67C894AD142EB1845000CF2 /* RNCAsyncStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = F4C95E42DCA4EB60D68F2EDA80EFB4EA /* RNCAsyncStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB64BA5C11ED82DB5C4BF04D0FFA4C4C /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = CDC5E5922F936CFFC09DC328A3103636 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB72FD83F67C894AD142EB1845000CF2 /* RNCAsyncStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 076D3EA7E0B8432BF89900593652642B /* RNCAsyncStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB8C1E2C48F2AD8515C5E099C749C5BF /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 92FF476829752ADDF95984D8F7AC0D7A /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB8D27E9459831E52B2A77FFE785BDDE /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 057C10612EEE697E31A534FECD6725C9 /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB90E24396C26ED6126824A52A788876 /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C9F6FF35206F917F63C05DF9008ED94 /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB9DEAA3FF6C672E354650B1ECAF88D1 /* RNCSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = A35EF79CAC3FCBBDDF05214E4A93FDF8 /* RNCSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB9DEAA3FF6C672E354650B1ECAF88D1 /* RNCSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 346F0A66EF41AB5375BDA423FCFAFC5E /* RNCSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; FBB80ADC1665D487FDD0E9CAF78FECF9 /* GDTCORClock.h in Headers */ = {isa = PBXBuildFile; fileRef = 271FA14DDC0B04ED520A6BFB035E820E /* GDTCORClock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBBFCCFE4689AE3908F40EC73AA360EF /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 199D344BD30539CC32CE6928D5A216D4 /* BugsnagNotifier.m */; }; + FBBFCCFE4689AE3908F40EC73AA360EF /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B668095E55E618B71B62C3C8BC8A958 /* BugsnagNotifier.m */; }; FBC0D2805C929A4C5832392FC8E13163 /* ThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 809C14EF92D1A3A20AFD372D138BB55A /* ThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; FBD7C4826F1DD46AE003317225C0D984 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4209CCCD0871814DD067867CED32B25E /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - FBEC4776C49342CC3B3405DF9F36297D /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 316DE097F7754637102647D257337A16 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FBEC4776C49342CC3B3405DF9F36297D /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A9360FE76400E71E4D84075222B7385 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FBF3EB6CF65A10370AFADD62954AE881 /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 943B56E5FD2CBF41AA8829BD63BE3949 /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; FBF4EEFCACA4C3C85581D62F93473E7F /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = E00888A954132CDA18BC44F319AC147E /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBF5B5AFCD5AD341EA226D9D65CE3DE6 /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0523E97BB6B4DB22CB2C8CD1599C9E2C /* 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"; }; }; - FBF7FD35E8A619A09CAF79E1283D5153 /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 63249EFA834A01C81278670CAB350563 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC3B69D90B512F571A269423E054E63E /* RNFBRCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BFE7B3C376934A3A5401972084A6F69 /* RNFBRCTEventEmitter.m */; }; + FBF5B5AFCD5AD341EA226D9D65CE3DE6 /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = DFA933E4F93ADD51BA644F751181E114 /* 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"; }; }; + FBF7FD35E8A619A09CAF79E1283D5153 /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = E9F123D2417805F1C3E1944AECF2A1EC /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC3B69D90B512F571A269423E054E63E /* RNFBRCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AAC03DAE0C1EF683F54700951622B71 /* RNFBRCTEventEmitter.m */; }; FC6B3ABED8B138EF2E98AD6E2819FBF0 /* PasswordInFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 34F112AD4DCB7424F61EB3493B9FFEA3 /* PasswordInFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; FC75D51E54C6036FB1E4A073F39DE7B2 /* ScheduledSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = DD4F1A29653F747F710E69C5B3A997C7 /* ScheduledSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC76BBC6DF50A8445C9B5C0C87C73CD1 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5175740F17A5CC2C16CEC2CBD1CEF513 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC76BBC6DF50A8445C9B5C0C87C73CD1 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CE6C71E81A3421C2F847E1D1C738018 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; FC87714A41923AA16685BCF5EA2F22F7 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C798B7984A25A4FDBF685F8AE32B5206 /* SDImageCodersManager.m */; }; - FC98D260B0CFC32AFF56A78B6D25EEFA /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = BE0D50CFB583D551B6FBB45D768E65C3 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC9B2F29DAFE983130380A286B62F354 /* RCTUtilsUIOverride.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D4C738D2BE9F8D9C41665204E496825 /* RCTUtilsUIOverride.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FC98D260B0CFC32AFF56A78B6D25EEFA /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B50E94B26C9F1A608B665BC2A8CC140 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC9B2F29DAFE983130380A286B62F354 /* RCTUtilsUIOverride.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C9818187C1FA532EFFCE969BFE77FDD /* RCTUtilsUIOverride.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FC9DD498F5C8931F8D854BCBE5027F26 /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 790CB223A0B5FF2BDC995C6AFE1649D8 /* FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; FCD3515E17588302448E1EEEDB5DE753 /* FlipperClient.mm in Sources */ = {isa = PBXBuildFile; fileRef = 15C6C5DF72A469AF8DD75E8E2C5B9FE5 /* 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 = 3459D0CA80524267C487FC13D3D0273C /* RNDeviceInfo.m */; }; + FCDC5F5AF807DB5781447F7EC845B581 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 21087C3500B90DDC9DC1ED19DFB632D1 /* RNDeviceInfo.m */; }; FCE3A33F83836596ACAE1381D52942AB /* Cursor-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 72E23120C5376BC53C0D6BAF02093D4E /* Cursor-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; FCE7CEB488C7CDAA0D5B1F278245D27C /* FIRInstallationsAuthTokenResultInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = C02D3D810F67640DBF05FC174F2CFDDA /* FIRInstallationsAuthTokenResultInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCEEE57C164203D44D5FA52C3A94696A /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D4069E4CCE86326A76AEB5A6E4E5F35 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FD4075015771EB548EE8ADB386FA5E20 /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C5FE14ADE74DC6A73069DA443A98AA4 /* REANode.m */; }; + FCEEE57C164203D44D5FA52C3A94696A /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EB77FFC1766F762CCD1BB5D52F29FEF /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FD4075015771EB548EE8ADB386FA5E20 /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C9597B3282C95B9406F6A0DFF9FC26 /* REANode.m */; }; FD70F4A9596E68CFB8B1CE1F177A85DB /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 01E2102B0DA87D40AFAE42C15752A617 /* GULNetwork.m */; }; FD89528F6BA64ACD4765E0B56ED98D81 /* FIRCLSApplicationIdentifierModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 60224AC883FC9B9434CB06F258BA2F7C /* FIRCLSApplicationIdentifierModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FDA29132398C15CB3513C3537F84AABA /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 335EFF7D5A6AECA87296187A5FF2D12A /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FDA29132398C15CB3513C3537F84AABA /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B5E2203EB895E27A9139005A24E9FB4 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; FDD5FCFCFF3A1F08C968E2B47BEEF20A /* SSLErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 63498114C3EA6AAAC31C39E2674C49D5 /* SSLErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; FDD98AFFE343DEF1281990CB755B5933 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3129A23443A70A78B91986A738276C7 /* 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 = 7F4D8EE1AB88A80276B6DB6467D43D8C /* 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"; }; }; - FDEB8AED12B5ABC32102D7283197E186 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 842B9EE940BD30BBF74FFFAB474AFA2B /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FDEB8AED12B5ABC32102D7283197E186 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 306516B544C9ABE4B2531CA415CA8825 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE165B226B01BF0E5282096678842384 /* FIRCLSContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 73CC56853E37F8D86F73D226BBF790D8 /* FIRCLSContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE570C55427946ABBAB0EF448040C12E /* CancelingSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = C54A81776A28367C5075A1A7E025C665 /* CancelingSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE5B55CC4A37EF0D7B2C1E92CAF12F99 /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 75749D3761C0944C6655DEAEE9A38CA3 /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CA0C4C5E442706D220F564B47B7E1B0 /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A073F0C7139D4139BEB8E29AF22F7236 /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE9B01DC938E8FF1AE38579797F5CBB0 /* EnvUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = EE5C9EDCAF241D698D2916516A93E4A2 /* EnvUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEA267B227B0E81D22A07384FA7CD1BB /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 21A25C4AB14CE49EA562D742266A45DB /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEC142C629BFD9083352310B4B259F98 /* FIRInstallationsIIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = D2070E7713070D87C78A790F9EE65344 /* FIRInstallationsIIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEC2AAA000CDAF71ECCE958D866EBC30 /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B554CA6B8A4FF8F9E6124BD14A45F5D /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FED21ACC025E093B843CD351A1C0045B /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 590F73C41740BBC036546D26E389842A /* 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"; }; }; + FED21ACC025E093B843CD351A1C0045B /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 0540070B85E2112E8C63589D4A4E3F83 /* 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"; }; }; FF081E923FA97838EF4E4001A676D9FE /* firebasecore.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B6B4CA79C8B63CB9B672810337DCED6 /* firebasecore.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF20886F669DA038DCB2D84F30D71D5E /* IOBufQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E0EDCD0844E053BC8DDB3FDC39E74EEB /* 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 = AF3755175A28C62308EFFEF2C0372793 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF217BF4F60D6ABBE53FF634B951F784 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 10B09D08131C7CCDC5B6C69A735884F4 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF25A72AFBFDD3B1F8A677B56EE3F6C6 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 3BCBD61446538B2B7202B7D11872698C /* rescaler_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FF28A2B722BF2ACB2EEEA732848F44CD /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = B436D3F2B9217D9F332F061EC2502208 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF28A2B722BF2ACB2EEEA732848F44CD /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CD9E58F8C2B24176916FB6CD2862D14 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF35D631BBD7CE3793F2585E076ABE37 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EB3F0AB2BB873E745F85BE1CD41C462 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF4F3D0AA50BA3ECBBA1A905D7F84797 /* FIRExceptionModel_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E792802A89788DF420D5C87689D48C6 /* FIRExceptionModel_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF8366ADAE423B2AFB5753C39F314128 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BE8AA7C56BAA349794A7B24E2E89362 /* alpha_processing_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FF8CB9E251EB7C4BA892E2F6B2E1D351 /* RCTI18nManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3D5639176CDD9669D4556831638B3763 /* 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"; }; }; - FF9E21A6087B13223BBAD7DE03C03FB7 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B8B023184401C6EF64FB724C3F17CF1F /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF8CB9E251EB7C4BA892E2F6B2E1D351 /* RCTI18nManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = EDC5E4D53138E9169B74064DF83EA75F /* 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"; }; }; + FF9E21A6087B13223BBAD7DE03C03FB7 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4565F15D87E9621108957B941F9FB2C8 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; FFB9245D233A3C0CCA0F2A43466826E2 /* SDImageHEICCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = C4CF7BC049CC7E28A6D3502E44A12248 /* SDImageHEICCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; FFC03B7D8F37AE0403024D9BD66DB19C /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D418EFDB8CB07AADFE4BA5A348FB37C /* vp8li_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; FFC5A9F8C44A1A39274334B81662239D /* FIRCLSUnwind_x86.c in Sources */ = {isa = PBXBuildFile; fileRef = 0D17B27C7DC887EBDBCB46E9FED7B29E /* FIRCLSUnwind_x86.c */; }; @@ -3357,6 +3384,20 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; + 006F834FE6FF3BDEE2984B0CE662D18D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; + }; + 00A5917D284FC813709B36EC03FFE34B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; + }; 00F742804BC9EBF2BCDCC9C43C85E9FC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3364,19 +3405,26 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 02884AC05BC4B650EBE6E310CA3916B7 /* PBXContainerItemProxy */ = { + 01CD1AE6253A56C66AD7016A1E355178 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; }; - 02FE637960758CFB41DD0F63868130C7 /* PBXContainerItemProxy */ = { + 01E4C3EBE22D57354AD8981E37AB9F25 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 33B041E5D061336F88B875C8B86E45FB; - remoteInfo = ReactNativeKeyboardInput; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; + }; + 02884AC05BC4B650EBE6E310CA3916B7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; }; 033CF4371871DC207A7FB8B2A6D3AFFA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3385,19 +3433,19 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 036314721AE80A783233849B6130E1DB /* PBXContainerItemProxy */ = { + 035B35BF0DEC0E685E9A1EDA3B7A602E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; }; - 0371F95847C9A3B0AAD92DC9B5B0A052 /* PBXContainerItemProxy */ = { + 036314721AE80A783233849B6130E1DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; }; 04B87863563E406809DFE81CD3C9622A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3406,12 +3454,12 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - 04F87EED63E3263EC45992EE810C5C08 /* PBXContainerItemProxy */ = { + 04BF81B226344B05A0847C87826D73D6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; }; 071222278FB4DF525C9E63FA3E8CE461 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3427,33 +3475,33 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 07D2DC55864BFDEACD7D0E0C0DC368E7 /* PBXContainerItemProxy */ = { + 08BDDBD9225ECC2B50DEDE4CB09EFB40 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; + remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; + remoteInfo = EXLocalAuthentication; }; - 087301B72D18C60324E8D3CE32C7C7DD /* PBXContainerItemProxy */ = { + 090C9F168A12D90FE77922286790582C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; }; - 08FC95F9E3810ABD23A6F49E883DC0CC /* PBXContainerItemProxy */ = { + 0992EA3BAB1334D3D4F32C329D61E5D8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; }; - 0992EA3BAB1334D3D4F32C329D61E5D8 /* PBXContainerItemProxy */ = { + 09BA2B6AC4A3C12D0A61B83D245D73D3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; }; 0A78C568CA90DDDEBA5BDB1A9F02EBD9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3462,6 +3510,27 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 0AF8039B014EC2ADCE1F8110ECCBA350 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; + }; + 0B0F2B56CA50FA2C112A04EFD1B3C4E7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; + remoteInfo = FlipperKit; + }; + 0B221A3EB593BD77A6B5D5A3D8E3C356 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; + }; 0B7BA2BED87BC1DD6BBFA3C1A07E4E46 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3469,49 +3538,49 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 0C158871B3A6981ABE3CF3915C4072CB /* PBXContainerItemProxy */ = { + 0CDC6E2828C2DFE596814DF75208C626 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; + remoteInfo = FirebaseCrashlytics; }; - 0CAAA2A225AC8B72F176D932B816583E /* PBXContainerItemProxy */ = { + 0D572A8AD89C9CA36073105C0EE42221 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; }; - 0EBB2AD81B6BF47A113E7CB74D36CB30 /* PBXContainerItemProxy */ = { + 0D91F3348970B014046ABAECBBCF691F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; - remoteInfo = EXVideoThumbnails; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; }; - 0F25F061A1A39924FF13890EC569549E /* PBXContainerItemProxy */ = { + 0E152DF02C367AF7F73C5794DE3F40D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; + remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; + remoteInfo = RNFBCrashlytics; }; - 0F81F97AF2058E54B1FCEF8B41DBBFB6 /* PBXContainerItemProxy */ = { + 0E57D077F0CF59BB71B11CE556426075 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; }; - 0FD6A4ED78388214475895E97458EB68 /* PBXContainerItemProxy */ = { + 0F1173BCAC0DFAD0051AE844CBEB7174 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; }; - 102CC72BE4EEBF0CC9BA36C7D28186D1 /* PBXContainerItemProxy */ = { + 0FD6A4ED78388214475895E97458EB68 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; @@ -3532,12 +3601,19 @@ remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - 11D39A102F82ADF9CF532E62ADA952E5 /* PBXContainerItemProxy */ = { + 12184D55C7BE61C90FA947369504EF00 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; + remoteInfo = RNUserDefaults; + }; + 12679593595F9C842FEFE948D5196579 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; }; 12BB121C6C62E9D130D1F1C4061597FC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3546,54 +3622,54 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 132A4A8CBAE2EBFF485A847482DF06DD /* PBXContainerItemProxy */ = { + 13167A704C6B1D0E081F5188416F494D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; }; - 133D66D2446295F17DB286EF95791D1A /* PBXContainerItemProxy */ = { + 132A4A8CBAE2EBFF485A847482DF06DD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; - 13791CBAE3B4CCAF1FC636BA2BBD9DE4 /* PBXContainerItemProxy */ = { + 13357F753589AF94C51ACEE301B016F9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; + remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; + remoteInfo = RNUserDefaults; }; - 13900C7DF3CC2DE7FA2B02A57863AFC6 /* PBXContainerItemProxy */ = { + 133D66D2446295F17DB286EF95791D1A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; - remoteInfo = RNDateTimePicker; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; }; - 13FB93276AC50813E07244461EF496E6 /* PBXContainerItemProxy */ = { + 1355FADC83CBC1C02532DFB322690CBE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; + remoteInfo = RNFBAnalytics; }; - 1482A36934233BD9C9E673F3F3A3F73D /* PBXContainerItemProxy */ = { + 13791CBAE3B4CCAF1FC636BA2BBD9DE4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; - remoteInfo = UMAppLoader; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; }; - 148E43A59FBB3C9B242FE322FE3BBC5F /* PBXContainerItemProxy */ = { + 14634E793B9A36D2451D447BD4E30A9E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; + remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; + remoteInfo = UMSensorsInterface; }; 14FABE1DA2D29D5AE8EE8EE26F763525 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3602,75 +3678,68 @@ remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; remoteInfo = YogaKit; }; - 161EA40FE8CAA8D6918971FF60C8FF2D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 868B90C74770285449C60DBA82181479; - remoteInfo = EXFileSystem; - }; - 166349A4DAD62A7CE0C2E79B5A36CEDC /* PBXContainerItemProxy */ = { + 155324295DF41FC7E25885367E651D2B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; - remoteInfo = UMSensorsInterface; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; - 1689B8EFD7CA76B9AAC4F841427CF02F /* PBXContainerItemProxy */ = { + 15C14DAD781EF0E7777E7EF6270AD24A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; - remoteInfo = FirebaseCrashlytics; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; }; - 1703310E0089BFD02A47B059AEE33F92 /* PBXContainerItemProxy */ = { + 15F58DEBBA9BCB7DF0201F6B70DB661E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; }; - 17D406D653C0C052B9498FF2C238525C /* PBXContainerItemProxy */ = { + 1875937628CDD2F250DF70E83001C5C1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; - 183CDB441942C9FFAD4D3E81F86D6E77 /* PBXContainerItemProxy */ = { + 18F4972C81215B160CC3E223170BDAD1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; }; - 18B42A92AA0B03ABEDAFAD7E32385542 /* PBXContainerItemProxy */ = { + 1A59764CA4DE4DAF5D504EF530F5428C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; - remoteInfo = EXAV; + remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; + remoteInfo = FirebaseCrashlytics; }; - 194489D6C6DA4BFC3FE778D8F0ADB10F /* PBXContainerItemProxy */ = { + 1A6A4C0FC2226ADA371C14C49C9FD87B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; }; - 19DF1D7AC3BB100EF5DF6E81294047BE /* PBXContainerItemProxy */ = { + 1AE0BE3511E2306262CE91EB0CAB5471 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; }; - 1A59764CA4DE4DAF5D504EF530F5428C /* PBXContainerItemProxy */ = { + 1AF9AB344DE1B51241EC27F098F41138 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; - remoteInfo = FirebaseCrashlytics; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; }; 1B209875BE1A2519F69D4DFF0948FFAC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3693,40 +3762,26 @@ remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - 1DCB3309999BFDB2222EDB72D85FDB78 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - 1DDE3109ADD35880C3E8F514A347D5F7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; - remoteInfo = RNCMaskedView; - }; - 1DFECDA4BCEA0A425AA8FB090EAE3E9E /* PBXContainerItemProxy */ = { + 1D3CF06D95E18187A5CC55B87327DDFC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 1E0505ACC34ED82B829A8D4A20313EAB /* PBXContainerItemProxy */ = { + 1DCB3309999BFDB2222EDB72D85FDB78 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; - remoteInfo = RNUserDefaults; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - 1E7E213B3C232EF8222D25E027634C04 /* PBXContainerItemProxy */ = { + 1EA28455CB3DB1AA161A90A97A699FB9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; }; 1EECCDC5376D77D4DC29D8ACA3551B3F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3735,26 +3790,19 @@ remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; remoteInfo = Yoga; }; - 20D015A06332AED4640AE8BC78F18710 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - 214520C3AC6317E5E4FC9EE481596289 /* PBXContainerItemProxy */ = { + 207EB802EBD95CC68B7CCE7D1667D950 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; }; - 2177F1A92E8E677FD3DB9F14BE184C89 /* PBXContainerItemProxy */ = { + 20D015A06332AED4640AE8BC78F18710 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; 218BD48A74E10DEDDDAF4D13C755DC86 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3777,6 +3825,13 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; + 230C5283B4ABA3E0102873D811B04034 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; + remoteInfo = TOCropViewController; + }; 23C9EE150BBDDD445CE0ADCFAE6D68ED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3784,6 +3839,13 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; + 23E6440A82EDAD14964E8317BFA7BA9D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; + }; 24974EF4CEED07AAC5B78292095CECB5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3791,6 +3853,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 24CAED39D69D03249704A410473002E7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; + }; 2539C386890D7883A108FF4E3829524A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3805,82 +3874,82 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 25D53C490A206BE5B5E6B5EB62789294 /* PBXContainerItemProxy */ = { + 2586A33EF830996B4319A4EB7C4FC276 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; - }; - 286C7DA34EBE9F8A3EC10424B36A30C8 /* PBXContainerItemProxy */ = { + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; + }; + 25D53C490A206BE5B5E6B5EB62789294 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; - 28AC9515063BFADC2266499CDC9BFFDC /* PBXContainerItemProxy */ = { + 26BD6A2A46860388C93B21EDB975DA3D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; }; - 28F567F6DB1F73A5A38FF9A6983B029E /* PBXContainerItemProxy */ = { + 26CD54261130101A3F126B292E436674 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; }; - 2946059A81F6694046621FBCF29D0422 /* PBXContainerItemProxy */ = { + 286C7DA34EBE9F8A3EC10424B36A30C8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; }; - 2A9BD23D3755054B2E68D2362436FC17 /* PBXContainerItemProxy */ = { + 28AC9515063BFADC2266499CDC9BFFDC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - 2AB4E316E2673B76ACA537189D619922 /* PBXContainerItemProxy */ = { + 2A3434F5179ED82CC75AC9D4DF3AE225 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - 2AEBE4AB92FD40BE88FF7AA27EDB8876 /* PBXContainerItemProxy */ = { + 2A6C1FD2C4566B37E0E385AB2366C58B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; }; - 2CEE24CB66762308FD3A5EA199AC8027 /* PBXContainerItemProxy */ = { + 2AB4E316E2673B76ACA537189D619922 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; - remoteInfo = RNFBAnalytics; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 2CF888B3E22609FE38050554C48DB48D /* PBXContainerItemProxy */ = { + 2AEBE4AB92FD40BE88FF7AA27EDB8876 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - 2D2280E618902D89DB61E0F3A9101443 /* PBXContainerItemProxy */ = { + 2B6AB396E8556E2B564289B2E704DD2C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; 2D2C4648FB3AB375786117A39F3D1919 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3889,28 +3958,7 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 2D4C0D12573ACE5598A61A3E2F84E473 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - 2D5646887B66701B7BF9C96E1C741BDA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; - remoteInfo = CocoaLibEvent; - }; - 2D5688E0BAB607DAB9035C32327EF3BF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; - }; - 2D997C75205460669C367E2FFB409739 /* PBXContainerItemProxy */ = { + 2DFD0DFCA4DA32EC8670677B56D0EE28 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; @@ -3924,12 +3972,12 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 2E334A0920C947FEECC3ABDF658B06ED /* PBXContainerItemProxy */ = { + 2E4EC21741885855B19DD2446C17ACFB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; + remoteInfo = EXAV; }; 2E8FE62F5F6B8EF737DB919ED66B630A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3945,12 +3993,19 @@ remoteGlobalIDString = 6D979AB5FDA2E858850D9903776A30B3; remoteInfo = "RNImageCropPicker-QBImagePicker"; }; - 30F8E6E19A2F9A2D230976D9CB2ACA68 /* PBXContainerItemProxy */ = { + 2FC3821B9241665A0820A0EC4C899781 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; - remoteInfo = EXPermissions; + remoteGlobalIDString = D985A509BFE270C95EDCBE6B4CBAF189; + remoteInfo = "react-native-simple-crypto"; + }; + 3029C6D076A85E9D8724318328451A37 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; 31D39D46BAFDD97C6BABCAAE6105564A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3959,12 +4014,19 @@ remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; remoteInfo = "React-callinvoker"; }; - 3351B25E220ED87CB01067FC96D84CD5 /* PBXContainerItemProxy */ = { + 3217641DC9047B0C682694F0704FEDC8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; + }; + 327A7E68388B87BA9A8942826DE5BD18 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; + remoteInfo = EXAppleAuthentication; }; 3386A20F5DC9F446AF718DB214EB40DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3973,12 +4035,12 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 339D5CE31DB005B622A11D2CF76B0AFA /* PBXContainerItemProxy */ = { + 338A53819BFF3DB32E224B471ECD69B7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; }; 343C5B3B96C0727BF01188E5154FBE61 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3987,19 +4049,19 @@ remoteGlobalIDString = 7A020DAB6F3F0BA0A6D9946E84B38B7F; remoteInfo = "React-Core-AccessibilityResources"; }; - 3449D4C1992471B082F0F2405746C6A2 /* PBXContainerItemProxy */ = { + 3451E6DAE36131EB49A2E250073E4FCC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 35487FEB80E22E0784F7984BF805AA3C /* PBXContainerItemProxy */ = { + 35216D06209D0795DFBE9421B2BB8AF8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; - remoteInfo = UMTaskManagerInterface; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; 3574B1BC6D98AB920A3CF341F2BCD349 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4022,13 +4084,6 @@ remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; remoteInfo = RNFBApp; }; - 368F5B3A287B681676CB312493581753 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; - remoteInfo = RNFBApp; - }; 36984564ED77D3FA35292387EE92F363 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4050,33 +4105,40 @@ remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; remoteInfo = RCTRequired; }; - 394F97E0F09CE10C2012CCCF2039B7FD /* PBXContainerItemProxy */ = { + 377DF289115160803299DC420860AEBC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - 39D519C6506A266CBE4359C7D93A4091 /* PBXContainerItemProxy */ = { + 37C42DEF71566DEE92881D0866F07F85 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; }; - 3A7FA56DDB4EA79231EDF6205B7D02B9 /* PBXContainerItemProxy */ = { + 37F9C0BD2F86E02559E4C0E076564810 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; - 3AEFC4AEDCEA30DDD554C16E9B9FFE94 /* PBXContainerItemProxy */ = { + 38A15894323C6B57CE36362342FAB0FF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; + }; + 3A7FA56DDB4EA79231EDF6205B7D02B9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; 3B2CB4C09D3A44183329A2C1357EC2EF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4092,6 +4154,20 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; + 3C48DDB40A603C8020BC71D9ADDEAEE1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; + }; + 3C59E4B2BBEC0AD22755CBDD40148CA4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; + }; 3E044DBA2E61AA8C64AED9F68101D5A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4099,26 +4175,26 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 3EBD3C18DFD4DE4370A8A64EB8072E46 /* PBXContainerItemProxy */ = { + 3E32ACBE11DDA0875AB51A77FA0FBD9E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; }; - 3F2EC526F7D99F364779A8A82B24760D /* PBXContainerItemProxy */ = { + 3F214067E3F3B5A132D768CFA87C06EA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; }; - 3FE18628A68B47617543A03771CFBB10 /* PBXContainerItemProxy */ = { + 4115B2B1B24446F419C0208831C405DE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; }; 4117C1D772FF72CEB7856965D78C23AD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4134,13 +4210,6 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 420841C4DC37EADBDD1A0A831E447D51 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; 42F97C29084691AA0F01785A3193AF04 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4148,13 +4217,6 @@ remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; remoteInfo = "React-RCTText"; }; - 434401F15A5507D2E58F577635420734 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; 43F8A05471207C4A2D06B4F455E0DF06 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4169,26 +4231,33 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 47FBFA23EE196FFF1148F9C5F8432293 /* PBXContainerItemProxy */ = { + 457FD8439900F794EA4C82ECAAFDFC81 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; }; - 4829582FFF26B2D4C359F08214923EB3 /* PBXContainerItemProxy */ = { + 46C21DABA7EA67BACE2A4C0AEF8B89EA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; }; - 484FC234F6BE29EBD0F9C1AF592F5AA5 /* PBXContainerItemProxy */ = { + 47B6CAD3C6306600A898E278A0B85ED8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; + }; + 48494DE188ABC612AC95EFB558454379 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; 4929FE3F288D63DE59928493EE949592 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4204,12 +4273,12 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 49C8321D0887EFFB631B417BBB8810D3 /* PBXContainerItemProxy */ = { + 49D08B9584ED9E27E0B111E7F40CB058 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; - remoteInfo = RNDateTimePicker; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; 49F50ECEA44D3E4F8BB4ABF723720AB8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4218,12 +4287,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 4A4F8B8BB889D6978B9BC1D7B017E508 /* PBXContainerItemProxy */ = { + 4AFD781D02E98E6871F46EF5E5B10CD2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; }; 4C0C596ADC9E293A7A58D1310730D1F4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4239,6 +4308,27 @@ remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; remoteInfo = FirebaseCoreDiagnostics; }; + 4C230F345FA4CF14797CDE68F26D1B20 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; + }; + 4C90CCB8903A79938D7CE4F45EA8BF92 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; + }; + 4CA531489325CF0D12AC347B4C66C12E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; + }; 4CAFA9778CDD44DF406CDBD2D4E93969 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4253,47 +4343,47 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 4CF8553245B339053F7DBC3F02CD26D4 /* PBXContainerItemProxy */ = { + 4D17D91F96868CAEDDB41E1118E2D9FF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; - 4D17D91F96868CAEDDB41E1118E2D9FF /* PBXContainerItemProxy */ = { + 4D1B352944B6F8E5C637255D2A620BBD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; + remoteGlobalIDString = 27E277B43A5F7AE00EC5051AB99AC38E; + remoteInfo = ReactNativeKeyboardTrackingView; }; - 4D8A79FF8682A6D309289F9CFECD4040 /* PBXContainerItemProxy */ = { + 4F9D1EF82045308877BCAF51333C565B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; - remoteInfo = EXAppleAuthentication; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; }; - 4DB20AF4BBBB941B8FEBA7317AE6EC08 /* PBXContainerItemProxy */ = { + 502ED6835777559672A8E34650A0A573 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 27E277B43A5F7AE00EC5051AB99AC38E; - remoteInfo = ReactNativeKeyboardTrackingView; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; }; - 4E360C1CAE4B1F34A27E25671972E87C /* PBXContainerItemProxy */ = { + 507D8236E92487A3F0B701578379F4E2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; - remoteInfo = "react-native-safe-area-context"; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; }; - 4FA88F9DBF4DFFD73FAF38583EE2CC6D /* PBXContainerItemProxy */ = { + 50F204FEB4326964BDE922CEFA7F609D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; + remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; + remoteInfo = RNCAsyncStorage; }; 5199EEE170B03E6034771D7D410366D6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4309,6 +4399,13 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; + 528139174349E239FC4E848514A6154D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; + }; 52D75569EE8B532085465A5470C6C390 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4323,13 +4420,6 @@ remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; - 53E88435B31040C020F311E0E2437DC6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; - }; 5475A7D10F548823793DA8859F6773CE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4344,26 +4434,33 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 557C906DD0B23E7AB6B3DC7D5A343564 /* PBXContainerItemProxy */ = { + 554E7C1D3BAC9594C4D5C44B987A5E15 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; }; - 5624877926ECCB7E1106DDDC76C3145F /* PBXContainerItemProxy */ = { + 56A3FE760526E0DBAFC8EEFEA8B5A1FE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = D985A509BFE270C95EDCBE6B4CBAF189; + remoteInfo = "react-native-simple-crypto"; }; - 57109845350FC6B0CC362A84345F8F7F /* PBXContainerItemProxy */ = { + 575F9C3F8EF86067CCDF04474F23BF71 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; - remoteInfo = UMCameraInterface; + remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; + remoteInfo = EXKeepAwake; + }; + 57A8B2A29DE968ABD02A04F709BAD21F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; + remoteInfo = FirebaseCrashlytics; }; 58945C0A8D3B5F0C45E87A28652D0430 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4379,13 +4476,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 599B3983C9DAAB38F32CA2858BBA3C52 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; - }; 599D1944ADF3E4137B0FD9AF2380696C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4393,20 +4483,6 @@ remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; remoteInfo = UMFileSystemInterface; }; - 59A042DFF61666FBC3962AA7DA170633 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; - remoteInfo = EXConstants; - }; - 59A110812A83A4504B679B30A8189E55 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; - }; 59A6F7E541C545C99CA82678B8F26212 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4414,19 +4490,12 @@ remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; remoteInfo = SDWebImage; }; - 5A02F4A4ABB42DA2EADFE3EBD3162445 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; - }; - 5A4CA4AA0F3487A72DDF9AE2C3CC9573 /* PBXContainerItemProxy */ = { + 5A1F0FCF7801D502B70460B99CB41F46 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; }; 5A9DED21300713AA6D50E96B3E2A6CE4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4435,20 +4504,6 @@ remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; remoteInfo = RNFBApp; }; - 5AC78BCBBECC659F27CEE775EB3BA0EB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; - }; - 5B188110322483D27D171D9BCDE803CE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; - }; 5BE1625FF2C73ACD1127D4A9DDADF1AF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4484,6 +4539,20 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 5DDF4FBDAE2E202F61C21E1F471DE363 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; + }; + 5EDAFD0217F02A1EA4C5E73B1E16B9B7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; + }; 5EED9A44D7E37951C7239080722062AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4491,19 +4560,26 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 5F58C8FF443CDF9BB7FD1B4945661440 /* PBXContainerItemProxy */ = { + 5F068532C664A46C689368CE1ED2E7BF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 622E944BCD43EFCFCD146D72CDC98B83 /* PBXContainerItemProxy */ = { + 5F600805981051902410052B63FB0EED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; + }; + 5F78580174692E14344E388EF431658E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; }; 625664485E68882E020182B4B8593A0B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4519,12 +4595,33 @@ remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; remoteInfo = UMFileSystemInterface; }; - 62B955709D1A174FD1C8BFC6EE83FA5B /* PBXContainerItemProxy */ = { + 62F2A501B180E45F813085F1C479FE81 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; + }; + 632479A7387A4C35281F93EDDB9117FE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 64F427905796B33B78A704063422979D; + remoteInfo = "rn-fetch-blob"; + }; + 636A8822C7AA7BFD08346E59E1E892C1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; + remoteInfo = UMAppLoader; + }; + 638DA812E40D3AA31C5EECF5FD9A1932 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; + remoteInfo = FlipperKit; }; 6423924A022902547DBE5FC8EF93BD4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4533,6 +4630,20 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 6486EEE39D28D6EC4B3FEF0E5A49BF3E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; + }; + 64A9E19C4593E79A77E591309E41F524 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; + }; 6514B943829E36F02B9A139465155A84 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4540,12 +4651,26 @@ remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; remoteInfo = Flipper; }; - 6804E03A9E36C6C405ED577BA6AD08DD /* PBXContainerItemProxy */ = { + 65564F3A4A4E9D7560ACE2C9186B6A04 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; + }; + 659B7FE9E4EA3E0B4E8AE62886D84AC0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; + }; + 66C16F059DFE97CA23F3474BFFFD5634 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; 68768374A1E75E492CE01513CA6C20AF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4561,12 +4686,12 @@ remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; remoteInfo = TOCropViewController; }; - 68F74AC235DAA430D9A3B78FDBD92BC3 /* PBXContainerItemProxy */ = { + 692BFDC7A05DE6BE7ED8C8AD55684443 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; }; 693D404670546F8992A85D966A95020E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4582,20 +4707,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 6A6D04721B1B826A6B2FFE1229AFB2A6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; - }; - 6A8005FD7A11780367334C1DE25E3BDD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; - remoteInfo = TOCropViewController; - }; 6AE2918D3E48649BDFDD0650FD43651D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4610,285 +4721,187 @@ remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; remoteInfo = "React-jsiexecutor"; }; - 6AF372C0A7E3E05F2FA750659E3859F7 /* PBXContainerItemProxy */ = { + 6D633F00841136E832319BFC894A593D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; - remoteInfo = EXPermissions; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; }; - 6AF5718193AE320EEA16782FF65825C2 /* PBXContainerItemProxy */ = { + 6D74EB11AB3E0B0AB860EC4C23ACB427 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - 6B3252AE3D41748A46CA498FABAF4877 /* PBXContainerItemProxy */ = { + 70AC81A917439EA0D74DCF9C1BF144DF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; - 6BAEA3CD9128BF458A84EA0A37036103 /* PBXContainerItemProxy */ = { + 72AEF3DC8768694E58AE665D174CE14F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; }; - 6CC2A3A38037B04F4C9E044CDB34B956 /* PBXContainerItemProxy */ = { + 7301E0EEA4381E7BB0765E0E2F26D433 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; - remoteInfo = EXImageLoader; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; }; - 6CF29919C69E6D5DD25546168A2C75E9 /* PBXContainerItemProxy */ = { + 731DEA08B430BF6DF0F646810FDEE282 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; + remoteInfo = RNCMaskedView; }; - 6D215BC2110056536BBAAE0990B25956 /* PBXContainerItemProxy */ = { + 735E3AA43CA3DBC1B064B58F38C962B2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 6D3BBF6450DC25ED809B274E24E99407 /* PBXContainerItemProxy */ = { + 7376C532C4FB647A107D7FD9698C24E8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 6D74EB11AB3E0B0AB860EC4C23ACB427 /* PBXContainerItemProxy */ = { + 7406230DB5E0987FD2DF052B3E9D28F8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; - 6D923B4154E0C6561C568A645B6B0AAC /* PBXContainerItemProxy */ = { + 74F8831E48B81E5BF2E301334BA3ED41 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; - 6DFDF851E5769007EDFA12AA957954EE /* PBXContainerItemProxy */ = { + 767F418C563CBAAB5E3ABB44B6F66208 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - 707F9C3CA230284A414E902CA8EBF553 /* PBXContainerItemProxy */ = { + 77497048A04993E0D14F21677BAF5FF2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; }; - 70AC81A917439EA0D74DCF9C1BF144DF /* PBXContainerItemProxy */ = { + 77650DB9BCD15D3DBD659DF4437F2533 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 70D2BFDD732B045BE03F7D9F6CA75B24 /* PBXContainerItemProxy */ = { + 7830759686E5A66561E3E1C481B46FCF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; }; - 715EF7383BC6591E698164908B2D766C /* PBXContainerItemProxy */ = { + 789ED4E446A25B4A0F66EAD4D92D34F2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; + remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; + remoteInfo = EXKeepAwake; }; - 7292A4C29EA10CD67E215B1CB97E525F /* PBXContainerItemProxy */ = { + 7B0CFD71B2124B5239726149C168C272 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; }; - 72AEF3DC8768694E58AE665D174CE14F /* PBXContainerItemProxy */ = { + 7B6B4B865E56D74ECA6C9D3514E61DDC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; }; - 72FD2B3DAED791B1CC5770F4A52BCCAE /* PBXContainerItemProxy */ = { + 7BC57D58971D7894E334873FDED73997 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 526C4398D095B3704EB933DADBC30093; - remoteInfo = FirebaseCrashlytics; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; }; - 735E3AA43CA3DBC1B064B58F38C962B2 /* PBXContainerItemProxy */ = { + 7C0B9E22BBC11A64C90E2F48A14F8E0A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - 7376C532C4FB647A107D7FD9698C24E8 /* PBXContainerItemProxy */ = { + 7C1948695FA6AF641933A7A20299507F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; }; - 73B1AF274B4CA9A7D7B3AE8CC126BA83 /* PBXContainerItemProxy */ = { + 7CBA093BB5F4F39B712F2AF488BEEC02 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 73CADBA3053C227CCFD5EA6050B28BB1 /* PBXContainerItemProxy */ = { + 7D496F850BCF5ED2F127F6B9D94533C2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; + remoteGlobalIDString = 27E277B43A5F7AE00EC5051AB99AC38E; + remoteInfo = ReactNativeKeyboardTrackingView; }; - 74F8831E48B81E5BF2E301334BA3ED41 /* PBXContainerItemProxy */ = { + 7EDB38231A01F4090FA47F0C79B9F824 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; + remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; + remoteInfo = EXAV; }; - 756200A3C1C2626C19BB514C5942D162 /* PBXContainerItemProxy */ = { + 7F4BC9B8A9C97D5493A795140621C05F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; - remoteInfo = EXKeepAwake; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; }; - 765DFC27735F57B327433D487327CE7F /* PBXContainerItemProxy */ = { + 80377F47E690B90F68BDE0ED94887AFD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; - remoteInfo = UMBarCodeScannerInterface; - }; - 77650DB9BCD15D3DBD659DF4437F2533 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - 7767FEEC42905BBBDF2E9AFA9FE85E29 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; - 780C489924600E2D2175327CB1A49BEE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; - }; - 79E9F2AA6859D35243914AF4693E6795 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; - }; - 7A19EA2D716E9BA5AFCD9073AAEB6C49 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; - }; - 7B3522FBFEC023993CFA8C115B1B206F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; - }; - 7B897D62DAD37F947393384156605211 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; - }; - 7C0B9E22BBC11A64C90E2F48A14F8E0A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; - 7C64EFBCE88FE7A6A96223D6FE0AC949 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; - }; - 7C73E6EF893F86C5F80F52BC152B6AE9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; - }; - 7CBA093BB5F4F39B712F2AF488BEEC02 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - 7CD8AE6F01093423091B25CCE1ED8EE0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; - 7DB750EF8B5A1A600653B2392309E8C3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; - }; - 7E738D3D1618C70BF0787446B765FF31 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; - remoteInfo = "Flipper-DoubleConversion"; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; }; - 7FC9F4285A5A42AC9541173002DCE831 /* PBXContainerItemProxy */ = { + 8072F15817ED442C11DD22466FB7E264 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; + remoteInfo = EXImageLoader; }; 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4897,13 +4910,6 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 80AE2E0403D58C02D4BE1AEBA59B169C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; - remoteInfo = EXKeepAwake; - }; 80FA676E34C136BD514521000FACCDC2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4918,19 +4924,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 815EA1D52F1010B54D91CE92826AC80E /* PBXContainerItemProxy */ = { + 8145084F4EAF0F01B4151EEB4C648EF7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; - remoteInfo = EXAppleAuthentication; - }; - 8167557852880ECC0A0F1AFA3AF5BFF2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; }; 8195006B3B2AB45ACA54D6CFB2BC09A4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4939,19 +4938,19 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 81A5E54307106E89B8F44E8446A4FA3F /* PBXContainerItemProxy */ = { + 81B20C29D8DE0AECFEEA7BFC3548E125 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; }; - 81B20C29D8DE0AECFEEA7BFC3548E125 /* PBXContainerItemProxy */ = { + 81BCD7A4EC3125023DBEEFF35A393C97 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; + remoteGlobalIDString = 33B041E5D061336F88B875C8B86E45FB; + remoteInfo = ReactNativeKeyboardInput; }; 81F66A0718CC2ED8851B3DF46E7A1E2B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4960,47 +4959,54 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 8275DFB6BE651189D62BD4BCB7FFCE53 /* PBXContainerItemProxy */ = { + 829843EDBC782D86F37AE6402F5812C6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - 852ECD89363EAB11E5C8D12DCCAA4DD3 /* PBXContainerItemProxy */ = { + 8664384D777470C42AFEBE69A204442F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - 855CA6E74DDDEFB94288B801AD40477A /* PBXContainerItemProxy */ = { + 86B57EDA6036DBDA5A4513A700B5DC4E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; }; - 86D62CF53A7AB2FEB4D32E0B4E124ECA /* PBXContainerItemProxy */ = { + 8795792233AA7AAE4AFEF5CA3E4952E1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; }; - 873A69DDCFD90F1DF7D9017673114797 /* PBXContainerItemProxy */ = { + 87DDD74C6168E8F38B8554781DEEC63B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; + remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; + remoteInfo = CocoaLibEvent; }; - 87DDD74C6168E8F38B8554781DEEC63B /* PBXContainerItemProxy */ = { + 8819AC90BF432CE5A8DF4EBF040A80FE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; - remoteInfo = CocoaLibEvent; + remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; + remoteInfo = EXImageLoader; + }; + 882AE71F3FBC68F12800B820FAE944EA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; + remoteInfo = EXWebBrowser; }; 882BEE9E8FCF0A6BD665F01DFBEF822B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5016,12 +5022,12 @@ remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; remoteInfo = "React-callinvoker"; }; - 896F6B80F3BC3956ADC898A9918C4606 /* PBXContainerItemProxy */ = { + 894F1783DC8176DBC1CAC4E5FE4262DE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; - remoteInfo = "react-native-safe-area-context"; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; }; 89EB9AE9BC2B35DEF18D56F66D4482BC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5030,6 +5036,20 @@ remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; remoteInfo = RCTRequired; }; + 8A54EB7B0C4D2D2CD8D66A3E6205DC1C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; + }; + 8A64C9AF6FB93DD3F969BACDFCA20F43 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; + }; 8A87B1215AE1D57577083FFA7A10794D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5037,6 +5057,20 @@ remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; remoteInfo = PromisesObjC; }; + 8AB01E4EBBB2D50067D0DE2EC43CEE44 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; + remoteInfo = CocoaLibEvent; + }; + 8AD5848B520BD7CD6999F3782AD8035B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; 8B10525073A1E3A812765DACA9E0E5F9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5044,19 +5078,19 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 8BCFBE8E144139E6908BBE0783D76B49 /* PBXContainerItemProxy */ = { + 8C5E6A02811EC0B2316605C6D60F705D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; }; - 8D5B9991BB98A47474EAB9779EE1C7F0 /* PBXContainerItemProxy */ = { + 8DAB8C3B108A31E8EF7EC840A88F8306 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; - remoteInfo = UMFaceDetectorInterface; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; }; 8DF020BBAD4E0EEEBB161574ABB68916 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5065,33 +5099,26 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - 8F0EBEBA4BE85E40F3FB183B179404E7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; - }; - 8F2DA0EE84C293714ECE9FA3BDA449D8 /* PBXContainerItemProxy */ = { + 8EF2B48EBD66C4CA9B2900B739855E81 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - 8F8B5D0ECBD935688F202AF3510AB719 /* PBXContainerItemProxy */ = { + 8F0EBEBA4BE85E40F3FB183B179404E7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; - 902F074732C9C4D805CEBC222D8B7F54 /* PBXContainerItemProxy */ = { + 903BED26B4437DD12B892A06619677B9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; - remoteInfo = UMTaskManagerInterface; + remoteGlobalIDString = 28A005E00FB77DDB2543047A07ED99A5; + remoteInfo = EXAppleAuthentication; }; 91345979BEE4768EF9136EE4EE3D00FB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5107,89 +5134,89 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 925B94B36D67D27AF51664D1645EC2F7 /* PBXContainerItemProxy */ = { + 91F495D864D5159885AC36C0EA646FE0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - 92913CE7F5671EA23F8DD72BD270724B /* PBXContainerItemProxy */ = { + 925B94B36D67D27AF51664D1645EC2F7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; }; - 9337760F63CEB61EB92CDA2399B31290 /* PBXContainerItemProxy */ = { + 926DFEE7A0C24A8D5DBC044BAB493A4B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; - remoteInfo = RNFBAnalytics; + remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; + remoteInfo = CocoaLibEvent; }; - 935BBCA2BD6E481D46FA01E32BFEF1E3 /* PBXContainerItemProxy */ = { + 927BDF9A45005191E07C2BDCEECA6B40 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - 937E8BB33621B0D4B6B924E030F6BA5A /* PBXContainerItemProxy */ = { + 928C7346A708CEB7918C883983F51CEB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; - remoteInfo = RNFBApp; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; }; - 9651FF3DBD5C266953053897EF7756C2 /* PBXContainerItemProxy */ = { + 935BBCA2BD6E481D46FA01E32BFEF1E3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; - remoteInfo = RNCMaskedView; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; }; - 96C3C58DF266EB7D9FFCEDF89B333502 /* PBXContainerItemProxy */ = { + 961E2F1FD2C47C7B1304F9B379EFD09F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; - remoteInfo = RNFBCrashlytics; + remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; + remoteInfo = "react-native-safe-area-context"; }; - 97AA08AE4B4F559041339C8CDE6C4D77 /* PBXContainerItemProxy */ = { + 9691E5189FF6053699C2B0A8630A27BA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; }; - 97B2B0B02B655684D330E426FC91572F /* PBXContainerItemProxy */ = { + 96F197F5A5E46C93A745C787BE0E6AE9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; }; - 9850FB5A53F9FC2CB071233E497CFA62 /* PBXContainerItemProxy */ = { + 97555F50FD71B1A3803B56858EA88A38 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; }; - 99314472C3F1CF983AF02556A35776E7 /* PBXContainerItemProxy */ = { + 97A3D2BF5B2B9627E2DBBC3478972D7E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; - 99CB1C25285CDAC855BC037CCCDC1F33 /* PBXContainerItemProxy */ = { + 97B2B0B02B655684D330E426FC91572F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; - remoteInfo = EXVideoThumbnails; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5198,26 +5225,26 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 9A6B1BFD6E25FFE6820F3E7009D05C56 /* PBXContainerItemProxy */ = { + 9A3C0D45190ED3333806C5FF7AA064A9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; - 9AC07F524F0145722C02086C637810D4 /* PBXContainerItemProxy */ = { + 9A8EB10EFCDC76BB2F6CF3E4E5469148 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - 9AD5B6A41DD991BCFFC9F69A7776042C /* PBXContainerItemProxy */ = { + 9AC07F524F0145722C02086C637810D4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 868B90C74770285449C60DBA82181479; - remoteInfo = EXFileSystem; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; 9BAAC27A785084FD67CA13B8EDA42C7D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5226,40 +5253,33 @@ remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; remoteInfo = "Flipper-Folly"; }; - 9BD5EC311CAE4B9C7E8DDF8118082581 /* PBXContainerItemProxy */ = { + 9BC81465D37E5360FE716853FC3E6905 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; - 9C81F0CF75A2643E2086F7D45F5B7162 /* PBXContainerItemProxy */ = { + 9C14DBB828FB613BF4B4169E0B4B521A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; }; 9C9D41F92515D7D2C0205D966777748B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; - }; - 9D307E73FF3F720E05C7AD4E100F075C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; - 9E2CED9304DF6E970DD73099FC2A327B /* PBXContainerItemProxy */ = { + 9D05993F4F599C0EC8C62BDB24CA2F13 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; }; 9E534D42CEE0BAE16AFBC5CDD1AE05CE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5268,13 +5288,6 @@ remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; remoteInfo = "Flipper-DoubleConversion"; }; - 9EA9C284B78D1354B2D4BCA62465F349 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; - }; 9F22B1056BC978E122F2EAE6CD9D7ED1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5296,68 +5309,61 @@ remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; remoteInfo = FirebaseCore; }; - A004A2C3FB38B8EC0BBA25417855E0D4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; - }; - A1CD62EF40F61F5D02E1EC2EDD699DD3 /* PBXContainerItemProxy */ = { + 9FD00932C6368496E06E1282E8706435 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; }; - A2F33ABF848647D27413D448A83F92ED /* PBXContainerItemProxy */ = { + A09B5847EC68A49DBD8363077ED63490 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; - remoteInfo = "Flipper-DoubleConversion"; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; }; - A2FA66312BE745E773DC2EEF2762F971 /* PBXContainerItemProxy */ = { + A28ECABFC56E17EA13272C601645BBC1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; }; - A3828FF5FB39039217CA29A893A54DF1 /* PBXContainerItemProxy */ = { + A2D94C5C1E306A99D3F3DB83346F25A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; - A45883A88950E4C078034DE677BD2E28 /* PBXContainerItemProxy */ = { + A2F903D7D9A8C4CC6AB5384704EC1218 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; - remoteInfo = EXLocalAuthentication; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - A581C6B3C076C796ED21A05A2942C2A9 /* PBXContainerItemProxy */ = { + A3186CEB37B55F0EC70D45DD9CFB0B4A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; }; - A5B60B1B39544DC5253ABD07D6485879 /* PBXContainerItemProxy */ = { + A43DA2B6E94145FB6D417C1492351303 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; - remoteInfo = FlipperKit; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; }; - A6A560CB5BCFCF6B695A425D2B81ED48 /* PBXContainerItemProxy */ = { + A54F26C7B23B92B6C2AB0D804CA0B9D3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; - remoteInfo = UMCameraInterface; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; }; A71AF0599E370DE67697EB341A4717CC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5366,19 +5372,19 @@ remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; remoteInfo = GoogleDataTransport; }; - A735C3C076CF8106DEA2E3E0A4550C15 /* PBXContainerItemProxy */ = { + A7E5D397C11338DEED5E896EF959836C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; }; - A7E5D397C11338DEED5E896EF959836C /* PBXContainerItemProxy */ = { + A7F7AFAD23C4190AE9102069D1091780 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; }; A86A3721252494F286B714B8A88F95BA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5387,12 +5393,12 @@ remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; remoteInfo = "Flipper-Folly"; }; - AA244138E7BA3CD2D7BD9FA21605E48B /* PBXContainerItemProxy */ = { + A9305DB077DAC55DC705CB50DFE6994E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; - remoteInfo = EXLocalAuthentication; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; AA5B8F43EAD114EE3717346D55C72BE5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5401,82 +5407,89 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - AA720C04C92D5F9F7419344C04D974ED /* PBXContainerItemProxy */ = { + AB5BB564F6EBF1F38CE73BBBE2C88987 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; - AA7D976367D89DFF9045D927833AC659 /* PBXContainerItemProxy */ = { + ABB406873DA1ACED37DC37FADCC58D8D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; }; - AA90526BBAF4A94F88E7297F5621D2CC /* PBXContainerItemProxy */ = { + AC3085603EC5C479E7BBF907C850FFEC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; + remoteInfo = EXVideoThumbnails; }; - AB5BB564F6EBF1F38CE73BBBE2C88987 /* PBXContainerItemProxy */ = { + AC4A774AD4298B03F7153D4FC3C59F8D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; }; - AB73AF3E9BAEBB6C898995C4A5946BBC /* PBXContainerItemProxy */ = { + ACDDF280E206D10F889E114741848BEB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - AC4A774AD4298B03F7153D4FC3C59F8D /* PBXContainerItemProxy */ = { + AD35E9F1769247FD5F3A3ACE6B6316AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - AD31FD19C61BB36FD74C9BA21A896DF9 /* PBXContainerItemProxy */ = { + AE8FB3B2C3A8E8F3BDFCE223A4C9943E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - AE8FB3B2C3A8E8F3BDFCE223A4C9943E /* PBXContainerItemProxy */ = { + B09FEB93AF1981A69D66303D2664056F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; - B19AB5038FE8A242BFCD762B1BA89AA2 /* PBXContainerItemProxy */ = { + B15193DA924202D6338B5B0524992E2A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; - remoteInfo = RNCAsyncStorage; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; }; - B1C0A034ECD22BD66E1B28389FBC84F9 /* PBXContainerItemProxy */ = { + B1D847248EC73DD593AF917E9D245222 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; - remoteInfo = RNUserDefaults; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; }; - B2F1BDD4421F5567A31BE07E891DE961 /* PBXContainerItemProxy */ = { + B292C831AAC36008DBC9DEDE7E76E53B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; + remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; + remoteInfo = EXWebBrowser; + }; + B2B49D99C98D16862D87BF1D8994BD0F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; }; B2FA3966A49A0C9A1B7398D28D027638 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5485,12 +5498,12 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - B31BE5F56839C6B2828C8DB678628BD2 /* PBXContainerItemProxy */ = { + B317C91666F62A8229E21726CC221A33 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; }; B325F9553222FA53980F926E839937E2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5513,13 +5526,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - B402CA06942E7CA7AAA8515C46FFD247 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; - }; B40AA08577F30A00FD2A25A08341964A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5527,12 +5533,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - B4423E08239B159DAC652D165FA1C183 /* PBXContainerItemProxy */ = { + B4CE7D340756A388E58AF12BBFAFDD63 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; }; B4D453DE31A865E38FCE41018FF05012 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5548,12 +5554,12 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - B564E5602A6BC67C2371AB2B17192014 /* PBXContainerItemProxy */ = { + B58B6E1D796F7C4443D82C96325C5FB3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; + remoteInfo = RNFBApp; }; B5E90F5A93A4DF2C85CB04E1C028E70E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5562,54 +5568,61 @@ remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; - B603115D864C520D6482B0A57DD511C0 /* PBXContainerItemProxy */ = { + B6677D6DAB197C7676A97F624A434B26 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; }; - B65E5E5EDE7E65D488913DFB6C520360 /* PBXContainerItemProxy */ = { + B70CECE59A7898D42264FC62F8D7628C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; - remoteInfo = RNFBCrashlytics; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - B6677D6DAB197C7676A97F624A434B26 /* PBXContainerItemProxy */ = { + B724FAD1E7467DBF06FECC070E24E149 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; }; - B7178B40087CC371B2D06E64B379D5F5 /* PBXContainerItemProxy */ = { + B8C5CB33775861082284151A7B87C77D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; }; - B72244A237FCB8E6A8870696502B671D /* PBXContainerItemProxy */ = { + BA19FA90E07AEE296003271B8FAC013C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; - remoteInfo = FlipperKit; + remoteGlobalIDString = 33B041E5D061336F88B875C8B86E45FB; + remoteInfo = ReactNativeKeyboardInput; }; - B82951709CED7FF36703E8A0A8CD2FB1 /* PBXContainerItemProxy */ = { + BA8918FF1CDCF34A08912891E7A9FE85 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - BA8918FF1CDCF34A08912891E7A9FE85 /* PBXContainerItemProxy */ = { + BBBF66BE90497254A0FCD1CE3D956082 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; + remoteInfo = "react-native-safe-area-context"; + }; + BC4E9931D903A03869D58747D31FC6F5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; + remoteInfo = RNCAsyncStorage; }; BCDA17519A7296DCC9E213B0E9337C93 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5625,6 +5638,20 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; + BD87CEB5913D16132A3C3B1DAC1CE395 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; + }; + BD9658B10E97FBF35C26CD886BA0F3CD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; + }; BDFC9376209109E8784F4E7DA1770B6F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5632,12 +5659,12 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - BF29C1EBF7A86CAAB9C6EE1C2CDAEFD5 /* PBXContainerItemProxy */ = { + BE393462FB7270897C49B4C686544456 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; }; BF2A9ED197DF746C24A0C6CB8CF649D6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5646,40 +5673,33 @@ remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; remoteInfo = "React-RCTVibration"; }; - BF49FFE78B98FBAA68D6BAEB5935E288 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; - remoteInfo = UMFaceDetectorInterface; - }; - C0FD2D1B32D2D3256D33F6909002282D /* PBXContainerItemProxy */ = { + BFBA7057C5DCD5194D0F5876E6EA1D78 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; - remoteInfo = EXAV; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; - C1706B224639845425D07B75E6227FFC /* PBXContainerItemProxy */ = { + C147EB6A0CC077B61B8C0B91CCBD33B3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; + remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; + remoteInfo = TOCropViewController; }; - C19C44C5B9A77498CD3E3975B2D5E56F /* PBXContainerItemProxy */ = { + C1C84EBF5907B25961F73A4A447D5313 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; - remoteInfo = EXConstants; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; }; - C2EB0B69E5B71D5B7CEF787DA982185C /* PBXContainerItemProxy */ = { + C2B36AF4A5D2DCCB4D75D0EAF2BF16FE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; - remoteInfo = UMBarCodeScannerInterface; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; C33E9472C09D771A868C935EADD927BB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5688,26 +5708,26 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - C3FEE95FFC3411F13658CA49AEA6AD1D /* PBXContainerItemProxy */ = { + C415B2263B3D3065CF0D297E0B4922CA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; }; - C43D14C1C7C996528BBC333036BF5E2F /* PBXContainerItemProxy */ = { + C4725969E8E8BED5B9299D881A342697 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = E3573FB7AF659C42B699003C73722241; + remoteInfo = RNFBCrashlytics; }; - C4C6D15D84894CFF65B29261C99EB9B8 /* PBXContainerItemProxy */ = { + C517984124EA7143ECFA3D26FF742BB3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; }; C53F6A668A1B81EA8D5EFA236BBDC391 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5723,12 +5743,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - C5E785DCD343186846D76898EE8FAB55 /* PBXContainerItemProxy */ = { + C59F8614A9DB1EC7DBBBD5BA56949F69 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; }; C5F28406FC5AC0A4A9DC20B65617D227 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5765,12 +5785,19 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - C7B466FA383D81AF6F3241A37DB05A84 /* PBXContainerItemProxy */ = { + C77AB78E75307BB18BC5D00D8FC7B6C6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; + }; + C77E9414EFEC331A01522E271C9D33FF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; + remoteInfo = UMAppLoader; }; C7ED593E81C9992CB3136F8B3479E783 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5786,6 +5813,13 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; + C9D4052562DE4954C87D3B63A363304E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; + }; CA39C5F52F69F8B71F02BEA427544E35 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5811,15 +5845,8 @@ isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - CB590837E282489674DA6B1FCD7C0520 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; CB5D399FDD2E586B6867737F1A70E364 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5828,12 +5855,12 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - CC5BB994C099F7C8C461715A78B6BE26 /* PBXContainerItemProxy */ = { + CC801E3F3BD91E69AA46CB8BECF6DF24 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; CCC71DC98DA1BFF43521E8CF40226C64 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5842,68 +5869,68 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - CCD6FB94D1DA07C9F1DAB620A4A4F015 /* PBXContainerItemProxy */ = { + D03C059055772F3A6BB4DDB9B59D9473 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; - remoteInfo = UMSensorsInterface; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; - CD7CAD7A9297E0C28C82E538A29BB4BF /* PBXContainerItemProxy */ = { + D0851167FE3252D302B28CB570DDFC9E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - CFC4B185C1FCB7E341E9828E2EC74914 /* PBXContainerItemProxy */ = { + D0ADFFA1030312CDEC894612AB38DBEA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; }; - D03C059055772F3A6BB4DDB9B59D9473 /* PBXContainerItemProxy */ = { + D144D07A8A180FDD1C23E25C83FBAB56 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; }; - D10E4AB1104805B2CB549FDCD0E5526A /* PBXContainerItemProxy */ = { + D155A7B765D90F3F06188348ABE21B14 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; }; - D1B6676933B6091F594BD94DE1B18D11 /* PBXContainerItemProxy */ = { + D1837FD8965948ED109FCDE0DC81859E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; - D1B92E7CF50E518C083EE603E83BC504 /* PBXContainerItemProxy */ = { + D1B6676933B6091F594BD94DE1B18D11 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; - D292BFC0747A88D94B390E8FBCD831CB /* PBXContainerItemProxy */ = { + D1BDF303BC2D4654A1C9BE7DA4FE1882 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; }; - D2A9F75B6C6D125AE815F306835297D6 /* PBXContainerItemProxy */ = { + D210E08EB4E75D6BD008BE7BF36F2DD2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; - remoteInfo = EXWebBrowser; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; }; D30F9BCE2D5F265AFC3B77B3F8D0505D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5926,6 +5953,13 @@ remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; remoteInfo = SDWebImageWebPCoder; }; + D4C99DE7A63D958D92F6DD583329D67E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; + remoteInfo = EXLocalAuthentication; + }; D5CA4506EB72978BF9DA2DDCDB29D54A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5933,40 +5967,40 @@ remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; - D5FBBA18523897587DA48B6F1A6E19C6 /* PBXContainerItemProxy */ = { + D5DCCA94BE99A35BCB85566DE5FA474C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 27E277B43A5F7AE00EC5051AB99AC38E; - remoteInfo = ReactNativeKeyboardTrackingView; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; }; - D62C017428E93B98F00E023C43EC1EE8 /* PBXContainerItemProxy */ = { + D5F998C49FC69E68A25AA53D26700707 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; - D712B3FBD88A28808A4ADB7C9D56FEC4 /* PBXContainerItemProxy */ = { + D62C017428E93B98F00E023C43EC1EE8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; - D7FFEF9D7AE1849478BE36EF1EE9DE0A /* PBXContainerItemProxy */ = { + D7D428EFBA2C93C8E68F472B98279810 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - D8CD7F04517359388C54DD5079CDCDC1 /* PBXContainerItemProxy */ = { + DA10D47E8B52EF3EC53E9A1A4A574A3B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; }; DA27884C3FBE229B7E04DBFA9F4A58F9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6003,26 +6037,26 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - DBC8F1745DAC18B77E6339D3D2F07E4F /* PBXContainerItemProxy */ = { + DC35D17457841C5E413EC553D87DADE8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; }; - DC35D17457841C5E413EC553D87DADE8 /* PBXContainerItemProxy */ = { + DD557F30258116EFCDF5334E96F64EF8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; + remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; + remoteInfo = RNCMaskedView; }; - DD332D06C98468476366962EEB6F446E /* PBXContainerItemProxy */ = { + DD81D12D83447A5869FC71526CD35AFD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; - remoteInfo = CocoaLibEvent; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; }; DDFCA674E1FE8DC1DB86D5A0C0A1FB6A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6045,6 +6079,13 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; + DF10051F5C6A413A607300BA84368B80 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BDD119F8782FABE2707D3D913EC3EDE5; + remoteInfo = RNFBAnalytics; + }; DF83807DED7F8C5AF770B13C6BAA9515 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6073,33 +6114,33 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - E1C62364FD1EBA6AC10FD7374D0B08B7 /* PBXContainerItemProxy */ = { + E2539B18E07B9C243AC0276439480F3D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - E24F44E7C91CF06DB7175022659AD7D4 /* PBXContainerItemProxy */ = { + E2C62C33461C7E2702433ECCBD3ED565 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; }; - E2539B18E07B9C243AC0276439480F3D /* PBXContainerItemProxy */ = { + E2CCA8E8115AACB9EB8639B4F4EAC3CE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; }; - E2CDEC4DE5B88BD3841BA5F094B06EFA /* PBXContainerItemProxy */ = { + E2E9E1BFDF193698C7A9AA6009C72FD5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; E4C5288E9590D734DF4231687F5AE711 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6108,47 +6149,47 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - E5559543E1D84272633B986661EE620B /* PBXContainerItemProxy */ = { + E531D7F9455F1EC204213D8B26A891AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; - E5705D0D7A14F5285EF0F7A779925E31 /* PBXContainerItemProxy */ = { + E5559543E1D84272633B986661EE620B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F3966F664F3CFAEFAB57C40FB54D3788; - remoteInfo = TOCropViewController; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - E578A89849C64640D7209C8ACFFFA076 /* PBXContainerItemProxy */ = { + E679399E70A1302F64F34F5147A0D753 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; }; - E634A6162140C5B961545B2E89D7A23C /* PBXContainerItemProxy */ = { + E6A312D4FD065D132CE86F699ADC006F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - E679399E70A1302F64F34F5147A0D753 /* PBXContainerItemProxy */ = { + E6A978D856BE0D88C55824D5E64F02B1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; }; - E6A312D4FD065D132CE86F699ADC006F /* PBXContainerItemProxy */ = { + E71070576C5011CB4C497317CB547D97 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; E78EB90AEEC70687EFA88E5AA41058AA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6164,6 +6205,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + E7D573B0CE2097B45FFC138BCC08F6E4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; + }; E82ACE99C02A32E8354DEFDEE354DAB2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6178,19 +6226,19 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - E90029E85BE23351C5A4BE8396D75B8E /* PBXContainerItemProxy */ = { + E8CC16DFC1FFCACBC5299EEDD295292C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - EA60B34FAE20DB8AAFA9B1922269139A /* PBXContainerItemProxy */ = { + EAA855A99AB16B5D8F61BDA38DC0E354 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = 90D0DE2F3348233618414728C35311CA; + remoteInfo = RNFBApp; }; EAA9F477386E52EB30E75431006FAA8C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6199,6 +6247,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + EB12E42943010A92F519E9BFC7DB543C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; + remoteInfo = UMSensorsInterface; + }; EC27520D8FECFB4E9412291A616D4F07 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6213,6 +6268,13 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; + ECC708DBEAE24FC8CEED8FB53DB8CEF9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; + }; ECDA3E11587890F6131BBCCEE8B3A5A3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6227,68 +6289,68 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - ED9CFAF4D576345425901F6D351BF162 /* PBXContainerItemProxy */ = { + ED35C6A14E1524086A9B93EDE40E3DFA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; }; - EF1B0C9A37B7DDEE5C37E8F477B13590 /* PBXContainerItemProxy */ = { + EDE192282AD60B72822BECE73F9F2398 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; }; - EFB0AF13D239174FC9CDAFF9D17ECDFC /* PBXContainerItemProxy */ = { + EEAC49692E638D5D4790ABFBC99F38E0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - F0595A3A8DC327024422604AADDB6501 /* PBXContainerItemProxy */ = { + EEF440806D7662571E8255427D1C638F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; }; - F0F05B46D31F97AD80A8EE2A9859B0E0 /* PBXContainerItemProxy */ = { + EF7A2E0EC79A060A65FED931E8FBE2FB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = 4A95B7CD1D5F80C5E8CD9CDA00D41F70; + remoteInfo = EXVideoThumbnails; }; - F10C6ED7FAE6E6327D410552FEEB5B8C /* PBXContainerItemProxy */ = { + EFB0AF13D239174FC9CDAFF9D17ECDFC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; }; - F145702AE8922B12B21EC56B1F6A01BD /* PBXContainerItemProxy */ = { + EFD5EF8EAC9C6BD8AAFAA9ECA2A136EA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; }; - F191A483929B03CE30B1D31702CAF54A /* PBXContainerItemProxy */ = { + F0595A3A8DC327024422604AADDB6501 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - F193EBF0DD0204CE1AA054337CA9E7ED /* PBXContainerItemProxy */ = { + F191A483929B03CE30B1D31702CAF54A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; - remoteInfo = EXWebBrowser; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; F1D31400DE78E76FE461920F078645F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6297,19 +6359,19 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - F24627E9A7C6345D70F2328874B8E6A9 /* PBXContainerItemProxy */ = { + F30F43473AAF6709ECDD0451946735F6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; - remoteInfo = RNCAsyncStorage; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; }; - F46EA4560EC34335940198CDE47DE3B4 /* PBXContainerItemProxy */ = { + F498B83A60E93E162E3277A972784709 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; - remoteInfo = UMAppLoader; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; }; F4D41B9BAEE1E0D644EE2DC36C19D572 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6318,13 +6380,6 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - F508C4403E8BFCC4439A69976A1D8DA7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; F56EBC18CB64EE0482444624DFEC06A2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6339,13 +6394,6 @@ remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; - F596D062F5BCE06F4EDBF45CAD3BD53C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; - }; F6D03AA427E993C8552AA921EA59A306 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -6360,54 +6408,54 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - F73B77B3DE51E2B91946FD2D65EEEF35 /* PBXContainerItemProxy */ = { + F70AFD896A74C114D7B13A2737B2F38D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; - remoteInfo = EXImageLoader; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; }; - F951B17A7A7A64D132F94DFC375CAF77 /* PBXContainerItemProxy */ = { + F75F7B2D23B406EA0B38E23F0BD2A6BF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 33B041E5D061336F88B875C8B86E45FB; - remoteInfo = ReactNativeKeyboardInput; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; }; - FA5699ABFF3409E16D3704454813326A /* PBXContainerItemProxy */ = { + F79D6B73F0C2C586E6E8F52FC444CD3C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 64F427905796B33B78A704063422979D; + remoteInfo = "rn-fetch-blob"; }; - FB2F433A2A0F0D2B62AE89E1773126A1 /* PBXContainerItemProxy */ = { + FB885DD65B3816968A484CB683270E14 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - FBC2011CA634388B1621BA952027D5EC /* PBXContainerItemProxy */ = { + FB996DAB42B6381B0369EEFDEEEA0831 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; }; - FC08646CEFADC8729C286DFED21F92F1 /* PBXContainerItemProxy */ = { + FBD4BBEEB9D1A9ED29902DF7A6E3FF98 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; }; - FDBE2AE0C5D25206ABD02857E2ADFE60 /* PBXContainerItemProxy */ = { + FC08646CEFADC8729C286DFED21F92F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; FDE949C946FC4658F2DE21F4C568B19A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6416,12 +6464,12 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - FE4069586AE78F3F0889B3C0A352A898 /* PBXContainerItemProxy */ = { + FF1A45E2983D47DE5B9912C67359FEC5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; FF694E354EABEF39E4806B5AB437E5E8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -6434,190 +6482,225 @@ /* Begin PBXFileReference section */ 000C1C9CF9386C890FF6ED473A586760 /* AtomicStruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicStruct.h; path = folly/synchronization/AtomicStruct.h; sourceTree = ""; }; - 0016CB757D356FEFC24C3CBF2180C813 /* UMAppLoader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.debug.xcconfig; sourceTree = ""; }; - 0029EF376D659E2A8E63C158711381ED /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; + 00313826D7407AEF8938304DA08ED092 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; 0042F75E752822AAD14CDD67E596CC94 /* filters_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_sse2.c; path = src/dsp/filters_sse2.c; sourceTree = ""; }; - 009D87202DE07E1EBBE31DE747F8A305 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; - 00C5A3A73D5F0FA3B10AE16775F271DF /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; + 0053459BC93354C408781F87E305F368 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; + 0057CC6B5ABECFC4228B53971E0D15C9 /* 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; }; + 00B79655A9D81E5053B0464854B20048 /* RCTSourceCode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSourceCode.mm; sourceTree = ""; }; 00CBFF92D56DA6B36FE47533193E9695 /* MacAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MacAddress.cpp; path = folly/MacAddress.cpp; sourceTree = ""; }; - 00CE7932055F4F2101C67F5023A81F43 /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; 00E68C9D22DEAF608248AFF7D8E30C6B /* SKBufferingPlugin+CPPInitialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SKBufferingPlugin+CPPInitialization.h"; path = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin+CPPInitialization.h"; sourceTree = ""; }; 00EA3110EC052F471895B08BDB95D14E /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = "Objective-C/TOCropViewController/Resources/ja.lproj"; sourceTree = ""; }; 00ECC4D7C4B988574559EAA5C406654C /* GDTCOREvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h; sourceTree = ""; }; + 00F0F630C3456D5195516FF5DF7D3922 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; 00F52A594E2C80A0DF4AE080469582BE /* SysFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysFile.cpp; path = folly/portability/SysFile.cpp; sourceTree = ""; }; 00F6CD7A726691FC13F48062B255E0D7 /* err.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = err.h; path = ios/include/openssl/err.h; sourceTree = ""; }; + 00F8AAD81A6EDF2F94C5F5952A52975D /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; 00FD58DF7CD8D15B073350CECA790329 /* ConnectionSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionSet.cpp; path = rsocket/internal/ConnectionSet.cpp; sourceTree = ""; }; 0102F39227A15B9D206728EC8E11B82F /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; 010BC0A53D08750CF770EB12F6BCC918 /* ClientResumeStatusCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClientResumeStatusCallback.h; path = rsocket/internal/ClientResumeStatusCallback.h; sourceTree = ""; }; 0117554899DA5E30A66E9EF1126DCBC9 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/Demangle.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; }; - 0127220FAD3022C756CD003E10A1F727 /* RNNotificationCenterMulticast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterMulticast.h; path = RNNotifications/RNNotificationCenterMulticast.h; sourceTree = ""; }; - 012E91A98522B764E7DF1BE713D5044A /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; 0142A2151000129C9513A721D32A13F1 /* PasswordInFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PasswordInFile.cpp; path = folly/io/async/PasswordInFile.cpp; sourceTree = ""; }; - 01802F83F42FC8D13032035127C05A90 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; + 017DB0362BA3E36A5524AD9BDAD36451 /* React-RCTAnimation.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.release.xcconfig"; sourceTree = ""; }; 0182F9D56F6C097229A5B2291E7D6EBD /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Private/GULNetworkConstants.h; sourceTree = ""; }; - 018AFBB0C9E2D3C964535C8E1095F798 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFPSGraph.h; path = React/CoreModules/RCTFPSGraph.h; sourceTree = ""; }; 018E19081D271BF7A075A3A2B1C2153C /* FrameHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameHeader.h; path = rsocket/framing/FrameHeader.h; sourceTree = ""; }; 018ED7207228ADB73114CF3E23C02E56 /* GDTCORUploadPackage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadPackage_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadPackage_Private.h; sourceTree = ""; }; - 018FF17C1BC7E4AEA45E2A67DB2ABC92 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; 01958C82A7AC7F3E36F09297E185646C /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; 01A27CE802C37390E44D4E7056FF1B3C /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = ""; }; - 01B7927B110DD11DA2C776EBC611BD10 /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = ""; }; + 01A33E62AF1208C6BAC76B2487E693F9 /* EXLocalAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXLocalAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 01B89DB928C2C8DE27EFE0F02E24BA81 /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; 01BA1F390E03046334B6FA8C65D5161C /* SysUio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysUio.cpp; path = folly/portability/SysUio.cpp; sourceTree = ""; }; - 01C0F8981C0D86606BF0639C364CE085 /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; + 01C80D00491A01DFE989B7CD6EE7CA47 /* UMAppLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMAppLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 01C81E114DEBEB3CE8A88939DF4FAA9B /* histogram_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram_enc.c; path = src/enc/histogram_enc.c; sourceTree = ""; }; 01CF13B9D679B7BC88155AD55F3DD540 /* Pods-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.release.xcconfig"; sourceTree = ""; }; 01DE1A7C164C19C5C41CA6B753E4D9F6 /* FIRCLSSymbolicationOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSymbolicationOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSymbolicationOperation.h; sourceTree = ""; }; 01E2102B0DA87D40AFAE42C15752A617 /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; + 01F7D17CA3279C058FA7CDF1D4734FF4 /* EXVideoThumbnails.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXVideoThumbnails.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 01FE36D624878EBD60F0E573CB5949C5 /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; 0204F448C1955F89B2D7BF442FA8A461 /* F14Map-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Map-fwd.h"; path = "folly/container/F14Map-fwd.h"; sourceTree = ""; }; + 022C1549C53EE9F08BD471BAAA55305F /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; 02471DCEA92594DDAF0D982FEFEDA153 /* Builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Builtins.h; path = folly/portability/Builtins.h; sourceTree = ""; }; + 024B065AFF143C2DEC1C1F855EE492C3 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; 024B2CE060427CAB44E50E9DC3381F01 /* pem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pem.h; path = ios/include/openssl/pem.h; sourceTree = ""; }; 024CB9C53AE44274FF1F389BD4E97E78 /* dec_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_neon.c; path = src/dsp/dec_neon.c; sourceTree = ""; }; - 025A5E331BE82AF2D4C6B7DAED1E6FFD /* react-native-appearance.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.debug.xcconfig"; sourceTree = ""; }; - 027A65AD9723F1BC0B73083CB0FD34B7 /* EXResumablesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXResumablesManager.m; sourceTree = ""; }; + 02835B7E9F15A20B6E4AE9528C7069A2 /* RCTLinkingPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingPlugins.mm; sourceTree = ""; }; + 0295B51E8CEA0461CC65504BB687DCF5 /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = ""; }; 02A1DAA448414607CB008FC34D21F0B6 /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Private/GULNetwork.h; sourceTree = ""; }; 02A4CC48C0CC44FDAB7807933A26642A /* ManualTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ManualTimekeeper.cpp; path = folly/futures/ManualTimekeeper.cpp; sourceTree = ""; }; 02A7A6EE0BDE271AEA9B8F092BA77ECD /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; 02C4EA56112A4F3A48191A1FD70FC658 /* UIImage+CropRotate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+CropRotate.h"; path = "Objective-C/TOCropViewController/Categories/UIImage+CropRotate.h"; sourceTree = ""; }; 02D12BED99C08C449134F3ABA2D7312E /* FIRCLSCompactUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompactUnwind.h; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind.h; sourceTree = ""; }; - 02E9C129039A17E828B1E3DC260FA844 /* React-RCTVibration.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.release.xcconfig"; sourceTree = ""; }; + 02E311417C5E0C06D9146F250652994A /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + 02ED863CD770F3959D1A3A05CF7C80F3 /* EXHaptics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.release.xcconfig; sourceTree = ""; }; 02EF22CC1847415627DE3C284B025591 /* des.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = des.h; path = ios/include/openssl/des.h; sourceTree = ""; }; 02F6463D38ACD18CB2880A035B7C5D6E /* filters_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_utils.c; path = src/utils/filters_utils.c; sourceTree = ""; }; 02F7C66002954BAABB2DE0C8A87297A2 /* idec_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = idec_dec.c; path = src/dec/idec_dec.c; sourceTree = ""; }; - 03055A2EBF69009AA39593AE83A97542 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; 0306AEB24BC4B1375D0CA7810F937A03 /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = ""; }; - 032065F6323BD031086AE106FE42F7B7 /* RNGestureHandler.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.release.xcconfig; sourceTree = ""; }; + 033EE9EB15CDD23019C85455C0841D27 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; + 03770F5DFA6E69008D6F336601625A9B /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; 0379599C2D5CFDBFA420B0F6654099B2 /* lhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lhash.h; path = ios/include/openssl/lhash.h; sourceTree = ""; }; 038511F99EACBC85FC6A930F24213B9B /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; 038EF2E261986E992472CC11A050BDAA /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = ""; }; 0391B43080EF6D3425223378484F3F28 /* ssim_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim_sse2.c; path = src/dsp/ssim_sse2.c; sourceTree = ""; }; - 039577ABC936EC3ACAF56D32A8983B7F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 0394D372B31962CA0FBBFA69F03B88A4 /* RCTKeyboardObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTKeyboardObserver.mm; sourceTree = ""; }; 03B3E59C098931633A37DFD5F5F3A00C /* RSocketTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketTransport.h; path = rsocket/transports/RSocketTransport.h; sourceTree = ""; }; - 03B6126D5858CD6E529195CF96442AEA /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; - 03C1D3D0CD542E6B9E4B92D290C1864D /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; + 03BF0A90CF65FA59B2E90198B802CD0A /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = ""; }; 03E176DE5FBC939C136BB9003C026E9D /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = ""; }; - 03E5EB47B6A3A71B44638D9608347DF3 /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; + 03FE4AB4BDB75C8B503A404B32E25221 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + 041C8B180F45CD8A1D1A44A4CBEFE0C2 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; 0425E33BF01B9BD2AEA978878BDF639B /* SKObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKObject.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKObject.h; sourceTree = ""; }; 0432F434553D815CDA8F8F7454FCF6F2 /* Flipper-PeerTalk-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-PeerTalk-dummy.m"; sourceTree = ""; }; + 043F2F9D122F7DFB997AE801BE095FF6 /* UMAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppLoaderProvider.m; path = UMAppLoader/UMAppLoaderProvider.m; sourceTree = ""; }; + 045371D5FFA1E6C6AAB6BD1B3FC5033B /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; 0455887BDACBBACB48FC0692AC6079A2 /* AsyncTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTransport.h; path = folly/io/async/AsyncTransport.h; sourceTree = ""; }; + 045627483BE41B9F29A5EF1C4BD3D29E /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; 046FA754D7F247F0E2FE8BF6BCBF7184 /* Uri.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Uri.h; path = folly/Uri.h; sourceTree = ""; }; 0473D9A9846C9F8D6B1F54C5E8C45BDC /* dec_clip_tables.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_clip_tables.c; path = src/dsp/dec_clip_tables.c; sourceTree = ""; }; 04AE5FCFD49E7AC15AB9899359D02233 /* ThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadPoolExecutor.cpp; path = folly/executors/ThreadPoolExecutor.cpp; sourceTree = ""; }; - 04E49807A13249B8A4C0055848558507 /* RCTNetworkPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkPlugins.mm; sourceTree = ""; }; + 04B98A6541C44BDE588A8BB0762135B4 /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; + 04E3BA4D4D06A24143451980FF4427D8 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; + 04E5BF0CF306F649BFC051351E84ADA6 /* EXConstants.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.release.xcconfig; sourceTree = ""; }; 04F1E01AC38BD111AE4CCF25038529E2 /* SKSearchResultNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKSearchResultNode.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKSearchResultNode.h; sourceTree = ""; }; - 0523E97BB6B4DB22CB2C8CD1599C9E2C /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; + 04F6EDCBB1BEAB601C3026AEA1CCEB0A /* EXVideoThumbnails.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXVideoThumbnails.release.xcconfig; sourceTree = ""; }; + 0524B1607ADF3E508B48634EC00BD81C /* React-jsinspector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.debug.xcconfig"; sourceTree = ""; }; + 05272CDDE037E09ADAAFE901F6974A42 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; + 0534894A0989BDB927FB21B9F60C2E70 /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; + 0540070B85E2112E8C63589D4A4E3F83 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; 05401CE492EF9115734C1C5563972E93 /* Flipper-Glog.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Glog.release.xcconfig"; sourceTree = ""; }; 05423E07A4C1698CB808DB91D6D3B324 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = "Objective-C/TOCropViewController/Resources/es.lproj"; sourceTree = ""; }; - 0546B38E89D5225EFBEEC25FB3B095C8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 0559E634C3FE475DD1C584491F360ACC /* RNCSafeAreaViewEdges.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewEdges.m; path = ios/SafeAreaView/RNCSafeAreaViewEdges.m; sourceTree = ""; }; + 054C83BBDAC376FE1B5AA8D3C86B099F /* 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; }; 0561592146E0B71B444B2A5D0C8E4DFC /* NetOps.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = NetOps.cpp; path = folly/net/NetOps.cpp; sourceTree = ""; }; + 057240011425C7EB3291A95BD518EAEC /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; 0578FBA19D9B1209FBDD7387C3388360 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; 057C10612EEE697E31A534FECD6725C9 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = ""; }; + 059B393E7122823110C12BF2E2B38B02 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; 05A0AB7CB680776A396075996321AC32 /* StreamThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamThroughputTcp.cpp; path = rsocket/benchmarks/StreamThroughputTcp.cpp; sourceTree = ""; }; 05B0307A15AD186CB2A696F28EADF3FA /* UIImage+WebP.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+WebP.m"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.m"; sourceTree = ""; }; + 05B0E1D9D63EB27E1BF20F304EB190E8 /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; + 05C06ED8DB2D61102A75E06F2D6B29E2 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; + 05C0A0F2BB5834C888BB920A307B7834 /* RNCAsyncStorageDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorageDelegate.h; path = ios/RNCAsyncStorageDelegate.h; sourceTree = ""; }; 05C19B4D366F7293CEC8B166EEC97680 /* FIRInstallationsSingleOperationPromiseCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsSingleOperationPromiseCache.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h; sourceTree = ""; }; - 05C256C0174F99CDCB35A0DFD17CF608 /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; + 05C2BC89802FD8B5C48D932C9C843808 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 05C4AFF5F881DC41914140609386E91D /* Types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Types.h; path = folly/futures/detail/Types.h; sourceTree = ""; }; - 05C7AD61F7C506555C124F03088B71D7 /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = ""; }; - 05D5E525457517A50EFA34B760767F4B /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; - 05EDC5EF4F7A61CC4C83B5623AB8466D /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; - 05FCB29EA8A0ECF40CDEC1CDB7D91201 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + 061BB0AF41EF8957C0CEF57545B3CD22 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; 0632852FC21C147A01E78EBFD7BB779C /* SysResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysResource.h; path = folly/portability/SysResource.h; sourceTree = ""; }; 064579C97FE2FD85F8F6FABB2DA1FCB9 /* FIRCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCrashlytics.h; path = Crashlytics/Crashlytics/Public/FIRCrashlytics.h; sourceTree = ""; }; 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 064D23FD317D7AFAF8A434A19B5751B1 /* RCTConvert+FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIRApp.h"; path = "ios/RNFBApp/RCTConvert+FIRApp.h"; sourceTree = ""; }; + 064FC8F9BD1662E1D9E3FAB2DCDB231E /* 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; }; 06519A20357294D88A33C8B5E654C741 /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = ""; }; 0653876D2A6D0E1E0E290096153FB5C3 /* CoreCachedSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreCachedSharedPtr.h; path = folly/concurrency/CoreCachedSharedPtr.h; sourceTree = ""; }; - 065C72E5ED957EA669215A314CBC0BCA /* RNCSafeAreaViewMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewMode.h; path = ios/SafeAreaView/RNCSafeAreaViewMode.h; sourceTree = ""; }; - 0661EECF808F6E9905F868CA6983E029 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 067AD4EBE0EC673E70438BE05CE3906F /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; 0685B12F74013DC73F69FF3FD9821261 /* Enumerate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Enumerate.h; path = folly/container/Enumerate.h; sourceTree = ""; }; - 069A369A40EF5B5F2056CA1660079BA9 /* react-native-appearance.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.release.xcconfig"; sourceTree = ""; }; - 06B86DCEBCB5BF2A5B783A9A7CFE66FF /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; + 06A56230C14E41E096A9923585B75D48 /* rn-extensions-share.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.debug.xcconfig"; sourceTree = ""; }; + 06AA6F0C5F0864240C9A960BD34E2F3C /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; 06B8C344FAC449658DB496C12EE1B09E /* FlatCombiningPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlatCombiningPriorityQueue.h; path = folly/experimental/FlatCombiningPriorityQueue.h; sourceTree = ""; }; - 06C98C79B5EF2C133FF6CE557FF42847 /* RCTNetworkPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkPlugins.h; path = Libraries/Network/RCTNetworkPlugins.h; sourceTree = ""; }; - 06E0DE5F679D0A42FD36AB254B21D6CD /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; 06ECB4DDBDF59300DB6473D41582222F /* OpenSSL-Universal.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "OpenSSL-Universal.release.xcconfig"; sourceTree = ""; }; 06F217CFFE8C10DD44F2F84C372C197C /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; + 06F6A312CAE9E8C00B3ADA6FEABD433D /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = ""; }; + 06FB1C009918F87DCAF4CA73FD1981E9 /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = ""; }; 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 0703FF866D3C3CA07EAD519056976C91 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; + 0704E3C0E325A639DC502AAF6444E78C /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = ""; }; 07067FE5D61C32C991076DA4A8992F11 /* Unicode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unicode.h; path = folly/Unicode.h; sourceTree = ""; }; - 0717FE9C7AE2E934863F3D36F111C1A7 /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = ""; }; + 07172DEFA5E87694B043C4E704976BD9 /* REAUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAUtils.h; path = ios/REAUtils.h; sourceTree = ""; }; + 07194359E2ECCC9D04469524E4457B16 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; 072F502AFB8A651C136A272CC9256E3B /* FlipperKitNetworkPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitNetworkPlugin.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.h; sourceTree = ""; }; 0739C73632CCFC5DC3B6AAA672BB150D /* PublishProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PublishProcessor.h; path = yarpl/flowable/PublishProcessor.h; sourceTree = ""; }; 074D4A4A9130C19A9F5949A72741FFE3 /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/FIRConfigurationInternal.h; sourceTree = ""; }; - 0751174B904E14A29B7B50EAB6E68FDA /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; - 075555AF8B96027BD2D478E62C5221C9 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; 07561C396E25DDE60BD06FC80FCA2EC1 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/detail/Demangle.h; sourceTree = ""; }; - 0792CFE33BB76561F77A5FA76A3C3D85 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; - 079800DA2EACF334AF35597194FAF376 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; - 0798EAB5ECE84B8786E46E1DDC74EBC9 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; + 076D3EA7E0B8432BF89900593652642B /* RNCAsyncStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorage.h; path = ios/RNCAsyncStorage.h; sourceTree = ""; }; + 0770546DDF91BB7E8A9B95B915902A8E /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; + 07A15E1E9476E3BD79C5B79B20217135 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; 07A28140D5B3D7A5A0F04DA4C43790FF /* IndexedMemPool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IndexedMemPool.h; path = folly/IndexedMemPool.h; sourceTree = ""; }; - 07ADC75B821AF8F5D4B5327F2BF23598 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; + 07BB5E1BB5C9BD52761C0A9FCDADA805 /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = ""; }; + 07BC4EDA3A475A9BD824CAFFE65DD55F /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 07C72485E4ED05674026BE51266B73D6 /* SKTouch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKTouch.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTouch.m; sourceTree = ""; }; - 07EAEE7C3D00A06D5AE79813CBB1DDBA /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; - 0802964F223D7584D2261C2F5A90277B /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; - 080FA1029D64D66B630C2230FAD56666 /* react-native-webview.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.release.xcconfig"; sourceTree = ""; }; 082D536AD9A7EA2CDF47A276ED8A62B8 /* DynamicConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicConverter.h; path = folly/DynamicConverter.h; sourceTree = ""; }; 08343DB140C4A3FDF2999193FF44E6C5 /* RSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocket.cpp; path = rsocket/RSocket.cpp; sourceTree = ""; }; 083C1356980DE60A2D34EB5A38831972 /* FIRInstallationsStoredAuthToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredAuthToken.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h; sourceTree = ""; }; - 08636E40C895F9DC5CDC13D4A065C2AE /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = ""; }; - 0871C8795234C3431222032EA497AA83 /* React.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.debug.xcconfig; sourceTree = ""; }; + 08674C1D6F6ED7C696591D4E6BC050A1 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; + 0868B380CE54D1C4F66E55A55FDD252A /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = ""; }; + 0884824E3FE4879C62FBB5E63D34E85E /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; + 0890F5DD4054F3B7A83F4ED726F53EF5 /* react-native-slider.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.debug.xcconfig"; sourceTree = ""; }; 0898CFFF0189F9F73BC31E40FA48767D /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; + 0899A3D853FA1EF8BBDA50989ECD9FD7 /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; 089E47E2682577F9420DC30245D15C6D /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; 08A28A120E471D1A409A4C242AC60D00 /* thread_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_utils.h; path = src/utils/thread_utils.h; sourceTree = ""; }; + 08A3CB43927AA948103E773C29ACEAB4 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; + 08B0139E8BE058755F5EB3C8996FC9FF /* React-RCTLinking.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.release.xcconfig"; sourceTree = ""; }; + 08B48104F77E77D12036C4DCF2FC5488 /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; 08C6D333BA0B63D7C98E9D0C82FE4F19 /* libwebp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libwebp-dummy.m"; 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; }; + 08D21D884B63561DBC7102020146FEF9 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; 08E4DD7F336AF77DA825C7A56EDFE3BA /* FIRHeartbeatInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatInfo.m; path = FirebaseCore/Sources/FIRHeartbeatInfo.m; sourceTree = ""; }; - 09144F81FBC14583C5005E6DA47792BF /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; 09152A09A11A3594B0E7948CDC8AA185 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/memory/Malloc.h; sourceTree = ""; }; 091CD97C1986638BA7F1ECA01086271D /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; - 092712BFAC70FAB2B3B011A19B02873E /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; - 0932E59627CCA66EB569C1163C2EADF1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 0947433F261E40A143BAE8448915BCE7 /* RNCAsyncStorage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.release.xcconfig; sourceTree = ""; }; 094A8309D89F54191ABE2DBA02D93CF9 /* FlipperCppBridgingConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingConnection.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingConnection.h; sourceTree = ""; }; 094F94D7E42FDC8CCB7A2DE9246860B7 /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; + 0967A5BF0AB0DE6DDB18BB351F740F38 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; + 0969170CB4B2E02C6CEAE078FDAD9C9C /* RCTConvert+FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIRApp.h"; path = "ios/RNFBApp/RCTConvert+FIRApp.h"; sourceTree = ""; }; 096FF7553188008D84D648FC8933CE13 /* FIRCoreDiagnostics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnostics.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m; sourceTree = ""; }; + 0979BC80C8BAC831C58805766F4541A2 /* RNGestureHandler.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.release.xcconfig; sourceTree = ""; }; + 098BA8B9ABF7386BC09C3EFF19FFB5C0 /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = ""; }; 099DB66F5F41C540E35EFFA2DF9A8A40 /* FIRCLSURLSessionUploadTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionUploadTask.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionUploadTask.m; sourceTree = ""; }; + 09A154745DC9BB7A971187ABE70612D3 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; 09ABEA1261F80AFDEBC4195E200EE237 /* Request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Request.h; path = folly/io/async/Request.h; sourceTree = ""; }; 09B5856105EF7C6447B9EC57E7E36B34 /* libEXKeepAwake.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXKeepAwake.a; path = libEXKeepAwake.a; sourceTree = BUILT_PRODUCTS_DIR; }; 09BFAC243A8222A027FA208F3BFB7486 /* pkcs12.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs12.h; path = ios/include/openssl/pkcs12.h; sourceTree = ""; }; + 09C2621E183BF2D8BF063AF6AB16E013 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; + 09C41B50561711EA11B30745BC7B044F /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; 09EAC4E18FACEA280E42D1A24C5E577A /* YogaKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YogaKit.debug.xcconfig; sourceTree = ""; }; 09ED6B36B7756646385C966B85575DC7 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = ""; }; + 09F30ECACC804C987E88BEA748DC15EB /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; 0A096E5D263B2D095522FC73C6EF8AA3 /* FirebaseAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.release.xcconfig; sourceTree = ""; }; - 0A194A89E97A8617215769B0AE3B435E /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; + 0A2B3DD88B83F53B6319585273130C76 /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = ""; }; 0A433A2FE3FDBD3FE6F9022F40458FD5 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = YogaKit/Source/YGLayout.h; sourceTree = ""; }; + 0A4B1F642CA854C8175A0F5065AA58FE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 0A53D9823295D12BC31B2C89625AC8BF /* PTUSBHub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTUSBHub.h; path = peertalk/PTUSBHub.h; sourceTree = ""; }; + 0A672EE4E79E7D06E2F2CEA3A984E2E0 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; + 0A7654C80CBE607F4F22E9EAD9F4FAFE /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + 0A888E9ECDA27BCE6E59F066501E3369 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; 0A933B12CE54B9A28EC1E8EFE6ED2C46 /* HazptrThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = HazptrThreadPoolExecutor.cpp; path = folly/synchronization/HazptrThreadPoolExecutor.cpp; sourceTree = ""; }; 0A986C256F4460A399A7E0ED0C247E61 /* FIRCLSNetworkOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkOperation.m; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSNetworkOperation.m; sourceTree = ""; }; + 0A9A2003A028F4496FE281553E1F2B6A /* RNCSafeAreaViewEdges.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewEdges.h; path = ios/SafeAreaView/RNCSafeAreaViewEdges.h; sourceTree = ""; }; 0A9D8B5A5ACDFEF9FE69B3333035EB63 /* NotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NotificationQueue.h; path = folly/io/async/NotificationQueue.h; sourceTree = ""; }; 0AA489BE3D7EC4CF77C2829C41ADD32C /* webp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_enc.c; path = src/enc/webp_enc.c; sourceTree = ""; }; - 0ABFD45C8872042392419CF2BB70BC22 /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = ""; }; - 0AC02BB4AFC6EDDADFA0D8EAD2E9985E /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; + 0AAC03DAE0C1EF683F54700951622B71 /* RNFBRCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBRCTEventEmitter.m; path = ios/RNFBApp/RNFBRCTEventEmitter.m; sourceTree = ""; }; + 0AC2886B8F45376ABE29A475FF5916DE /* EXLocalAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXLocalAuthentication-dummy.m"; sourceTree = ""; }; + 0ACA9D1B7472E5142A557761E8647F90 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 0ACB9F39AA7ADC4C5B8249F4319404FD /* WTCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WTCallback.h; path = folly/futures/WTCallback.h; sourceTree = ""; }; 0AD1D003B598514E16C0786487FABBB2 /* Pods-ShareRocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ShareRocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - 0ADC1D86EDC0770C17F5DE8A7E021996 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; 0ADCEF1ED73B20EE7E814478E42002A1 /* RangeSse42.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeSse42.h; path = folly/detail/RangeSse42.h; sourceTree = ""; }; 0AE77E43478AF3121A949E900723EC41 /* alpha_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_dec.c; path = src/dec/alpha_dec.c; sourceTree = ""; }; - 0AF66D72B5D6952C34E6C65E90CF41F8 /* RCTLinkingPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingPlugins.h; path = Libraries/LinkingIOS/RCTLinkingPlugins.h; sourceTree = ""; }; - 0AFAD99F891D83ECB26F52872B68D810 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; + 0AEC718C8D99FD2DD635DD790C709A25 /* RNCSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewLocalData.m; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.m; sourceTree = ""; }; + 0AFF9BF65B24F35A2D5C5A62B3E47808 /* react-native-cameraroll.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.debug.xcconfig"; sourceTree = ""; }; 0B0A586B9BF395D71ABE5F32344057DE /* ThreadLocalDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocalDetail.h; path = folly/detail/ThreadLocalDetail.h; sourceTree = ""; }; - 0B2107F7A60AF8F1873A63704E11AA4B /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = ""; }; 0B34D080D9AAB4A31319BB4238369D53 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; 0B59A0C3023E0C57017EC773D8DE5315 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; + 0B5BC62AEECDAB5208B11B2A1D86CF5D /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; 0B5CAC816DDEF983488160B440AEEED2 /* Unistd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unistd.h; path = folly/portability/Unistd.h; sourceTree = ""; }; + 0B5DD5279EBE4CC70B114FD66D3FC64B /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; + 0B63C1DED4922145836AA2E642AFEA97 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; + 0B668095E55E618B71B62C3C8BC8A958 /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; 0B6D5FB75180D4F0F957A9D91CE62CBC /* SparseByteSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SparseByteSet.h; path = folly/container/SparseByteSet.h; sourceTree = ""; }; - 0B8AEFAB328CB7DB757E4EC325FA37E3 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; - 0B9706CFF0FD41D5E952E02D40AFE565 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyboardObserver.h; path = React/CoreModules/RCTKeyboardObserver.h; sourceTree = ""; }; - 0BB9E60E9BCA30ED5A99A8F344EDB053 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + 0B6E78C9330BCF05B98CBFAF0361BF16 /* EXSessionTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionTaskDelegate.m; sourceTree = ""; }; + 0B7D0F11B0A71174BAFD88CFA5950E20 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; + 0B821F2D8F8128C79F358321A4F62DD3 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; + 0BA46C38C51AF2E70BD00F58F20CF2E6 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; + 0BA4B75A0545C551B55B2BAB5C630F94 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; + 0BC23B08FD01D223E72E30615999752A /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = ""; }; + 0BDAA74A9CE491A835DFA5E5C9F96667 /* RNFBRCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBRCTEventEmitter.h; path = ios/RNFBApp/RNFBRCTEventEmitter.h; sourceTree = ""; }; + 0BEE281862504E5435398F18762DCC42 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; + 0BF31D6D34312892313B9FF6E2B8A82D /* FBLazyVector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.debug.xcconfig; sourceTree = ""; }; + 0C08FB01E122F5F358A979F5F9CE50A1 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; 0C0C71BCED1990979D5D0FE80FD69E99 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; - 0C1833C9E7F6B42D0E53D7EAFDF0375C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 0C2FC874EFFA88394F6FA20FB65171BC /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; - 0C463628649DEB06109D13ACDDCCBB59 /* RCTAlertManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAlertManager.mm; sourceTree = ""; }; + 0C173D036F23E5FA4077710D239481BD /* RCTImageURLLoaderWithAttribution.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageURLLoaderWithAttribution.mm; sourceTree = ""; }; + 0C1D2430316CBD16AB89639D699E474E /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; 0C6353D292D482C359B6C1190DB9BA95 /* TcpConnectionFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpConnectionFactory.cpp; path = rsocket/transports/tcp/TcpConnectionFactory.cpp; sourceTree = ""; }; - 0C854B881FA802C14ADE0FF649C666E6 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; + 0C7C52EEFCA52424F8740FCA770F370E /* react-native-slider.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.release.xcconfig"; sourceTree = ""; }; 0C8A26D9EC5003335495BA1FC4C8496A /* UICollectionView+SKInvalidation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UICollectionView+SKInvalidation.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UICollectionView+SKInvalidation.mm"; sourceTree = ""; }; + 0C8C2376C50727E4678CBBB2EE348844 /* RNFBCrashlyticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsModule.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsModule.h; sourceTree = ""; }; 0C8E10C626F772D00220D987C7A752A2 /* SKNamed.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKNamed.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNamed.mm; sourceTree = ""; }; - 0C9C64B1816CC80187B120AE408CE557 /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; 0C9DD9D2C25BA757CFF6076C45CEE5EB /* ResumeIdentificationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ResumeIdentificationToken.h; path = rsocket/framing/ResumeIdentificationToken.h; sourceTree = ""; }; 0CBBBDA03E670F57AE9B27A469C369CF /* F14Table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Table.h; path = folly/container/detail/F14Table.h; sourceTree = ""; }; 0CBD743117FFF34AE1E170CE707D261B /* GDTCORLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLifecycle.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m; sourceTree = ""; }; @@ -6625,1138 +6708,1122 @@ 0CC232510FBC7AF04525D03A168718E9 /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; 0CD242961C3E62BF415281FEBFA64258 /* FIRCLSSymbolResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSymbolResolver.m; path = Crashlytics/Crashlytics/Models/FIRCLSSymbolResolver.m; sourceTree = ""; }; 0CE11D477C44340424F11B975AAAD232 /* FIRCLSProfiling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSProfiling.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSProfiling.c; sourceTree = ""; }; - 0CEC75A185FA32E94A5D53D66CB4BCDE /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; - 0CEEB76485EFA0FF394C19C97B2B52FC /* RCTConvert+FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIRApp.m"; path = "ios/RNFBApp/RCTConvert+FIRApp.m"; sourceTree = ""; }; 0D019BEF6EA2758EAD6A6D64E3043531 /* GDTCORFlatFileStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORFlatFileStorage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage.m; sourceTree = ""; }; - 0D040BE0476179B2CDCCBC1DEF92065F /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 0D0653104BA4E9F8485AB6596BE5678C /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; 0D0BC66D0E9739DEACF3B1336987FEA6 /* FIRCLSURLSessionConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionConfiguration.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSessionConfiguration.h; sourceTree = ""; }; + 0D1134540F45D55632D4068251EFDCA2 /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; 0D17B27C7DC887EBDBCB46E9FED7B29E /* FIRCLSUnwind_x86.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSUnwind_x86.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_x86.c; sourceTree = ""; }; 0D3DC433F6CF761615A4EE4118F99CF4 /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = ""; }; - 0D4043A57A9E632E018C7A16AC001F75 /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; - 0D44DABF4F80A19E0763F9D6055B2732 /* ReactCommon.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.release.xcconfig; sourceTree = ""; }; - 0D734DC8F87ADD26C796D0CB7216A261 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; 0D7A3AB9E347CEB354CB508EA3E9D800 /* ecdsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdsa.h; path = ios/include/openssl/ecdsa.h; sourceTree = ""; }; + 0D7DEAC6D70FF15A93E3EB7002B3F4EA /* ReactNativeART.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.debug.xcconfig; sourceTree = ""; }; 0D8A76A18304EF0320E0B8B005322B07 /* mips_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mips_macro.h; path = src/dsp/mips_macro.h; sourceTree = ""; }; 0D93E553F70D183C91A3920A509DD4DD /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h; sourceTree = ""; }; + 0DA080DAA2C68E3C259114C2BE131A47 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; 0DA9E6B9FB5A0969B489558679A4968F /* GDTCORReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORReachability.h; sourceTree = ""; }; 0DC1504F7BC626692F7D9E82B86E7945 /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = xplat/Flipper/FlipperResponder.h; sourceTree = ""; }; + 0DC9477D200929DB5E4865A3B16DCD78 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; 0DCBEB0E852C760897A70A1607A215EA /* FIRCLSDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDefines.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSDefines.h; sourceTree = ""; }; 0E035580D49581FEED8F228A23361438 /* tls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls1.h; path = ios/include/openssl/tls1.h; sourceTree = ""; }; + 0E08C6048FFEFE2635790CBA33E5FE03 /* 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; }; 0E0ABEC37C3877F03FA57840692FEE87 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = ""; }; - 0E184FB3F9DA4686C1A80BDBABCA3196 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; 0E2A22AABBED559B7526E72EECF6898A /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; - 0E4181FD10FDBBC784F2F5F61865614A /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; 0E499224321E7E1AC644F1772C24C166 /* StreamsWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamsWriter.h; path = rsocket/statemachine/StreamsWriter.h; sourceTree = ""; }; - 0E4F870FD218E121124A4D3143F2E271 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; + 0E52C40A128A4CAFA477921952CA2FBB /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; 0E57FF41943A829FAA01AFFE142B8ABC /* Futex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Futex-inl.h"; path = "folly/detail/Futex-inl.h"; sourceTree = ""; }; - 0E978435C655BDABC0F5AFB1ED385A0A /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; - 0EA62232CBEF8FF811E72EC3CC3709A3 /* UMCameraInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.debug.xcconfig; sourceTree = ""; }; 0ECC825900A41D0291F727801B052394 /* FIRInstallationsLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsLogger.m; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.m; sourceTree = ""; }; - 0ED760CC218627AD2EE5670E00945E43 /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; - 0EF336AABB60BAD1442193D8EFEDA28A /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; - 0EF967F584911A689161739AB50AEC21 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; + 0EF68C8F5D88E358FC4CAE6B9255ABB1 /* 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; }; 0F0024A02EBE1A777389C2B9B631E9AD /* libwebp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.release.xcconfig; sourceTree = ""; }; 0F0D95728879E68158E6D67078DE6D58 /* conf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf.h; path = ios/include/openssl/conf.h; sourceTree = ""; }; - 0F12B59F9DF6782E82843788360369FA /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; - 0F1C722F4B456CC98E1A59E169555EDC /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; - 0F225C151C807E9E80F2E6CE030C4205 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; 0F2796D731300743A4057BCB2D64AAD8 /* Future.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Future.h; path = folly/futures/Future.h; sourceTree = ""; }; - 0F32480CCE6172241CC35FCF80FC4695 /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = ""; }; - 0F43706799D302C52DA8D5D9A93654C0 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; - 0F5226DB09675C82F5CAEFA4F0FC5AE2 /* 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; }; - 0F598D0ADE971EA742FFA1C679F9DAE1 /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; + 0F3225617BB79E4F9D614C140A307E07 /* EXLocalAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocalAuthentication.h; path = EXLocalAuthentication/EXLocalAuthentication.h; sourceTree = ""; }; + 0F64A1A41F4E66F99022F2539A36AAAB /* React-callinvoker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-callinvoker.release.xcconfig"; sourceTree = ""; }; 0F6D9ED51A1A5CC925A4C8E2291BF810 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; - 0F93F0F3ADC3C7B0D33D69D20687F0EB /* RCTNativeAnimatedModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeAnimatedModule.mm; sourceTree = ""; }; - 0F98E0BA9F8877F7C6EECF6B2FBCB9C7 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; + 0F93A2E3EA1902AD9906F044F1EE74D7 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; 0F9BDC67D65D927F2AEFD07EA19385C9 /* FIRInstallationsIIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDTokenStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m; sourceTree = ""; }; 0FB106ACF9EBD609913E569FA5B9CCFF /* FIRCLSFeatures.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFeatures.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFeatures.h; sourceTree = ""; }; - 0FB5D1E227C83FE844D22E47D2C21D0C /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = ""; }; - 0FBBF12B02AB7F3A6F627527627068DF /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; - 0FC65D13DC96DB67F07AD0E65B962D45 /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; - 0FCDB3D5FD7684FE9738D1D5DA00CCD7 /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = ""; }; - 0FEDE1E936A9E05A61E9523DEBE69ACF /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; - 1002FAF9D0840C5287A1AD3B81685D87 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; + 0FDA53B97CEB9EECD2A1966D94C897A9 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; + 0FFB657F2DA1DD822881BC78B3DBD881 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; + 1001D29FF6C18448E9B858DC1FABD72D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 10065B3D689090BAE561FD87B9FC6933 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; + 100FE2E1388A5147D123885243A1D36D /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = ""; }; + 101DF49E8CB002A3D3D333B6B9EA08E7 /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 102A6C64850A4C68E83846F76B096023 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; + 102AF1F2A1D24527D1B507699C3AEED1 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; 1031EEF71140E63F5EAC6DE513ECDABD /* vp8l_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_dec.c; path = src/dec/vp8l_dec.c; sourceTree = ""; }; 1042B75E9DBF2A3ACA18E4982A17A9D1 /* WebRTC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebRTC.framework; path = Frameworks/WebRTC.framework; sourceTree = ""; }; + 10576E7AE4510A6AE0841BE39EBE1256 /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = ""; }; 1060904157A1FA063153F3C6185968C1 /* asn1_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1_mac.h; path = ios/include/openssl/asn1_mac.h; sourceTree = ""; }; + 1069ECE09D76E417618559067276997E /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; + 1069F1EA8C302C560D5B44971C53D9CA /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; + 107127227797BA3A486AC0727D14E335 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; 107657679DA0095733943453677A9528 /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; 10794ECA3AC186109828D7E8451B4DBB /* Latch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Latch.h; path = rsocket/benchmarks/Latch.h; sourceTree = ""; }; - 108BE75BC3ADA9FB3802BBA633080FE9 /* RNVectorIcons.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.debug.xcconfig; sourceTree = ""; }; - 10978F432AF4EAAD7BC8D6CF923B2CCC /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = ""; }; + 109BEC51DAB4CE3C672C328A560E26C3 /* RNRandomBytes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRandomBytes.m; path = ios/RCTCrypto/RNRandomBytes.m; sourceTree = ""; }; 10A66D255EC7C75F76943F1D23C1DD25 /* Flipper.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flipper.release.xcconfig; sourceTree = ""; }; - 10C46C0FE28F1504D4778FB38C253C76 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 10B09D08131C7CCDC5B6C69A735884F4 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; 10D0186678DB0BD36FEE84998FBC64CC /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/gen/String.h; sourceTree = ""; }; 10D0ECD597DC47C6BF1B3EFF30F0B5CA /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; + 10D6BA0C60F74505AFDC4E4EA2BDA209 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; + 10EFDA1322B3AA90E37B90A900AFF443 /* react-native-simple-crypto.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-simple-crypto.release.xcconfig"; sourceTree = ""; }; 10F53A1495B8E4AA9B31DBDEE6AD6F57 /* anim_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_encode.c; path = src/mux/anim_encode.c; sourceTree = ""; }; - 110BCBF80CD5F7D0C4E5457C524724D0 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; + 10FBFD93A490DFF045CCC70048C4A392 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1102DA8401DC0663A676D1593BFDCA63 /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; 11253EBB5B7CBEC636E16266DBDDE287 /* SocketFileDescriptorMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFileDescriptorMap.h; path = folly/net/detail/SocketFileDescriptorMap.h; sourceTree = ""; }; 114BD75B686EA1B03D9B45F94A22306E /* BitIteratorDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIteratorDetail.h; path = folly/container/detail/BitIteratorDetail.h; sourceTree = ""; }; + 114E251558AAB5DC306FC26F847DB211 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; 1154F2BD12B38548689C278F523B692F /* ConcurrentBitSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentBitSet.h; path = folly/ConcurrentBitSet.h; sourceTree = ""; }; + 1168639493E9553522C59CAE5888E4DB /* RCTDevMenu.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevMenu.mm; sourceTree = ""; }; + 11756D1E5DAA021125AE9E03335A424A /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; + 1180534E30771AFEE6F4BA72B827159E /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; 118C0F7587402A5502711B19B3F429CA /* SKBufferingPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKBufferingPlugin.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.mm; sourceTree = ""; }; - 119031EBC17DB49D08AD59362E3FB948 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; - 1190B430C3B05FA583717372CFB1EBC0 /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; + 119BC32F2D510943DEA545850424E3DD /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; 11A079E52A283A6BF53D3606DCE5E583 /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; + 11AC51D6144A94FE959AB85942786141 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; 11B137AA5893A18E48BC9E5500FC0C0B /* UniqueInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = UniqueInstance.cpp; path = folly/detail/UniqueInstance.cpp; sourceTree = ""; }; 11BF740FBBD0FF4F6B1AFB4191B2D801 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = ""; }; 11CC6E14038088CC637AE190534C3FF9 /* utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = utils.c; path = src/utils/utils.c; sourceTree = ""; }; + 11D08622124B7D25AB05E3AACA15FA8B /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; 11D44F706EA811E254CF2F8A070533A7 /* ro.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ro.lproj; path = "Objective-C/TOCropViewController/Resources/ro.lproj"; sourceTree = ""; }; - 11EC0920C764C6F281FB0398FDC30EA1 /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; + 11D56C52FE9A22F7C57314DE2C964560 /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; 11ECE78179AE14B1D0B73F65C22535BF /* FIRInstallationsIIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h; sourceTree = ""; }; - 11F0798C2CE3B8FA8FC0CBC2DBF33686 /* RNFBAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAnalytics.release.xcconfig; sourceTree = ""; }; - 1210CB324AD0392318D3F271FBBD1ACC /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; 121AD784F9815F279F436F8D2E8372FC /* PolyDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyDetail.h; path = folly/detail/PolyDetail.h; sourceTree = ""; }; 122E2401229CFF382C23869C6B7D99B8 /* sorted_vector_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sorted_vector_types.h; path = folly/sorted_vector_types.h; sourceTree = ""; }; 123275902CC1B6AA63A9EDB0D4026F9C /* SKResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKResponseInfo.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.h; sourceTree = ""; }; 123C4EC5677594B2E31C7167A00AB5F3 /* TimedDrivableExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimedDrivableExecutor.cpp; path = folly/executors/TimedDrivableExecutor.cpp; sourceTree = ""; }; 1242BDB498F279B857238821D0F274C3 /* UTF8String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UTF8String.h; path = folly/UTF8String.h; sourceTree = ""; }; 1263A8E0612F8ABC10F754CD754179DF /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; - 1279C8052D57FC19BBEC11214D1F9AD5 /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; - 128D3917D6DA2280E5D76D60BBE02EE8 /* ReactNativeKeyboardInput.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardInput.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 12A3D4A2CEA64FE1A40E366F6EFD7A9E /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; - 12AD9CBBF4783D81370DEE4B75783822 /* 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; }; + 127936FDB75BBD0206130E25308EF7DB /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 12A48549908AB9B411AED5D6AB919602 /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; + 12CB2A2132BE96747592AE15E712469C /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; + 12D131B54FC10C41082E77668D7FC99C /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; + 12DAAD5397F12E86BFCE83845DCC75FA /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; 12E2CC69318DF0EE25036DE73B8EDF91 /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = ""; }; 12F1A44B8CAD8E3E41C10E651764C742 /* common_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_dec.h; path = src/dec/common_dec.h; sourceTree = ""; }; + 12F2687E63A799ED0EC3B03A0CED33BD /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; 130335B611EDD6AFF8824641E06138D6 /* libEXVideoThumbnails.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXVideoThumbnails.a; path = libEXVideoThumbnails.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 130B04FC1D20D5FC2BE328A052C068D5 /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; + 13200C5ADF1D0A9A9F65306FFCCECB5E /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; 132A282E6860A4B3F5DCCBE7DD8606F7 /* Sleeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sleeper.h; path = folly/synchronization/detail/Sleeper.h; sourceTree = ""; }; - 132A5078717FC91D9B2D0EC41ABE914A /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; + 13305603B4E9384976E15EA40ED1C553 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; + 1367B111BE9784BD88594DFA688C1E08 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; + 136FC5D5AF2F68E611ADC8A187889B10 /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; + 137F89DD5DAEDD02E1D88E58E9DA3F5E /* UMBarCodeScannerInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.release.xcconfig; sourceTree = ""; }; 13904027F62BCCF191891DFD0ED5B440 /* MPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCQueue.h; path = folly/MPMCQueue.h; sourceTree = ""; }; - 13A2CE1EF3B7728E6B201CE0A9866BEF /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; - 13B054FC7DEC6BD83B187A655CA0FD9F /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstallations.a; path = libFirebaseInstallations.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 13CB8DD3AFBA8660A9439A3BB3AC528F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 13D08036CD5C40753B4FBBD6B3A57F4C /* FunctionScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FunctionScheduler.h; path = folly/experimental/FunctionScheduler.h; sourceTree = ""; }; + 13D35646D6ACC7DDA2C0742A4439A94F /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; 13D6D3AF7090218B073DD2E01A02526B /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = ""; }; + 13E450D69101261A74BD7F400625DE7A /* RCTScrollEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollEvent.m; sourceTree = ""; }; + 13EEFD66936CE1DBF685FDEABB269598 /* EXImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXImageLoader.h; path = EXImageLoader/EXImageLoader.h; sourceTree = ""; }; 13EF754CAD9601B7A7EF6111C1854708 /* FIRCLSFABNetworkClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABNetworkClient.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSFABNetworkClient.h; sourceTree = ""; }; - 1404501382CB386C5320152A48D6EC44 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; - 1425C298EBEED777F22F0A6803A54F10 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTClipboard.h; path = React/CoreModules/RCTClipboard.h; sourceTree = ""; }; - 1435E1CDA29F93A8F1AF232E9F886424 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; - 14409C4F8F0301E0B456906CDC361D78 /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; + 14015E1552535ACDD964A56534C309F2 /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; + 143748CA56E79CF5803DF5AC43438349 /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; + 14481E3A6FFF120E3C0E7AA64F7063BA /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; + 145F78AE662BA1F703863C5492855886 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; 1468CCAD5F747280CF84F5DE0DDCF11C /* IOBufQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBufQueue.h; path = folly/io/IOBufQueue.h; sourceTree = ""; }; 14728D3BF46891D85321ED2A8C4B7D78 /* FIRCLSFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFile.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFile.h; sourceTree = ""; }; - 149BE74E831F9AA2914960A5C632B764 /* RCTImageView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageView.mm; sourceTree = ""; }; + 148ADCEAD1C5049EB6E80C37B5C55E8A /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; + 148E3496572E08653AB99729315EE488 /* RNCAsyncStorage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCAsyncStorage-prefix.pch"; sourceTree = ""; }; 14BCF143FCCF9CF8EDE4D9AE61AD398C /* AsyncGeneratorShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncGeneratorShim.h; path = yarpl/flowable/AsyncGeneratorShim.h; sourceTree = ""; }; 14CB491DA261DA5C281CB6B3CD5DC2AE /* AtomicUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMap.h; path = folly/AtomicUnorderedMap.h; sourceTree = ""; }; - 14FBB765A596B8A45051A528308AA63D /* RCTVibration.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibration.mm; sourceTree = ""; }; - 14FC13817F76A9E1878059266BABDA0E /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; + 14CFE64DB22C8515E734CFD8AFBC47B0 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; + 14E4D664C6D4A92AD0EC73193C96DC9F /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; + 14E554F53262272D3C91AC3826450D23 /* React-jsinspector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.release.xcconfig"; sourceTree = ""; }; 1500567893A0F2F90FDCE8E6DF98AF9C /* FKPortForwardingCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKPortForwardingCommon.h; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingCommon.h; sourceTree = ""; }; - 151079F7D3DD6C15785F8271FCF52A06 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; + 1513AE7CADFE33E4EFA8F55AF595DA06 /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; + 152AE6F31624A54A9112FCE2D987819B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 1542A52949750DFEB857D086FDCBBA57 /* ShutdownSocketSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ShutdownSocketSet.cpp; path = folly/io/ShutdownSocketSet.cpp; sourceTree = ""; }; - 15481B4DB7F185B8E4811FFCDA83CCBF /* UIImage+Extension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Extension.m"; path = "ios/src/UIImage+Extension.m"; sourceTree = ""; }; - 154A009D0FEFB4A1819BAB2A85FBC78A /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; 155A0DF860630C9B8B70983D145CFAE3 /* SharedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedMutex.h; path = folly/SharedMutex.h; sourceTree = ""; }; - 155D0F1E2BEFB2E49EF38730DD15B083 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; + 15745FA1C01B4BBF22B3A8786B9D11B2 /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; + 15765270D5A73D79E74E1D5890B76E3D /* react-native-document-picker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.debug.xcconfig"; sourceTree = ""; }; 1579E525EC6E635D5103C145213B381D /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; - 157A433195BF742EE998DC049AC4D061 /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; 1586AE61C5740FD8AF5071A8AC425065 /* StreamsWriter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamsWriter.cpp; path = rsocket/statemachine/StreamsWriter.cpp; sourceTree = ""; }; - 158702D57A31386B362AC76FE0879CDB /* react-native-cameraroll.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.debug.xcconfig"; sourceTree = ""; }; 158831662711618BC87690C3E8EE4FDA /* FormatArg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatArg.h; path = folly/FormatArg.h; sourceTree = ""; }; 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 15BD58F56C209807155B2D73D322F169 /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; + 15997B9B9CB7793942F1266089D1C249 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; 15C175FF2E0271524912694CAB5B7D5A /* crypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crypto.h; path = ios/include/openssl/crypto.h; sourceTree = ""; }; 15C6C5DF72A469AF8DD75E8E2C5B9FE5 /* FlipperClient.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperClient.mm; path = iOS/FlipperKit/FlipperClient.mm; sourceTree = ""; }; 15D38604B03F4318AC46EA7F8A61C80E /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; 15D5329068242004C23C8750C7518B99 /* PTChannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTChannel.h; path = peertalk/PTChannel.h; sourceTree = ""; }; + 15D7F316A15C295DBAC73122E3A9F3F5 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; + 15E0B806513943CB1A3B40C2BD38FDD1 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 15E8876BE0BBCE43FAAFB1D7617F3BBD /* ConstexprMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstexprMath.h; path = folly/ConstexprMath.h; sourceTree = ""; }; - 15EE26E0603A3A2E13F5067294868CEC /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; - 16068D73A49A5A26BFF88CA416CE054C /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; - 1627071E5B3E484507234F8D0A56DC9B /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; + 1605C9EAE0DEE3CBE60D46E9928104E6 /* RNFBPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBPreferences.m; path = ios/RNFBApp/RNFBPreferences.m; sourceTree = ""; }; 16533A2A308C81290F055EC0BB4FC287 /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = ""; }; - 16B068281A89BEDE84D6131F2BAE8745 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; - 16C61EDF9448F4E6EDB3EDEF8387F64E /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 165DAF87C77BE32FAB19D56C33578A44 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 16619E407CBF9391E2C3884FDF4DF368 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; + 16834D1C57B198D6CD9CF014A3562FE3 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; 16C81446AB6763731F3465143146C7A5 /* LockFreeRingBuffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockFreeRingBuffer.h; path = folly/experimental/LockFreeRingBuffer.h; sourceTree = ""; }; - 16D4254ADF5C3F6A41BE4F12C7750B8E /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; 16DB6DCCF1E49B4ED1C6B67571C18525 /* IPAddressV6.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddressV6.cpp; path = folly/IPAddressV6.cpp; sourceTree = ""; }; + 16DC1CB0294D2F0F40D23395F18527FB /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; 16E9F31EC059F2E6FADBF7D544CCCA1D /* libReactNativeKeyboardInput.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeKeyboardInput.a; path = libReactNativeKeyboardInput.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 16EF1252C369284E9A84463285A63986 /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; + 171FA80AACA2FF9107CE6C3BC17BD1CE /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 1727A5E522AA6F0823BADF8CA373930B /* TOActivityCroppedImageProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOActivityCroppedImageProvider.h; path = "Objective-C/TOCropViewController/Models/TOActivityCroppedImageProvider.h"; sourceTree = ""; }; 174577E73A88560DC5EDD60831D557D3 /* PromisesObjC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.release.xcconfig; sourceTree = ""; }; 17494F9C1DFAE5E426E7C147EAD8821B /* AsyncUDPSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncUDPSocket.h; path = folly/io/async/AsyncUDPSocket.h; sourceTree = ""; }; - 174AC2EE7FD07728F107A5BEACBA0DB2 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; - 175AC05D9681FE725917E96854A600C1 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 1766D2C042E967F49CA2A7774D774387 /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cct.nanopb.c; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = ""; }; 17673E3DCC886287D6456B94CABBD053 /* FrameHeader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameHeader.cpp; path = rsocket/framing/FrameHeader.cpp; sourceTree = ""; }; 17696421DD846039BE3A6633D2BE9B10 /* SDWebImageWebPCoder.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.release.xcconfig; sourceTree = ""; }; 1772C780D2DE5AADFE26B8A246B3D1B4 /* Event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Event.h; path = folly/portability/Event.h; sourceTree = ""; }; 17772905A5DCAAE05D22C2CC78ABB63D /* libReactNativeKeyboardTrackingView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeKeyboardTrackingView.a; path = libReactNativeKeyboardTrackingView.a; sourceTree = BUILT_PRODUCTS_DIR; }; 179584CDD8261B2943468708126D1ACA /* pkcs7.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs7.h; path = ios/include/openssl/pkcs7.h; sourceTree = ""; }; - 17A83FE56EE5719F8B34D3A654E8B081 /* BugsnagReactNative.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.release.xcconfig; sourceTree = ""; }; - 17B5187116367FE0095FE4AB06B77488 /* React-RCTLinking.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.release.xcconfig"; sourceTree = ""; }; + 179F4502B5494838D4DDFE443C1E31C5 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; + 17A7E4141D241F34A893B3212CA13495 /* RCTImageLoaderWithAttributionProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderWithAttributionProtocol.h; path = Libraries/Image/RCTImageLoaderWithAttributionProtocol.h; sourceTree = ""; }; 17C98F440CD0440243B6687D395A1416 /* Flowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowable.h; path = yarpl/flowable/Flowable.h; sourceTree = ""; }; - 17DDE8D157980AA5BD8116757FB092A0 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; - 17F2F08227528700B0BA58B4D598943A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 18145E23ED551FF77E54D13ED85C75F9 /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = ""; }; - 184583558AD095BE04823010CFDB855E /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; + 17DBFE1809576E6D19087F5102618D18 /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; + 17EA42165432348C13C9AF03B235A72D /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; + 1829BBE2C72F292275D403CC36D1F870 /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; + 182A5ABB471531A6365176D686E85516 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; + 1845809A7204E7E07207F949F508AF28 /* RCTRsa.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTRsa.m; path = ios/RCTCrypto/RCTRsa.m; sourceTree = ""; }; 1851368884E47FA9EA4B34577A20F461 /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; 18526279D6E8A31C6D59CBE308B2F189 /* GoogleDataTransportCCTSupport.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransportCCTSupport.debug.xcconfig; sourceTree = ""; }; - 185BAEF4EA67ECDB3F3C8D8CB12A839D /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; 186F85BF1262BAE4F6845F01E92B265B /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = ""; }; + 18A4EF80B700EE8CCB76D65C93FA5FC5 /* React-jsiexecutor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.debug.xcconfig"; sourceTree = ""; }; 18B06CE694CBD2D741FE69E440A7CCB3 /* GDTCORUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploader.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploader.h; sourceTree = ""; }; 18BAC518D9B253658C06103C8A7A51D9 /* mux_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux_types.h; path = src/webp/mux_types.h; sourceTree = ""; }; 18C22FB2FE75D858A2C5459E2DC8E261 /* opensslconf-i386.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-i386.h"; path = "ios/include/openssl/opensslconf-i386.h"; sourceTree = ""; }; 18D0B1E13C69654196028DD6EDCC3452 /* libRNFBApp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFBApp.a; path = libRNFBApp.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 18D5D45983DCB0B7EBFFE1A3924B2913 /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = ""; }; + 18D673170AC0F84EE74B6EA6A5571B9D /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; + 18DAC6E16E8080631EB6D2F47338C8AD /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; + 18E749B7CF46B1C4F7D109E219EDAC77 /* RNImageCropPicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.debug.xcconfig; sourceTree = ""; }; 18F152900A9201BAA333CB4505979F1F /* visibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = visibility.h; path = src/event2/visibility.h; sourceTree = ""; }; 190B41BC3AFC75D961AF4D6471FE80C2 /* GDTCORTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h; sourceTree = ""; }; 190D1C65D93D825183CB1E6E2D3CD360 /* FIRInstallationsStoredItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredItem.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h; sourceTree = ""; }; - 192683E949AF1D2610DC723ABB0A0228 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; - 1931EFB022C112711318EC972AACE65E /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; 193ACDE555B9B6308054D0D0C7B106C9 /* FIRCLSSignal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSSignal.c; path = Crashlytics/Crashlytics/Handlers/FIRCLSSignal.c; sourceTree = ""; }; - 1945EE587E1BE1EAAAA7448B347758F7 /* React-jsi.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.release.xcconfig"; sourceTree = ""; }; + 193CED2DCA340288D30908C0802C05D5 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; 195104710D931D85250E1716488E3565 /* event_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_struct.h; path = src/event2/event_struct.h; sourceTree = ""; }; 195AE66B31A9AF38439BF105310CDF65 /* GDTCORRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h; sourceTree = ""; }; + 1972088690408CEA31F8B5FB54B9F451 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; 1984130AC9859409C9291C08C9EFEBA5 /* bufferevent_ssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent_ssl.h; path = src/event2/bufferevent_ssl.h; sourceTree = ""; }; - 19935BCEE559CD1CD7626EB40075A7FE /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; - 199D344BD30539CC32CE6928D5A216D4 /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; + 19A23491256E86666F8F10F39EB3499A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 19AE8A77D2ECBCEDF312264CB5105325 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; 19BDE05EACA325D0DB99E2ABFBCD962E /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = ""; }; 19BF06738DD0F51C47546F1D2283D906 /* Cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cast.h; path = folly/lang/Cast.h; sourceTree = ""; }; + 19C19916A2B91787DAAD4E5413ABC256 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; 19DF75933C1A5C220A392EE99CB11AE3 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = ""; }; + 19E2B4C7FA04C7A3F069EE6BCFB3C136 /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; + 19F3B1E85DEDE443A4D691204846420A /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; 19FB65FFAEF99D8826793E642936DCBE /* SysMman.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMman.h; path = folly/portability/SysMman.h; sourceTree = ""; }; - 1A1FAF62998B16AB4476447123A54E5B /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; + 1A41753B227E5C63AAC21C90C0946D4C /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; 1A5B80DCCE4EEDE066130D06EE2E8FE4 /* F14SetFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14SetFallback.h; path = folly/container/detail/F14SetFallback.h; sourceTree = ""; }; - 1A7F9488B83BAB2F51C7DEC46E172F72 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; - 1A8191EC0EBF48385F0338017A4746D5 /* React-callinvoker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-callinvoker.debug.xcconfig"; sourceTree = ""; }; + 1A746830C36F524041D35A9875F9BC87 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; + 1A9360FE76400E71E4D84075222B7385 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; + 1A9EFA626A102B4250C205E2D94A8D72 /* UMFaceDetectorInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.debug.xcconfig; sourceTree = ""; }; 1A9F6C643234641C2FFD0A82601DD935 /* GCDAsyncUdpSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncUdpSocket.h; path = Source/GCD/GCDAsyncUdpSocket.h; sourceTree = ""; }; 1ABE418FAA33CD5D7A86D40E289070AD /* FIRCLSUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUtility.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSUtility.h; sourceTree = ""; }; 1AC05E9B9753B88DAD09B289AA7D1B97 /* anim_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_decode.c; path = src/demux/anim_decode.c; sourceTree = ""; }; 1AC3BC17E6F3910BC28BD134FBCCF73C /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = ""; }; 1AE0ACDDB3B412C3A6D01B047B21CF81 /* Syslog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Syslog.h; path = folly/portability/Syslog.h; sourceTree = ""; }; - 1AE7685E86C58BAF7371266E3720E407 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; - 1AEF010B56948D32AC87B7D5072EEDBD /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = ""; }; - 1B07305F5B13ABC3DF13817C3AD7C9FD /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; + 1B00F220BB250E5BE21D432F2DB9D3AC /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; + 1B0470528ED07B3791A96240A248143B /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; + 1B0CE6FE61EC98749AFA203CCBA3587D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 1B11FD6CCA905A5EF664866CC2796594 /* Flipper-Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Folly-dummy.m"; sourceTree = ""; }; - 1B26BF56E17832BB85F9CDF6E8A66F4E /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = ""; }; 1B32148E561167F8C22EEE28DC184571 /* F14Set-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Set-fwd.h"; path = "folly/container/F14Set-fwd.h"; sourceTree = ""; }; 1B392F3048947A5EAFF082EB795E785B /* Time.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Time.cpp; path = folly/portability/Time.cpp; sourceTree = ""; }; 1B3FA4C792E91CD68F143FD96B4E8CC2 /* UnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedBlockingQueue.h; path = folly/executors/task_queue/UnboundedBlockingQueue.h; sourceTree = ""; }; 1B6B4CA79C8B63CB9B672810337DCED6 /* 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 = ""; }; 1B7678D61DF199B6B6D791E3476435B5 /* StreamFragmentAccumulator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamFragmentAccumulator.cpp; path = rsocket/statemachine/StreamFragmentAccumulator.cpp; sourceTree = ""; }; - 1B7C9A370CB377C5A345342C366E6ABA /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; 1B7C9D2406C15B206C59E830868A9DB8 /* FIRAppAssociationRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAppAssociationRegistration.m; path = FirebaseCore/Sources/FIRAppAssociationRegistration.m; sourceTree = ""; }; - 1B7CCA9413A61AE736F636A5E68E6543 /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = ""; }; + 1B80517CAB0FA3CFBB60296D31A95EFB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 1B8E799130F337E86BFB5100E2A3DE64 /* FIRCLSHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSHandler.m; path = Crashlytics/Crashlytics/Handlers/FIRCLSHandler.m; sourceTree = ""; }; - 1B91E14DDB92EF245CC0042F0DEA2139 /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = ""; }; - 1BBB8586CCC5771E3123F71C5B381644 /* React-jsi.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.debug.xcconfig"; sourceTree = ""; }; - 1BCD28B283C256AD4C796EAA9C2C79D0 /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; + 1BAF23C946EE11A743E0133F6D4DE059 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; + 1BB66FAF3D4382A0DDB9E75C9B3252CD /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; + 1BBC79EA954C21B4237B9CE89E34B5E3 /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; + 1BDC9ED4D84C8AD7DE9201F431775878 /* Aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Aes.h; sourceTree = ""; }; 1BF2F8A4AF73D25D37813F0B113541ED /* AtomicHashArray-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashArray-inl.h"; path = "folly/AtomicHashArray-inl.h"; sourceTree = ""; }; 1BF5567626151A04338B1BC21EC15414 /* VirtualEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualEventBase.h; path = folly/io/async/VirtualEventBase.h; sourceTree = ""; }; - 1BFE7B3C376934A3A5401972084A6F69 /* RNFBRCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBRCTEventEmitter.m; path = ios/RNFBApp/RNFBRCTEventEmitter.m; sourceTree = ""; }; - 1C45981E5757F0143DC0935F319FEA91 /* RCTImagePlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImagePlugins.mm; sourceTree = ""; }; + 1BFD075B4697B7ECE733A36463E71AB2 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; + 1C0415283019F59973C90F952E40600C /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; + 1C12E6A24DC694C539DD57AADBCF1E36 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; + 1C2AD21730EB81F558CE8F0BD5DA58E1 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; + 1C4E06ABA855E2C575357801F3FA5911 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; + 1C6667914E8A269765FE106EC821B8B9 /* react-native-safe-area-context.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.release.xcconfig"; sourceTree = ""; }; 1C6BC3DE74F63D43695D38CCC4B8FB41 /* Base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Base.h; path = folly/gen/Base.h; sourceTree = ""; }; - 1CA0C4C5E442706D220F564B47B7E1B0 /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; - 1CB04892C02252BF34E735E98877B7B4 /* RCTTypeSafety.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.release.xcconfig; sourceTree = ""; }; - 1CB25A0ABD582C1CDEA373D7FD0BC7EB /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXAV/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; - 1CB433F762A599FC44DD432A7CD62DFF /* RCTDevMenu.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevMenu.mm; sourceTree = ""; }; - 1CC01034FED2C59FEB9900F1E81035F9 /* 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; }; - 1CC33E4864E66CEB8AA97E71CE23EF2C /* 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; }; + 1C8DE520F238D4F342B968AB61C76AA9 /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; + 1C906F762E802CDE135B348A278004AE /* Rsa.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Rsa.m; sourceTree = ""; }; + 1CBD3620C5B220F156AFF3553B144A2C /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; + 1CC298FEAF01D3E23CD170FCBDDC059B /* EXVideoThumbnails-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXVideoThumbnails-prefix.pch"; sourceTree = ""; }; + 1CD0ECBE15E8434D2E92D4AF5E0A3A0F /* RCTRedBoxSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxSetEnabled.m; sourceTree = ""; }; 1CDE81405DBD64D1A697C8E95036D6D7 /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = ""; }; 1CE1CABF23ED306DF56121ABF3701014 /* libevent_extra.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent_extra.a; path = lib/libevent_extra.a; sourceTree = ""; }; - 1CE9F79360135BFB24018614C7FE9734 /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; 1CEA90651A4405E53EF23D718B1CB556 /* SDWebImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageWebPCoder.h; path = SDWebImageWebPCoder/Module/SDWebImageWebPCoder.h; sourceTree = ""; }; - 1CFAC1F94D57CDCB0B5D001D944668F4 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; + 1CF82584EDEE9AF01438A19F1644F2F7 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; 1D01E5ACAB1A14C697739FA440102BDE /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; - 1D03C8F4266CCCDE032C086B8FEE0576 /* RNCAsyncStorage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.debug.xcconfig; sourceTree = ""; }; 1D20F37A934540CF6448BE3C1C76F6CF /* GULKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainUtils.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m; sourceTree = ""; }; 1D3AF1808495A2065CB67DF9B2DC375F /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FIRApp.h; sourceTree = ""; }; 1D418EFDB8CB07AADFE4BA5A348FB37C /* vp8li_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_dec.h; path = src/dec/vp8li_dec.h; sourceTree = ""; }; 1D43F3BD74424903DE15CD5B97C1F3B9 /* FLEXNetworkTransaction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkTransaction.m; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkTransaction.m; sourceTree = ""; }; - 1D4C738D2BE9F8D9C41665204E496825 /* RCTUtilsUIOverride.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtilsUIOverride.m; sourceTree = ""; }; + 1D54680817B81F20ED759702DD883BCD /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; 1D5EB1A55B033A796C3CB937132E7679 /* PublisherBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PublisherBase.cpp; path = rsocket/statemachine/PublisherBase.cpp; sourceTree = ""; }; - 1D7658D1A395867640649B670435DEF0 /* REAUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAUtils.h; path = ios/REAUtils.h; sourceTree = ""; }; - 1D8B7A08D48B7DB41DC6F5B3CB3FA1EC /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; 1D904413376F95829F6B2B273964EF40 /* opensslconf-armv7s.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-armv7s.h"; path = "ios/include/openssl/opensslconf-armv7s.h"; sourceTree = ""; }; 1D9B60E2D775A3522BEE7CB4530A2FCA /* txt_db.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = txt_db.h; path = ios/include/openssl/txt_db.h; sourceTree = ""; }; + 1DA6FF1D96FB471F6C2FF29F81E30551 /* 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; }; 1DB0EA054562F72CC84C74D6F5E01E43 /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; - 1DB9CB995820A385301DDF362DEF8758 /* React-RCTBlob.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.release.xcconfig"; sourceTree = ""; }; - 1DCCCA25041A7B0E8CA2EB586B8A0F9D /* 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; }; - 1DD45046AF7C0A8AA356137129876F2B /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; + 1DB478E1E2FFD045A6ECA82BB259A811 /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; + 1DB49B3AC8B4AAFAEF609B638134B3C4 /* React-jsi.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.debug.xcconfig"; sourceTree = ""; }; + 1DCBCAAA1C5B8CFBA388A0B189CA71E0 /* RNFBCrashlyticsInitProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsInitProvider.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.m; sourceTree = ""; }; + 1DE36E839AB1282F9C263A8AAE938666 /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; 1DF52B5E92EDB8E2FBAC99CAA3758D85 /* dwarf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dwarf.h; path = Crashlytics/third_party/libunwind/dwarf.h; sourceTree = ""; }; 1DFCB923978BDCD38C95841BD22D509C /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; - 1E0048B2497147AA4895F2EA369A04B9 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; - 1E0A8C8C5BAA2197F6188BDC16E5620B /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; + 1E31E7C42A736AA811225148861DEAB5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 1E34E6709F16036BC6BB45D0C02128B2 /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = ""; }; 1E42945B3FE822FA3627B31884E8F0B7 /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = ""; }; + 1E437B7EFEE284B3E346F487AD74184C /* RCTView+SafeAreaCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTView+SafeAreaCompat.m"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.m"; sourceTree = ""; }; 1E4443E0A67F4F6CEE6D950579A0BC26 /* Futex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Futex.cpp; path = folly/detail/Futex.cpp; sourceTree = ""; }; 1E4700CE42BBDEA5596BBB26A0B831A7 /* vp8i_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_enc.h; path = src/enc/vp8i_enc.h; sourceTree = ""; }; - 1E5E991D603126D65E3986BD551B20C5 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; 1E6E94825016F0C6C8B35876B1FF6E41 /* alpha_processing_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse2.c; path = src/dsp/alpha_processing_sse2.c; sourceTree = ""; }; 1E6F385773E98DD49FBE4DC246386AF7 /* objects.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = objects.h; path = ios/include/openssl/objects.h; sourceTree = ""; }; 1E757213D5F91C735ECE524723A3E56E /* animi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = animi.h; path = src/mux/animi.h; sourceTree = ""; }; 1E78BBB2C861C183103333E5F0254F80 /* FIRCLSDataCollectionArbiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataCollectionArbiter.h; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionArbiter.h; sourceTree = ""; }; 1E7FE2AA336901E68EFC1EF8E24BB5E0 /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Private/GULHeartbeatDateStorage.h; sourceTree = ""; }; 1E8CCF24644C1F4E7A6166AFC6FABD31 /* SKTapListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTapListener.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListener.h; sourceTree = ""; }; - 1EA3646E7747349B4D4B73F91D688BE4 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; - 1EA92D5997FAF3B0BDE7E6B06A1D7A44 /* react-native-cameraroll.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.release.xcconfig"; sourceTree = ""; }; - 1EB676B22F56CCB0D457EC82AA6FE69B /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = ""; }; - 1EB7EBD62A5D30C9270951F92B4CBFC5 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; - 1EB9562B8DAD145A461D51B83CAE03BC /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; + 1E9C43FD1EB2A47BD0BFA000F7505511 /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; + 1EB77FFC1766F762CCD1BB5D52F29FEF /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; + 1ECF2906499CE3F915D8A6FBF7ABAD94 /* RNFBApp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBApp-prefix.pch"; sourceTree = ""; }; 1ED9721DDF164729FF651CE5B84DBA60 /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = ""; }; - 1EE0A5CD5E8D4CA609724F95213B542B /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; 1EE6235B8BD8BB9E22FCA80AA680C58C /* RSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketResponder.h; path = rsocket/RSocketResponder.h; sourceTree = ""; }; 1EEDEF2DBD6C72DE1DB720898CE3BF80 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = ""; }; 1F00EDCD269A21E920C3C2826B45E05C /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = ""; }; 1F2B6C34DBB2817683C4B768E8E71289 /* ScheduledSubscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledSubscription.cpp; path = rsocket/internal/ScheduledSubscription.cpp; sourceTree = ""; }; 1F47541D370DC62C5B41AF9D8561AFD5 /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = ""; }; - 1F4FA2E7FCA0D243EFF56F3270F2EEFA /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; - 1F6C994069BF6D4C75770D79959F358B /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; 1F76A216371040753C1C4D2BB00912EE /* quant_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_enc.c; path = src/enc/quant_enc.c; sourceTree = ""; }; - 1F83739093BCCFAE205C9136BE161A71 /* BSG_KSMachHeaders.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSMachHeaders.m; sourceTree = ""; }; 1F838617F16EB768126A4D93CF497C82 /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; - 1FB1745391EFB0909149AB6FDDDFA85C /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; + 1F85526DB5E381E554840E0E96CFC48C /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; + 1F8E0B6C6AB264CBFDAFD180F1089F15 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; + 1F9E5A985371BA508DB6646FB72E924C /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = ""; }; 1FC8A17AF94F032F2F9C8219997247BB /* BitVectorCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitVectorCoding.h; path = folly/experimental/BitVectorCoding.h; sourceTree = ""; }; + 1FC8B11F6FE6438E0FEF56E176E425CA /* RNFBCrashlyticsInitProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsInitProvider.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.h; sourceTree = ""; }; + 1FE3B2FCEA1A0BD87D99A59A4D27CDAC /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; + 1FE69E99E48A78798EED7AD1D7C6434D /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; 1FE706D2ACE2792BF08E4E70F94DAFB8 /* http.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.h; path = src/event2/http.h; sourceTree = ""; }; + 2003529F2EBF7A6007EB4E11A4ADA032 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; 2017DA9EEE858CB20EB21564F85AB1C5 /* Framer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Framer.cpp; path = rsocket/framing/Framer.cpp; sourceTree = ""; }; 201F746F8E0E1B8D73FADACBE01D2141 /* ThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadPoolExecutor.h; path = folly/executors/ThreadPoolExecutor.h; sourceTree = ""; }; + 2024DFF18893141E456C008E609D0CB0 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNBootSplash.a; path = libRNBootSplash.a; sourceTree = BUILT_PRODUCTS_DIR; }; 202794FB62F23CE63FEA290BCF5A0D68 /* FIRAppAssociationRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppAssociationRegistration.h; path = FirebaseCore/Sources/FIRAppAssociationRegistration.h; sourceTree = ""; }; + 2041EDDEC54ED53007C0936B8D55DACA /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; 20514B16228C17A82D921ABC6343A0F1 /* listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.h; path = src/event2/listener.h; sourceTree = ""; }; 205907610E35F8508E30E8AC2C5DBE71 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Sources/Private/FirebaseCoreInternal.h; sourceTree = ""; }; 209CE284D8DACEB268A1B4C8643DCB24 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; 209E6159B2A3ED415D8A9F22EC1F49B3 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; - 20BE05392BEE989225A1BB9A9D9AC30E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 20ECC9838D9057350279484544C6F8EB /* UMImageLoaderInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.release.xcconfig; sourceTree = ""; }; 20EF8A5EFAA0FBA223BF07799B52E82A /* TOCropOverlayView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropOverlayView.h; path = "Objective-C/TOCropViewController/Views/TOCropOverlayView.h"; sourceTree = ""; }; + 20F99F7CC514037A5B67989AB5004552 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; 20FDCCFB85C207F8487526B90F487438 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; 21004AC0A4582CCC552CDA183D9DC874 /* GMock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMock.h; path = folly/portability/GMock.h; sourceTree = ""; }; - 2103DD4CFFBE30E3B847E50B74EE0097 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; - 2115296140C2CF8C416CDC7EE5BDD3EC /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = ""; }; + 21087C3500B90DDC9DC1ED19DFB632D1 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; + 21112FE6CC3ABA7BAE34829195B581C4 /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; + 214534118C1813DAE7745017DB1462AF /* BugsnagReactNative.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.debug.xcconfig; sourceTree = ""; }; + 2152B1EDCA505F6259FF7FA653A834F7 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; 21555701A3530D3B5C82697493CB7B37 /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = SDWebImage/Private/SDAssociatedObject.h; sourceTree = ""; }; + 216446D6814EE569C854C55221CE555E /* EXResumablesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXResumablesManager.m; sourceTree = ""; }; 2179FC7B715002C6DF2DEB99310534A5 /* hu.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = hu.lproj; path = "Objective-C/TOCropViewController/Resources/hu.lproj"; sourceTree = ""; }; - 218A1C80D6C077B19A0053260F8ABD4E /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; - 218A7C1CB3F3F0EE38F365F9D0EF8FED /* EXSessionResumableDownloadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionResumableDownloadTaskDelegate.m; sourceTree = ""; }; - 21928936A97A88A9FA82B955E7BEB826 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; + 217CC5108C143D5778890297EC62A091 /* UMCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.debug.xcconfig; sourceTree = ""; }; 21A25C4AB14CE49EA562D742266A45DB /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; 21A7953AE54F39EDE08EED767866B12F /* FIRCLSProcess.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSProcess.c; path = Crashlytics/Crashlytics/Components/FIRCLSProcess.c; sourceTree = ""; }; - 21C0530CD41205567B26D3166D29E34B /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; + 21A89669C3E92A0B7CDA713593450BC3 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; + 21BF8A62782EE8F796CAE98219E12069 /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 21D1A9FD9EC9CF2B3C26B5B5AA26701A /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; 21D98DF7D62C91619BA55EC65985D124 /* SKNodeDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKNodeDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNodeDescriptor.mm; sourceTree = ""; }; - 21DBDBA437786C746351D2DFC78A97CE /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = ""; }; - 21E1C04B0338AFDCE0204374F5D1BE4F /* RCTAnimationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationPlugins.h; path = Libraries/NativeAnimation/RCTAnimationPlugins.h; sourceTree = ""; }; 21E4E2187CE05275E6A620BAF348931F /* DrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DrivableExecutor.h; path = folly/executors/DrivableExecutor.h; sourceTree = ""; }; + 21E5E236FCC7BC21371A316603D36011 /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; 21EF648BF1BDE8D65ABE5F0CAD9A2DF2 /* Overload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Overload.h; path = folly/Overload.h; sourceTree = ""; }; - 21FFE36BB40CFE4C77A4AEA8B81DB950 /* RNCSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaShadowView.m; path = ios/SafeAreaView/RNCSafeAreaShadowView.m; sourceTree = ""; }; + 21FC912E10268FA35183A93CCB9083A2 /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; 2200E0074F2C4D943A5070A8F442DED9 /* ChannelRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ChannelRequester.cpp; path = rsocket/statemachine/ChannelRequester.cpp; sourceTree = ""; }; 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; 2205E7C347D94443D6EC356D29E6FBA9 /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; 2208AE898BE00C8E9A20D53E3B61751C /* AtomicIntrusiveLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicIntrusiveLinkedList.h; path = folly/AtomicIntrusiveLinkedList.h; sourceTree = ""; }; - 220CFA7BB31BB64689C9B1780ABDBE4F /* 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; }; - 2213F14E2806B28A678FB43F81102959 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 22269C4A96526A43CA43EDFCCB2ADD22 /* EXLocalAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXLocalAuthentication-dummy.m"; sourceTree = ""; }; - 222ACFC2898807F8C99792B2618B2515 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; - 2250FC50E639D872FED62EFC3AC77442 /* RCTDevLoadingViewSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingViewSetEnabled.h; sourceTree = ""; }; 2258553FA321966F9D02EB6B488D6A5F /* Sched.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Sched.cpp; path = folly/portability/Sched.cpp; sourceTree = ""; }; - 225E2159F6A8AA9BA050DA754BCCD886 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; + 2263121D8CEBB2CB500536C91E321C39 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; 22758F44D32AD04450E19079C740C6EE /* FlipperConnectionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionManager.h; path = xplat/Flipper/FlipperConnectionManager.h; sourceTree = ""; }; - 2289CBE7210E7EE7FD37438C92987E2B /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; + 2294B5E4EEB782F74D763F48A0417DFC /* RNCSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaView.h; path = ios/SafeAreaView/RNCSafeAreaView.h; sourceTree = ""; }; 22A3931AA81AA9F92BD05C58C01EB3E8 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; 22B6B7EBDFAF717DB9F601F99F01BDB2 /* GoogleDataTransportCCTSupport.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransportCCTSupport.release.xcconfig; sourceTree = ""; }; 22C541BE27C6A4521817D915D71EE8A1 /* FirebaseCrashlytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCrashlytics.release.xcconfig; sourceTree = ""; }; - 22D0530DC611FB94204BC1BFE55083B0 /* React-RCTSettings.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.release.xcconfig"; sourceTree = ""; }; + 22D68E4A3CC482FE1FAFB5220E879E04 /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; 22D8BCC69C89987119832A4DE6BA6CC0 /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; + 22DEEF405C74B0E54436D626A23ACD25 /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; 22FFA3CA1BC07691BA7C3978B922A25C /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; - 2300CA2DFAD3F4AE40894DA4FD87EB4D /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; - 2305823C299B252E60CC3F7381149FCA /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; - 230C59BF54A491FFA605006C56FD0B41 /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; - 2314FCA6CF37C437CC193B6B2CDDDD70 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; 2329226FFEA5104B4DD6E15DC4ABD2E5 /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/ssl/Init.h; sourceTree = ""; }; 232AF2B965D28EDDC1729A790B0D6B14 /* GDTCORFlatFileStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORFlatFileStorage.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage.h; sourceTree = ""; }; 2356EEE214CBA29FF161A0EE248EEEAD /* FIRExceptionModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRExceptionModel.h; path = Crashlytics/Crashlytics/Public/FIRExceptionModel.h; sourceTree = ""; }; 2359CD957BA4C8B2CB9A1754302E46C2 /* MemoryMapping.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MemoryMapping.cpp; path = folly/system/MemoryMapping.cpp; sourceTree = ""; }; - 237316B707521AEC76705CCA86B47A0D /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; - 238CB2CACAC2ECF51F65A726E505C359 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 23A7E51EEA6CB9F0BC2B16575E04CDCC /* RCTStatusBarManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTStatusBarManager.mm; sourceTree = ""; }; + 236FD4D356B59ECC08083CA689F814B6 /* UIImage+Extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Extension.h"; path = "ios/src/UIImage+Extension.h"; sourceTree = ""; }; 23C9283AC1D1C810A0288E7F43F1AC7E /* FIRCLSReportAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportAdapter.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter.m; sourceTree = ""; }; 23DA0C0CB9FAAB92820D145C153095A9 /* VirtualEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = VirtualEventBase.cpp; path = folly/io/async/VirtualEventBase.cpp; sourceTree = ""; }; - 23DC14BC30212C2A74E396EA2DD51B91 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; - 23EA729B2C57815E3E5B59F0E318D8A0 /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; 23EC78D9E585E6FC3B84966F8990DC32 /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; 2408E7ED07AC6EB017D9E56B7D1185B8 /* SKYogaKitHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKYogaKitHelper.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKYogaKitHelper.h; sourceTree = ""; }; 24180451BF7C918523EE2F2D21D04DB4 /* CustomizationPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CustomizationPoint.h; path = folly/lang/CustomizationPoint.h; sourceTree = ""; }; 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-appearance.a"; path = "libreact-native-appearance.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 242BE4CF47E227CB5879E37AD9571D0F /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; - 243401B845B68CB7AB081CC4CCF06704 /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; + 243999533427048349742E4C8497F63D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 244E8E38A4F0AC41551668214EC1AD56 /* FlipperKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlipperKit.release.xcconfig; sourceTree = ""; }; 24583E190FE32FCC653608056AE84406 /* ocsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ocsp.h; path = ios/include/openssl/ocsp.h; sourceTree = ""; }; - 24687903163FF75252812F63FF1B4BC9 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; 246D544B1A69EC0F055B8457ACD4C531 /* FramedReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FramedReader.h; path = rsocket/framing/FramedReader.h; sourceTree = ""; }; - 246FAF3FB45F34BDF2AEE8D8C4AB302A /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = ""; }; - 247ACF2034BDD4254D15486CC2D4D241 /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; - 248D3CB1F9995186AC0EB934A5CAC0CB /* UMFaceDetectorInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.release.xcconfig; sourceTree = ""; }; + 246FC8FE7F1893E54E265DE637E63CD2 /* UMModuleRegistryHolderReactModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryHolderReactModule.h; sourceTree = ""; }; + 24802765F7576A3981498FB8F21FEA6A /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; 2497EEA28E40FB179B015BA59BEEFD30 /* CocoaLibEvent.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaLibEvent.release.xcconfig; sourceTree = ""; }; - 24C041EC06DA2C2C4CE7701F6B92CFC0 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; + 24A71BD0B871FF7C31B8C21B17C7261D /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; 24C1DA274D9AFB3B7A190477D9909A62 /* RequestResponseRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RequestResponseRequester.h; path = rsocket/statemachine/RequestResponseRequester.h; sourceTree = ""; }; - 24D26B10E97574156D744D78C628AF3F /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; + 24DEFC2A18442E593617403AA3472022 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; 24DFCBCEED52E65ADDB9A2E32F18B23A /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; 24ECF8FD895851C90EC070BC51AD2E39 /* GFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GFlags.h; path = folly/portability/GFlags.h; sourceTree = ""; }; - 2501712FFF7A2530FBA2F2F040E5EAC5 /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; - 2514C82C07D8F8357A30EF31C34F9E65 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; 251E2B37D10A53AB4AA265294CBC9E50 /* FIRCLSDemangleOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDemangleOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSDemangleOperation.h; sourceTree = ""; }; + 2528BE37602E228D2E89406E50886958 /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = ""; }; + 252E9DED0CA8A4615E639613EA157E1C /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; 253FC392BCC45EAD55E2598A844EFD3A /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; + 25461BEBCFC3A2A402FE6B61D5718393 /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = apple/RNCWebView.h; sourceTree = ""; }; + 2546C9E7A86304B7609DAEE2B8B4740A /* RNFBJSON.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBJSON.h; path = ios/RNFBApp/RNFBJSON.h; sourceTree = ""; }; 25536AE414B531041F0CD8D17D1924FF /* FIRCLSMachOBinary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachOBinary.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOBinary.h; sourceTree = ""; }; 256F7DB27ACB7D7FA896C141FB145882 /* GULHeartbeatDateStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorage.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorage.m; sourceTree = ""; }; 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsinspector.a"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 25A912E977BE574C3FDEF0C947FC58D3 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; - 25B96F41AA6F97B2B6FDE39595CCD41D /* React-RCTNetwork.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.debug.xcconfig"; sourceTree = ""; }; 25BE401A75E8670829B853400D0421F1 /* EventCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventCount.h; path = folly/experimental/EventCount.h; sourceTree = ""; }; - 25BF77E2F0F25E7216E606048EE1180A /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; - 25C131015C99BF301C27398530106C9A /* RNCMaskedView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCMaskedView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 25CA827584AFD1502FF9924AC2B548E4 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; 2600EE8223950FDDA769A26272B961F9 /* cost.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost.c; path = src/dsp/cost.c; sourceTree = ""; }; - 2611F44C748F67F18320B0D162C156DA /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; - 264FEA32D7D792CD6C15D804EDFF7F90 /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = ""; }; - 267FE598D55784C0942CD9A34A6B4128 /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = ""; }; - 269BDE5F9150C53B58840D7F7942DB50 /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; + 26131611C4C08C665ADB4FEFB3DB096E /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = React/AccessibilityResources/en.lproj; sourceTree = ""; }; + 267800D1495F26BDAA10F399560AFB1D /* Rsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Rsa.h; sourceTree = ""; }; 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTSettings.a"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 26BDD6260EF1FCC4C3C43EB3A19C7DC0 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; - 26CD50B12450494507E950828B622558 /* RNFBVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBVersion.h; path = ios/RNFBApp/RNFBVersion.h; sourceTree = ""; }; - 26DD998660B2BE1816A93D531E0EC82F /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; - 26EA42C45E63258B96C6B447BC269D23 /* RNBootSplash.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.debug.xcconfig; sourceTree = ""; }; + 26A7CF1227E14CB122B549C8DD1F0BDE /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; + 26DBA3571B5E7A02BABF74B0F5072B6B /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; + 26DD56000724162A576C71F91BAAC7B9 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; + 26E7C4F4E7454C0629994BC0E90F6C31 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; 26EE0EF8BDE394A160A91BFA295871B0 /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/String-inl.h"; sourceTree = ""; }; - 270D7844C35BA0D746D45981ADB64C2E /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; - 27129A10F8357EB63C5D3F6A502B9587 /* RCTRequired.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.debug.xcconfig; sourceTree = ""; }; - 2714CA9B90D36DAD7985EB61005E21FB /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = ""; }; 271FA14DDC0B04ED520A6BFB035E820E /* GDTCORClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORClock.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORClock.h; sourceTree = ""; }; 27310E97B1022E4BB8E9F20B2188A4B4 /* ConnectionAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionAcceptor.h; path = rsocket/ConnectionAcceptor.h; sourceTree = ""; }; - 2732B5BC52CA8008D3579214389C4BE5 /* RNImageCropPicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.release.xcconfig; sourceTree = ""; }; + 2737BFFE5E4D7FDC1C3559888BCBB08E /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; + 27423B46592FEFD9DD3EF4DF1D7A9185 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 274F8B085DC92CB35B0F007F6D6B7336 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; + 27663F17D3997F6B29978B0A0FD5FCDD /* RCTDisplayWeakRefreshable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDisplayWeakRefreshable.h; path = Libraries/Image/RCTDisplayWeakRefreshable.h; sourceTree = ""; }; + 276FA44E619114C54F1132F66837AE74 /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = ""; }; 27761170B4D2EEFF69375D3636512EF7 /* ConnectionContextStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionContextStore.h; path = xplat/Flipper/ConnectionContextStore.h; sourceTree = ""; }; 2783C26E011E46A1CFC441EDF1431401 /* GDTCCTCompressionHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTCompressionHelper.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTCompressionHelper.m; sourceTree = ""; }; - 27868615EED7FE5E782EA23128323EC7 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libKeyCommands.a; path = libKeyCommands.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 2794048F0B28748195004537CAA2D24E /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; - 2794F82035D1AF4A75088D8FC513A3EA /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; 27A1392B69F38889C38275AEE5285E60 /* Observable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observable.h; path = yarpl/observable/Observable.h; sourceTree = ""; }; - 27ABF28F90A20FAD70E62816ED19F5AA /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; - 27B06FC1E3E74DC87660CC1C44A1853A /* React-jsinspector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.debug.xcconfig"; sourceTree = ""; }; - 27B50238FD1725E549B8016F06B6EB51 /* UMAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppLoaderProvider.m; path = UMAppLoader/UMAppLoaderProvider.m; sourceTree = ""; }; + 27E4CF448FD5A82ED3DC0AE8AB4F9D03 /* EXAppleAuthenticationButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButton.m; path = EXAppleAuthentication/EXAppleAuthenticationButton.m; sourceTree = ""; }; 27F1A6BECB87CF25790CF1EEC78FFCDF /* AsymmetricMemoryBarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsymmetricMemoryBarrier.cpp; path = folly/synchronization/AsymmetricMemoryBarrier.cpp; sourceTree = ""; }; 27F67524319D29AC0776504BF2D178C2 /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; - 280BF1D653DBBF5EBEFBE99928C3D702 /* RNCMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedView.m; path = ios/RNCMaskedView.m; sourceTree = ""; }; - 281709ACAA55D9AFAACCE5AA7F5903BF /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; + 27F9B38B5B9B2A74D062B970A2C09F07 /* RNNotificationCenterMulticast.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterMulticast.m; path = RNNotifications/RNNotificationCenterMulticast.m; sourceTree = ""; }; + 2810B26CEEDC1CED35FAE7B670474663 /* RCTRequired.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.debug.xcconfig; sourceTree = ""; }; + 281796CF58FC51481141FBB53E083A88 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; + 281B750A44AD47E03297E51236DE9D1F /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; + 28205285B7F1625C04405C2DAA9DEACD /* RNFBCrashlytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBCrashlytics.release.xcconfig; sourceTree = ""; }; 2821567518024875EA0FE9DE47F759F1 /* SpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpinLock.h; path = folly/SpinLock.h; sourceTree = ""; }; 2830D91941428ABC6992BDE14798A552 /* GDTCORClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORClock.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORClock.m; sourceTree = ""; }; - 28341F3A91E1977E1903CEB50390D7D6 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; 28414E289A382126C99F42C0655BEEF3 /* Asm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Asm.h; path = folly/portability/Asm.h; sourceTree = ""; }; 28572934552C422E02FEBE6A5C612898 /* x509v3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509v3.h; path = ios/include/openssl/x509v3.h; sourceTree = ""; }; - 2881FEC8284A5EA823672B48E20930AB /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; + 2864634C52B08EC4066DF6E05EAAF2CC /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 28842B3C970E39EBCCC32EBB0D40F67A /* react-native-safe-area-context-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-safe-area-context-dummy.m"; sourceTree = ""; }; 2896250BA85349D866917AD3CB04191C /* FIRInteropParameterNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropParameterNames.h; path = Interop/Analytics/Public/FIRInteropParameterNames.h; sourceTree = ""; }; 28BA4DBAEDB3E2EE40C53AAF5C23B2B5 /* FLEXNetworkRecorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkRecorder.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkRecorder.h; sourceTree = ""; }; - 28E6C99BD266452ED295DC97B659C7BF /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; + 28C0F345255694EE5B845BAC11D2F9BB /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; + 28D8E017C6DB25E77E69884551476E01 /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; + 28E17600EEEE921DFF6A2EA32F09B0E6 /* RCTTiming.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTiming.mm; sourceTree = ""; }; + 28EE73CF5F00704768457F2E2CF48E3E /* EXVideoThumbnails.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXVideoThumbnails.debug.xcconfig; sourceTree = ""; }; + 28F373C3F8B8B054FED12B035C815828 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + 2906C60C0A8B4FABE04A66BE81678F30 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; 29136F9BB3638A1122CB739D067F3262 /* GLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GLog.h; path = folly/GLog.h; sourceTree = ""; }; - 291403C29A0DD0F75D8F868CDA327AB4 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; 29151FCD9095101600D17E4091F9BDB6 /* FIRCLSURLSessionDownloadTask_PrivateMethods.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionDownloadTask_PrivateMethods.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDownloadTask_PrivateMethods.h; sourceTree = ""; }; 291639C7BB6B0EAA310E13DCC6249909 /* 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 = ""; }; - 29180AE048012CD4589BA6C1AE87D9E1 /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = ""; }; 2919C9877EF941C1709E394910ADED79 /* EnableSharedFromThis.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnableSharedFromThis.h; path = folly/memory/EnableSharedFromThis.h; sourceTree = ""; }; 292EB77EC12530C08E37B59EF1FC90FC /* Hazptr-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Hazptr-fwd.h"; path = "folly/synchronization/Hazptr-fwd.h"; sourceTree = ""; }; - 294504C486F5F64864F99B2EFB421FE9 /* UMImageLoaderInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.debug.xcconfig; sourceTree = ""; }; + 293C50622E6A9A4C5301BAA220DDCCBC /* RCTFileRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileRequestHandler.mm; sourceTree = ""; }; 294A1AFBAF9D3E0C8204ED0CB43EB4D8 /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; 2956AA5A37640E08E35180D04389C8D0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = rsocket/benchmarks/README.md; sourceTree = ""; }; - 29655C07B10B5DF828A770A0A321F2B9 /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; - 29997E0EDEA534599D64FBD8CEE9D72E /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; + 2991290E6EEB04FC713CA273A601DA2F /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; + 2992D680AB841D9EF4CD26CC91DC3F36 /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; + 2996A59C885B15061352C2FD272B559B /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDeviceInfo.h; path = React/CoreModules/RCTDeviceInfo.h; sourceTree = ""; }; + 29B51DC11275B6010DEF513501C70644 /* RNFBCrashlyticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsModule.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsModule.m; sourceTree = ""; }; + 29C2B0DD8346F74B4D24025F10B0FC0A /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 29E7A2AB42B85B66A198276F7D9EA95B /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/MicroSpinLock.h; sourceTree = ""; }; 29F48E18A745D5661C52B0B9EE8B36DD /* F14MapFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14MapFallback.h; path = folly/container/detail/F14MapFallback.h; sourceTree = ""; }; - 2A117C440D1DF33A1B8D7E7BED7B2C2F /* Yoga-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-umbrella.h"; sourceTree = ""; }; - 2A1E2BD8F5FCEA7CB8E082DF3FA93768 /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; - 2A1F125175A5F67B88C8B4BC77473475 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; + 29FD9D843251F1B79E260C857FD8ED7C /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; 2A269314E0604B53C09695234BD812E0 /* CppAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CppAttributes.h; path = folly/CppAttributes.h; sourceTree = ""; }; - 2A293917258C8AB05CB084772D82E4A8 /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; - 2A31498DD7FFE5AC83A57E0A20328FD3 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; - 2A3EFED49392A9AF5CE0B7C48B7585F8 /* RNUserDefaults.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.debug.xcconfig; sourceTree = ""; }; - 2A424B921F34A2E684E3317DE9C9F0B0 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; 2A4FB11AD36C6596F587870A6182B07C /* FrameSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameSerializer.h; path = rsocket/framing/FrameSerializer.h; sourceTree = ""; }; - 2A627A4904D393225F4D863ED996C06F /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; 2A89CEB0219B928E95E7D2561B3A7949 /* AsyncServerSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncServerSocket.cpp; path = folly/io/async/AsyncServerSocket.cpp; sourceTree = ""; }; - 2A951AFF7D34237793354A27AC143677 /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevLoadingView.h; path = React/CoreModules/RCTDevLoadingView.h; sourceTree = ""; }; + 2A928D06C98BB699C052179F4C1BFAF1 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; + 2AB031C0FB522A7A9178F961782D5199 /* RCTGIFImageDecoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTGIFImageDecoder.mm; sourceTree = ""; }; 2AC99ED5BE2EE2DE451DCDCA4465D2DE /* enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_neon.c; path = src/dsp/enc_neon.c; sourceTree = ""; }; - 2ADE9AB62A37B435E018B1132C7FDFEF /* EXVideoThumbnailsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXVideoThumbnailsModule.m; path = EXVideoThumbnails/EXVideoThumbnailsModule.m; sourceTree = ""; }; - 2B0181B4C8866EF8D216F2B0EE1C881F /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; + 2AD8AEC5CA9466B95D6D17824D198776 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 2B054E6F12AECCB3D6DC93C4596190FE /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-slider.a"; path = "libreact-native-slider.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 2B43A8B6FA6C8A7E69685230754BB617 /* rescaler_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rescaler_utils.h; path = src/utils/rescaler_utils.h; sourceTree = ""; }; 2B554CA6B8A4FF8F9E6124BD14A45F5D /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = ""; }; - 2B686218AF1DC7440CE73B6A21173CDF /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; - 2BA31F4E951C3CA9392E5BA152BFAEC8 /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; - 2BA50BEB85CDEB7F710F384F38314E47 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; + 2B5EC5BB829C668D3B8DBCFEDB728052 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; + 2B6286FA09BB89F9A4F85C914C369FCB /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; + 2B8078DA261F8C1EF77F9DDD4E1CA3C3 /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; + 2B8E9B0B5F4190EA607859DE9971A46E /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; + 2B9D8360A88D0731FD11E0F3F22A9AAC /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; 2BC4B6B859189315E479A3B28B20CC45 /* AtomicHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashMap.h; path = folly/AtomicHashMap.h; sourceTree = ""; }; + 2BC928985913E403ED554432C47B9749 /* RNFBUtilsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBUtilsModule.m; path = ios/RNFBApp/RNFBUtilsModule.m; sourceTree = ""; }; 2BCC6F79668FBB113CA02877BB317A79 /* GDTCORUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadCoordinator.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m; sourceTree = ""; }; - 2BD0A0DA49CF85CCFD14B1B3654E4F4E /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; - 2BDCF410F639F54DE6F17426012EF49F /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = ""; }; - 2C04FBD6FA48936DAF7EAD4995FBDC01 /* RNRootView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.release.xcconfig; sourceTree = ""; }; - 2C0AC5526C17F630002EFD6125097719 /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; - 2C374255E35FB55E75A6438EEA6E61BB /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; + 2C1E624888F4BDE97295B8A0B99C6913 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; + 2C2DC4E4CE6701125017794D4B0A19CF /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; 2C5F56BE2A8F083B1A4274718E4C109D /* FIRCLSByteUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSByteUtility.h; path = Crashlytics/Shared/FIRCLSByteUtility.h; sourceTree = ""; }; - 2C5FE14ADE74DC6A73069DA443A98AA4 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; 2C88102DB232016A3292EC03C2DB112A /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = "Objective-C/TOCropViewController/Resources/de.lproj"; sourceTree = ""; }; - 2C91429E12ACB86DA5CBA12CEA72B630 /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; 2C95AF02519A69C89954487A23FA6372 /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; 2C9822C96664CAFFEDB36DE46B79E932 /* ScheduledRSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledRSocketResponder.cpp; path = rsocket/internal/ScheduledRSocketResponder.cpp; sourceTree = ""; }; - 2CC707DC0C2F0654DDF4CF3799D398F1 /* RCTDisplayWeakRefreshable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDisplayWeakRefreshable.h; path = Libraries/Image/RCTDisplayWeakRefreshable.h; sourceTree = ""; }; + 2CBDEC1EEE9DE1FFBF3979C4ACF74C9B /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; + 2CBFF854FB0878878C529C9F2FE1427D /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; 2CD37571E8A8157323BE289CDDAF2F6A /* Format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Format.h; path = folly/Format.h; sourceTree = ""; }; - 2CDE27B48928A37F5C3D238EF4D46660 /* EXKeepAwake.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.debug.xcconfig; sourceTree = ""; }; + 2CE0218ED5D6AFD5A68F4E54242C4678 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + 2D049BBBF6C34C073C4DCD32F6BA1F76 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; 2D113AB762E333161D4F04EE310B3C90 /* Pods-RocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RocketChatRN-acknowledgements.plist"; sourceTree = ""; }; 2D1F4F19792AFEEE2FF024DF7E9EC07B /* near_lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = near_lossless_enc.c; path = src/enc/near_lossless_enc.c; sourceTree = ""; }; - 2D292F848C371759568A2C2ABCD1A7B9 /* UMBarCodeScannerInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.release.xcconfig; sourceTree = ""; }; 2D394F885AEC1EDE28281853D9D2CBB3 /* ExecutorWithPriority.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ExecutorWithPriority.cpp; path = folly/executors/ExecutorWithPriority.cpp; sourceTree = ""; }; - 2D77C6DB0287A5D60AC414B8A6560502 /* EXWebBrowser.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.release.xcconfig; sourceTree = ""; }; + 2D44DA9AFD0F10A48D85901FE0B7D8FA /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + 2D48EBF73418FDE34E4A6685BF019E63 /* RNUserDefaults.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.release.xcconfig; sourceTree = ""; }; + 2D4FBBF7DA4DCC10DD6963DC7E3BD3BF /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMAppLoader.a; path = libUMAppLoader.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 2DA30F863A95CA63A9CA41DC1215B8CB /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; + 2D8A1EDB5219B4C91F3124A0D77AB72E /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; 2DA474163086E4BB515B570BEFCCA89B /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; 2DBE8246F143EB260DC08F7E8375A906 /* RSocketStats.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketStats.cpp; path = rsocket/RSocketStats.cpp; sourceTree = ""; }; - 2DD2C3F323139CD047CE80B6F2D9C395 /* RCTDevLoadingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevLoadingView.mm; sourceTree = ""; }; 2DE6A06E7BB1F173B5A5C0F72A9F52A9 /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = ""; }; 2DF065CF6AEEF67333ADA442B00564E7 /* event_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_compat.h; path = src/event2/event_compat.h; sourceTree = ""; }; 2E0FCA6F7C316AB98C81E7D5BEB5BF08 /* SharedPromise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SharedPromise-inl.h"; path = "folly/futures/SharedPromise-inl.h"; sourceTree = ""; }; + 2E219A5EC5A88483D9A0CFF8771E52C9 /* EXFileSystem.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.debug.xcconfig; sourceTree = ""; }; + 2E22DFF7564A56CE0314A957EED3404E /* EXKeepAwake-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXKeepAwake-prefix.pch"; sourceTree = ""; }; + 2E32A66191936464E27CA08EF71A5A57 /* UMTaskManagerInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.debug.xcconfig; sourceTree = ""; }; 2E5C3E390B7AC062CB93C13C95F022C8 /* FIRInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallations.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallations.h; sourceTree = ""; }; 2E642032847273B0FA7EE286C5748303 /* event-config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "event-config.h"; path = "src/event2/event-config.h"; sourceTree = ""; }; - 2E71DA2D60FC56604BFCB521A774C92D /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; 2E72F8E8BCDFD8F4466385DDC7BC9D3A /* AsyncSocketException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSocketException.cpp; path = folly/io/async/AsyncSocketException.cpp; sourceTree = ""; }; - 2E8CC085D230D84EB54AB5526DE13753 /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; - 2E8F1B836E77BA3DCDE253AD6ABC28D1 /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2E9D1D019F0429D5D1BAD9EA873DFE4C /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; 2E9E5D83BCE0584BB28677D4CDDF08DF /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - 2E9FBDC2494E35C34C1B001EEC2BACA5 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; - 2EAEF4D211A04A58ED96E38766C5D1E3 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; + 2EA010D4718C61DB673DBF4FB80811FD /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; + 2EA8E7DCF2FD3A1D4EC6ED370230B5CC /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; 2EB3F0AB2BB873E745F85BE1CD41C462 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; 2EB62790A8FBB69F1D3EE7F8033B7229 /* FIRCLSOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSOperation.h; sourceTree = ""; }; 2EBEBEE1954663B995A9E6D7C64199F0 /* EliasFanoCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EliasFanoCoding.h; path = folly/experimental/EliasFanoCoding.h; sourceTree = ""; }; - 2ECB3C343296C4A64472C1905259DFCC /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; - 2ECF09EC3A960F7D1D2D7094E3CC47B6 /* RNFBUtilsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBUtilsModule.m; path = ios/RNFBApp/RNFBUtilsModule.m; sourceTree = ""; }; - 2EE1995528678F37FD8CA5126B313D05 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 2F1B5EB297DCF4C9E1F7CC1E3C2CDC94 /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; - 2F1D96967D55034526525434039ABB78 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; - 2F43E8505637F4CCFCEFDD22C49B9A8A /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; + 2EDE8648D5FF43569B68A465EBBF93DE /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; + 2EFD88DC535B179F97D75814FDA16BC4 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; + 2F0B2ED39A7FD3B15258303FBAD4EA77 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; + 2F3B2DF0F219B0340B81B5D0D197F591 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; + 2F52ACD9DE00657BFFCBBC48F64C8AA2 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; 2F53EA5B542DD00983E6AE9DFD0BB609 /* HHWheelTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HHWheelTimer.h; path = folly/io/async/HHWheelTimer.h; sourceTree = ""; }; 2F5E7FDE96061C5CB75C24795739A465 /* Iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterator.h; path = folly/container/Iterator.h; sourceTree = ""; }; 2F81F8ABF465B60C8D272535E23F4818 /* cost_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips32.c; path = src/dsp/cost_mips32.c; sourceTree = ""; }; 2F8C8A39F7438E3AF108E6B210E6995D /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; 2F92857193485FA77EC2925B935001E3 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GULLoggerLevel.h; sourceTree = ""; }; - 2F9FBBEF4AC750C92B141F830E862FC3 /* EXConstants.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.release.xcconfig; sourceTree = ""; }; - 2FBF889F45EB3C2CBCC0F9E4321FF1B9 /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; + 2F93B0C6AA105C05670A6BC7CC29AC06 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; 2FC181666A2195399AE0EDA2B3969407 /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = ""; }; + 2FC74470958D8E3183AF045DCA6398CA /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; 2FD347D99C81FBEAB106BCBF3C46EE03 /* F14Set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Set.h; path = folly/container/F14Set.h; sourceTree = ""; }; + 2FD6CBD9C1341D715218896FCF7E1F44 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; 2FD889CBB5DB3655E694833B0C9002A0 /* GDTCORDataFuture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORDataFuture.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORDataFuture.h; sourceTree = ""; }; 2FD9D71D06F16AFCE7797EF462E440AA /* ui_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ui_compat.h; path = ios/include/openssl/ui_compat.h; sourceTree = ""; }; 2FDE8856D93DD3D024AB6B02BD5671EC /* Future-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-inl.h"; path = "folly/futures/Future-inl.h"; sourceTree = ""; }; + 2FEC334AAEE7FB1D25D55F1D998AE025 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; 2FF498C4C5C216E03B3E5EDF7C55657A /* dh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dh.h; path = ios/include/openssl/dh.h; sourceTree = ""; }; 2FF4B815A0699B64BEE8527AD39E6CA0 /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; + 2FF898273E1EBDEA1442B5425490A0C1 /* RNCSafeAreaProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProviderManager.h; path = ios/SafeAreaView/RNCSafeAreaProviderManager.h; sourceTree = ""; }; 3004D665389E914D103F3DEEA9895A56 /* GlobalShutdownSocketSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GlobalShutdownSocketSet.cpp; path = folly/io/GlobalShutdownSocketSet.cpp; sourceTree = ""; }; - 300627D0E908150F097AE8D79B83B1C9 /* React-cxxreact.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.release.xcconfig"; sourceTree = ""; }; 300FAC486CF904F8E31345BF690A758F /* FBVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBVector.h; path = folly/FBVector.h; sourceTree = ""; }; - 30292170DF471817AFE23AD88C8A08CC /* RNFBAppModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAppModule.h; path = ios/RNFBApp/RNFBAppModule.h; sourceTree = ""; }; - 302E7C75720BA7BDBB4BBB6003DD9934 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; - 30344D38AC24E622A7CB8F90B79B1BDD /* RNImageCropPicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.debug.xcconfig; sourceTree = ""; }; - 3036C06861E5784B6061546B1BF887AF /* EXLocalAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocalAuthentication.h; path = EXLocalAuthentication/EXLocalAuthentication.h; sourceTree = ""; }; - 3037140F1A9967C130D4417F241B2121 /* RNFBAnalytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBAnalytics-dummy.m"; sourceTree = ""; }; - 305BEC16D0C2139163868EA257340703 /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = ""; }; - 3060D0C9BF2D4F9E4590827BE968DF0B /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = ""; }; - 309CEA6A66463DF65D634545A38DCD2A /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; + 302B60A9B1060BC8908DE6EF2A56518F /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; + 30322B00C1EF0C1502C263CDA08BC608 /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; + 303B76A3D04E7EC197F1AEDD588AA249 /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; + 305CE17114C719D8BCBECD794E9CBE4B /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; + 306516B544C9ABE4B2531CA415CA8825 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; 30A39872B9BBD02F4762B6A106F3648A /* WaitOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = WaitOptions.cpp; path = folly/synchronization/WaitOptions.cpp; sourceTree = ""; }; - 30E1A0AE83FE4F77512A3898E18D4E44 /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; - 30E873B2AF20F8F5322BD2B723FBFBBE /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; + 30A4838546B593A586413B8973B63CB4 /* UMFontInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.release.xcconfig; sourceTree = ""; }; + 30C697929EFA6D57ACD221D75F86D7E5 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; + 30EFCF131A9EBE0519B24BC24E00FED4 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; + 310236F89241F84C0477CD04D38A2645 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; 31048922C05EFC9BE9C31498325EE5B3 /* FlipperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlugin.h; path = xplat/Flipper/FlipperPlugin.h; sourceTree = ""; }; - 3111A9EF6ED1EF6F2F9DD405E92DE74F /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; 311C6FB1748BA7883B86D832345C9570 /* FIRCLSFABNetworkClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABNetworkClient.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSFABNetworkClient.m; sourceTree = ""; }; - 3142D127674EAD61004C36F95108BE59 /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; 314B78B89323001F632881933C672381 /* lossless_enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips32.c; path = src/dsp/lossless_enc_mips32.c; sourceTree = ""; }; - 315567A644A3A4F6CDE0EC2444F28DF2 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; 316847DDC1EABB4826243F54E7CB1BEA /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = ""; }; - 316935E14C775D75A6B451E041612058 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 316C4B479F4BD6A96108B7628E50750F /* 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; }; - 316DE097F7754637102647D257337A16 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; + 319500F8B8551FAE8E84E3DB8A58398A /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; 319A9EA142CFD67B423011FE2DC2330D /* SKApplicationDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKApplicationDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKApplicationDescriptor.h; sourceTree = ""; }; - 31A37F2B604486E89B7D21532DECA5B5 /* RNVectorIcons.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.release.xcconfig; sourceTree = ""; }; - 31A71D3B96AC98877C45572CE5B79748 /* RCTClipboard.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTClipboard.mm; sourceTree = ""; }; 31A9B41A3FBE3A46897085F5D47B72D8 /* OpenSSLPtrTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLPtrTypes.h; path = folly/ssl/OpenSSLPtrTypes.h; sourceTree = ""; }; + 31B7579B8EC1A7AE35CA76444EB64945 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyboardObserver.h; path = React/CoreModules/RCTKeyboardObserver.h; sourceTree = ""; }; 31B86B1123EE86D29AB2716C1D7FF33C /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; - 31C4204D58E0E145C4DBA328B0162E12 /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; - 31C9DBAB0B12753EFD09AB5FF51312FA /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; - 31CA8F9B54CE322337A559BAEA1909EE /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; - 31D0D18B5D9D3B7F294402FC5289F1FE /* RNFBCrashlyticsInitProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsInitProvider.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.m; sourceTree = ""; }; + 31CE3BDD8A26CAAD64FBC7859195CEE6 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; + 31E68723753BB698800F91415F0E9881 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; 31EBCD32DFE1480A947114CB5883453C /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; 31F0F6B9BBDFA3C2855DFBE9DE7D33F7 /* cmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cmac.h; path = ios/include/openssl/cmac.h; sourceTree = ""; }; - 31F5620E7618564781F88264E1F9ED35 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; 3206ECD90892F43854C0363F3CCE368F /* RSocketServerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServerState.h; path = rsocket/RSocketServerState.h; sourceTree = ""; }; + 3212B8F001BA6493E85D6D0BC3C8E45F /* RNCMaskedView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCMaskedView-prefix.pch"; sourceTree = ""; }; 322B81AC3D163C6FF26E1064983DB705 /* ConcurrentSkipList-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ConcurrentSkipList-inl.h"; path = "folly/ConcurrentSkipList-inl.h"; sourceTree = ""; }; 3230208FB2508F403AA1AAB211A0838A /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = SDWebImage/Core/SDWebImageOperation.m; sourceTree = ""; }; - 3231820F12D9F31D02742625D5125C27 /* RCTLogBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLogBox.mm; sourceTree = ""; }; 3237E6B096228DF5F7E49EACFA08D536 /* GoogleDataTransport.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.release.xcconfig; sourceTree = ""; }; 324DB7D168502DA9822B3031DB3A760B /* NetOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetOps.h; path = folly/net/NetOps.h; sourceTree = ""; }; + 3256EA822DC6CCF919DBDC3B27FCF8A1 /* react-native-orientation-locker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.debug.xcconfig"; sourceTree = ""; }; + 325E5423BF9109BCD0A9DFDF0A25EDB2 /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; 327B3B9C24CFD373C2A3F39763EC1FFF /* FlipperState.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperState.cpp; path = xplat/Flipper/FlipperState.cpp; sourceTree = ""; }; - 327B3E3F0F1ACFE40B8869E00817299D /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; - 327C7A08C522C7C67B2A82ED9E74242C /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + 32A87992A21527A69CE2B66FF9D0DB48 /* RCTLinkingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingManager.mm; sourceTree = ""; }; 32AAD906F9162328653ED321D640D957 /* ExecutorWithPriority-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExecutorWithPriority-inl.h"; path = "folly/executors/ExecutorWithPriority-inl.h"; sourceTree = ""; }; - 32CD83D7735A14A5075286726B969B1D /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; 32D8B0A0493ECE6D2B90A97129243FA5 /* OpenSSLUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLUtils.cpp; path = folly/io/async/ssl/OpenSSLUtils.cpp; sourceTree = ""; }; 32DD0D755D3ADEF89AEBD4ECF7C5D440 /* ScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledExecutor.h; path = folly/executors/ScheduledExecutor.h; sourceTree = ""; }; 32E129B116DD8EE63064AEFD0AE7B2E2 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; 32EE73EF649B61A7434249B8BB3B71CF /* ScopedTraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopedTraceSection.h; path = folly/tracing/ScopedTraceSection.h; sourceTree = ""; }; - 32EF82EE1A1D8756C98666B0A26B9255 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; - 33063D49319D5C88CE6FDEC6E9FF9F0F /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; - 33085967C658BAB1A7E41C3173AB2378 /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; 33096117DD505FBE84E2E95D9F55E4C1 /* ripemd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ripemd.h; path = ios/include/openssl/ripemd.h; sourceTree = ""; }; 331D538CAE6C431B474CF5CD0EA2769E /* Arena-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Arena-inl.h"; path = "folly/memory/Arena-inl.h"; sourceTree = ""; }; 3322F1A2E7AA2EA32611D9ADB0FD1A5E /* SKNamed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNamed.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNamed.h; sourceTree = ""; }; 3334E2597C59E9252ED8290454BFE078 /* HardwareConcurrency.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = HardwareConcurrency.cpp; path = folly/system/HardwareConcurrency.cpp; sourceTree = ""; }; 3335457CAD39AD9B8912FA0C97F35C0E /* FIRCLSURLBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLBuilder.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSURLBuilder.h; sourceTree = ""; }; + 3341E53317D371EFF9C478A858D32254 /* RNCMaskedView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCMaskedView-dummy.m"; sourceTree = ""; }; 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libPromisesObjC.a; path = libPromisesObjC.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 335EFF7D5A6AECA87296187A5FF2D12A /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; 33603B081B182532FE328C6365D0E994 /* SingletonThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonThreadLocal.h; path = folly/SingletonThreadLocal.h; sourceTree = ""; }; + 3365F37DC5C13BE00AEE78F612B23BE6 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; 33661B36D9C3F3010D759B837CB5BA85 /* FIRCLSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSException.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSException.h; sourceTree = ""; }; + 336AE8648B576F71B07AE2AF3B2C9AB6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 336FDE143D48F663E9394445B68A5821 /* vp8li_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_enc.h; path = src/enc/vp8li_enc.h; sourceTree = ""; }; + 337145F316348576D066BD8895ADCEF7 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; 337157803E6FCA7092E3503F99A24DDF /* CocoaAsyncSocket.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaAsyncSocket.debug.xcconfig; sourceTree = ""; }; - 3371866E52645441D616687DD3B21EC9 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; + 33908E4F998C3F161A63C4BD11574B38 /* EXKeepAwake.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXKeepAwake.m; path = EXKeepAwake/EXKeepAwake.m; sourceTree = ""; }; 3393287E11CC9482CDC028594487C3B7 /* FBCxxFollyDynamicConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FBCxxFollyDynamicConvert.mm; path = iOS/FlipperKit/FBCxxFollyDynamicConvert/FBCxxFollyDynamicConvert.mm; sourceTree = ""; }; - 339AA39474F875601CA8E4F14E88800A /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; - 33A8B74E82780E85783CF929D1E5C33A /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; - 33B95CD4BE4D984D1A2A902045B901ED /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; - 33C024B491E1A7E75ADB5640F5EBCB98 /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; - 33D690AD715585D06C9C452441BC4F70 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 33D726781738E2B01F5B74C0653D6439 /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; - 341BD64198173E046E86ACBF1EC97D21 /* RCTDevLoadingViewSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingViewSetEnabled.m; sourceTree = ""; }; - 3430F6D9D154829830335E7F6313999B /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; + 3398B9FD014CF6094ABBF459201EA334 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; + 33B028E63E78F42E0CDC1FECBD40532F /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; + 33E0AE3C769B6F7D9C335EEA7EB8F7E4 /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; + 33E5248E19B503DE53C1D6976CEC04A5 /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; + 33EA54E898E5CAE199E7654058234757 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; + 34196660B125935BD97FD8D8002203CF /* RNVectorIcons.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.release.xcconfig; sourceTree = ""; }; + 34425C1B564D8C3C5C9745CB556FBC18 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; + 344C2436D9ADBA442B07BD4C151DA1CF /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; + 344EA3DC384C4688B5A035B4BDFFADFD /* UMConstantsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.release.xcconfig; sourceTree = ""; }; 3455E1B830D610EBB778934F64D6A975 /* AsyncSignalHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSignalHandler.cpp; path = folly/io/async/AsyncSignalHandler.cpp; sourceTree = ""; }; - 3459D0CA80524267C487FC13D3D0273C /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; - 34657EB2F270AE6902A20E460C9FBE94 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = ""; }; + 34565FA4951F2E84CF439378B20E8891 /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; + 346F0A66EF41AB5375BDA423FCFAFC5E /* RNCSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewLocalData.h; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.h; sourceTree = ""; }; 347BF07C7DD3AE9F397121BFB6CDEBE4 /* UncaughtExceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UncaughtExceptions.h; path = folly/lang/UncaughtExceptions.h; sourceTree = ""; }; + 349C03803E507F869FE96C11F114D2CA /* 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; }; 349F92ACE634708AF1FE1AF39B381392 /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = ""; }; + 34A47F4039C7962D0D1551C22DB06ED9 /* RNFBApp.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBApp.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 34B4A366A7C4EBE2B11006AB0FF65BB2 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; + 34C825A7E905352925835722B8C8C8A7 /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; 34C842CD40D88AB4B2BF24FC77DA0009 /* libRNFBAnalytics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFBAnalytics.a; path = libRNFBAnalytics.a; sourceTree = BUILT_PRODUCTS_DIR; }; 34D5E6F348BDD95757416B6031B9A117 /* ClockGettimeWrappers.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ClockGettimeWrappers.cpp; path = folly/ClockGettimeWrappers.cpp; sourceTree = ""; }; 34D66EBD4D76C6D7FE612AC6B823A4AB /* EventFDWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventFDWrapper.h; path = folly/io/async/EventFDWrapper.h; sourceTree = ""; }; 34E179D8F68C14A806FFAEC890C1C6D2 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; + 34E471FBBF2F79127FB56BB2EFC0500E /* RCTAes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTAes.m; path = ios/RCTCrypto/RCTAes.m; sourceTree = ""; }; 34E902E97DA04910A3A694AB725291EA /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/lang/Bits.h; sourceTree = ""; }; 34EBB387C060A930458C5C6E5081055B /* UIImage+WebP.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+WebP.h"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.h"; sourceTree = ""; }; 34F112AD4DCB7424F61EB3493B9FFEA3 /* PasswordInFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PasswordInFile.h; path = folly/io/async/PasswordInFile.h; sourceTree = ""; }; - 35145D11DB7911A08652F4658F072CD4 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; - 351AF5B5F9D569C80DA853CDD90CCE3E /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; + 34F97EFB67AC70F7EBD4A36D84479A74 /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; + 35050769E414C13E73B0E3ADB47482AA /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; 35220CA232F89F7A84F6E5E7237BED12 /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = SDWebImage/Private/SDDisplayLink.m; sourceTree = ""; }; + 3526E45476F9A3827C6E7B3533000B71 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 3559D7F06A730A4645DFA09171B2E0A5 /* da-DK.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "da-DK.lproj"; path = "Objective-C/TOCropViewController/Resources/da-DK.lproj"; sourceTree = ""; }; - 3590FD2FFCCDF22D9CE8AE5ADF431BDE /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; 3598492752D5FA5E1ABA842AA6A0E913 /* FIRCLSSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSettings.m; path = Crashlytics/Crashlytics/Models/FIRCLSSettings.m; sourceTree = ""; }; 35ADF910EDB6EE4E4C77FF402FB36AA9 /* RequestResponseThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RequestResponseThroughputTcp.cpp; path = rsocket/benchmarks/RequestResponseThroughputTcp.cpp; sourceTree = ""; }; 35C794FF5DAC4896B30F9F73BBF1157D /* FIRCLSReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReport.h; path = Crashlytics/Crashlytics/Models/FIRCLSReport.h; sourceTree = ""; }; 35D9C6292267FF2509C7C2941F7524EA /* FileUtilDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtilDetail.h; path = folly/detail/FileUtilDetail.h; sourceTree = ""; }; - 360D75EE7718C8B5E7E91509B0499EBF /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; - 3625BBE65B73F157169A12C751C26995 /* React-cxxreact.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.debug.xcconfig"; sourceTree = ""; }; + 35EAFFAB54227BC4A05DF6DC2C40E631 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTI18nManager.h; path = React/CoreModules/RCTI18nManager.h; sourceTree = ""; }; + 35FFEB9CD4AA29208CB12E309DB7B2C5 /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; + 361C739FBDF40F8B1E5A8C7D00A8AF45 /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = ""; }; 36260268C5FD8F2AE3F068BED84FD695 /* JitsiMeetSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JitsiMeetSDK.release.xcconfig; sourceTree = ""; }; - 3640FB051E362D82BD9F47648FCBEF3C /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; - 364AAF719192994782312AC2667283A4 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; - 364DB5BD16873F10FAC67C82E3C633C9 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; + 3647FEBB1E89A2E82DEB2CA1DA957E15 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; 3660486B72C513704AEA66F7F0B8C478 /* IOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOExecutor.h; path = folly/executors/IOExecutor.h; sourceTree = ""; }; - 3685AFCA46B96B97799850717F28EBAF /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; - 36867B33A22C7EF993DCBB3B4614F5C0 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; + 366C6B4224D1E6BB4CE3877949DB387F /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; 368BAC52F7295200297F65711A5A9483 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/FIRVersion.h; sourceTree = ""; }; 36959B31A9B9551D039CDF56E003C5C7 /* frame_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_dec.c; path = src/dec/frame_dec.c; sourceTree = ""; }; + 369CCA86683823974F7D248C8BEFE1EF /* RCTAlertManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAlertManager.mm; sourceTree = ""; }; 36A9F9DE61A583A0BED0069A0EEBD674 /* camellia.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = camellia.h; path = ios/include/openssl/camellia.h; sourceTree = ""; }; 36AA042A2066DCCF6F2423C27FE9896F /* FIRCLSExecutionIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSExecutionIdentifierModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSExecutionIdentifierModel.m; sourceTree = ""; }; 36AFD0C23EB836C4A4255F7C363E7F0E /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/Singleton.h; sourceTree = ""; }; - 36BE1D0F231B6C4F5E25643D57EBD82F /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; 36C940C1A2B8FF3346C2CF363E289E66 /* GDTCORLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLifecycle.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORLifecycle.h; sourceTree = ""; }; - 36D256BF4CAA49DBC1CAC7D5BF1E2F63 /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; 36E90BA5DBB8428DD80683F7008704B3 /* FIRCLSThreadState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSThreadState.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSThreadState.h; sourceTree = ""; }; + 36F11BEB8996ABDE53E7F649330D2EBF /* RCTNetworkTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkTask.mm; sourceTree = ""; }; 36F17D58E2AF986CB156A10C008B9B30 /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; 36F6B478E1C8AA375374E0F9964F521B /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; + 3731374DB161CFFD4D860E8DF1BF87A1 /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; 3745C343C8F94172F4009052118AEB2E /* Retrying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Retrying.h; path = folly/futures/Retrying.h; sourceTree = ""; }; 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-cxxreact.a"; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 376FED7EB937AF74CAB358B678C90A82 /* ScopedEventBaseThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopedEventBaseThread.cpp; path = folly/io/async/ScopedEventBaseThread.cpp; sourceTree = ""; }; 37796A97BD58B3927E4C839B1DC6AEA7 /* FirebaseAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.debug.xcconfig; sourceTree = ""; }; - 378531966EA58592939B9F691E0C01C5 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertManager.h; path = React/CoreModules/RCTAlertManager.h; sourceTree = ""; }; + 3784393F5D9459F008D5B5085A85C685 /* UMTaskManagerInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.release.xcconfig; sourceTree = ""; }; 379BF6B46ECB17D231150C0C428F15DF /* HazptrObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObj.h; path = folly/synchronization/HazptrObj.h; sourceTree = ""; }; - 37B01AACC34E2DB6EC4108DAA06B25E7 /* EXAppleAuthenticationMappings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationMappings.m; path = EXAppleAuthentication/EXAppleAuthenticationMappings.m; sourceTree = ""; }; - 37B6A17E32F09752D1C491E6E5FBDFCE /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; 37C6DE82423B5DF445238E521397F88E /* ScheduledFrameTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledFrameTransport.h; path = rsocket/framing/ScheduledFrameTransport.h; sourceTree = ""; }; 37D338DA080B77F86DFD27C3D9772D40 /* shim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = shim.h; path = ios/include/openssl/shim.h; sourceTree = ""; }; - 37D8507932C176FD9A70992AB837AE8F /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; + 37DC45FF408CE4CBC601BCD6B63EA5C6 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; 3815FC4F44C997B3CA2BC28B387C577F /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; - 38162BEE9799790624835DCD1750F769 /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; - 381C37C2967EDAC64D59720CA8E93561 /* 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; }; - 382A426BE4A12489EDDCD59CB0E7AC12 /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; 3842B13CB7B47A7AFD03D98AB73359F0 /* FLEXNetworkTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkTransaction.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkTransaction.h; sourceTree = ""; }; 38474893F2379F64947A91290FA2D4C0 /* FIRCLSUserLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserLogging.h; path = Crashlytics/Crashlytics/Components/FIRCLSUserLogging.h; sourceTree = ""; }; - 3847A7169F54643DC41F1A70EA0C9D8A /* EXVideoThumbnails-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXVideoThumbnails-dummy.m"; sourceTree = ""; }; 3847E83C0505B4422BC11B984C5E7B47 /* Random.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Random.cpp; path = folly/Random.cpp; sourceTree = ""; }; + 3863BCDA0530CDBFFCA7F3622938626C /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; 3878A8788E6F1FC42E4976D415E1B33B /* FirebaseCoreDiagnostics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.release.xcconfig; sourceTree = ""; }; - 387A35BC7B174684B13A536007827FAA /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; - 38831898CC49426083C7D32DBDDDDFB2 /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; 3884F3FE37EC05F5EBAC9C24DB75B1E5 /* Uri.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Uri.cpp; path = folly/Uri.cpp; sourceTree = ""; }; 389212ABF0A7DCE5014A167F3AE8C3B4 /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; 3894865D25AB651FA49F4CCE3BC615E6 /* config_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_enc.c; path = src/enc/config_enc.c; sourceTree = ""; }; 389A2F106242A1700788AA59486109C4 /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Private/GULKeychainStorage.h; sourceTree = ""; }; 38AA3CD1356E87D258936F0FDDC120C2 /* Flipper-DoubleConversion.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-DoubleConversion.debug.xcconfig"; sourceTree = ""; }; - 38E528A2F0C70D984284B0B23350D234 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; + 38D49146D8902182769A1E71B69CE2DF /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; 38EA67C961952378D9FDCDA996723DC0 /* MicroLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroLock.h; path = folly/MicroLock.h; sourceTree = ""; }; - 3902EFC847FC1378429D51930F83EFB7 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; 39079329D5EF4D688459A38EBDC71EB6 /* FirebaseInstallations.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.release.xcconfig; sourceTree = ""; }; 390F7D62151F3EA2D4859C7539AAF535 /* FIRCLSUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserDefaults.h; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults.h; sourceTree = ""; }; - 390FD09B4E6120DC6BD20D73D7DC841B /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; - 391F645395DADABA74114F035E174C4D /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; - 392FCA00F23CFD5EF3D84B3894DB3A6C /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; - 3937A2B1330E98D2F2045F13004CE916 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; - 3938AE2C818BBA7CE57F743188B3118A /* RCTImageStoreManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageStoreManager.mm; sourceTree = ""; }; 393F02E1AE9A0E32B7029750BA93C663 /* cms.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cms.h; path = ios/include/openssl/cms.h; sourceTree = ""; }; 3942E700C554EBA040E352A237B947DA /* http_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_struct.h; path = src/event2/http_struct.h; sourceTree = ""; }; + 394CF5F22A0D4948739FE868F3D2D9F0 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; 39505FDD3C73548E192BDCE91AC8F221 /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.h; sourceTree = ""; }; - 3984A382171C5FDA575BD1C38060BE33 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; - 3985EAA3DEA3A2B786F3C61F42951698 /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; + 395CFECDFA54CF26F261A1D99757DB06 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; + 39846CE0522E32C21F0F7C477159F7AA /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; 399B1E75BE20435C9B6BA3B91DDDB24A /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; - 39A10BB3C37E130890781D22BF31F4A0 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; 39A3F70993119EEBEAFFE6E6D620D00F /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; - 39AB154790624A0B5AFB87DED987FF0A /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; 39BBDBE80E53745D27E48B00FFFDCB50 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; - 39E83F686D7D84C65FA7EAA7041144F1 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; - 39FD99D4B527A7357DAF06D5AF92D02C /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; + 39F82558CB4745D46F543010E33BD420 /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; 3A4F7ADBFA58064E9CE4558D9533E50E /* filters_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_mips_dsp_r2.c; path = src/dsp/filters_mips_dsp_r2.c; sourceTree = ""; }; 3A60D8DDF9C452D97C5D43B7C137742D /* FirebaseCoreDiagnostics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.debug.xcconfig; sourceTree = ""; }; 3A635BA14CF2113905140C44F6E14A85 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Private/GULAppEnvironmentUtil.h; sourceTree = ""; }; - 3A8A4CAF7647BA607557E4EBE2019B78 /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; - 3A9DC1D9F0B8012EE56D474C37681860 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; - 3AB05BEFA17D5D67D3C53036B5AE38E4 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; + 3A944BE7B748C4E06C2C7635E38645B3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 3A9D64CE35C4B3FA675FC8DC910A1F48 /* EXSessionDownloadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionDownloadTaskDelegate.h; sourceTree = ""; }; 3ABC0E3B17BABA2B1338A9B131D2423A /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/synchronization/detail/Hardware.h; sourceTree = ""; }; - 3AC7F5E3C53487CC69587AE984C032B5 /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3ACAEC752BC8A591D8EE6618F42F4205 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; + 3AC048A93B3F92AC5ACCC952753528DE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 3AC0B48D8AAFF523605C16C2293BDB14 /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3AEC8E511931EF566AF1B07C48ED2541 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; 3B02FC345CF27AD6719210E395BB828B /* thread_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_utils.c; path = src/utils/thread_utils.c; sourceTree = ""; }; - 3B1E3359D6A9ED665FE278B75005E906 /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; + 3B0D46A166DF5A6CB3464DC69BB2F0D9 /* RCTLogBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLogBox.mm; sourceTree = ""; }; 3B24ED0CC4D7FF4799EC3193270253C5 /* SKDescriptorMapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDescriptorMapper.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.h; sourceTree = ""; }; 3B26A6BB2D65930BE87FCD4C97CE50DB /* FIRCLSDwarfUnwindRegisters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfUnwindRegisters.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwindRegisters.h; sourceTree = ""; }; + 3B36126F5B8FD783C5CFF29BD94F0998 /* RCTSettingsPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsPlugins.mm; sourceTree = ""; }; + 3B3C1DF5ABA7372F060CC5660C2585EF /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; + 3B45BDBC8E99B1E5BC5D196041031AAF /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; 3B62DAAE93A5B33701FE818A6DEA2AE2 /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = ""; }; 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3B712273B8E31704568EC931E05D26EF /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = ""; }; + 3B6FD050668829BB06823DFF34EE569C /* RNFBCrashlytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBCrashlytics-dummy.m"; sourceTree = ""; }; + 3B70C3FFB9A542E89A07BCD05F261CD4 /* RNFBAnalyticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAnalyticsModule.h; path = ios/RNFBAnalytics/RNFBAnalyticsModule.h; sourceTree = ""; }; + 3B725B05DB33B34878427A66813D3A47 /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; + 3B7A2D74467292B04CD08177147C9B80 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; + 3B7BDC6327BEDD3E0C74DA3F7C78BC26 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; 3B7FE43CAEF809B4218C9ED13CEEC451 /* ChecksumDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChecksumDetail.h; path = folly/hash/detail/ChecksumDetail.h; sourceTree = ""; }; 3B86D68BE787940CFEA113DDB1F1A5CD /* IPAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddress.cpp; path = folly/detail/IPAddress.cpp; sourceTree = ""; }; - 3BC6F446BD80D5F78F941FE2471C86F8 /* RNGestureHandler.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.debug.xcconfig; sourceTree = ""; }; + 3B9858D94C9EF6246EA618C0FB8377F8 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; + 3BB40BA4CFB17E9E163ED6603E659ECE /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; + 3BBCBD38C38548864689869B2010688D /* FBReactNativeSpec.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.debug.xcconfig; sourceTree = ""; }; + 3BC3B4C116644462101BFC91306B5F3C /* RCTImageURLLoaderWithAttribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoaderWithAttribution.h; path = Libraries/Image/RCTImageURLLoaderWithAttribution.h; sourceTree = ""; }; 3BC938F902528781ADD4AEC8BA72765E /* GDTCORTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransformer.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m; sourceTree = ""; }; 3BCB47EEA132D582BF77322AE54F499E /* StaticSingletonManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StaticSingletonManager.cpp; path = folly/detail/StaticSingletonManager.cpp; sourceTree = ""; }; - 3BCB76317806C715FA5771BA730E980A /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = ""; }; 3BCBD61446538B2B7202B7D11872698C /* rescaler_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_sse2.c; path = src/dsp/rescaler_sse2.c; sourceTree = ""; }; 3BCCF8FE3129240D5E1CA436BB461A65 /* MapUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MapUtil.h; path = folly/MapUtil.h; sourceTree = ""; }; - 3BEA0C29C88EAFB371FCBCBAFA61492A /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = apple/RNCWKProcessPoolManager.m; sourceTree = ""; }; - 3BF4433763B521DCABF1AB38B9942418 /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; - 3BF6E8C711CE563EBE5CC40843A49430 /* RCTRedBoxSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxSetEnabled.h; sourceTree = ""; }; 3C06A99C6FF9AF8A830BB81F3A436CB8 /* FrameTransportImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameTransportImpl.h; path = rsocket/framing/FrameTransportImpl.h; sourceTree = ""; }; + 3C0D075CC671699DE5DB6547128FD6BF /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; 3C23C2BDE7E08B7D04B3F5940676930B /* DynamicParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicParser.h; path = folly/experimental/DynamicParser.h; sourceTree = ""; }; + 3C28AC9DFD721742AEA0E86C58BFC73C /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; + 3C3CA9FFBD2A1454C9729D1917B849CC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 3C3DF31F31BFD595F0FF72EADD21C14B /* CString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CString.h; path = folly/lang/CString.h; sourceTree = ""; }; - 3C46A327592F5EEDA786FC0DE9D33BD1 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; - 3C4DD4D8A2E599E933F49CABCD377CB9 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; 3C52B41C88AB9A712CD2F32C98446048 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; 3C73AF067EE017B1C7D4DD37C9D29AC0 /* FIRAnalyticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInterop.h; path = Interop/Analytics/Public/FIRAnalyticsInterop.h; sourceTree = ""; }; - 3C920BEF72370EA52077556BBECF365C /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = ""; }; 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3CB297215DDE047954D532317C89D84F /* SKTapListenerImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKTapListenerImpl.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListenerImpl.m; sourceTree = ""; }; - 3CB484617B32D8C2ABEEEB0DAF1CF6BF /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; + 3CBA5AA9DF9571BF79ACE216CD05DCC0 /* react-native-background-timer.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.release.xcconfig"; sourceTree = ""; }; 3CC7095DC87240FA7E6F97CA982A06F9 /* FIRCLSMachOSlice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachOSlice.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOSlice.h; sourceTree = ""; }; 3CD01D16EF9FBC5A8826CD74D7B2B0B0 /* FIRCLSDownloadAndSaveSettingsOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDownloadAndSaveSettingsOperation.m; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSDownloadAndSaveSettingsOperation.m; sourceTree = ""; }; 3CD8BD7E54E4C96062CA6B79415D777C /* Checksum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Checksum.h; path = folly/hash/Checksum.h; sourceTree = ""; }; - 3D0093DD99E5523E0FB460A10B375718 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; - 3D1B98C7FBEFC26856314E228A00A4E5 /* EXAppleAuthenticationRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationRequest.h; path = EXAppleAuthentication/EXAppleAuthenticationRequest.h; sourceTree = ""; }; + 3D0096C6C1575A4063B7887C2A68BA49 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; + 3D058D1AC9B9903A5C3ADEA60491F100 /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; + 3D0E0CE65EB4278FDD03DA431F7980D3 /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; 3D22A72EF987B784AE5C54A2A8EFB2AE /* Tearable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Tearable.h; path = folly/synchronization/Tearable.h; sourceTree = ""; }; + 3D28FF780ADD086B1CE3A16CF70E819A /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; + 3D3180725D06C7E408D800810FC70B18 /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; + 3D39ED875E1AF7CBE2525DF832377314 /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; 3D3ADD27AD67ECF38BDF5E6B60712927 /* File-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "File-inl.h"; path = "folly/gen/File-inl.h"; sourceTree = ""; }; - 3D4069E4CCE86326A76AEB5A6E4E5F35 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; + 3D40AC05EFB8E109C49D2C550C5645FF /* RNFBApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBApp.debug.xcconfig; sourceTree = ""; }; 3D42917C924867E370FA16321C92C276 /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Frameworks/GoogleAppMeasurement.framework; sourceTree = ""; }; - 3D5639176CDD9669D4556831638B3763 /* RCTI18nManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTI18nManager.mm; sourceTree = ""; }; - 3D5FD0B95ACC58746CBA3B0C6E668BD3 /* UMImageLoaderInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.release.xcconfig; sourceTree = ""; }; 3D67366578E37B9768EDA8420106E285 /* StaticTracepoint-ELFx86.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "StaticTracepoint-ELFx86.h"; path = "folly/tracing/StaticTracepoint-ELFx86.h"; sourceTree = ""; }; - 3D6A2B0B844845B9E7BB8632CEB0198D /* UMAppLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMAppLoader-prefix.pch"; sourceTree = ""; }; - 3D70ABA751AFDCA0FB499B0AB9D797BB /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; + 3D709346227CA2AD202AF96E58B646A0 /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; 3D71CDCA1654949EF0014FA1F5873DB5 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; 3D7BABEDC78A2D882E39A2D379375040 /* json_patch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_patch.h; path = folly/json_patch.h; sourceTree = ""; }; - 3DA33AE337C028D6616E3BB9D31A0912 /* 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; }; + 3D8DB1B0E3BA76D77497B9405A403C17 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; + 3D9384D5118326A3705D3CB8DDADF98C /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 3DA72FD511360769DEE06D96F4A0CFB0 /* IPAddressException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressException.h; path = folly/IPAddressException.h; sourceTree = ""; }; - 3DA8CD2ADE38BEC0F03627AEB3D60909 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; - 3DACB159C9A8E31A5E1E3F9B4BB13AD5 /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = ""; }; - 3DB517B983E703D101B71F0C4F108313 /* React-RCTBlob.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.debug.xcconfig"; sourceTree = ""; }; 3DBBC99560F7985C8A60373FDDD76DC6 /* token_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = token_enc.c; path = src/enc/token_enc.c; sourceTree = ""; }; 3DCCB7B5B285B545249C9E330DAA4275 /* json_patch.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_patch.cpp; path = folly/json_patch.cpp; sourceTree = ""; }; 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "RNImageCropPicker-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; - 3DD7C081F1053190D2A1D5378E0B12D3 /* EXFileSystem.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.debug.xcconfig; sourceTree = ""; }; - 3DDC8CC06B0A403ABBE1F567B10E4560 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; 3DE49D5A77318B4C139F69F13EE41B5F /* RSocketServer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketServer.cpp; path = rsocket/RSocketServer.cpp; sourceTree = ""; }; - 3DE4DFD747194E1C890D16D91A9AC4A8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 3DF7763DC2839EBBF4377FC5EE30D15E /* EXKeepAwake-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXKeepAwake-dummy.m"; sourceTree = ""; }; - 3E07A9D647C61E63FBD2A63EBC6014AA /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; + 3DE91BE6F72C1321CC40584D466B8BC7 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; + 3DFE41690BE5311A54AF49FBB8FCF1F8 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; 3E0E8C0BD9EF8C3E583F6CE5D9103338 /* quant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant.h; path = src/dsp/quant.h; sourceTree = ""; }; - 3E1E82F75A3AD91B98D300A18F417BDF /* EXAppleAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppleAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3E2EA9C55F7319FEEE780CB805E3E437 /* 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; }; + 3E30D0570676A57905BC13E759607211 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; + 3E362F6B7A1279B34FDC55502D0908A7 /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = ""; }; + 3E3CBC770D5701724EC508F10C737C78 /* React-jsi.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.release.xcconfig"; sourceTree = ""; }; + 3E427DCBF1F5C0B8CE315C90993698CD /* 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; }; 3E48C5EF81EBE6ED7094B1E81AA04F99 /* yuv_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips_dsp_r2.c; path = src/dsp/yuv_mips_dsp_r2.c; sourceTree = ""; }; - 3E54C641E5BC5AEA752031C4B73894FA /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; 3E5635867A95D1AF56CFB6137CBB346A /* FIRCLSSymbolResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSymbolResolver.h; path = Crashlytics/Crashlytics/Models/FIRCLSSymbolResolver.h; sourceTree = ""; }; - 3E661AC9A93AFA9392D5964B5E59E738 /* RCTJSInvokerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSInvokerModule.h; sourceTree = ""; }; - 3E838049A8A55A72E34E8DD160D4DAFD /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; + 3E5ED966101B9A91EE0BA3B025D9545E /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; + 3E6D888DA4B226D528AB7452BCB37701 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; + 3E6F146997B96086A074C4015761ADE5 /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = ""; }; 3E8C54B5F0B21968B0CCCD7B06989C20 /* EventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBase.h; path = folly/io/async/EventBase.h; sourceTree = ""; }; + 3E8F1EEC71DC36C8B901EEED11669C68 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; 3E908157346CBB32E99418997F3DD50C /* SKDispatchQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDispatchQueue.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKDispatchQueue.h; sourceTree = ""; }; - 3EAD0882665BC023557F77A1296A4F54 /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; - 3ECB76D32C84A2F5405D408FA85A9362 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 3ECF1C6C7A6D4627AF8270961DE502DF /* StringKeyedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedSet.h; path = folly/experimental/StringKeyedSet.h; sourceTree = ""; }; 3ED5FF248E57447CE64A4876ED7B8DA4 /* EventBaseLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseLocal.h; path = folly/io/async/EventBaseLocal.h; sourceTree = ""; }; - 3EDCE04080CFB56239F3DD49B3A44CAC /* EXPermissions.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.release.xcconfig; sourceTree = ""; }; - 3EE8DEBA3B976EA391E5FE4DE1E391B6 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libBugsnagReactNative.a; path = libBugsnagReactNative.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 3EF7DF81791B20047AA76E6D61BECD2F /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; + 3F00203FB366474315D6587C988BF7F0 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; 3F1A27E3439D9ECCF51F08419D9AFEBE /* FIRCLSURLSessionConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionConfiguration.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSessionConfiguration.m; sourceTree = ""; }; 3F1D0A45421638681EE0B25C8196FC10 /* F14Policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Policy.h; path = folly/container/detail/F14Policy.h; sourceTree = ""; }; - 3F3A80DB7CAD74E4D263691EBC611ED3 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; - 3F6A8412203B8EBE749B35D196F12915 /* React-RCTAnimation.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.debug.xcconfig"; sourceTree = ""; }; + 3F285BB9BDDC1AC5A20841870E2A6AD5 /* 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; }; + 3F2BF95DCF13E2EC0A619715493ACC3F /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; + 3F2FD149F23567FEB3C1D8AB46C2C153 /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; 3F6C17F149C53C8AA14FDD3901B51759 /* FIRCLSdSYM.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSdSYM.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSdSYM.h; sourceTree = ""; }; 3F70C77218EFD104037D032067915659 /* ScheduledSingleObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSingleObserver.h; path = rsocket/internal/ScheduledSingleObserver.h; sourceTree = ""; }; 3F7D754B50C01E6487EC23BCE05505AE /* ChannelResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ChannelResponder.cpp; path = rsocket/statemachine/ChannelResponder.cpp; sourceTree = ""; }; + 3F86796576A56F3B23C0661CE8378050 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; 3F98BD56AB0D3E12B727577E2C3CA703 /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = ""; }; 3FA3159AAF0ECCC984463AA16EB09095 /* UninitializedMemoryHacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UninitializedMemoryHacks.h; path = folly/memory/UninitializedMemoryHacks.h; sourceTree = ""; }; 3FAE3B1E6DCF34D959E7D5855CB6B777 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = ""; }; - 3FF3F9F5D4B96F992106B3D82288AE35 /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; - 4023F329225D6A97E239B3392E99A0D7 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; + 3FB10BA8B0E009C32C141A6F684B853B /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; + 3FBE4C810BFAD73625E95976A12DF86B /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; + 402F9A4B1BC19CD55734D78F114BA4D6 /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; 4033635AF569F20C4DA7986988B8D5FA /* Log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Log.h; path = xplat/Flipper/Log.h; sourceTree = ""; }; - 403BA7C6CED5DD2F2CDE32266DD115A4 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; 404EF870AFE620382970B9F3BFA537C0 /* FIRInstallationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStore.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m; sourceTree = ""; }; 405FB693E762B3F5A494726FE3442C0D /* filter_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_enc.c; path = src/enc/filter_enc.c; sourceTree = ""; }; - 406361C35BAA62FF97AEAE4B1F895035 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; - 406BF4C99CB4F1FD0319C9242FDEE632 /* Yoga.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.debug.xcconfig; sourceTree = ""; }; 406EBF17E725C7C78735375D7FDD5321 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; + 4092F966654F165964E11D3E5C90610B /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; 4095CC3BA5BAD2A6234D7EE713C935EE /* Range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Range.h; path = folly/Range.h; sourceTree = ""; }; + 40BCD2F2249194DFFBA16A3D51351384 /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = ""; }; 40BF62650BA18DDC6EAEEFD2E04436C6 /* CocoaAsyncSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CocoaAsyncSocket-dummy.m"; sourceTree = ""; }; 40C267DF999628C86094476C9C616FAF /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event.h; path = src/event2/event.h; sourceTree = ""; }; + 40C7E4169C54113C2FCBB8C9EF0D0985 /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; 40E60757A755EC2105B3D2A7902D73AD /* Flipper-PeerTalk.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-PeerTalk.debug.xcconfig"; sourceTree = ""; }; - 4101A167FEED7D4C959CEB06F6AF4DEF /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; - 4112D184DABABEA2C5B0B61168F06C67 /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; + 4106F5CD23A775271062C62403E9C693 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; 41227C78FE12E5BF01473A6F8BAD0F69 /* FlipperKitNetworkPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperKitNetworkPlugin.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.mm; sourceTree = ""; }; + 413028C3C5E2B752075152AF51366072 /* React-callinvoker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-callinvoker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 414440D847BC21E45F9C08FFD1770221 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; 414C7FD6C1065E51AA4148D0796C6398 /* SKTouch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTouch.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTouch.h; sourceTree = ""; }; 414DFE8CB8A396E7C28F380CFFBFA5B9 /* MemoryIdler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MemoryIdler.cpp; path = folly/detail/MemoryIdler.cpp; sourceTree = ""; }; 415268D1A80C95953F31FAD0F2169E28 /* dsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsp.h; path = src/dsp/dsp.h; sourceTree = ""; }; 415AB15B320B9646A3392FF556330B10 /* TOCropViewControllerTransitioning.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropViewControllerTransitioning.h; path = "Objective-C/TOCropViewController/Models/TOCropViewControllerTransitioning.h"; sourceTree = ""; }; 4165568E88906B826A0C324ACC44594B /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; 4168DF9F6E37BBC9E9A44D37DD4F8A12 /* AtomicNotification-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicNotification-inl.h"; path = "folly/synchronization/AtomicNotification-inl.h"; sourceTree = ""; }; + 4169003E075269954D2F4B2645319C31 /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = ""; }; 417E4FE64BADEB1C33CC9305F6AC4BEF /* ConcurrentHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentHashMap.h; path = folly/concurrency/ConcurrentHashMap.h; sourceTree = ""; }; - 417F80CE73198E7BDE01F7699AEA8F51 /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; 4181961BDE7E046D6C5EC3512B700681 /* FIRCLSReportUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportUploader.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader.h; sourceTree = ""; }; - 4184308CE6AA6421254E0CDA732DDD3C /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; 419C21DE03C7ED90C021F5C7A17DAE4E /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = ""; }; 41AE4CB94AE6E3A734F70CF6B23E5B5C /* tag_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tag_compat.h; path = src/event2/tag_compat.h; sourceTree = ""; }; + 41B6F22CBEBA8D3E24A8B4CFC50F2BA0 /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; + 41BB1739AC6F4F3B877F941D124780EE /* 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; }; + 41BEE2AA923F06A02EC3BF029070EFA0 /* RNLocalize.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.debug.xcconfig; sourceTree = ""; }; 41C6F33F3ACAD20BA9745D7CB0C43D3A /* ConcurrentSkipList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentSkipList.h; path = folly/ConcurrentSkipList.h; sourceTree = ""; }; 41C927B83DC0948365569F95AE829FF9 /* BitIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIterator.h; path = folly/container/BitIterator.h; sourceTree = ""; }; - 41CA5F14136BC00F49E8CA3D81983512 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; - 41CE4DDEE3F74FEB4ECC75F743A0E5E8 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; - 41CFD4D3D242650FEC3BF8CFEA88C08D /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + 41CE3B5A7151D8BAFF0F4FB640AF3F9D /* 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; }; + 41D25E2303087797B675CE467F3E2689 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; 41D436244703D58A32C838EE448210D4 /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/portability/Math.h; sourceTree = ""; }; - 41F067803700B21CF695E473B8C9FD00 /* EXLocalAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXLocalAuthentication-prefix.pch"; sourceTree = ""; }; - 41F1B69AA73443ED11F3BC5832374325 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + 41DCD030056F0B4E4962EAE0BFDA0FCF /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; 41F22971CAC4CC13A29D5920E79CD0A0 /* upsampling_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_mips_dsp_r2.c; path = src/dsp/upsampling_mips_dsp_r2.c; sourceTree = ""; }; - 41F7EDB221C6D8E6528242972B85E19D /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; - 41FED78D9D58D4FDF3AD5E281760AD9E /* RNScreens.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.debug.xcconfig; sourceTree = ""; }; + 41F493FC24EE6F45AFF90D8B72C2CCE1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 41FEC350545872E7FD4A4DADB3F554D9 /* EXKeepAwake.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXKeepAwake.h; path = EXKeepAwake/EXKeepAwake.h; sourceTree = ""; }; 4209CCCD0871814DD067867CED32B25E /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; + 42175A98A9D908B51C8970DAACE17DB3 /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = ""; }; 42236F4FF6CE03D31A9ED4E53EF609F0 /* GDTCORPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPlatform.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORPlatform.h; sourceTree = ""; }; - 422A8203166A04153210DF34506CCCD9 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; - 423DBE3582E06AD2EBC9DB27C89EC5F6 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; 423E6295395104EA9D8320DD6C894074 /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = SDWebImage/Private/SDDisplayLink.h; sourceTree = ""; }; 4248F7EC94C1492E9CC08E2AF51D9B1F /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = ""; }; - 424B5272FA663E6E06C5D1F1E5A726F4 /* UMFontInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.debug.xcconfig; sourceTree = ""; }; 4258080A322D8874E2F5B60857DCC36B /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = ""; }; - 425AE49378C747D12D929F44D2569316 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; - 428159FCF65A3E3D131720C6E1909CDF /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; + 426FFC257D5182156F8091284A830CC5 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; + 4285F7B6AFA30D47C6E9A01C3E45ACED /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; 428A17C2B36A0B827DE991A650647A54 /* ThreadName.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadName.cpp; path = folly/system/ThreadName.cpp; sourceTree = ""; }; - 428B8F140F25393AF875A94951A154F9 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; + 429383AE358DC6BDAFB9DAB89318B2E8 /* EXAppleAuthenticationMappings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationMappings.h; path = EXAppleAuthentication/EXAppleAuthenticationMappings.h; sourceTree = ""; }; 42AB3BBB463F5EC27C22C10A80989826 /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; 42B27763ADCDC1680EA0DD97F8F26369 /* SKScrollViewDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKScrollViewDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKScrollViewDescriptor.h; sourceTree = ""; }; 42C7624D74DDE436F79F1B74A97FB676 /* FIRCLSNetworkOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSNetworkOperation.h; sourceTree = ""; }; - 42C98BD451DB83FE983EB7711ADAEEF6 /* UMAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppRecordInterface.h; sourceTree = ""; }; - 42CD5F5B3B3358A771678186FF2FFF58 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; 42D0C29061CC820FBCD9032916798682 /* FIRInstallationsVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsVersion.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsVersion.h; sourceTree = ""; }; + 42E8C6E9D80605B785ECE14577FC3FF6 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; 4306385B0328ED3D0BA5FD9275656094 /* x509.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509.h; path = ios/include/openssl/x509.h; sourceTree = ""; }; - 434261158EB5302CC074E0D9AB6F6442 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; + 431878370E2C53C0AC6F14CDE90AA760 /* RNCSafeAreaViewMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewMode.h; path = ios/SafeAreaView/RNCSafeAreaViewMode.h; sourceTree = ""; }; + 431C7930A878F6F267F385C5F0415118 /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; + 432AC71E049E339948D81B82AB73545A /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; 435B374D44BCE12B4130C36FFFE8F055 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; - 436502371746803E5C159209760C5A3D /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; + 436B0290BB873A84F4E34EBE895DCEFE /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; + 43761A7ED0EDCF20E23EC9A9A07E1EBB /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 4384EDAAEAB8CBFDE1346C9C90A7B4F1 /* UMAppLoader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.release.xcconfig; sourceTree = ""; }; + 43886A7261161D271BBFB24EB0EF91DC /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; + 438BF6D2BD2CD678DD00CA531DF3A033 /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = ""; }; + 43900ACAD78F83BB0CDADD08532E882F /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; 43A4617E266BC6F83E103BEE2397622C /* huffman_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_utils.c; path = src/utils/huffman_utils.c; sourceTree = ""; }; - 43B313C2EAFDE643A654012BE6963E02 /* react-native-webview.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.debug.xcconfig"; sourceTree = ""; }; - 43D03DB726B410AA256A8B1E3AF0100B /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; + 43ED7B485C9EB2BFBE0DCA579FAD1261 /* UMErrorCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMErrorCodes.h; path = UMCore/UMErrorCodes.h; sourceTree = ""; }; + 43F07B379BD885C4FF5A57CA1A3D4432 /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; + 440458A67D3530565BD9C90B273402C6 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; 440C33DE7D0895F3E498BB5BF502F577 /* FrameFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameFlags.h; path = rsocket/framing/FrameFlags.h; sourceTree = ""; }; 440FBC0646982458D8627FFBD5CB4C70 /* MallocImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallocImpl.h; path = folly/memory/detail/MallocImpl.h; sourceTree = ""; }; 44126AA1060404910BD45627850D607C /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; 44152AF79260DA1FFC6714E1551DB1FA /* GDTCORAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORAssert.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORAssert.h; sourceTree = ""; }; 4425B9ABA1EC8BA9E06BFEF7E4A75888 /* OpenSSLCertUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLCertUtils.cpp; path = folly/ssl/OpenSSLCertUtils.cpp; sourceTree = ""; }; - 4431452D083134140ADC1225D6AFFA93 /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; 443D242916AB5FC2480F26DEA766BBE6 /* FileUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtil.h; path = folly/FileUtil.h; sourceTree = ""; }; - 443D86D676BDA6439C75244E0E2A37FC /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; - 444ADE0820302CE12830DEDD7CD99829 /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = ""; }; - 4450F9ADD5F49A659C51ECE5AAFA1B19 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; + 444B7CA4B8D54CA3B5B147A5DDA41D48 /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; 446493CFD0C6CEE379392E362B08E9CF /* Chrono.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Chrono.h; path = folly/Chrono.h; sourceTree = ""; }; - 446908C47C306A48B98B01AA87A5B873 /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; - 44749FF42F1EF6CC82546827D4A38E9F /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; 4484A32897865024F6976422DA1F6F72 /* GULKeychainStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainStorage.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m; sourceTree = ""; }; - 44ACC6C58B35B03765DA77A5D21DC479 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 448C2A3D180524770EBDF29BF3885EF2 /* EXVideoThumbnails-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXVideoThumbnails-dummy.m"; sourceTree = ""; }; 44B5ACEFBDB14D212ABE5B187AE4A3E9 /* NetOps.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = NetOps.cpp; path = folly/net/NetOps.cpp; sourceTree = ""; }; - 44B5DD5E561C62DA5296684A42CFC823 /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; - 44B5F12FE1FB7D76171891F7BDEB9249 /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; + 44BE3DE64D0ABB39CEFA333C566E8742 /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; + 44D1DF953356C1CFEB6C3C8F44AF604D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 44D40C676E1C46BA4CA6A4F2C51C3366 /* FIRCLSCodeMapping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCodeMapping.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSCodeMapping.h; sourceTree = ""; }; - 44E4B88B3C6C4AA9F2152965ED147C56 /* RCTRequired.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.release.xcconfig; sourceTree = ""; }; - 44EF6C6F319A7FBFB3639EDC7FF05578 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 44F927D14C6D58D69095C4C2C62298ED /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; + 44D935F32D8CE410B34058A28A92F0B4 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; 44F991DE655F71DEFED268D1DF4E043D /* dns_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_compat.h; path = src/event2/dns_compat.h; sourceTree = ""; }; - 4513E3774F0605E3A3B323EED137EF6E /* RNFBAnalytics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBAnalytics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 451E64AE86B1D5322878D5995CA0C90E /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; + 451F93EADDC4F35AE18B140295DBE80B /* RCTTypeSafety.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.debug.xcconfig; sourceTree = ""; }; 4541A5411164DE13E73872BB06EC2AE4 /* SKViewDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKViewDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewDescriptor.h; sourceTree = ""; }; - 4546FAAB66769B385F1C10B5D17AB782 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; - 456C860CA3A2DD25E2F9F4A9FE56B7BE /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; + 4543F7584A378A4DAD2B8C5F8B74DD88 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; + 454B54B7087E41A573880B5678B1115F /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; + 4565F15D87E9621108957B941F9FB2C8 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; + 4575E8ADCAB73393BA894FC19D5EC4DB /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; 457ADF88201AE56A9E0FAB5952A7BD77 /* FirebaseCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.debug.xcconfig; sourceTree = ""; }; 457CAE693D658267FAAFB2A1E61A3DF2 /* FlowableOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableOperator.h; path = yarpl/flowable/FlowableOperator.h; sourceTree = ""; }; + 45846CC68122A0AC3051544A07D5B2B9 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; 458D7EF65833FA4786D029E49F6836A6 /* TOCropViewController.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TOCropViewController.debug.xcconfig; sourceTree = ""; }; + 459121712E05BD42324D52244EC8BDF7 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; + 459A816CDE529AB0BA16B3B377A66F0E /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; + 45A2D7E7134F1154C2787C2F1DE89B9C /* EXKeepAwake.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.debug.xcconfig; sourceTree = ""; }; 45ABA523C1CBC35147335C30B07433F6 /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; - 45B0358B27388CF8F7F76CE99E8D541C /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; + 45BB0DA6DB6D0FDFD34D146B35C23579 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; + 45BBE812DCB620347D1126DFC59FA9F3 /* KeyCommands.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.debug.xcconfig; sourceTree = ""; }; 45CDB2D4EE422917DD11C79906A92C99 /* picture_psnr_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_psnr_enc.c; path = src/enc/picture_psnr_enc.c; sourceTree = ""; }; - 45D39F4D8637239EBCC5A2A40D9C1B68 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 45D71F7219F5AC6D6398ED36135E588B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 45ED32362BBCC4FD140B005332FA0A98 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; - 460684CFA5E232B38397373233C08E45 /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = ""; }; 46193BDF6A470CE909841704AB16E70C /* RecordIO-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RecordIO-inl.h"; path = "folly/io/RecordIO-inl.h"; sourceTree = ""; }; 4639BE34ACE5270615FD410A1595873E /* FIRInstallationsAPIService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAPIService.m; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m; sourceTree = ""; }; - 46418A223A7F5D933F71DBEF9675FC32 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; - 4641991E27A03A8E9B6D0E13A294E45C /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; - 4651C6A79F9C61CE6247A62232BD6BC8 /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = apple/RNCWebView.m; sourceTree = ""; }; - 46543CB405085A92913316DF38EAEA14 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; + 463AB84C1747B2050E472A04BBF45B62 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; 4656279785CCA300160FA638320F1376 /* SKObjectHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKObjectHash.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKObjectHash.h; sourceTree = ""; }; 466759A8D3BBCCA64DB7D95C26EC8101 /* GDTCORUploadPackage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadPackage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadPackage.m; sourceTree = ""; }; - 4670FE6F06F10FE56754009184A08F78 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; 46711A77D0B69AEC5E367DBF2368BAF9 /* FIRCLSURLSessionDownloadTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionDownloadTask.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDownloadTask.h; sourceTree = ""; }; 46776BC8C52C95495BFBC14AD56C899A /* SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKInvalidation.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKInvalidation.h; sourceTree = ""; }; + 4689BFFE5FD65112172FB757769F5852 /* 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; }; + 468CD477653FEC656E77ED86CDE2C917 /* UMAppLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMAppLoader-prefix.pch"; sourceTree = ""; }; 468E01F2EB689338BB2B3579C4FFAAD3 /* FlipperKitReactPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperKitReactPlugin.m; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.m; sourceTree = ""; }; 468FFF464946AEE007423B783648E2B7 /* Fcntl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fcntl.h; path = folly/portability/Fcntl.h; sourceTree = ""; }; - 46AEA57300F51DC99600F17FE2478B4A /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = React/CoreModules/RCTWebSocketModule.h; sourceTree = ""; }; + 4696E9A3AA52DB397671057F5139CC64 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; 46B3774D6B0B67D497675ED1E81966DF /* FIRCLSMachO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachO.h; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachO.h; sourceTree = ""; }; + 46C991973CCE1C61F27547DE4959FEBA /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; + 46DCDC4C11ED8C3E33E1385B483D1AF1 /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46EF57337E179191A5248B5C8607367E /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; 46F67377A28C0FA361EE3E81B76D9B74 /* FIRCLSMachOSlice.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachOSlice.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOSlice.m; sourceTree = ""; }; 46F780D4489FEEE14491C005E7039D33 /* CancellationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancellationToken.h; path = folly/CancellationToken.h; sourceTree = ""; }; - 4710C0F0782227065D030B37B9241342 /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; + 4710BD7BA3CBBAFEF74171B231A3D6CD /* Hmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Hmac.h; sourceTree = ""; }; + 471DA02DD0438A9A6E28756AAFF43295 /* RNScreens.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.release.xcconfig; sourceTree = ""; }; + 47250686BE8611CBFB199666C21A4F3E /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; + 4727EE10972D1353EC46F88522CF06F1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 47282231E058257493EA6E4655AF1882 /* RNFBPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBPreferences.h; path = ios/RNFBApp/RNFBPreferences.h; sourceTree = ""; }; 473EAD33EA5EFD30394856E90492F7BB /* evdns.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evdns.h; path = src/evdns.h; sourceTree = ""; }; + 475B3A1FEA03D7BF8245495E3756A5FD /* UMFileSystemInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.debug.xcconfig; sourceTree = ""; }; + 475D1952589174397B080C68E3CD3B7D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 4760C988893B13B0B41BEAB1749C4D06 /* SocketOptionMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketOptionMap.h; path = folly/io/SocketOptionMap.h; sourceTree = ""; }; 47719EDF68F328D934B38195153BB06F /* UICollectionView+SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionView+SKInvalidation.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UICollectionView+SKInvalidation.h"; sourceTree = ""; }; - 4783223EC3E3FE738BD7B35FFC92CD37 /* RNFBApp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBApp-prefix.pch"; sourceTree = ""; }; - 478FB48FB5CDE7B792FDE0B9E8746200 /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; + 4786EBB44FB9D3485AD206761FE1B774 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTStatusBarManager.h; path = React/CoreModules/RCTStatusBarManager.h; sourceTree = ""; }; + 4792F421B617D44F1E0FDABE0488C4AC /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; 47967555776C70EC40299F9F2BE88F9F /* Future-pre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-pre.h"; path = "folly/futures/Future-pre.h"; sourceTree = ""; }; 47DDDA3EF1B2A03E5986C29F9AD3230E /* Barrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Barrier.cpp; path = folly/futures/Barrier.cpp; sourceTree = ""; }; + 47E0D3894A13E58CC691204B73160DAB /* RNFBAnalytics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBAnalytics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 47E657793098F0045C496CCECF16B1DB /* rescaler_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_neon.c; path = src/dsp/rescaler_neon.c; sourceTree = ""; }; - 480390D428F4E32DE30B133D02909A91 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; 48081AD4D74D5ACD78B99A0EA7218544 /* FirebaseCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.release.xcconfig; sourceTree = ""; }; 4829966A3B3A403D991368353ACC829F /* FIRCLSURLSessionTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionTask.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionTask.m; sourceTree = ""; }; - 4830CD7A5CDD2F1723ABF2AB5D3C7FC0 /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; - 483255DD648FC921F5EA7B5AAA6ADBFF /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; + 4832FB3B469224FF39455BF5CE3C4379 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; 48341C210561DE5E1037F4D81D85E20C /* EDFThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EDFThreadPoolExecutor.h; path = folly/executors/EDFThreadPoolExecutor.h; 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; }; 484ED29811E651B51AF2D7AECC1FB5F1 /* 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 = ""; }; 48526691C3ED22B47A87E0C38A50030E /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; 48617060209F19DDDA7E39BA141B9C5B /* FIRCLSURLSession_PrivateMethods.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSession_PrivateMethods.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSession_PrivateMethods.h; sourceTree = ""; }; - 48646B3B495315C0F32EC39A20A7CADA /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; 4882BF08CAA481DC6928EBAD9742FE25 /* enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips32.c; path = src/dsp/enc_mips32.c; sourceTree = ""; }; + 48B3A64C1EA37997575979F85218D1E1 /* EXAV.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.release.xcconfig; sourceTree = ""; }; + 48BC4ED24E1C7F5D8CFD909A3A1C711A /* UMPermissionsMethodsDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsMethodsDelegate.h; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.h; sourceTree = ""; }; 48C0BE09AD15FA7FC3571A737E051921 /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; 48C58C0F2FD2122CB6F5086644CEB0AE /* Futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Futex.h; path = folly/detail/Futex.h; sourceTree = ""; }; + 48C71DE6E533EFBD6429F8DAEA1922BA /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; 48D549326BFC038DB8B5CCE0885F4539 /* GDTCCTPrioritizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTPrioritizer.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTPrioritizer.m; sourceTree = ""; }; - 4909A17F606A67E1707ECB15C3A11DB5 /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; + 48E0F76A4EC6ECEC66C37C0DDE3738DB /* RCTActionSheetManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTActionSheetManager.mm; sourceTree = ""; }; + 491274E34D9FF018C5F4BB99ADC78DD9 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; 492289B5B4AF7C2DF8BA029B2BED83A6 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = ""; }; - 492401E928E2AEEB4D6BAED954287543 /* RNCMaskedView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCMaskedView-dummy.m"; sourceTree = ""; }; - 4932753FB4A8E5CD7E3FC990BF46A42C /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; + 493119CB6376A4ACB7401AB4D3AAC5EB /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSettings.h; path = React/CoreModules/RCTDevSettings.h; sourceTree = ""; }; + 493F44265C4A6B4AF1DBB9655E42217A /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + 49415B13A51EC366AA17D94B2ED00D25 /* EXLocalAuthentication.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.debug.xcconfig; sourceTree = ""; }; 4941684C4855A4B810B172E41A7F1444 /* FIRCLSCrashedMarkerFile.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSCrashedMarkerFile.c; path = Crashlytics/Crashlytics/Components/FIRCLSCrashedMarkerFile.c; sourceTree = ""; }; 49429B22C3AB31FEBC588E5FB6BB7E0F /* Cursor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Cursor.cpp; path = folly/io/Cursor.cpp; sourceTree = ""; }; 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXImageLoader.a; path = libEXImageLoader.a; sourceTree = BUILT_PRODUCTS_DIR; }; 495414D279674B6F2BB6EE26E07DD922 /* FIRCLSConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSConstants.m; path = Crashlytics/Shared/FIRCLSConstants.m; sourceTree = ""; }; + 49707F95FEA5E346F016F3C104FA56AF /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = ""; }; 498652A6AA8911757D96383FA86C30EC /* TOCropViewController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TOCropViewController-prefix.pch"; sourceTree = ""; }; - 498F9D448F1A2F8FCB916767C2E3FCDC /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; + 49886F7D8D9337AF23D9532AB6F44DA2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 49AADD6BD5E0B32B16B8CC3831EE45D6 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; 49B950794F750FE25636A7AC1B0C7846 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = src/webp/decode.h; sourceTree = ""; }; - 49C07F839DE7B2ACD1D3A50506E4440D /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; - 49C8690A84109BB36B0446BC86CE12C1 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; - 49CDD44FBE5BBE66C8B9F36351A3EB72 /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; 49DBA2AEAB92CD95EA4FDD14B631F52B /* SDImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageWebPCoder.h; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.h; sourceTree = ""; }; + 49DD624E0EB7E688534649D7775031F7 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; 49E8B8CC08F023730D0A90CE93761DC5 /* SKSwizzle.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKSwizzle.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKSwizzle.mm; sourceTree = ""; }; - 4A20830F243A0EE718A622E2C44FB987 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; - 4A2BD6FFF54A43E54E9C814C442F2B69 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; + 4A1C4C76FE42AB23DD8D5822A1CE0205 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; + 4A29F396105B8756B190AA3DF272D2C7 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; 4A2C5E2887D63A18963E624F9C1A0313 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; - 4A2DFEB156864F57DBEF42F4071B1EBA /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; 4A3A289202E11A8147FF31242296ED8C /* FBDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBDefines.h; path = iOS/FBDefines/FBDefines.h; sourceTree = ""; }; - 4A609B0A87FF665F19CFA12F2A6514BF /* react-native-safe-area-context-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-safe-area-context-prefix.pch"; sourceTree = ""; }; - 4A6D1FC9C1F1D0CA0541468E3D6BFA21 /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; - 4A706FB427D8B0B810C195000A76DD26 /* React-RCTImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.debug.xcconfig"; sourceTree = ""; }; - 4A9B577A6378CE182C205BF8D566C836 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; - 4A9BE97D7ACD440D1FA2201199D19EA8 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; - 4ABB6DE6CFDF5327CBEB702D3BFBF97E /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; - 4AD40CF96F3B5613CA523EFFB6C4F838 /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; + 4A65D1885DEC5BC40029DC25BF7608B5 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; 4AD9BAE026FEDF83CD19FB2029CE8941 /* Core-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Core-inl.h"; path = "folly/gen/Core-inl.h"; sourceTree = ""; }; + 4ADB1CA634AA749517729870C462ADA7 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; 4AE2BF4B82E78E3BBA03D5DAA1EC638A /* UIView+SKInvalidation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UIView+SKInvalidation.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIView+SKInvalidation.mm"; sourceTree = ""; }; - 4B00F4D65453EEF2485354900ADF5356 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; - 4B1968C239F35AB0B86D5854025FD9F0 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; + 4AFA044CB86D89CBD59381D025FB0FE0 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; + 4B340D908383E9C741C944D18ED41735 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 4B469E1368D928C3790E8389D8966E8F /* React-RCTVibration.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.debug.xcconfig"; sourceTree = ""; }; 4B4AD15390A80E632C722BDB4C9C7F4A /* FlipperStep.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperStep.cpp; path = xplat/Flipper/FlipperStep.cpp; sourceTree = ""; }; - 4B5950713E47F66BC2696784B9937E39 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; + 4B5E2203EB895E27A9139005A24E9FB4 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; 4B63E6C725A4476ED95F5AA3737ABA08 /* ConsumerBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConsumerBase.cpp; path = rsocket/statemachine/ConsumerBase.cpp; sourceTree = ""; }; + 4B9B94158DF5FDA7D0229C21905E263F /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; + 4B9FE76A89FFF8B6B5803CCF9AFDFAEC /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; + 4BD97DD90A26C50D18E7FAF907BC1DA4 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTClipboard.h; path = React/CoreModules/RCTClipboard.h; sourceTree = ""; }; 4BDBFBE03CFAC07F29A12A72EF346F7B /* 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 = ""; }; 4BE8AA7C56BAA349794A7B24E2E89362 /* alpha_processing_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse41.c; path = src/dsp/alpha_processing_sse41.c; sourceTree = ""; }; 4BEF802392AF5D77C00017078750251C /* TimekeeperScheduledExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimekeeperScheduledExecutor.cpp; path = folly/executors/TimekeeperScheduledExecutor.cpp; sourceTree = ""; }; - 4BF6B8C2CDE8431224EDED81BBAA94F7 /* React-RCTLinking.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.debug.xcconfig"; sourceTree = ""; }; - 4BF7335D662E1B5989E697B974C716A6 /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = ""; }; - 4C1B78E1803C23813A250CC2A5EC4ACF /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; + 4BF3AFEDF5A02ABF3C51A1720758AF15 /* FBReactNativeSpec.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.release.xcconfig; sourceTree = ""; }; + 4C053EB1FD90B4D900EBD3BD90C0A18D /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; + 4C063A41160D5988A3E603368F4A2FCB /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; 4C2BCD08EDEF360E493D86114FAA2543 /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; + 4C343E1A5BEF3EE692BCE343B6E72393 /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; 4C35D35B6FE83F49910F7849152BE57D /* FIRCLSDataCollectionToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataCollectionToken.h; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionToken.h; sourceTree = ""; }; 4C41E35E2B4C29594651C5C06C6FDE29 /* TcpDuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpDuplexConnection.h; path = rsocket/transports/tcp/TcpDuplexConnection.h; sourceTree = ""; }; 4C48A925874BE980FB340F60393E8B9C /* StreamResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamResponder.cpp; path = rsocket/statemachine/StreamResponder.cpp; sourceTree = ""; }; - 4C5099265536276347F457C5A85928CB /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; 4C5A399F7363417A45237956A4970DBB /* FlipperKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlipperKit.debug.xcconfig; sourceTree = ""; }; - 4C83A4ADC35286164B5F8599DEBC1A36 /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; 4C9F6FF35206F917F63C05DF9008ED94 /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; 4CB498B57DE2039B3D12696DD721EF40 /* alpha_processing_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_neon.c; path = src/dsp/alpha_processing_neon.c; sourceTree = ""; }; - 4CD30803AFB9824BBE50FCA3F6145D07 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; + 4CCB00F23A94A8603E8F611811E34C4F /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; 4CD310EE34B662E6CCA4901934453E4E /* GULSecureCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSecureCoding.m; path = GoogleUtilities/Environment/GULSecureCoding.m; sourceTree = ""; }; - 4CF69286C68B98BA85A30E1E84B4AF0F /* ReactNativeKeyboardTrackingView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardTrackingView-prefix.pch"; sourceTree = ""; }; + 4CD9E58F8C2B24176916FB6CD2862D14 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; 4D00B65707E5C14E15AB0333A0DBAF49 /* FlipperKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FlipperKit-dummy.m"; sourceTree = ""; }; 4D03C24859C78FA92DF19844A21C805A /* FrameTransportImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameTransportImpl.cpp; path = rsocket/framing/FrameTransportImpl.cpp; sourceTree = ""; }; 4D05B2947997B6332C4550580E068271 /* FIRCLSNetworkResponseHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkResponseHandler.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSNetworkResponseHandler.h; sourceTree = ""; }; 4D05E334092DECED86610A79DAA33B70 /* AsyncSSLSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSSLSocket.h; path = folly/io/async/AsyncSSLSocket.h; sourceTree = ""; }; 4D2C15850BF64A8B26086A0BFA96F29B /* ErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ErrorCode.h; path = rsocket/framing/ErrorCode.h; sourceTree = ""; }; + 4D3473E2A2D435AD8B445914AFAC346C /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; 4D4C7691E8B7A159349986F7D98EF55E /* LockTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockTraits.h; path = folly/LockTraits.h; sourceTree = ""; }; - 4D52D7698DEE3105A56D0B1EE095DAD3 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; - 4D6E869CA081208808CD5B105FAA975B /* RNCSafeAreaProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProviderManager.h; path = ios/SafeAreaView/RNCSafeAreaProviderManager.h; sourceTree = ""; }; - 4D944C63EDA3A10FC4407E6B58B9488E /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; - 4D9AD801C07FD32811D773A81D36DD57 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; - 4D9EB9F1414A890594D521351ECC8FB6 /* RCTDevLoadingViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingViewProtocol.h; sourceTree = ""; }; + 4D508ABC5E0AC0E825E1297A49E72D35 /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = apple/RNCWebView.m; sourceTree = ""; }; + 4D8A8277DB1354588CD4DA65CFD95E43 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; 4DA46A718970441984ACAE4BB277B67E /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; 4DB0179667730726EC4FC29079CF2240 /* rpc_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_compat.h; path = src/event2/rpc_compat.h; sourceTree = ""; }; + 4DBD86C969F632F98B3578F3420B5241 /* RCTView+SafeAreaCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTView+SafeAreaCompat.h"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.h"; sourceTree = ""; }; 4DD52F64D42A492C643D5CB8D020001C /* Flipper.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flipper.debug.xcconfig; sourceTree = ""; }; 4DD5C44595F99A4B62D7B2200C5C8F09 /* yuv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv.c; path = src/dsp/yuv.c; sourceTree = ""; }; - 4DDB2A968A8960CBCC7C2BEF3F459F2C /* EXLocalAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXLocalAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4DEC9ABAA7A49F2D6981F9E09C9D2095 /* RCTConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConstants.h; sourceTree = ""; }; - 4E01037C53150DD7A4BE27157EF62784 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; + 4DF69A0F0F03B8024D9D140DC89FD7CB /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; 4E01F1027F0A65A2F923FDF26113FFE5 /* Libgen.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Libgen.cpp; path = folly/portability/Libgen.cpp; sourceTree = ""; }; 4E1D7E81F01D4D9D32B2BA8D87BE0DA8 /* DynamicParser-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DynamicParser-inl.h"; path = "folly/experimental/DynamicParser-inl.h"; sourceTree = ""; }; 4E25A8E08E4DD46E8E9C8DC95ECD4B59 /* Stdio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdio.h; path = folly/portability/Stdio.h; sourceTree = ""; }; - 4E312E4B24A5042A032E967FC1643882 /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; - 4E32D970E1EFB4FF292A76853E0E1A2E /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; 4E5923041FEB3469BAF5943D9EB05DEA /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/Public/GULNSData+zlib.h"; sourceTree = ""; }; - 4E6477CE2E42F17BE04FC037C7CD3E2D /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = ""; }; - 4E677535392AA415F7AE2BAA17436873 /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; - 4E73B6575FC3AF98515FF40E588E5FA9 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; 4E866521021424DDE8D188A5AE862969 /* PromisesObjC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.debug.xcconfig; sourceTree = ""; }; 4E940FA2DB79E81B9BBED7CE4E28A8C5 /* PTPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTPrivate.h; path = peertalk/PTPrivate.h; sourceTree = ""; }; 4E983DB519359D301C29C7D8E2A75C70 /* FIRCLSDwarfExpressionMachine.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDwarfExpressionMachine.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfExpressionMachine.c; sourceTree = ""; }; 4E9F1E50223C8F81438625D0E0D3C53C /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = ""; }; - 4EA1502303E174DE40C90730967EAB4B /* FBReactNativeSpec.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.debug.xcconfig; sourceTree = ""; }; 4EAAE20AF318ADF36E2B751CF903D8FB /* SysTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTypes.h; path = folly/portability/SysTypes.h; sourceTree = ""; }; + 4EAC88C0343FE27B9605390D5EBC3040 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; + 4EB7BCA8F3060BC0BF81E980A3F6C384 /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; 4EC0603D9829BD2A61C882FF7C938B5C /* quant_levels_dec_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_dec_utils.c; path = src/utils/quant_levels_dec_utils.c; sourceTree = ""; }; - 4EC93AFD7667ECD2F429D3E8AB07E47C /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; - 4ECE9899478060F40994317A4CC05626 /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; 4EDD1717F9D97F2BF385E3E0E68B4D5C /* FIRCLSCompoundOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompoundOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSCompoundOperation.h; sourceTree = ""; }; 4EE1D6FC043194CA160546D59E500E8E /* lossless_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_msa.c; path = src/dsp/lossless_msa.c; sourceTree = ""; }; 4EE87C863A150D2C4953AA85BE51E9E6 /* GDTCOREvent+GDTCCTSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCOREvent+GDTCCTSupport.m"; path = "GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCOREvent+GDTCCTSupport.m"; sourceTree = ""; }; - 4F1C090597007F883059F0DBFE7503FA /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; + 4EF13443E01D480FE1F6A009078A3373 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; + 4F0CA991D1B308FA5DE4E5F6F48509F2 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; 4F1F8F002F139155D76E8BA0939EF115 /* SerialExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SerialExecutor.cpp; path = folly/executors/SerialExecutor.cpp; sourceTree = ""; }; - 4F32EBB6E239720223E1514CBC0D59C2 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; 4F42A4FFE0C6D566668EC7A2D36FDF5D /* Codel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Codel.h; path = folly/executors/Codel.h; sourceTree = ""; }; - 4F4A7AE2D14F08F5D290D66C995D7AE3 /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; + 4F434E7049538AD6A094CED1BBE590DB /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; + 4F5FFD69044DE0CF964CE982ED4997A1 /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = ""; }; 4F69B13F0C30451FC15DE11662F77CAB /* RSocketErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketErrors.h; path = rsocket/RSocketErrors.h; sourceTree = ""; }; 4F6C0E9A5B8F1E00BEEAA26B3E78DB3C /* CPUThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPUThreadPoolExecutor.h; path = folly/executors/CPUThreadPoolExecutor.h; sourceTree = ""; }; - 4F86E8C83611809E996BFEE4CCDE8343 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; - 4F9BA4B3AA26DE7BB0DDE22100C8818D /* 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; }; 4FB3802B24993CB3DCB9A72A2A4F4734 /* seed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed.h; path = ios/include/openssl/seed.h; sourceTree = ""; }; + 4FBEB1ECEFEADA407C749A1E1ADCFE23 /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; + 4FC5015413CFC22C82916293D25C96C1 /* React-Core.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.debug.xcconfig"; 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; }; - 4FE57148A0395552AFD22E84C224709A /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; 4FEFA437E395C4AFEF921ECE6AE16F30 /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; - 5004D5C574204E002279B15A02600096 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; + 4FFB767C78CA361AF1454143355E9706 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = ""; }; 5010D96E7C0CE1DFB80A43B956461DFE /* http_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_compat.h; path = src/event2/http_compat.h; sourceTree = ""; }; 50151768B0767106EC7CA1753601BCE5 /* FIRCLSFileManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFileManager.h; path = Crashlytics/Crashlytics/Models/FIRCLSFileManager.h; sourceTree = ""; }; - 501B1F9E038601FBD2E2DD684A90B5D6 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; 5038CCE02C5B29F4CB7BF5020F2F81F0 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; 5038F0F6FA8C42FA5C839E1DD1C87D06 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = ""; }; 503C390C2A9CAB064DEE9968BACF07A3 /* JitsiMeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JitsiMeet.framework; path = Frameworks/JitsiMeet.framework; sourceTree = ""; }; - 504E01F2F902C5E93CA0FDF7AC084217 /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; + 504E3A912F55EEE2FCF2CBA9770156AD /* RCTTVNavigationEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTVNavigationEventEmitter.h; path = React/CoreModules/RCTTVNavigationEventEmitter.h; sourceTree = ""; }; 506363BE3D86FDA8C23AF9509CD08BC2 /* srtp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srtp.h; path = ios/include/openssl/srtp.h; sourceTree = ""; }; 506A9308CD7D7AA08AD1FCC93027B75B /* Flipper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-prefix.pch"; sourceTree = ""; }; - 5073F6A7A6E70B84666C738A870B4BB0 /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; + 506BF5CDED860C7E60A2228AAFC81E1C /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; + 5070AF1FF7BA488BE8FC2FE092602451 /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; 507B46167C759455BC9A0A20982D6844 /* SysSyscall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysSyscall.h; path = folly/portability/SysSyscall.h; sourceTree = ""; }; 508197A1F9F152A33DBD6869C90D56F6 /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; - 508BB417CB8DFD0722D75A5F4DF2E318 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 508BD37104E3C01A678A4EF80C2DA628 /* FIRCLSMachException.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSMachException.c; path = Crashlytics/Crashlytics/Handlers/FIRCLSMachException.c; sourceTree = ""; }; + 50984062FEBACC98E301FE8C5FB093ED /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; 50A742A295C38B9BC45A8282B63FE069 /* GCDAsyncSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncSocket.m; path = Source/GCD/GCDAsyncSocket.m; sourceTree = ""; }; 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; 50E238170AB70EFD6AC1086EA2F251DA /* StaticTracepoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticTracepoint.h; path = folly/tracing/StaticTracepoint.h; sourceTree = ""; }; 50E274B0FDC45577FA9549D3C187242B /* FirebaseCrashlytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCrashlytics.debug.xcconfig; sourceTree = ""; }; + 50F5CAA70BB1BA26998D5B713D91C06E /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; + 50FF6DAE7F8DFDB94CF1E5A200062077 /* react-native-cameraroll.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.release.xcconfig"; sourceTree = ""; }; 512018EA82B88EBBDF93B7F349A2826A /* StringKeyedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedMap.h; path = folly/experimental/StringKeyedMap.h; sourceTree = ""; }; - 51390823E553441028A6FCF5E88F91BA /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; + 512ED5A09E8391249A901BEC6AB53FA0 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; 514EF94B0DB62E4FB66DC61729864036 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = ""; }; 51644C6E77421161B992EE05E53AD364 /* TcpConnectionAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionAcceptor.h; path = rsocket/transports/tcp/TcpConnectionAcceptor.h; sourceTree = ""; }; 5165D61445A33BD272493C9B489868D2 /* Expected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Expected.h; path = folly/Expected.h; sourceTree = ""; }; - 5175740F17A5CC2C16CEC2CBD1CEF513 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; + 5170D6901BDF6DA1D507CE64989EEE5A /* RCTDisplayWeakRefreshable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayWeakRefreshable.m; sourceTree = ""; }; 5177AF46905ECC31326F011C7A15BA04 /* FireAndForgetResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FireAndForgetResponder.h; path = rsocket/statemachine/FireAndForgetResponder.h; sourceTree = ""; }; 517F288EDC87F5BC1007ACFF161BADF8 /* Promise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Promise-inl.h"; path = "folly/futures/Promise-inl.h"; sourceTree = ""; }; - 51A9ABF54BE34010CE8E1C1E2023E767 /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeART.a; path = libReactNativeART.a; sourceTree = BUILT_PRODUCTS_DIR; }; 51B6DF4E778C4DF540E2730C18950134 /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; 51E287770059662644655FA7FC865FB2 /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = ""; }; - 51E38420E3F75E55A5454CA007333CC5 /* EXAV.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.debug.xcconfig; sourceTree = ""; }; - 523DF1DDD948533ECC09FAD0FFA44732 /* react-native-jitsi-meet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.debug.xcconfig"; sourceTree = ""; }; - 52426FD74F4821670D4C474FABF0D44C /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; + 51F8FACE4565755638D68246FE00C3D5 /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = ""; }; + 522E6FF98519B1462C6426A6C0D7CA11 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; 5242CF811C2023183389CD1B7DDF8FE2 /* PThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PThread.h; path = folly/portability/PThread.h; sourceTree = ""; }; - 524BAB40CDC93E796CC2BB13B74D16D3 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; - 525880D7321AB021C70521B79D0DB240 /* react-native-jitsi-meet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.release.xcconfig"; sourceTree = ""; }; 526070E3E1788527F8E4D26C87F4ECF2 /* FIRCLSReportAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportAdapter.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter.h; sourceTree = ""; }; - 52A10F608DE17A15F5A037EF5954C287 /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; - 52B7435ECEFCC1530A20C471774EC717 /* EXAppleAuthenticationButtonViewManagers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButtonViewManagers.m; path = EXAppleAuthentication/EXAppleAuthenticationButtonViewManagers.m; sourceTree = ""; }; + 5271BB91ADBC9FCF274C4F336E52D3E5 /* RNLocalize.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.release.xcconfig; sourceTree = ""; }; + 5272ABDDD32966AE21EE4D9A10678B9D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 529CE6A50D1AA01EDF1A567ECE96D59A /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; 52C013BFB87AA447B327BA7400FCDBB5 /* Semaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Semaphore.h; path = folly/portability/Semaphore.h; sourceTree = ""; }; - 52C0FFC9EEA2DA32AD3BD306C03BF09D /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; - 52D609398B2F685E567D116134F67325 /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; + 52E281CB0D4FFD210261EB1E2D66D8A7 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; + 52E6F773E5FF6B24B71680A77047740A /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; 52EDC1B63F64BCFF4069403F93325357 /* CancellationToken-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CancellationToken-inl.h"; path = "folly/CancellationToken-inl.h"; sourceTree = ""; }; 52EF0A9368801F893BA9EF4B5B086CB3 /* picture_rescale_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_rescale_enc.c; path = src/enc/picture_rescale_enc.c; 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; }; 532FE425C39D4A61630147B6BA27D869 /* rc4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rc4.h; path = ios/include/openssl/rc4.h; sourceTree = ""; }; - 5331154F29985EA161AE29ECE787862E /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; 5347885103FDE0061CCCF7A9D537C64B /* FramedDuplexConnection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FramedDuplexConnection.cpp; path = rsocket/framing/FramedDuplexConnection.cpp; sourceTree = ""; }; 535E847ABF41DFCA51907F18E7EED33B /* HazptrDomain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrDomain.h; path = folly/synchronization/HazptrDomain.h; sourceTree = ""; }; - 537444014B9A092333AA1CCB125F9544 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; - 53828832B31E3AD0ABCC7423D79998B6 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; - 538EB6F3ADB6DCD760A4BE583FAA852C /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; - 5391FDD4800368F989EB3093C245BE46 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 53996DA236C87857F9832F3DE05921EA /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 53B442F0BC9400B7838C67986AD9F802 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; + 53B7B87D245938972CE9032911CC1F1B /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; 53BFA5B72FC8C9E59DC28F1C6AB7B662 /* Singleton-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Singleton-inl.h"; path = "folly/Singleton-inl.h"; sourceTree = ""; }; - 53D0830ABE6F5338B281F64C4817C86A /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; 53D48828CF0E28CE11B9BA0C87704BD6 /* FlowableTimeoutOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableTimeoutOperator.h; path = yarpl/flowable/FlowableTimeoutOperator.h; sourceTree = ""; }; 5404EE437B04EE70D1C0AF67275D5A12 /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Frameworks/FIRAnalyticsConnector.framework; sourceTree = ""; }; + 5413742461E142031AF301F703B0F4DC /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; 542D6EE5A27AECAFF639F3DB53420D60 /* OpenSSLHash.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLHash.cpp; path = folly/ssl/OpenSSLHash.cpp; sourceTree = ""; }; 5441D9C8F0774DA9EBDAC235FF9839E2 /* StringKeyedUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedMap.h; path = folly/experimental/StringKeyedUnorderedMap.h; sourceTree = ""; }; 544C2F618B9CE0C574D24D59B73104E8 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = ""; }; - 546F8EC6A5BA2EACD8433663792C565D /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; 547D9D9E1723D0A2A1D45DC41B3054F6 /* StringKeyedUnorderedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedSet.h; path = folly/experimental/StringKeyedUnorderedSet.h; sourceTree = ""; }; - 548F7A0FF0D3CD928ED78732500938E3 /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; 549057C57BEA0FEA0F08821B3C8FE7FC /* ssl2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl2.h; path = ios/include/openssl/ssl2.h; sourceTree = ""; }; 549E0A88A80A156B7DA4A9FBEE7C0282 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; - 54A6E487DB2F1751784F728350946322 /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; - 54B4172F1418C6E30F22C3CCEA96A0F4 /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; + 54A21F939A27BECCFF62BEB81852C1F0 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + 54ADC050BC81D562EE7FAAAFE4095C09 /* RCTAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppearance.h; path = React/CoreModules/RCTAppearance.h; sourceTree = ""; }; + 54DE25F8E0A8F9CA214FB0A72829B0CB /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; + 54E4135E88CC7F2132C4687292887A8A /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; 54EB121F312B8CE431C69C32CDD64F19 /* Barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Barrier.h; path = folly/futures/Barrier.h; sourceTree = ""; }; - 551AC92263E7C5F08A10F56E19A73E4C /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; + 54EC38676D071FA5E7F5129B3F709FAA /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = ""; }; + 5501FED9B119AFB062DB91EE6DF92B65 /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; + 552B5AE4793D8570E20AA5B8F2F65955 /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; 5552BD6DE3171ADE0B1E936EE64D0B3F /* KeepaliveTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeepaliveTimer.h; path = rsocket/internal/KeepaliveTimer.h; sourceTree = ""; }; - 555E6E5DD1E71AD0281C53042760395F /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; - 556A221B3B32B998A9B0A794C7AF126B /* RNNotificationCenterMulticast.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterMulticast.m; path = RNNotifications/RNNotificationCenterMulticast.m; sourceTree = ""; }; + 556926480456AAB0A39A0D00ECD7DC05 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; 556E74A364CCFC0E6941E869662E47C5 /* FIRExceptionModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRExceptionModel.m; path = Crashlytics/Crashlytics/FIRExceptionModel.m; sourceTree = ""; }; - 557837D72D0D4D620A0A412D3F2C84CF /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; + 5577C6E47900305704D227741EB417D4 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; 5583F8386CC7AC57CE176AA365FB8EA4 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; - 55B60445B564430D8FCC6703A32A708D /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; + 5592D9102B1946F1E2951AE96ECFD981 /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; + 559EE3CE9C7BD27F0151361C94E5E4C2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 55AE436B644671AB91F9EE75FFF4AB01 /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; + 55BA7916B742AC8CEC530CC91B169759 /* RCTLogBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBox.h; path = React/CoreModules/RCTLogBox.h; sourceTree = ""; }; 55C2011F83AA4DDC64CD927FD8447E5A /* Cursor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cursor.h; path = folly/io/Cursor.h; sourceTree = ""; }; 55D0646EDC545C1CCFD0792BBFDD3408 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - 55D28C4F446EF85B88F966A14F398624 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; 55D8493FE613EB1B542F98A8B4230806 /* TLSDefinitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLSDefinitions.h; path = folly/io/async/ssl/TLSDefinitions.h; sourceTree = ""; }; - 55E6EC3ADF1B24F4C96F71609B0A1E0C /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; 55E9782E88E26E069CFE552B6059E24E /* GDTCCTCompressionHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTCompressionHelper.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h; sourceTree = ""; }; - 55ECCD1BC7B705FEA3AC46F0330DDEED /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; - 55F7906B5DB172E533F92E707FD54E71 /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; - 55FAD051E2AA959A4D8541A40AB4DFEB /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; 55FE544AB1285C52E46E7AC052098713 /* ProtocolVersion.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ProtocolVersion.cpp; path = rsocket/framing/ProtocolVersion.cpp; sourceTree = ""; }; - 562358291754429BDABD830DBC6BBD5B /* EXAppleAuthentication.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppleAuthentication.release.xcconfig; sourceTree = ""; }; - 5637B77A3213C2C807B20486728CC434 /* RCTImageViewManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageViewManager.mm; sourceTree = ""; }; + 5600FC67D52EC1330435708F5D533604 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; 56391EBC82F2ADB6B90AAB1D2F4A1CC2 /* FIRInstallationsAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAuthTokenResult.m; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m; sourceTree = ""; }; 563CDA5896F58BC15DFB5DC4034FBD97 /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/SceneDelegateSwizzler/Private/GULSceneDelegateSwizzler.h; sourceTree = ""; }; 563E55D46F0423FFC2241430780F937A /* FIRCLSProcess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProcess.h; path = Crashlytics/Crashlytics/Components/FIRCLSProcess.h; sourceTree = ""; }; + 564338EA34BC53641F2A55206A598926 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; + 5654572C0C76ED72D843423BC53FDB2B /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; + 5656D80A168DAF76D8EB514E658A70ED /* Yoga.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Yoga.modulemap; sourceTree = ""; }; 56804968BD3EE043072C95B0151F2117 /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = ""; }; + 568AC5FC3788F93635BAD94B8C391707 /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = ""; }; 568DF2545E111D7BA742814E569DABA2 /* FIRCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCrashlytics.m; path = Crashlytics/Crashlytics/FIRCrashlytics.m; sourceTree = ""; }; + 5695F3830A5F1AFE41DF9B5BD0A30DCE /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; 569DA410D96611109388559F518B9559 /* e_os2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = e_os2.h; path = ios/include/openssl/e_os2.h; sourceTree = ""; }; 56A26911E1ABD957D88754C6E1FFC386 /* opensslconf-arm64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-arm64.h"; path = "ios/include/openssl/opensslconf-arm64.h"; sourceTree = ""; }; + 56A7C3E5A074BF59D305AC0D39A4B421 /* RNFBMeta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBMeta.h; path = ios/RNFBApp/RNFBMeta.h; sourceTree = ""; }; 56AC50337CE66A02050975CD595E8B97 /* FIRCLSUserDefaults_private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUserDefaults_private.h; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults_private.h; sourceTree = ""; }; 56B3E2FA89BB5855515C69A456A406EB /* HeterogeneousAccess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeterogeneousAccess.h; path = folly/container/HeterogeneousAccess.h; sourceTree = ""; }; 56BDC7855EDC9F1D2AB8B748729E77EE /* AsyncTimeout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncTimeout.cpp; path = folly/io/async/AsyncTimeout.cpp; sourceTree = ""; }; - 56EAC8CECCAD0935A9C17D90A8EF5A16 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; - 56EED4B1C4BE02DE793AC7A19190F8CB /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; + 56CEF874C6B480498C26365C608423C9 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; + 56DAF4014B943B40781B830AF5F62887 /* RNDeviceInfo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.debug.xcconfig; sourceTree = ""; }; + 56E6DDBBD0C0945DE88A69138B0E6F56 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; + 56EE46EBACB498E3EC9A96624351FE98 /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; 5716F6616169F99432AD1D3894329AEA /* dynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic.h; path = folly/dynamic.h; sourceTree = ""; }; - 572F73857E3AE75AFFF506AE103B02F8 /* React-callinvoker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-callinvoker.release.xcconfig"; sourceTree = ""; }; + 5729A166620637014576B78FF6E4FA6A /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = ""; }; 573255DAE711D993A5B0044BE6D34A1A /* alphai_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alphai_dec.h; path = src/dec/alphai_dec.h; sourceTree = ""; }; 5734D931BDADDC1C447BCD831D3D8E7F /* muxread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxread.c; path = src/mux/muxread.c; sourceTree = ""; }; 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNCAsyncStorage.a; path = libRNCAsyncStorage.a; sourceTree = BUILT_PRODUCTS_DIR; }; 5743CB6EC98AB0D17ED30F21819A4197 /* Malloc.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Malloc.cpp; path = folly/portability/Malloc.cpp; sourceTree = ""; }; 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 5751B2BE13BC02558FB90B2C3DD04E30 /* UMFileSystemInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.release.xcconfig; sourceTree = ""; }; 57557DD842E78A07D77619A7523D6FC7 /* FIRInstallationsIDController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIDController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h; sourceTree = ""; }; + 576F640416624F8A61CB9E2558337DD2 /* EXKeepAwake.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.release.xcconfig; sourceTree = ""; }; 5775D4B653A8BC92D744C412ABAAF2CD /* libwebp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.debug.xcconfig; sourceTree = ""; }; 578805566F5BF284F901A106CD959833 /* Spin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Spin.h; path = folly/synchronization/detail/Spin.h; sourceTree = ""; }; - 579D50755D6C05683866DF1EC201B0A5 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; - 579E112BB7E32ECD9F097D5840406CE5 /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; 57AE0865E6F1870E913D10B6058BEA3F /* FLEXUtility.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXUtility.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXUtility.mm; sourceTree = ""; }; 57B1BBC643E020C8DFA80AEB7F9E636A /* Pods-ShareRocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.debug.xcconfig"; sourceTree = ""; }; 57BC6315E6560BF87E14F52772D35E58 /* Windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Windows.h; path = folly/portability/Windows.h; sourceTree = ""; }; @@ -7764,491 +7831,497 @@ 57BE90115D5DC303A5E29DFC7D3D82B1 /* tag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tag.h; path = src/event2/tag.h; sourceTree = ""; }; 57C73510853533815CACDD3746C4FCD5 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; 57CBFE1FEC2178F9CF4712AD5A6D156D /* FIRCLSPackageReportOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSPackageReportOperation.m; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSPackageReportOperation.m; sourceTree = ""; }; + 57D9E49DA33C4EEBC1561AAD53B1E0B9 /* EXKeepAwake.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXKeepAwake.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 57E40FFAEBC0216BFC939810C0A9315F /* ec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ec.h; path = ios/include/openssl/ec.h; sourceTree = ""; }; + 57E59EDB17E56B1BB7FAABF94FC5D7F5 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; 57F90EC11E2BCEB8D2203AFCC6DD9C75 /* MacAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MacAddress.h; path = folly/MacAddress.h; sourceTree = ""; }; - 5802691D85AFE68FA659FC7CE0412CDC /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; + 5805A22C344D815E3F716218EDDA42D7 /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; 581371702C9A174CA57E3B391647B378 /* SDWebImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.release.xcconfig; sourceTree = ""; }; - 5837CA59DEFBA496C78103D2396783D8 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; + 58203A38AFFE86B2CEEBFE7378DC805B /* UMPermissionsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.debug.xcconfig; sourceTree = ""; }; + 5834DA9C0B2D131CB05580A3CD71B55B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 5855FDBEC72AB1200610D7F3EE3092F5 /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = ""; }; 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 586DBD0046C2C3E0EF691B3D634E0E1D /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; - 587E2736E299E19869C89B553DCA7677 /* React-RCTVibration.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.debug.xcconfig"; sourceTree = ""; }; 587E9388CA28138EA598A6A691503FEE /* FirebaseInstallationsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallationsInternal.h; path = FirebaseInstallations/Source/Library/Private/FirebaseInstallationsInternal.h; sourceTree = ""; }; 587EF9B70434429044D5E4E1C0818B28 /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Private/GULSecureCoding.h; sourceTree = ""; }; - 58A532A0F849CA6B9DA27106CB7E4B5A /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = ""; }; - 58A97643CC731C7626CF8D324A13E90A /* RNFBCrashlyticsInitProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsInitProvider.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.h; sourceTree = ""; }; + 58A48551E0BCA2539192C1347B6A7D3F /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 58AFBB414F2940E2FF8F9B599133C97C /* GDTCOREvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREvent.h; sourceTree = ""; }; - 58BE9A060DAC9EBDE39709D5DCC17757 /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; 58CBB9FB3A760AF537A770CE838740FF /* FlipperConnectionManagerImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperConnectionManagerImpl.cpp; path = xplat/Flipper/FlipperConnectionManagerImpl.cpp; sourceTree = ""; }; + 58CDCF71B71608DB5507D1FBF65EAA9E /* UMModuleRegistryHolderReactModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryHolderReactModule.m; sourceTree = ""; }; 58D253E3ED3F575E7CC390AE1901A34B /* FIRCLSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSLogger.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSLogger.h; sourceTree = ""; }; + 58D96A991900B1F41114A4BC42EE9732 /* RNCMaskedView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCMaskedView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 58DF18892C7EB780A1F399075C80DC81 /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; 58DF88C46D8377D8E30ABE62D630B567 /* GDTCOREventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventTransformer.h; sourceTree = ""; }; - 58FBA6BF8F5DEF89FA285E52026046E2 /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = ""; }; 590AA461A8068282BB1A7443506BAC4C /* JSONSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSONSchema.h; path = folly/experimental/JSONSchema.h; sourceTree = ""; }; - 590F73C41740BBC036546D26E389842A /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; 59105198EA93A8D13515A629A7AF377C /* CMakeLists.txt */ = {isa = PBXFileReference; includeInIndex = 1; name = CMakeLists.txt; path = rsocket/benchmarks/CMakeLists.txt; sourceTree = ""; }; + 5912BC63F951FEBDB4632962841E5925 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; + 591E617616FC2BB73F72F1F8958C59B2 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; 591EF6AD9A7838ED262CED6398F0354D /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = ""; }; - 59250CFC953F23E038DFE20F0BE11B49 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; 592937387A8E9082FA2D10A40E1EED21 /* lossless_enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_msa.c; path = src/dsp/lossless_enc_msa.c; sourceTree = ""; }; 592B252AB58909176BDDB7B3701554A0 /* AtomicSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicSharedPtr.h; path = folly/concurrency/AtomicSharedPtr.h; sourceTree = ""; }; 59605669D19CDC4CEF77C9F70E3F4FEA /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = SDWebImage/Core/SDImageHEICCoder.h; sourceTree = ""; }; 5964D03579D8DF03055FC4FDB2751E39 /* NSBezierPath+SDRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+SDRoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.h"; sourceTree = ""; }; - 59662D70CC0188329784D74C99BB4310 /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; + 596978F92933A7221E7CB042A8E8B971 /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; 59776B710AC4B9E37259D6CFE6591268 /* Aligned.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Aligned.h; path = folly/lang/Aligned.h; sourceTree = ""; }; - 59965455D74C0B438124F5835829913F /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; - 59A4506E32CFEC69B2D169214E3C7835 /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; - 59A962147145BB28D44005144DDB2EBD /* RNFBCrashlytics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBCrashlytics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 59AB26443058AFBD0EDED1A33FFCB835 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; - 59BC674A10587B8D18CDFE67FBC44D0A /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; - 59BD227B768F741C0631574F513D5B29 /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; + 59A8F834074C144BF9F2A56BEA949D40 /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; + 59C7BFB74DC9408031A4FFFDAB6108D4 /* RsaFormatter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RsaFormatter.h; sourceTree = ""; }; 59D0F4F6EFD9A3FFC9672551AAFB8CEF /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; - 5A2FE45D33CECE11F662AF35429FCD12 /* RCTPerfMonitor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPerfMonitor.mm; sourceTree = ""; }; + 59F990578E21B93B43E878545F4657B7 /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = ""; }; + 5A022B544A1A50C725011B8F8D14BFFC /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; + 5A29BA3BE31502514BF510857200FD3C /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; + 5A35394086F383136398A2771E1A363B /* EXHaptics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.debug.xcconfig; sourceTree = ""; }; + 5A552206A525124387BA9CFBF67871A7 /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; + 5A58AA1B828A3AFCC95B17EA5F9930D9 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppState.h; path = React/CoreModules/RCTAppState.h; sourceTree = ""; }; 5A61E9F7A2DBDFA8FA6D6A0875596BFB /* FlipperKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlipperKit-prefix.pch"; sourceTree = ""; }; + 5A67E6E6D6E01DA69AB431B0D72A50CC /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; + 5A75DE24AA744AEDDDF35FAC73F54424 /* RNFBAnalytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAnalytics.release.xcconfig; sourceTree = ""; }; + 5A797B345C745E88F12B501F50FF51E9 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; 5A80C8864A3D842456CC5722D7D2A092 /* libwebp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libwebp-prefix.pch"; sourceTree = ""; }; 5A822C5768E4D12C183F877B6B8B0C98 /* FIRInstallationsErrorUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrorUtil.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h; sourceTree = ""; }; 5AA0407C275BCD3BDC6820B4783488F2 /* bit_reader_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_reader_utils.c; path = src/utils/bit_reader_utils.c; sourceTree = ""; }; 5AB56DD7E5299F231F2F69DDEC40525C /* Stdlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdlib.h; path = folly/portability/Stdlib.h; sourceTree = ""; }; - 5ABD96C678115C6E3745285DA05515C0 /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; - 5ACD9FA7D9220BD86AE0DA31FF978724 /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; + 5AC2AF099C8C9C03F4B3A58878738DC1 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; + 5AD7952A70C692300EC7AFB4D7971FF7 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; 5AD903D55DB23C6DB0DF7E1DF8AF868F /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Sources/Private/FIRComponent.h; sourceTree = ""; }; 5AE9384492CDD81B506E6901934E1276 /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; 5AFB594654333C6F38545DF653E7E2C3 /* FIRCLSByteUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSByteUtility.m; path = Crashlytics/Shared/FIRCLSByteUtility.m; sourceTree = ""; }; - 5B05CA75F156B8CFF6045C4F3F87CDC5 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; 5B08E75AF29E39FE482ED79F8D08814D /* blowfish.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blowfish.h; path = ios/include/openssl/blowfish.h; sourceTree = ""; }; 5B13A19B467D099AA558E7E854F5647E /* whrlpool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = whrlpool.h; path = ios/include/openssl/whrlpool.h; sourceTree = ""; }; + 5B1D56ADFD1059B3E709CCD732DB57B7 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; 5B284C428FB8966537ED051C95153C4A /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = ""; }; 5B30B317040215E1EB1DD3ED42046EF9 /* color_cache_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = color_cache_utils.c; path = src/utils/color_cache_utils.c; sourceTree = ""; }; 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYogaKit.a; path = libYogaKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 5B4DCB9F0A88A8B83DDD5F46A61F0B33 /* react-native-webview.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.release.xcconfig"; sourceTree = ""; }; + 5B653C96A63A83B15BC3EB954CA64D38 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; 5B761FA89A1BC5C8EA3E12C40C8E2F19 /* FlipperKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlipperKit-umbrella.h"; sourceTree = ""; }; 5B785E1F58EF50E8E037E820D7BD57D0 /* ssl23.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl23.h; path = ios/include/openssl/ssl23.h; sourceTree = ""; }; - 5B7CA66794F8BDD0D8A7E2BBCC81722C /* EXAppleAuthenticationRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationRequest.m; path = EXAppleAuthentication/EXAppleAuthenticationRequest.m; sourceTree = ""; }; 5B9282EEA2B5555D50FEA7D682DD1D2B /* SynchronizedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynchronizedPtr.h; path = folly/SynchronizedPtr.h; sourceTree = ""; }; 5BA0884E555663BC2226074E30341DCD /* lossless.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless.c; path = src/dsp/lossless.c; sourceTree = ""; }; - 5BA879111DE2652A9191BDEADD90C73D /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; - 5BBEE77C5439F0C094A26988065D3F9F /* EXSessionDownloadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionDownloadTaskDelegate.h; sourceTree = ""; }; - 5BD22C8044A75D23BDA8192B19B8DA8D /* RNCMaskedView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCMaskedView-prefix.pch"; sourceTree = ""; }; 5BD5B1AF70C3CA3936B716570EC990BC /* PriorityThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityThreadFactory.h; path = folly/executors/thread_factory/PriorityThreadFactory.h; sourceTree = ""; }; + 5BDBF18E13FE0F99D56655A59A7778D0 /* Shared.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Shared.h; sourceTree = ""; }; 5BDCFB3E7E895E33DBB46260A502852B /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/File.h; sourceTree = ""; }; - 5BFA5B5582A9240EE0A688FBF51845D9 /* RNCSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewLocalData.m; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.m; sourceTree = ""; }; + 5BE499D66934F89AFCED0881CA61AB05 /* RCTVibrationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibrationPlugins.mm; sourceTree = ""; }; + 5BE5BB8AC74CA98538689C41899C713B /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; + 5C51CD19609754332142A04144EE9D21 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 5C5281CA90C4EC355AE34A31B824217B /* FIRCLSReportManager_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportManager_Private.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager_Private.h; sourceTree = ""; }; - 5C66073D693CFBA4207919CC6D1F26B5 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; - 5CAFE45FD6D43A417A0316AB4C6B57D5 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; - 5D28A2F85BE3CAEE42670EA684A59DB8 /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; - 5D45BCFDFAE6F6EACAA99CCAB789EC43 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; - 5D4CF224D5A50C2846D67D045F8D3554 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 5D685286ED38572BBEC117022A11DAA7 /* BugsnagPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagPlugin.h; sourceTree = ""; }; - 5D85A284C5F3C63E268E4028F6C491B2 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; + 5D6345020C64C16A655129FE1132DCDB /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAsyncLocalStorage.h; path = React/CoreModules/RCTAsyncLocalStorage.h; sourceTree = ""; }; + 5D72DD647D416808BF34974162C736FA /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; 5D8FECC7392A6932F95BAAA375CB3D64 /* RelaxedConcurrentPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RelaxedConcurrentPriorityQueue.h; path = folly/experimental/RelaxedConcurrentPriorityQueue.h; sourceTree = ""; }; 5D94326297B8CDFE3AD6AB8EE90F1526 /* SafeAssert.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SafeAssert.cpp; path = folly/lang/SafeAssert.cpp; sourceTree = ""; }; + 5D969E88182C589E4065972834F05189 /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = ""; }; 5D992F73AFF2DDE0ED96E4ACF18438F1 /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; - 5D9BA3D711C337D4CDA290FD2AC421CE /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; - 5DA37A201BF5D7381D9112D017DEB075 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; - 5DB356BA7F34588BEC110B7A48353C7B /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; - 5DC24783154DD270273BAF39620A3213 /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 5DCDF199F3B656D34D7B505E4544C402 /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; + 5DCC39208CEAA002C1D502B8CE314B7A /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = ""; }; 5DDE6268D4CFCC59232D05F80DED657F /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/FIRComponentContainerInternal.h; sourceTree = ""; }; - 5DEB102DABB3B9DB0C73E9C3DFA8CBFD /* ReactNativeART.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.release.xcconfig; sourceTree = ""; }; + 5E10972E4F712DC9AC689B88595A621D /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; + 5E1B043B7A4B96051403B77DAA682C9C /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = ""; }; 5E28C96777E2631FC07448E1C13253A9 /* FlipperUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperUtil.m; path = iOS/FlipperKit/FlipperUtil.m; sourceTree = ""; }; + 5E3A7ACD4FFD1398BAF99CDD584A376E /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = liblibwebp.a; path = liblibwebp.a; sourceTree = BUILT_PRODUCTS_DIR; }; 5E63F04EE183EF37D6F35425CB658088 /* FIRInstallationsHTTPError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsHTTPError.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h; sourceTree = ""; }; + 5E66DBD0980F12A5BA8375066A5B4685 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; 5E692FA6C355B3E1AACF59DBE2931CCB /* CheckedMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CheckedMath.h; path = folly/lang/CheckedMath.h; sourceTree = ""; }; + 5E75B1F60EB891E8C1055C9E86AF73AB /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; 5E792802A89788DF420D5C87689D48C6 /* FIRExceptionModel_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRExceptionModel_Private.h; path = Crashlytics/Crashlytics/Private/FIRExceptionModel_Private.h; sourceTree = ""; }; 5E8C46747440234A4A0AC7203C35BD7D /* opensslconf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslconf.h; path = ios/include/openssl/opensslconf.h; sourceTree = ""; }; 5E9B1F92B5A28A31846F6E524402C949 /* Hazptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hazptr.h; path = folly/synchronization/Hazptr.h; sourceTree = ""; }; 5EA5BC35AE5598354F039361FF028BA9 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = ""; }; 5EB07BCC69F2E556561AC35C72234A71 /* FingerprintPolynomial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FingerprintPolynomial.h; path = folly/detail/FingerprintPolynomial.h; sourceTree = ""; }; - 5EE32F40D2326C72907CA116A1204685 /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; + 5EBD58B8666614B8858F11A4499E2CCA /* RNFBAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAnalytics.debug.xcconfig; sourceTree = ""; }; + 5EF108B4590BD03A6A1B010222991C24 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; + 5EF20424331FE280ADEFAF6BB933172F /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; + 5EF4589BC79F087487F8DB953CEF5DE0 /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; + 5EFCE5D37FCDD601CD22091C80C7E5C2 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; 5EFEBCD1C1538F3A6D9F55E1236D95AF /* EmitterFlowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EmitterFlowable.h; path = yarpl/flowable/EmitterFlowable.h; sourceTree = ""; }; - 5F0CE731F9A363CD32CCCD6259E46EFC /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; - 5F2298F3D34C9A9DD8E280DACFD6459F /* rn-extensions-share.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.debug.xcconfig"; sourceTree = ""; }; + 5F1A4CA596C01CB76C880148E4242FC8 /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; + 5F258FBDC8ECC96EC47F227E7B4B017D /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; 5F287AF97C73FAD86ADCFB2B08891D28 /* InlineExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = InlineExecutor.cpp; path = folly/executors/InlineExecutor.cpp; sourceTree = ""; }; 5F293B5D977E8D1E406D51EBACCDC9BC /* RSocketException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketException.h; path = rsocket/RSocketException.h; sourceTree = ""; }; 5F2C9D4A4102266BF3CBD25EF6756A16 /* Pods-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.debug.xcconfig"; sourceTree = ""; }; - 5F2D99F147D82E6B74E08EFA990482AF /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; - 5F2FDDB18843EFA08C47EE7B5D201DA8 /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; - 5F51E4002185AABCB6902118765D16B6 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; + 5F42FF119EA09E00C09CF21FDFC9AAD1 /* React-RCTBlob.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.release.xcconfig"; sourceTree = ""; }; 5F5672BC307A06464E3471B902EA8F23 /* RValueReferenceWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RValueReferenceWrapper.h; path = folly/lang/RValueReferenceWrapper.h; sourceTree = ""; }; 5F58DC838F3452E24C374CCF9C941EF4 /* 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 = ""; }; + 5F6C659C4FB6E05A3DF10651918DB306 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; + 5F7CA9135269FB2B5C05B8D42EC1D2A8 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; + 5F96281C6C4116BF30854726AAE0207D /* React-RCTSettings.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.release.xcconfig"; sourceTree = ""; }; 5F9E67E8DAE269A8354FA865212C060A /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; 5FA6C6E200AA82C371F850DEEE643F57 /* StreamThroughputMemory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamThroughputMemory.cpp; path = rsocket/benchmarks/StreamThroughputMemory.cpp; sourceTree = ""; }; - 5FAEB2AE280C89F3B2E4C883DDB5519F /* EXVideoThumbnails.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXVideoThumbnails.release.xcconfig; sourceTree = ""; }; 5FB245DD490CE4FC2275E1D3C43AF643 /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; - 5FC3DDF45091DA3AC479A574842CC386 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; 5FCDAC116F2F1C9BCC1E86AB1DA69FB4 /* FlipperStateUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStateUpdateListener.h; path = xplat/Flipper/FlipperStateUpdateListener.h; sourceTree = ""; }; 5FD828576B07BCEAA3D4EC0A9DCBB8CE /* TcpDuplexConnection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpDuplexConnection.cpp; path = rsocket/transports/tcp/TcpDuplexConnection.cpp; sourceTree = ""; }; - 5FEF2352D2144A3C571293429FCDA8FE /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + 5FE25F3788337BD0ECDF73F9057DC8EB /* ReactNativeKeyboardTrackingView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardTrackingView-dummy.m"; sourceTree = ""; }; + 5FE8C9FCAFAAFB71121ED525719CA807 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; 5FF428A7D4FE6C57B4CD6C2756A12DE8 /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; - 601B19978D6FC3C1B2E492D925A475B8 /* RCTDataRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDataRequestHandler.mm; sourceTree = ""; }; + 5FFAE82666F21B7462CA0538142D1449 /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; + 601EA0D5CF3D4A8C4108CBBB36ED4B31 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; 60224AC883FC9B9434CB06F258BA2F7C /* FIRCLSApplicationIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSApplicationIdentifierModel.h; path = Crashlytics/Crashlytics/Settings/Models/FIRCLSApplicationIdentifierModel.h; sourceTree = ""; }; - 6038AE431D283EF67E531354FC54133B /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; - 6040B3A3DF348482A355B16BE00DA7D1 /* RCTWebSocketModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketModule.mm; sourceTree = ""; }; 60472B6B1CDB6468AEE60402A37320DD /* FIRCLSMachOBinary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachOBinary.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachOBinary.m; sourceTree = ""; }; 60535C87D0FC894ADB2DD82CC2A28E53 /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; + 60640518039110ECA62D49D4C54753E8 /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevLoadingView.h; path = React/CoreModules/RCTDevLoadingView.h; sourceTree = ""; }; 6069C78D991BE2763D082CA2A215472A /* FIRCLSMultipartMimeStreamEncoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMultipartMimeStreamEncoder.h; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSMultipartMimeStreamEncoder.h; sourceTree = ""; }; 606E27A1122CF20B207D9EDE641C54AE /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore.h; sourceTree = ""; }; + 607457D0A961DDC14098EE5D02B34596 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; 60845EDCBF086F226A67812959AF5D6F /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = ""; }; + 6085826FF5A89F9CCD32272052050F3C /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; + 60881A4699573C8909A7CA531AABBB16 /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; 608FB776F77192F81A2FA13081A692FE /* AsyncTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTransportCertificate.h; path = folly/io/async/AsyncTransportCertificate.h; sourceTree = ""; }; 60B0D389EC73FDF997A7AEAFF5239B04 /* F14IntrinsicsAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14IntrinsicsAvailability.h; path = folly/container/detail/F14IntrinsicsAvailability.h; sourceTree = ""; }; - 60DA3C24BED923D7021F7D952E18692C /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; - 60E892288018FA0EB431FBD7CA1C5AC8 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; + 60B54D84390877018DB3F64DBA43949C /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; + 60B85E4E8D160A075EFF3F6B3D9DB0F3 /* React-CoreModules.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.debug.xcconfig"; sourceTree = ""; }; + 60DDBC030BF5D5BB45502D31CB5FD10C /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; 60F350C4BFD5AE0E56B234ABB6DE8094 /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; 60F5F5F57792A5F6B7DC07376665ED9A /* WaitOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WaitOptions.h; path = folly/synchronization/WaitOptions.h; sourceTree = ""; }; - 60F98A1A2812A595598EDCD0BC00225E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 61086AD6AE79FDC6F39B12C0E234E220 /* GCDAsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncSocket.h; path = Source/GCD/GCDAsyncSocket.h; sourceTree = ""; }; 612020D5BE4C593ACE0D7CF102536480 /* SysTime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysTime.cpp; path = folly/portability/SysTime.cpp; sourceTree = ""; }; 6143334EC4599BDC6DB6C28ED0707AA2 /* format_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_constants.h; path = src/webp/format_constants.h; sourceTree = ""; }; 614CB67DC48249E3BE3CE487A754D815 /* FlowableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableConcatOperators.h; path = yarpl/flowable/FlowableConcatOperators.h; sourceTree = ""; }; 615D287D14AB05522C3D6005FBA9898B /* IPAddressSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressSource.h; path = folly/detail/IPAddressSource.h; sourceTree = ""; }; - 6168F38FB52EC736551766D6E3C60096 /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; 61882888005B92D15750380FE61DA5B4 /* enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_msa.c; path = src/dsp/enc_msa.c; sourceTree = ""; }; 618ECA20DE3D216339F209F32DF9DC64 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Private/GULAppEnvironmentUtil.h; sourceTree = ""; }; 61B17AAA64F910027FEEA9DABFDFB34B /* Executor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Executor.cpp; path = folly/Executor.cpp; sourceTree = ""; }; 61BFB0B901C7FC1440F6B01017648161 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; 61DF78A65709484E73FEBB34A52318F1 /* AtomicUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtil.h; path = folly/synchronization/AtomicUtil.h; sourceTree = ""; }; 61F1A0A71E7EFFC6A7F26BDC234437CA /* FIRInstallationsStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStatus.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h; sourceTree = ""; }; - 61F73002F5357C4765AF70BDB41AD9B9 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; - 61F8730EE64FD2CD71890FC719173F81 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; - 61FD4828BA8003D8E9FEEC1C7C05FCF3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 620586CB2D409D760D1BD1D5D4A9FD80 /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/portability/Memory.h; sourceTree = ""; }; - 621B45CF8AEA5E510285EF99F0721936 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; - 623CC8C222A5E75D8DA536F832D8C029 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; - 624CA4F58AF5F67C4DA05345E67B1D23 /* RNReanimated.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.release.xcconfig; sourceTree = ""; }; 625C3B39CE18021DF758C70A67C1284B /* io_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = io_dec.c; path = src/dec/io_dec.c; sourceTree = ""; }; + 62675C9005432D19954712B52CDE4E0B /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; 626A959999CE881ECE30346AAFC28430 /* FIRCLSUnwind_arch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind_arch.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_arch.h; sourceTree = ""; }; 629B4B01D6EEBECB27F2A51805DA6D13 /* SequencedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SequencedExecutor.h; path = folly/executors/SequencedExecutor.h; sourceTree = ""; }; 629E8C2261D0BCC86154D286AC562FBC /* Base.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = Base.lproj; path = "Objective-C/TOCropViewController/Resources/Base.lproj"; sourceTree = ""; }; - 62A0B2B2E8640538334C1517D268C700 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; - 62B11F68B301D16E3AAB2FDD1D384F8E /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; - 62BA82B300122C937F6ECE9746E951BE /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; - 62CDA9DDEE1D960A214DA51C83DC3E91 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; - 62D0EB1335EE43AFD5FFBF3BA7A06204 /* ReactCommon.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.debug.xcconfig; sourceTree = ""; }; 62E15403D2A1838600C6BF72034026F3 /* FIRCLSConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSConstants.h; path = Crashlytics/Shared/FIRCLSConstants.h; sourceTree = ""; }; - 62EE55225C9B8279FB519B5382648618 /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 62F835C017D7F2661C18E80173697DFD /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6302775582C8FB292F7C0CAB46A91BF9 /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; + 630F85A3FD67636EF9F6323F0EE15C1F /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = ""; }; 630FB216BC1093C5DE7FD7757B5FFE57 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = "Objective-C/TOCropViewController/Resources/pl.lproj"; sourceTree = ""; }; - 63249EFA834A01C81278670CAB350563 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; + 6313B94F7597342A262B9DE88C8E3AE5 /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; + 6319316CA64C4570DC9A7F20969D5611 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; + 631F17A526C76F930DBFF020FEE235B8 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; 633737D6994987500E6EB4A6C7579466 /* FLEXNetworkRecorder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXNetworkRecorder.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkRecorder.mm; sourceTree = ""; }; + 633AC6F0B825488021681FD9A4E8E2C4 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; + 634111F7D0041A6061CFF29CF57DB5B8 /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; 63424A439276B5C1DB6C6C9C43654A68 /* Invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Invoke.h; path = folly/functional/Invoke.h; sourceTree = ""; }; 63498114C3EA6AAAC31C39E2674C49D5 /* SSLErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLErrors.h; path = folly/io/async/ssl/SSLErrors.h; sourceTree = ""; }; + 634C7954F8F8AB6D338C4411EB41370C /* UMErrorCodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMErrorCodes.m; path = UMCore/UMErrorCodes.m; sourceTree = ""; }; 635809F2E8DD33860279B3B4016EC9BE /* muxinternal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxinternal.c; path = src/mux/muxinternal.c; sourceTree = ""; }; - 63863C629C26593668F4CFC664DEE81A /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppState.h; path = React/CoreModules/RCTAppState.h; sourceTree = ""; }; - 638D22B036121DEA40AC69DF1D69F969 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; - 639DCD59A293C7E3E947F9E703532426 /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; - 63B24C00CC5FBFF0104C5CEAF26E85CD /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; - 63E1E28392FDDDCD117772C8187B9AB9 /* UMErrorCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMErrorCodes.h; path = UMCore/UMErrorCodes.h; sourceTree = ""; }; - 63E3089E4F4C81A686B0D80B91BF6DAD /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; - 63F3B531A37B6FACABA0B0B734B5BFA6 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; + 637992891B88468DF034BC2F9D460507 /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; + 63A82734214174AAF5DC005C4FAE784A /* react-native-document-picker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.release.xcconfig"; sourceTree = ""; }; + 63BE788E504947243C67ABE47286B0AF /* React-cxxreact.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.release.xcconfig"; sourceTree = ""; }; + 63DE13455B1A7FFAE9F8870F41C1617F /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; + 63DFDD6752C2CE772D1C13A8ECB3FA57 /* RCTBlobPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobPlugins.mm; sourceTree = ""; }; + 63E4383CE61B6C235A35B97EDDBCC0E9 /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = ""; }; + 63EBB42C03C462BDF4AC06D7E7C3CD15 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 63F23866805B8C50212036B280BF56AF /* NSData+EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+EXFileSystem.m"; path = "EXFileSystem/NSData+EXFileSystem.m"; sourceTree = ""; }; 641EEB6AE520CB5BB940CEAADD086D36 /* FBString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBString.h; path = folly/FBString.h; sourceTree = ""; }; 6424BC64023B5537BE2560FBCBE4DD96 /* SlowFingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlowFingerprint.h; path = folly/detail/SlowFingerprint.h; sourceTree = ""; }; - 643FCEC46D4EE7588770B96F2A9FA4FA /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; 644BF86A5A22153F1948B3E238C190EB /* small_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = small_vector.h; path = folly/small_vector.h; sourceTree = ""; }; + 644FC86838357E190B06CFE6C58E28DB /* EXSessionResumableDownloadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionResumableDownloadTaskDelegate.h; sourceTree = ""; }; 64527AAA071B9A71DC7257F2B7125E06 /* GoogleUtilities.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.debug.xcconfig; sourceTree = ""; }; 646A1CBC824C63A541377B9DF5BC52A9 /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = src/webp/types.h; sourceTree = ""; }; - 64814E0BE194994C80E70506268CD379 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; - 6484F69458E0CC690F28F2D472F8BCC6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 64916A4D0599660624FEB23006CE054E /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; + 649809A30EFC2F2080AFC533AA062C9A /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; 64A0AA369F51C42EC83BC294952451DC /* ManualTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualTimekeeper.h; path = folly/futures/ManualTimekeeper.h; sourceTree = ""; }; - 64C4C29F3B314A8C3784A2022026B0E8 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; - 64E504ED3E430BD7B4CC63B2CE0D2632 /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; + 64BB163569A9DE0E7EE5AA910535ECEB /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; + 64D2B21C70A47AD869F2EB3D56E6AB02 /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; + 64D4DC98154B5D64F7D7D60191BB0944 /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; + 64DAB2059368352B6449ED3CFA077EBA /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; 64E9038FA03EF60BC9D81D7B541D1F9C /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; + 64F314119FA34086B0AF3EBAFD78C3B6 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; 64FC54E588C81F0206FFCDFC84ED4876 /* QueuedImmediateExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = QueuedImmediateExecutor.cpp; path = folly/executors/QueuedImmediateExecutor.cpp; sourceTree = ""; }; 6503BF5CAB4D44092D65DD55D1D5AFBF /* huffman_encode_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_encode_utils.c; path = src/utils/huffman_encode_utils.c; sourceTree = ""; }; - 650F439A1D0EBA6D5D8E2A5830DBF735 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFlipperKit.a; path = libFlipperKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6541A25970B3BA2CE271ABABDEBE1B81 /* UMConstantsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.debug.xcconfig; sourceTree = ""; }; + 65500049A3CBC85DC85FA8B86E2E5386 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; + 6556667409649CC169DC9C110B0EAA23 /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = ""; }; 6560D89E5F019D347BE59995EBC3D773 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; 656F308D44FCCB1D7F8E085107F579B9 /* FlipperKitLayoutPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitLayoutPlugin.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h; sourceTree = ""; }; + 6578137872E379411808800649EA49BB /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; + 657A92B3B871AEFD45AF9375E6A386F2 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; 6584FA2DE92D3128C08F07559EB1287B /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = ""; }; + 65934FC3E490AB23D33A06129B83283A /* BugsnagReactNative.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.release.xcconfig; sourceTree = ""; }; + 65970A1B28524528AE90831181C5EE9D /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFPSGraph.h; path = React/CoreModules/RCTFPSGraph.h; sourceTree = ""; }; 65A0193310483DD740AA94256A20CE10 /* FIRCLSMachO.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMachO.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSMachO.m; sourceTree = ""; }; + 65AB7EAD209C9E6FD6BD7349132A42DC /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; 65B0BB45DB99449B9171F3AE48FF2758 /* Pods-RocketChatRN.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-RocketChatRN.modulemap"; sourceTree = ""; }; 65B45623B367A33A6D869D24A0E2D50C /* lossless.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless.h; path = src/dsp/lossless.h; sourceTree = ""; }; - 65B7979E28360EBAF78D14F90E71835B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 65C716B737F4B5AA85697C6B64D367C5 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYoga.a; path = libYoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; 65DA01DE392D0405828B811CA8355444 /* iterator_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator_enc.c; path = src/enc/iterator_enc.c; sourceTree = ""; }; - 65E81EA296BD259AB8E0BEE3EF4529ED /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; 65FBA1C4282B51EF47E4157E496FE8AC /* IStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IStream.h; path = folly/gen/IStream.h; sourceTree = ""; }; 66146BC2B85C13724BB29EAF2A487421 /* Unistd.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unistd.cpp; path = folly/portability/Unistd.cpp; sourceTree = ""; }; 66207FEC17AA84822BD40161C945A5DF /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; + 6623DE17D51849D5F24CAE56CB5AB658 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; + 663A55CF92E9480D8EB76947EB9DB479 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; 66468B9D0AB50A722950310D7FE6362A /* EvictingCacheMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EvictingCacheMap.h; path = folly/container/EvictingCacheMap.h; sourceTree = ""; }; - 667EEE31AFE56D70450BB1D7C58C7104 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; + 6659E882A707ED3089A6B423BFE4B183 /* RNCSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaShadowView.h; path = ios/SafeAreaView/RNCSafeAreaShadowView.h; sourceTree = ""; }; + 668F4E7B77D3B0FEBF7B23A3CFB03DDC /* React-RCTNetwork.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.release.xcconfig"; sourceTree = ""; }; 6698DF7672302452D12E8F8FA339638B /* buffer_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer_compat.h; path = src/event2/buffer_compat.h; sourceTree = ""; }; 66A09F3485C29F843DC58CACF22BEF9A /* GDTCORTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORTransport.h; sourceTree = ""; }; - 66BB210CBCA5F4AD9251055C78E34EB5 /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = ""; }; - 66BB2F39CD1DCD4CC40D56389D590E60 /* EXAppleAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthentication.h; path = EXAppleAuthentication/EXAppleAuthentication.h; sourceTree = ""; }; + 66A2860468708F978E6D8A1D0D6B9752 /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; 66D1C4ADAF03A7DE74F168C5BE8AC730 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Private/GULNetworkURLSession.h; sourceTree = ""; }; 66E00D9CAD8231332D35C0AF09DB207B /* DuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DuplexConnection.h; path = rsocket/DuplexConnection.h; sourceTree = ""; }; 66E4D1E1119D3AC12000213C69C0FFFA /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; - 66F09C8328C84F2DD207A1CFFDAA9980 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; + 67219E0D7F63DEEE2310B244119D57BA /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; 673F4DBBDF1C81FFB1DA1723C5EEFE11 /* MicroLock.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MicroLock.cpp; path = folly/MicroLock.cpp; sourceTree = ""; }; 67410065864D62A7C742E81DB1DBBFE8 /* F14Mask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Mask.h; path = folly/container/detail/F14Mask.h; sourceTree = ""; }; + 67425D423806DF907689D84089B7E781 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; 67454D08E527E0C5FEA4713FFE27FC35 /* FlipperConnectionManagerImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionManagerImpl.h; path = xplat/Flipper/FlipperConnectionManagerImpl.h; sourceTree = ""; }; 675A19CF510927D4568AD9A2ACCD418E /* comp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = comp.h; path = ios/include/openssl/comp.h; sourceTree = ""; }; - 676B19D7ED4D3163C11EF01B7C520593 /* RCTDeviceInfo.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDeviceInfo.mm; sourceTree = ""; }; 676B5ACC53526E4544D90759A8CAE0FD /* evp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evp.h; path = ios/include/openssl/evp.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; }; 67812C16D924B895F732ED2284D34D02 /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/futures/Portability.h; sourceTree = ""; }; + 67883964F79EB90B5BB160385717F633 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; 67907C262A2A52DF0659F7BE875DD547 /* 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 = ""; }; + 6795FD5BBFBFBEBDCB00E4D12C74A582 /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; 679B79E15C566E210C77FCAE1DCD48E9 /* FIRCLSRecordHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordHost.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordHost.m; sourceTree = ""; }; - 67A4E867544E2A9BB3B241F404B585B6 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; - 67BAFEDB32FDB1D0AD1D217DCCF26CC1 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; + 67A03002EBFC6AC6C6B62A11A8A188FB /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; + 67B443B296C953FF7CE066E586870AEA /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; 67CA478259614A4937EB584786ABC46C /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; - 67CF0C6D3EDE363E59393AE8805F6799 /* RCTGIFImageDecoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTGIFImageDecoder.mm; sourceTree = ""; }; - 67D4209A48F82ADDA4F5818E3EEDB964 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; + 67D17B86D20BF654974C4FC7EB40228F /* RNVectorIcons.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.debug.xcconfig; sourceTree = ""; }; 67E1D52A1B984C74AE9E6358B01F89EA /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = ""; }; - 67F24297D4F0F4568C0BC1B3F31ADE0A /* RNCMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedView.h; path = ios/RNCMaskedView.h; sourceTree = ""; }; 680D589C929AB8AE78182C4FFB699CB3 /* GDTCORConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORConsoleLogger.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORConsoleLogger.h; sourceTree = ""; }; 6822142CA42C24338CDB6FC0A7BF44F4 /* YogaKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YogaKit-prefix.pch"; sourceTree = ""; }; - 6847486C0C662C309142F88C8089C6D9 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSettings.h; path = React/CoreModules/RCTDevSettings.h; sourceTree = ""; }; - 685846496BF0EC2906DA008F252304B0 /* EXSessionTaskDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionTaskDispatcher.h; sourceTree = ""; }; + 684B013994759A91445B33C4D064976A /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; 686CCD9DC1D719B18ABDFC8DDC09AFBC /* SysMembarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysMembarrier.cpp; path = folly/portability/SysMembarrier.cpp; sourceTree = ""; }; - 6875E6D2FF2B70DB6F431C32C18DD305 /* RCTLinkingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingManager.mm; sourceTree = ""; }; - 68886C5B6310D63496717C1D4DEF1461 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; - 688A4E56F54BF55026DB0D0255F0B696 /* rn-extensions-share.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.release.xcconfig"; sourceTree = ""; }; + 687AF7A5C2C866DD4C8607C40C22EC6B /* RNCAsyncStorage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.debug.xcconfig; sourceTree = ""; }; 68939E2A0F691ECC7F8A5209306F8DEB /* FIRCLSUserLogging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUserLogging.m; path = Crashlytics/Crashlytics/Components/FIRCLSUserLogging.m; sourceTree = ""; }; 6893EDCAE603C5E813325BBCC9611C93 /* rescaler_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_msa.c; path = src/dsp/rescaler_msa.c; sourceTree = ""; }; 689EC159E23AF54921177F5404497941 /* TypeList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeList.h; path = folly/detail/TypeList.h; sourceTree = ""; }; - 68A029C7434B3D942CDE455778F3D42B /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; 68A222D093EEEC26DF1E5D7E72398AF4 /* IPAddressV6.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV6.h; path = folly/IPAddressV6.h; sourceTree = ""; }; - 68B72C4765B9468FF5A33F4A8F148BC4 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; - 68B7A8740879F89A2CBFE41C610B990B /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; - 68BD45047DD94B81E29DA4BD4DC75835 /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; + 68B8869BA4FD8B650254062E2F75C239 /* RNNotificationCenterMulticast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterMulticast.h; path = RNNotifications/RNNotificationCenterMulticast.h; sourceTree = ""; }; + 68BCB8E2DFD66A5A7CD65A2DAA4A220C /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; 68C0DDE9A4670D9179C8082E21650545 /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = ""; }; - 68D2DE0F257E12E136653EFF88F8F703 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; 68E79F88A98BDBD2FADE64873E49BE5D /* AtomicUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtils.h; path = folly/synchronization/detail/AtomicUtils.h; sourceTree = ""; }; - 68FA058DF60DBB40B30C7B2C1285DB17 /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; - 69023791643DD50D7580B1673D35676B /* react-native-document-picker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.debug.xcconfig"; sourceTree = ""; }; - 690521DE836EB14D6423498D8CB39650 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; - 690A05F90832961D7FE749FC31F1FD13 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; + 68F4F003A610DB5785D8C11D6D45BD76 /* EXVideoThumbnailsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXVideoThumbnailsModule.h; path = EXVideoThumbnails/EXVideoThumbnailsModule.h; sourceTree = ""; }; 690A08653B7401F9C72683392FA52555 /* FlipperCppBridgingConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperCppBridgingConnection.mm; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingConnection.mm; sourceTree = ""; }; - 6911ED31F697A5D978DD5DAF749ECE5E /* RNReanimated.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.debug.xcconfig; sourceTree = ""; }; 691631C37566A58620754076CB66C925 /* MPMCPipeline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipeline.h; path = folly/MPMCPipeline.h; sourceTree = ""; }; - 6924862759A987052892CB24F5948797 /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; - 693DE983F60B78C8C8C81442F39063F1 /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = ""; }; + 691BC6D687CAE256809AFE66D8CD554A /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransportCCTSupport.a; path = libGoogleDataTransportCCTSupport.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 694EBAE41EA9114295A09D41E9CF41ED /* EXAV.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.debug.xcconfig; sourceTree = ""; }; + 69512F8050BEBBA05E7E5767FDF4B099 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; 6963509CAE81A67680672A2703FF91EE /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; + 696AD204CCEC68534F5D2FE82199681C /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; 6977B19F126A290B069B3FA1DC1647EB /* RSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocket.h; path = rsocket/RSocket.h; sourceTree = ""; }; 6979EAB50AB5EF48EE6BB5AF4D3DE794 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; - 697DCB539AA056E30D7638BC59EBB1F6 /* EXImageLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXImageLoader-dummy.m"; sourceTree = ""; }; 699BC2809B3DDEBBBFADA3006F967133 /* Request.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Request.cpp; path = folly/io/async/Request.cpp; sourceTree = ""; }; 69A1CCE7CB28F7C57F6EE1784B1137D6 /* UIImage+CropRotate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+CropRotate.m"; path = "Objective-C/TOCropViewController/Categories/UIImage+CropRotate.m"; sourceTree = ""; }; - 69C0A8F9E2B9388FCF54A5CB9B7F41B0 /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; - 69F1B083C96093F9C005C9C0F18BE5F6 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; - 6A1264192ECFA0EAF9524A1ABA3BD358 /* RCTAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppearance.h; path = React/CoreModules/RCTAppearance.h; sourceTree = ""; }; - 6A25E36E490CD83CB4BD70F0BEB9BC28 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; + 69BE147DBF1C89F7EB3F9F2F497D091B /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; + 69D1E21A94B6CD5E5F6603B43885AD34 /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = ""; }; + 69DB0287B6E73FEAB846D812AD410F88 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; + 69F6DD84D7EC2CD23AA2CEFADCB9D58B /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = ""; }; + 69F829D7381FF8CB71451C3064EC65D4 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; 6A3647195D9C0194FB49BD1B23F81D43 /* TimeoutQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutQueue.h; path = folly/TimeoutQueue.h; sourceTree = ""; }; + 6A38A72ACA4785783F35B1DE761C88C7 /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; + 6A60B45F53EC59523FD44D3AAC9F0997 /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6A9D056CE32C2E1AE2E69D81788AE3F1 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; 6AA4DCE0FB7F4E3F60CDFF65302A20F2 /* Frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Frame.h; path = rsocket/framing/Frame.h; sourceTree = ""; }; 6AA59F2DE9131CB33AEF6E9EF67053D3 /* Sockets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sockets.h; path = folly/portability/Sockets.h; sourceTree = ""; }; - 6AAD87784BDE217662E6BDCDE05C68A0 /* BugsnagReactNative.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.debug.xcconfig; sourceTree = ""; }; 6AB013FC1B5AB2DD8E10D5C020FA5901 /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/synchronization/MicroSpinLock.h; sourceTree = ""; }; - 6AB2AF92F3E60B500AA80BA127793DEE /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; + 6ABC573A6E7BEA31FA390BBF774C07C0 /* ReactNativeKeyboardTrackingView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardTrackingView.release.xcconfig; sourceTree = ""; }; + 6AC419DDB9DFB6EC1AFE3DC972AC5122 /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; + 6AD2F8F959C5D2B6619194B2EA6D6DCA /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; 6AD408EFC7F64F8C3C44E1170EF5DA88 /* WriteChainAsyncTransportWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WriteChainAsyncTransportWrapper.h; path = folly/io/async/WriteChainAsyncTransportWrapper.h; sourceTree = ""; }; - 6AEBC9B461B27869FC66D1A19270CB4F /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = ""; }; - 6AF7E1B8658037DF7DA7D129968BA1BD /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; + 6AD5BAECE3867B1CE886E5791A0F24BC /* RNCSafeAreaViewMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewMode.m; path = ios/SafeAreaView/RNCSafeAreaViewMode.m; sourceTree = ""; }; + 6ADAD52576EE9CBE6504D65A100308C1 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; + 6AEF4E8A7EA21150463BC8A9837C4490 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; 6AFA3931C37E8EB9C037136BF34979DD /* FirebaseCoreDiagnostics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreDiagnostics-dummy.m"; sourceTree = ""; }; 6B0492F3E49E319535E4B7E9439337EC /* ScheduledFrameTransport.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledFrameTransport.cpp; path = rsocket/framing/ScheduledFrameTransport.cpp; sourceTree = ""; }; + 6B0E8D13DA86F71A359F22C11CA4030A /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; 6B12E388B902855C75660E278B62861A /* fa.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fa.lproj; path = "Objective-C/TOCropViewController/Resources/fa.lproj"; sourceTree = ""; }; 6B229390E5DC7BAF77CF58F87A0D2C06 /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/futures/detail/Core.h; sourceTree = ""; }; - 6B3700E2F7D0859FBF8A84E8F3BE01FE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 6B45163D72B165020310A4D25B24CC83 /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; - 6B486A186239F52BD48F79798FE34685 /* UMSensorsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.release.xcconfig; sourceTree = ""; }; + 6B38E3760EB788B4CDF210C77E97DDB4 /* 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; }; + 6B3E2F40E27B6FA2B0B0CDE3696A9F5B /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; 6B518CB0CA3CA9F15B35BAD6C8FB816C /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = ""; }; 6B526E45A33E8AF5EBADDB002F415104 /* crashlytics.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crashlytics.nanopb.h; path = Crashlytics/Protogen/nanopb/crashlytics.nanopb.h; sourceTree = ""; }; - 6B55CD1F7C412AA7FC1492AEA4384D5A /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; 6B647D738484EA506391EF525673DCDD /* DefaultKeepAliveExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DefaultKeepAliveExecutor.h; path = folly/DefaultKeepAliveExecutor.h; sourceTree = ""; }; - 6B8121C01DC744F53803C1A78D33B123 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; + 6B714D211FC05323C8DA4F3D8B11F04E /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; + 6B746F94F26FC597741614A3D155D6D7 /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; + 6B7DDC3BF1CEB94EB0FC69ED3007F890 /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; + 6B84B6919E9D920E72D77CAD2EF33D7D /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; + 6B9C3D80ADBA84851DE880C9C2AB83DE /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; + 6BA032B99984987DC27A083C21D5F5B6 /* EXSessionUploadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionUploadTaskDelegate.h; sourceTree = ""; }; + 6BA80AF2106B7988E623EFAE7E9E025D /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; 6BB72509416C6A34E8A3D1D1A8BBF7B5 /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; - 6C0F1CC8E0B502D0C629574C64F369BD /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; + 6BDDE93DD97D9FE1EE2C556CB54E4541 /* ReactNativeKeyboardTrackingView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardTrackingView.debug.xcconfig; sourceTree = ""; }; + 6BE3B625A28B176A73741D463C29F3DC /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; 6C21AF31C080D37F901A28DFD46A3D44 /* FIRCLSInternalReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInternalReport.h; path = Crashlytics/Crashlytics/Models/FIRCLSInternalReport.h; sourceTree = ""; }; 6C3D74966BE9968B63D65A73DBD81872 /* rescaler.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler.c; path = src/dsp/rescaler.c; sourceTree = ""; }; 6C3E0E72AC613DA8EE2571E973759DF0 /* keyvalq_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = keyvalq_struct.h; path = src/event2/keyvalq_struct.h; sourceTree = ""; }; - 6C5965AA3E29FC898B32DF6B21D82EEA /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; - 6C5D1D2FF323DF4DA9C60F1177C5DF84 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; - 6C8862E12496E7697A9DF92FC7A5131B /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; - 6C8ABACD7054023050244A600466F01B /* RNFBApp.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBApp.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6C45D07153014333A7E477C92430F052 /* Yoga.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.debug.xcconfig; sourceTree = ""; }; + 6C4F0898E78E2ACB11DC727F6C23B13E /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; + 6C5EB1CBCB95CE8B9479AC3F3A4533AB /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; + 6CA294834D69149A9010595E516E44C0 /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libCocoaAsyncSocket.a; path = libCocoaAsyncSocket.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6CBF83DF453EF2EB5AB93915A907DDD4 /* 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; }; 6CC2419D1E848812600A0F87DE6BD33A /* SanitizeThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeThread.h; path = folly/synchronization/SanitizeThread.h; sourceTree = ""; }; - 6CC77545A49BFB3DE12C88A4FC1FD542 /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; - 6CD23DC17E5F3C34F1EAD553FC4B1368 /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = ""; }; - 6CD9D731B39517C220C0D4478A442157 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + 6CD30E882540FDD3A3001A9E8B85EA6C /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; + 6CE6C71E81A3421C2F847E1D1C738018 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; + 6CE844664CA0170C48CDBC7E930C17E9 /* RCTConvert+FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIRApp.m"; path = "ios/RNFBApp/RCTConvert+FIRApp.m"; sourceTree = ""; }; 6CED2FDB76AC597DE9F056575AD2CA75 /* FIRCLSReportManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportManager.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager.h; sourceTree = ""; }; - 6CEF81A5F611EF0476B2CFB2576845DD /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = ""; }; 6CFCE2524C07D4AFADBAB2128ED2AD96 /* pt.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pt.lproj; path = "Objective-C/TOCropViewController/Resources/pt.lproj"; sourceTree = ""; }; 6CFE7357F5C1283C60C5FAF87D994788 /* Try.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Try.h; path = folly/Try.h; sourceTree = ""; }; - 6D4154C92841AA06A2A4EDF702866E88 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; + 6D2A2285C66190A34C9DD22A59E572D3 /* React-RCTBlob.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.debug.xcconfig"; sourceTree = ""; }; + 6D2C8D60809267C828E6ED33ED82B5C3 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; 6D4FD5745F2681D91F4DA9723E1FCBCD /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = iOS/FlipperKit/FlipperResponder.h; sourceTree = ""; }; - 6D57017CE6DC5FED451665110F822998 /* RCTImageURLLoaderWithAttribution.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageURLLoaderWithAttribution.mm; sourceTree = ""; }; + 6D5269FCA0A7AC8479997C5A390F0694 /* EXImageLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXImageLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6D539052FEFA0E040B941DEED078A486 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; 6D6325B06D3F4C407137BDDC41768194 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; 6D64FF016044D6790C3FA09B272DA8ED /* SKResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKResponseInfo.m; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.m; sourceTree = ""; }; + 6D683DFA4ECEFBF658B0C0799839546F /* RNFBApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBApp.release.xcconfig; sourceTree = ""; }; + 6D68A81D97A3E938ED7D35F6C3F26021 /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; 6D74C79D7D5FB1B8BC786C37E060654E /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/chrono/Hardware.h; sourceTree = ""; }; + 6D772E4C6D376AC844BF09E74EE6FF6A /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; 6D888598C4E37A01FD6936829047571A /* AsyncUDPSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncUDPSocket.cpp; path = folly/io/async/AsyncUDPSocket.cpp; sourceTree = ""; }; - 6DA161D3357BDFE36F245A36964724A8 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; - 6DAAB122DF97957BCB44009CEEB1517B /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; + 6D98FF59BA6085025D931D020A9F2582 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; + 6DB1839D2FA81FC0A50ABC1FFAF00941 /* EXSessionTaskDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionTaskDispatcher.h; sourceTree = ""; }; 6DB896C552A03E2139C6ED00E08271B2 /* ParallelMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ParallelMap-inl.h"; path = "folly/gen/ParallelMap-inl.h"; sourceTree = ""; }; - 6DC73D7830AD0849F776EE7B654C78CF /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; - 6DDD234F1688A99CCF798FC92C3AA46D /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = ""; }; + 6DC346ABA1F9C996919CAC7ACA936F12 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; 6DDEC3E3D9689B59ABA5F1BA0DFFC7ED /* UIView+Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+Yoga.h"; path = "YogaKit/Source/UIView+Yoga.h"; sourceTree = ""; }; - 6DF59BCAE6579F8A1F4E41CD03719CE8 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; + 6E277FE9F831DE91835D6BCD502BBCC2 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; 6E2C28BAC624BFE10AB8DB4DF2E4028C /* FLEXNetworkObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXNetworkObserver.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkObserver.mm; sourceTree = ""; }; + 6E35D8FF6166A984B7EA7E038D1B0EBB /* RNCMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedView.m; path = ios/RNCMaskedView.m; sourceTree = ""; }; + 6E3B31F988C11F24A8A63514D5E4F17D /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; 6E421DAA365BF5CCD4D6F4AB0C800FDC /* vp8_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8_dec.c; path = src/dec/vp8_dec.c; sourceTree = ""; }; 6E6AC115DA6491F04B1889111179BA73 /* TOCropOverlayView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropOverlayView.m; path = "Objective-C/TOCropViewController/Views/TOCropOverlayView.m"; sourceTree = ""; }; - 6E6D72DCE2064D4DE30A6DE733B88CA7 /* Yoga.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.release.xcconfig; sourceTree = ""; }; - 6E7106C969A9FE906A20816086BFA5F8 /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; - 6EAFD5B087B08C5857B765EF3CBFB157 /* React-RCTActionSheet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.debug.xcconfig"; sourceTree = ""; }; - 6EB5007C5F60CA9B86B49F973FAE04CE /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; - 6EDC5E5307CBE6D8B85172A4F9D1FFE0 /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; + 6E762C4F6F2EC40C4D0F701194BEDF67 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; + 6E8E6FA764B270BAD55E35CB4CD25211 /* ReactNativeKeyboardInput.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardInput.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6EB29AA5041068095B78AC53CFE61C99 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; + 6EC6671FF0111A395C21368B8A86AD70 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; + 6ED1BDED00407B3ED4384D0E43E8B714 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; 6EDDB0BF77E0162298A4164C90A4F5EB /* Pods-RocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RocketChatRN-dummy.m"; sourceTree = ""; }; - 6EE0BD71B6916BCF37AA235175E69C71 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = ""; }; 6EE7E5858AD7914DDC0BB54E58ED2D5F /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; + 6EF1AF19E8C7DDB50175283B2589AD97 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; + 6EF2845ED692CD22426BA122C6EFB3A1 /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; 6EF2907FF2147B922F97217A86568FA3 /* SDWebImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.debug.xcconfig; sourceTree = ""; }; 6EF606464F999EB9141C654172E2A94D /* Subscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscriber.h; path = yarpl/flowable/Subscriber.h; sourceTree = ""; }; - 6F0A2A0EF0637CF3EFB74B0D6111D57D /* React-jsiexecutor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.debug.xcconfig"; sourceTree = ""; }; 6F1781D66E0FFA43653082042CFFA66E /* picture_csp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_csp_enc.c; path = src/enc/picture_csp_enc.c; sourceTree = ""; }; - 6F2D5A1453987538D549BAA26DB61701 /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; - 6F2DAE885442CD9229B8BC34D91D8704 /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = ""; }; - 6F3043826A89226A7366045E082D9584 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; - 6F316D102DA9DE8CDCD08BBACE4B96D7 /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; - 6F4E4022F9A5F03E58A5199AAD4127FE /* UMPermissionsMethodsDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsMethodsDelegate.h; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.h; sourceTree = ""; }; - 6F5405D459EA4CFE33A1E7CAE2888DDD /* EXAppleAuthenticationButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationButton.h; path = EXAppleAuthentication/EXAppleAuthenticationButton.h; sourceTree = ""; }; - 6F60E8EDD3EB7670E8EB79D56340F729 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; + 6F31F3905848F213112403D0CDBFB144 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; + 6F5223EA2733B17B4B781245325BDA74 /* RNCSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaShadowView.m; path = ios/SafeAreaView/RNCSafeAreaShadowView.m; sourceTree = ""; }; + 6F5AB2E32FAAE43B89B91433D65C1FAF /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; + 6F5B8FEFE396F23EAE59B676C2241DB9 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; + 6F75B35840330DD2E84036FF5DB3CACD /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; 6F77753336444E4AC189FD4160700BC6 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/RWSpinLock.h; sourceTree = ""; }; 6F7873528F20DDEC6A598526BF8A9644 /* SKViewControllerDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKViewControllerDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewControllerDescriptor.h; sourceTree = ""; }; - 6F7B6C5BED3609A2F34807DDE18A1C0A /* EXVideoThumbnails.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXVideoThumbnails.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6F84567AE78063F266547B4E7899B9E8 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; - 6FBEC4976656CAEE8736A5F613B18132 /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; + 6FB567481E28AE196674B742CDD8B9B5 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; 6FCF4BC58F130323783236A7C388C6F9 /* Peertalk.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Peertalk.h; path = peertalk/Peertalk.h; sourceTree = ""; }; - 6FD647A9C8CE45C38C48A0A02B147669 /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; + 6FED99D0314F2E53FDBB47D873DFF6A7 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; 6FF07E88F4A437F6D725E5CE17A04335 /* FIRCLSReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReport.m; path = Crashlytics/Crashlytics/Models/FIRCLSReport.m; sourceTree = ""; }; - 6FF883FD05920DC5D11E10AF337F704F /* UMCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.release.xcconfig; sourceTree = ""; }; + 6FF4287B9CA2CD7F333D68798C9D4CC5 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6FFD9C0D2CBFC574BF52BAF79B127E77 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 6FFEC21B364EFE37FB6B36AEED77E5E7 /* stop_watch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stop_watch.h; path = folly/stop_watch.h; sourceTree = ""; }; 700FB860CEDDA46DEA68FA1BB107667B /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/Bits.h; sourceTree = ""; }; - 70121B130EBD45D3CF9B351466EEB35A /* React-jsinspector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.release.xcconfig"; sourceTree = ""; }; 7019BE6F2D6A11B8C865FE227BF87C7A /* FIRCLSDataParsing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDataParsing.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDataParsing.h; sourceTree = ""; }; - 7028FB50E7C540E83D2A4CF7D6996F02 /* EXVideoThumbnails-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXVideoThumbnails-prefix.pch"; sourceTree = ""; }; - 702F2E714218881514A976B01F2C42CB /* UMFontInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.release.xcconfig; sourceTree = ""; }; + 70256AF4307BF1AADCF0BE16ADB70616 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7030667900E390F7CFB4B17B744BF434 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; 704BBF23795634168F8266D91AB85611 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; 705564DD4011FC335EDCA6F71E6241B2 /* Flowable_FromObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowable_FromObservable.h; path = yarpl/flowable/Flowable_FromObservable.h; sourceTree = ""; }; 7056581678F8F0B048C4B1DEF111B18B /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; + 706A33141C8A982055ADD86AD090CF94 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; 708AFF192F423A1B7B67047FAC16FECA /* it.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = it.lproj; path = "Objective-C/TOCropViewController/Resources/it.lproj"; sourceTree = ""; }; - 7090AC5C80B9FEB27EDB0F07FA244F1F /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; 7096A5AD801F63DB158C959977ECC850 /* RangeCommon.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RangeCommon.cpp; path = folly/detail/RangeCommon.cpp; sourceTree = ""; }; - 70A13EB69CA9BDD874681BA6977F2382 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; - 70A7AA0CF634AA09014F3FB65CB56925 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; 70A94B572FCAA0767312D88D681D5140 /* FIRCLSReportUploader_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportUploader_Private.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader_Private.h; sourceTree = ""; }; 70C09E89833B9AC146FDEB22A99D3C0B /* ScheduledFrameProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledFrameProcessor.h; path = rsocket/framing/ScheduledFrameProcessor.h; sourceTree = ""; }; - 70C69A5DB7AC59F60F22F98605C4CFCE /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; - 70E5A3AC1066B716AF5B48AE28779BCE /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; - 711E72102910619FB4A37824DCBDF47C /* EXKeepAwake.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXKeepAwake.h; path = EXKeepAwake/EXKeepAwake.h; sourceTree = ""; }; - 7122D208E7CBDA56D7F285485D4C36DD /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; - 7143CB555F71FD2DB2213865598BCDA9 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; - 7146855BE313403C5ED9FEC079FF52B1 /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; - 7150100752089D9774B67052D2CEF1A0 /* RCTAnimationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAnimationPlugins.mm; sourceTree = ""; }; - 715AB6366FF7ADDEF6ED8B5C95C95B57 /* RCTImageURLLoaderWithAttribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoaderWithAttribution.h; path = Libraries/Image/RCTImageURLLoaderWithAttribution.h; sourceTree = ""; }; - 716F3C697AD5F3B1BB43E1C1669F2F47 /* RNCAsyncStorage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCAsyncStorage-dummy.m"; sourceTree = ""; }; - 721327DA84E79E7B7C72A0CBF1687A80 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; + 710992E8F69D60BFE88E365BBC455E10 /* RNFBVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBVersion.m; path = ios/RNFBApp/RNFBVersion.m; sourceTree = ""; }; + 71157C05BECA87687AFE8D501C5ADF97 /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; + 71235E00DAD096AE8A107B377E20AEBA /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; + 71479BE2B9D276F9C4D000D97DECA76B /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; + 714B2429B32C0084EE361B57F2300C67 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; + 717BD5D22EAAEDCCFBD56C98A64442CB /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; + 7193DD8F996D5092A94E118B8BB844F4 /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; + 71B875BCA1E7C46307B9EA1C89051FD2 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = ""; }; + 71C9B3F1A61FDA5280AD8F8D590484B3 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; + 71D9B4C6AB6A39AF8B56EBD72B0576BF /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; + 7214DC633B7FA5A29CACCF6CA3B0E00E /* EXAppleAuthentication.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppleAuthentication.debug.xcconfig; sourceTree = ""; }; 721E3B70A59F43610A3B08F5BBAD67F0 /* GlobalThreadPoolList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalThreadPoolList.h; path = folly/executors/GlobalThreadPoolList.h; sourceTree = ""; }; - 721ECE4F55125F8D2B06F7E50B19A1AF /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; 724B6C59DF738F60B3A62804F455FAA3 /* id.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = id.lproj; path = "Objective-C/TOCropViewController/Resources/id.lproj"; sourceTree = ""; }; 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXLocalAuthentication.a; path = libEXLocalAuthentication.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 7255CFBD32F15F95EA3846EDAFAAF751 /* RCTView+SafeAreaCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTView+SafeAreaCompat.m"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.m"; sourceTree = ""; }; 7269CE50AA8F2D9C7F33924BE9B7FB25 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; + 726CBA205A1B09241B259A246F18F45A /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; 727496056E0A61F5E5D8352EE8DBFF08 /* lossless_enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse41.c; path = src/dsp/lossless_enc_sse41.c; sourceTree = ""; }; + 7275174D80B124CE2B3009C59E8892EB /* EXAppleAuthenticationRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationRequest.h; path = EXAppleAuthentication/EXAppleAuthenticationRequest.h; sourceTree = ""; }; 72865931433A9294C64A0C359F16EEDA /* FIRCLSNetworkClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkClient.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSNetworkClient.m; sourceTree = ""; }; 72896DB3773021CBCAA4BA8556F85EF5 /* TupleOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TupleOps.h; path = folly/experimental/TupleOps.h; sourceTree = ""; }; - 72A4F4396A35DB25A19C21260B0D44FD /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; 72B53398F7799CF7AF271D3990F6A469 /* FIRCLSBinaryImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSBinaryImage.m; path = Crashlytics/Crashlytics/Components/FIRCLSBinaryImage.m; sourceTree = ""; }; 72BA6DE823ED11B26089A421120411D3 /* fa-IR.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "fa-IR.lproj"; path = "Objective-C/TOCropViewController/Resources/fa-IR.lproj"; sourceTree = ""; }; - 72CBA7B24624855860A01DFDCC6C723C /* EXVideoThumbnailsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXVideoThumbnailsModule.h; path = EXVideoThumbnails/EXVideoThumbnailsModule.h; sourceTree = ""; }; 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDateTimePicker.a; path = libRNDateTimePicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; 72E23120C5376BC53C0D6BAF02093D4E /* Cursor-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Cursor-inl.h"; path = "folly/io/Cursor-inl.h"; sourceTree = ""; }; 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 72FBE81319107DAD3733527ACB227DC5 /* ReactNativeKeyboardInput-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardInput-prefix.pch"; sourceTree = ""; }; + 72EF23FCDCCEFAF756C6C89FB6C55051 /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = ""; }; + 72F56F33BFE2BCC4CF4DE02128789CD9 /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; 73008C4FEF35C2623752AB0C56896EB9 /* Folly.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Folly.release.xcconfig; sourceTree = ""; }; - 7308D34C6AF817F460B36C2863BB7E1D /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; - 730AB123B6CD2630D5F088205F830F04 /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; 734A2DE6B8E3195A0323DD08113E3DAD /* Dirent.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Dirent.cpp; path = folly/portability/Dirent.cpp; sourceTree = ""; }; - 7351C181A122A049B7118B464F58456E /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; - 7355C9B67071D1CB24238556FE279002 /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; 7367E117C3129F71C0939722532DEACE /* SysStat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysStat.h; path = folly/portability/SysStat.h; sourceTree = ""; }; - 736943130C43F57CEFBCEB0556C7E82B /* RCTSettingsPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsPlugins.h; path = Libraries/Settings/RCTSettingsPlugins.h; sourceTree = ""; }; - 73982524566A50B6384946B2530C2512 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; + 739165E5A629E500D4E4DFFCB02D4A87 /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; 73C1601CE7937FE02A790EB41B8D37E2 /* SanitizeThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SanitizeThread.cpp; path = folly/synchronization/SanitizeThread.cpp; sourceTree = ""; }; 73CC56853E37F8D86F73D226BBF790D8 /* FIRCLSContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSContext.h; path = Crashlytics/Crashlytics/Components/FIRCLSContext.h; sourceTree = ""; }; - 73D6BC1DD7224F079A9E99183D7D8C34 /* EXLocalAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocalAuthentication.m; path = EXLocalAuthentication/EXLocalAuthentication.m; sourceTree = ""; }; + 73DBA0BB33214909632B6FDCE0B4377E /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; 73DE71682AC1FBA16DABF9CE6620D83C /* ThreadedRepeatingFunctionRunner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedRepeatingFunctionRunner.h; path = folly/experimental/ThreadedRepeatingFunctionRunner.h; sourceTree = ""; }; 73E1A8F62B8927BFFF24DDF6DD940F53 /* FlipperCppWrapperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppWrapperPlugin.h; path = iOS/FlipperKit/CppBridge/FlipperCppWrapperPlugin.h; sourceTree = ""; }; 73E8F2E1EBF1D2B5F90C1BA225EF2460 /* DistributedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutex.h; path = folly/synchronization/DistributedMutex.h; sourceTree = ""; }; 73F59B44EA98C28F2BEA10791E153953 /* FIRCLSSettingsOnboardingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSettingsOnboardingManager.m; path = Crashlytics/Crashlytics/Settings/FIRCLSSettingsOnboardingManager.m; sourceTree = ""; }; 7401666CD03D7A880620212139E453DB /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; 7410F2A1ED7C7B68D0E68EF4F3F94F89 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; - 741DA7B4648C7D20B1C86F960E6350AC /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; + 7417532204152691D7B83E14E9FD3E9C /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; + 7430D5E2504529B94051ED26BED1D257 /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = ""; }; + 743836857F32F8AB1DDAE440AFBE4F64 /* EXPermissions.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.release.xcconfig; sourceTree = ""; }; 74456F55B8E8CF1F872EDB3F968C9962 /* FIRCLSHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSHandler.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSHandler.h; sourceTree = ""; }; - 744BA262E9E8A85813C1DDE1DC59612B /* UMAppLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMAppLoader-dummy.m"; sourceTree = ""; }; - 745454FCA2F5FFD4F63F8780BEF4C6FD /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; - 7465EF4745AEA5201AC98AD425335674 /* react-native-notifications.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.debug.xcconfig"; sourceTree = ""; }; + 74490C729085514EE14CDAB2559E4FD8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 746944364A66327D70B75084D5BF6987 /* Unit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unit.h; path = folly/Unit.h; sourceTree = ""; }; + 746DFB85150363B465CDEA82C3B8A554 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXAV/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; + 7492D25E2059352EE7754C9C74AD3718 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; 74956CEE21DDBFE8376A86DC8FF7879A /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/detail/IPAddress.h; sourceTree = ""; }; - 74A969158B582707C7077C19C4D34DA8 /* EXPermissions.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.debug.xcconfig; sourceTree = ""; }; + 749944A65AD1C604ECBB76249C77FFC2 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; 74AB9F0D12C65D3D5887677C3B984BE2 /* AsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocket.h; path = folly/io/async/AsyncSocket.h; sourceTree = ""; }; - 74B9B3FD914CF346478602A5F5DA6E76 /* EXAppleAuthenticationMappings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationMappings.h; path = EXAppleAuthentication/EXAppleAuthenticationMappings.h; sourceTree = ""; }; - 74D9DA584C674BBCE6CF4D110D3282B5 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; + 74AE01A5E95738B5A672C5BD0D6D891A /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; + 74B566E4835051BB89760C27EBF275C1 /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; 74E3E34702FFA1318BAAC42F8C32B15E /* RangeCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeCommon.h; path = folly/detail/RangeCommon.h; sourceTree = ""; }; - 74EA5D0C3FEEEB8B6B40DDE3DC2CE46B /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; 74ED8D5FAB33729D1722F2643DE6F9BF /* histogram_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_enc.h; path = src/enc/histogram_enc.h; sourceTree = ""; }; 74ED928C2460B4D9620EB201B2A1256F /* FIRInstallationsIDController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIDController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m; sourceTree = ""; }; + 74FA8FA0FD8156A52615CEF09632EE7E /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; 74FE0A6812B600DE9F54562F0F69D2DE /* Pods-ShareRocketChatRN-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ShareRocketChatRN-umbrella.h"; sourceTree = ""; }; - 74FEFD87D477DF451E6D724E3400FB8D /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; - 75034DF620B40951906965C9E730EA7E /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; 750C56621A7C7B8252FFBCE0198514FC /* SocketFastOpen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFastOpen.h; path = folly/detail/SocketFastOpen.h; sourceTree = ""; }; 75141A72227561A2160245645B10FB64 /* SKViewDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKViewDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewDescriptor.mm; sourceTree = ""; }; - 7517F6785EAF523E0B35CF8D35F9506D /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; 7534A3833A1B734D5A8DB97D4DDF778C /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; - 7543B089861D93B3849F41A8E88DABA4 /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; - 754D5140B8345DD611E51A98DBCAFDC1 /* RCTSourceCode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSourceCode.mm; sourceTree = ""; }; - 755527DE84ABFB721EB0C04171F825B4 /* React-RCTNetwork.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.release.xcconfig"; sourceTree = ""; }; - 755824F8DDF2D469C459E8C9C7CB897C /* EXSessionTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionTaskDelegate.m; sourceTree = ""; }; - 75706C5E4F6CE9461F99121825D7D8BD /* RNCSafeAreaProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProvider.m; path = ios/SafeAreaView/RNCSafeAreaProvider.m; sourceTree = ""; }; + 754892148A018AB9BDD8F209565D32B7 /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; + 754DF975C536E7E3964E4A1DD637028D /* React-RCTVibration.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.release.xcconfig"; sourceTree = ""; }; + 75635BC3081A2EAC856C6B52E8753002 /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = ""; }; 7571DC76DC3EADDE963E586E138F8C14 /* FKUserDefaultsPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKUserDefaultsPlugin.h; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h; sourceTree = ""; }; 75733073D5EA416ED33FE1CA0E4600C0 /* SocketFastOpen.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SocketFastOpen.cpp; path = folly/detail/SocketFastOpen.cpp; sourceTree = ""; }; 75749D3761C0944C6655DEAEE9A38CA3 /* NetworkSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetworkSocket.h; path = folly/net/NetworkSocket.h; sourceTree = ""; }; 7574F9D8294F4241EBF6F1709817A202 /* FIRStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStackFrame.h; path = Crashlytics/Crashlytics/Public/FIRStackFrame.h; sourceTree = ""; }; + 75953248769057ABA47226B484D7D8B5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 7598CA288C53C7B3D212231FEFEA0D8C /* AsyncUDPServerSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncUDPServerSocket.h; path = folly/io/async/AsyncUDPServerSocket.h; sourceTree = ""; }; + 75AAB43C51B7531BA82FDFF4DB11D5A7 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; 75ACCD2CBCC34AD5D7935BC14CC92D59 /* FIRCLSURLSessionTask_PrivateMethods.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionTask_PrivateMethods.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionTask_PrivateMethods.h; sourceTree = ""; }; - 75C7AEC5335DB8BDFB34CB88C5498906 /* RCTTVNavigationEventEmitter.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTVNavigationEventEmitter.mm; sourceTree = ""; }; + 75C258D31AF8B779ECFAF362BF576F9D /* UMSensorsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.debug.xcconfig; sourceTree = ""; }; 75CBC4556E468DC2DE1975958B072823 /* FIRCLSHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSHost.h; path = Crashlytics/Crashlytics/Components/FIRCLSHost.h; sourceTree = ""; }; - 75E83D4C0AB95E87395D9FCB968D6D2B /* RNLocalize.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.release.xcconfig; sourceTree = ""; }; + 75DA2030752E2A3166024CD23FB8778D /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; 75EC9DD95652E29C13E312C8FE13F59B /* FIRCLSDownloadAndSaveSettingsOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDownloadAndSaveSettingsOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSDownloadAndSaveSettingsOperation.h; sourceTree = ""; }; - 75FC24EF233E089CBF441BC19974A593 /* RNDateTimePicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.release.xcconfig; sourceTree = ""; }; - 761585823AE2D9E8A5545EEAA132C969 /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = ""; }; - 76181D3BEF9681839092B950ABBDB66E /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; - 761A9192EE9B0F232544C13FF99AFEB7 /* RNFBAnalytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBAnalytics.debug.xcconfig; sourceTree = ""; }; + 75FB3FEFE478D2DD23AB936C020D3D37 /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; + 7628631F91838F3AF268C253391DCA15 /* React-RCTImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.debug.xcconfig"; sourceTree = ""; }; + 7672D5C1927628EE8AEDC9FFE0CC19A4 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; + 767C0956A29AA9D780CE509E60F2B123 /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; 768CAB59778442A4DA8E25D0593BBDBD /* RSocketServiceHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServiceHandler.h; path = rsocket/RSocketServiceHandler.h; sourceTree = ""; }; + 768F6F62CB936FAA24AE5AB7C76977F0 /* UMReactNativeAdapter.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.release.xcconfig; sourceTree = ""; }; 76926F98786B77F7D303AA80C16FA6DA /* quant_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_dec.c; path = src/dec/quant_dec.c; sourceTree = ""; }; - 76927A9671ED42E8E5FA92BDBE1F9201 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = ""; }; - 76981AACEB548E5E3DC1D3FA48FB609C /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; + 7697E9F6CDD33F2DE63224CF17384CE9 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; 769A4A6E65154C0E727C70917308E1D3 /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = ""; }; - 76B12C7156A4F7E42D6CA1AA82F60A99 /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; - 76B4D4AB293F0F729AF0BF42FA05EFCB /* 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; }; - 76BD5F3010C6D566E7736D8675B652FC /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; + 76C04F11A22CAE055841837DB49E8F84 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 76C8411FD4ADAEE39D1AB0D8BB5F5FC7 /* FirebaseCrashlytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCrashlytics-dummy.m"; sourceTree = ""; }; - 76D29060929ABEDA73D38B62C2FFAD56 /* UMPermissionsMethodsDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMPermissionsMethodsDelegate.m; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.m; sourceTree = ""; }; - 76D3601422F801D87E899BC4A61F16DD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 77005B4B7CCC89A73D1CAFD488100EA6 /* ARTShadow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShadow.h; path = ios/ARTShadow.h; sourceTree = ""; }; + 76EF30C29804FE3F28BB88D88F79DCB0 /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; + 76F2FB44DBE396A442A93CFBFC40D499 /* RCTNetworkPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkPlugins.mm; sourceTree = ""; }; + 76F3FCB4AC4D424502F6BE8204720EB0 /* ARTShadow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShadow.h; path = ios/ARTShadow.h; sourceTree = ""; }; 770BD55F996E7ED0809CFBD4C6986E9A /* FlipperDiagnosticsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperDiagnosticsViewController.m; path = iOS/FlipperKit/FlipperDiagnosticsViewController.m; sourceTree = ""; }; - 77240A36A56CFDF251E289D65885DA50 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; + 771B6878D37E14371F603D5D07EC7C2B /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; + 77238246202367125DCDCD3F148C31AA /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; 77254540357DA2C913AA45CCE9A2BD0B /* EDFThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EDFThreadPoolExecutor.cpp; path = folly/executors/EDFThreadPoolExecutor.cpp; sourceTree = ""; }; - 77299313933A9BFA169A53D74BB1FD85 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; + 7744928A225A1D5EADF8DAE03D63899E /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; + 774CB4064061E5F7444F4B5EFA6FF820 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; 775396E824CF5E8ED5F464D8F04A3E06 /* TurnSequencer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurnSequencer.h; path = folly/detail/TurnSequencer.h; sourceTree = ""; }; 77539BAF3378CB0CB768CE455C43DD77 /* alpha_processing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing.c; path = src/dsp/alpha_processing.c; sourceTree = ""; }; + 77589846054FA623814102D675283B71 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; 775E2770F29CF6245807247E73AB38DD /* enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc.c; path = src/dsp/enc.c; sourceTree = ""; }; + 779A1C066D57206871E683BEEA4ED27A /* React-RCTImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.release.xcconfig"; sourceTree = ""; }; + 77A03CE1066CA7A89FDDDCC38366ED05 /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; 77A904B96DACD5E072ED19615AEFAB99 /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; - 77B9A05CFE5541F8C23026310A33F4BB /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; + 77AAAF467AE8B022E1E214013CCF98A2 /* React-RCTNetwork.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.debug.xcconfig"; sourceTree = ""; }; 77C198ECF5F510D2D53AF4ED6848A0DB /* GDTCORRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORRegistrar.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m; sourceTree = ""; }; 77C20593398B018F5C8B223BE3D6F04B /* SoftRealTimeExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SoftRealTimeExecutor.h; path = folly/executors/SoftRealTimeExecutor.h; sourceTree = ""; }; - 77E599B73A807CC9CE2D7D9A1F26BC1E /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; + 77EE2C8977116B1CF19D408F12C3FAFD /* UMAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLoaderInterface.h; sourceTree = ""; }; + 77F65EED22B827AFC5DFF6ACB681E47A /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; 780DB45C12E1B7F353696376BF2B9F48 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; 780DF7BABF2B47C5F982597B84C6D74F /* engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = engine.h; path = ios/include/openssl/engine.h; sourceTree = ""; }; 784BBF5C16CE8FDAB9C0F87EF45D664C /* FireForgetThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FireForgetThroughputTcp.cpp; path = rsocket/benchmarks/FireForgetThroughputTcp.cpp; sourceTree = ""; }; @@ -8256,1241 +8329,1259 @@ 7852BC13A2C87EB310181FD6FA0A09B1 /* EventBaseManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseManager.cpp; path = folly/io/async/EventBaseManager.cpp; sourceTree = ""; }; 7862C607B7BE0510C2D65193F9B4B4F9 /* libTOCropViewController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libTOCropViewController.a; path = libTOCropViewController.a; sourceTree = BUILT_PRODUCTS_DIR; }; 787483F19EE493FB9AF69379471E39CA /* dec_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_msa.c; path = src/dsp/dec_msa.c; sourceTree = ""; }; + 787528DF45CEFBF1252EA8738E3B71EE /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; + 7886B447A8F534B0C5D66064BB93E262 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; 788D69C3D4D90C9585C5E21A41D29284 /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; 78A376D29FCC01585E352B355886B7C9 /* AsyncTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTrace.h; path = folly/detail/AsyncTrace.h; sourceTree = ""; }; - 78AFA083E8B7DDE95CE123E50480292F /* UMModuleRegistryHolderReactModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryHolderReactModule.h; sourceTree = ""; }; - 78C7D70E7D8DD39EBCE005E4522082A8 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; 790CB223A0B5FF2BDC995C6AFE1649D8 /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FIROptions.h; sourceTree = ""; }; + 792F207CC13460738EEC66C16F646437 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; 793D49457BE2881351EC89F3919BBD2A /* InlineFunctionRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineFunctionRef.h; path = folly/synchronization/detail/InlineFunctionRef.h; sourceTree = ""; }; 7944D3F7795268BBDC2804BDF5D596C0 /* AsyncSignalHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSignalHandler.h; path = folly/io/async/AsyncSignalHandler.h; sourceTree = ""; }; - 7962B97C0094DF949B3502BDFB8165E5 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; + 794C3ECDE8D6E9B7864EFE85EAC61DAB /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; + 7963576B0C09EBB4B8472DB1FEFC462C /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; 796DCC3C80C4634FEBB9CA67B00A2D97 /* md5.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md5.h; path = ios/include/openssl/md5.h; sourceTree = ""; }; - 79773EA522BCA7FDA74A1232B1F5FB93 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; 798AA279081C1310DB4584F20A272A44 /* EventBaseLocal.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseLocal.cpp; path = folly/io/async/EventBaseLocal.cpp; sourceTree = ""; }; - 7994C9E8A864479BCE554404D286DADB /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 79957C9CDBF18E658BF88BD2F1A219E5 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; 7996A516BDEA5A473B01E01C60967ABC /* rc2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rc2.h; path = ios/include/openssl/rc2.h; sourceTree = ""; }; - 79ADCA71264049B708A4E913F657D0F6 /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 79BA45E2CE6C54BB062562572C3FA8C5 /* Flipper-DoubleConversion.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-DoubleConversion.release.xcconfig"; sourceTree = ""; }; 79BB325B4E0106D2B45FEBD780E43154 /* BaselinesAsyncSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BaselinesAsyncSocket.cpp; path = rsocket/benchmarks/BaselinesAsyncSocket.cpp; sourceTree = ""; }; - 79C28EBA0AB9D0E1E1E197DCBAE7591B /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; 79C2A6D6CB90249B8095C5C87E1BFB99 /* GDTCORPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPrioritizer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORPrioritizer.h; sourceTree = ""; }; - 79FBF28A28386300D385A211F73C9F9B /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; + 79CD570BD4BA96051EABBB9BDD906C4C /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; + 79D97CB9F7F1AA3F40B0E4514F18A9CD /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; + 79F394934F8B412E7CD37367820C088E /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; 7A01DA722C61FB4D44F6A702AC8CF078 /* ColdResumeHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdResumeHandler.cpp; path = rsocket/ColdResumeHandler.cpp; sourceTree = ""; }; 7A0D01A52360768FC6897EAB467A0854 /* ConsumerBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConsumerBase.h; path = rsocket/statemachine/ConsumerBase.h; sourceTree = ""; }; - 7A18EAC16952FC4052FA013FDD0AFCB0 /* React-RCTSettings.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.debug.xcconfig"; sourceTree = ""; }; - 7A4BED0978ADAF16D77D8108D65F8D54 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 7A7D68D15B0243DFA258DB1E62CDA5F4 /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; - 7A84CFA91626CB3C0D1F92AEBC9536A6 /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; + 7A10583685B73F98D9A09C95EF89DBF8 /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; + 7A184EC5672DB3B74B18D0B4883781A3 /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; + 7A2CB50F4226EB5EE8CEB3FD2CADC73A /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; + 7A53029F5935263F4D29FF1DD051F618 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; + 7A5530412E3FA9F84FA25D1628F52DC6 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; 7A8AEE0060E2C094AB213EBCBB4CDD08 /* Random-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Random-inl.h"; path = "folly/Random-inl.h"; sourceTree = ""; }; + 7A965C0B320EEDF0EC441150E7F6EC65 /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = ""; }; + 7A979BF7BF56746A069E2BC3516257E7 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = apple/RNCWKProcessPoolManager.m; sourceTree = ""; }; 7A9804B97B8351E855D0B9D9A3AB5984 /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; - 7AAB326CC1D6EC158A737333A7A24CB1 /* RCTActionSheetManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTActionSheetManager.mm; sourceTree = ""; }; 7AC5655BB51653C598033E2A13B6FB81 /* des_old.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = des_old.h; path = ios/include/openssl/des_old.h; sourceTree = ""; }; - 7ADA317B19594AE3218117A8705CDE40 /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; - 7AE384BD8CC030B3564768A94B678F46 /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; - 7AE77E1DCDC659303A03C783F929EA4F /* RCTDisplayWeakRefreshable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayWeakRefreshable.m; sourceTree = ""; }; - 7B17532E2B223E59F45E9A8FB9ECBAB0 /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; + 7AD0ED0C5E099A5E73F58873B13820DC /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 7AD7C0CFB168B13813F11A44EFFA68E1 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; 7B27C6BDDC13749A902CB74CC9BDC2AD /* TOCroppedImageAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCroppedImageAttributes.h; path = "Objective-C/TOCropViewController/Models/TOCroppedImageAttributes.h"; sourceTree = ""; }; + 7B619E995571D38B8DE3E9A0CA6F6E7C /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; 7B699A18AB09508A5C68AA1C194848B6 /* yuv_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse2.c; path = src/dsp/yuv_sse2.c; sourceTree = ""; }; + 7B879908DE7E002B65D24820FCA916E2 /* RCTVibration.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibration.mm; sourceTree = ""; }; 7B8BF26A318B7AE0BCEC7BEFB19ECE88 /* firebasecore.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = firebasecore.nanopb.c; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c; sourceTree = ""; }; + 7B92EEF6CBE58791AF9976F1C4C999F6 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; 7B9E2D0EC4BB701F7942BC20D5A61FED /* KeepaliveTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = KeepaliveTimer.cpp; path = rsocket/internal/KeepaliveTimer.cpp; sourceTree = ""; }; - 7BD0ED98734525242432A759D5F27FBF /* RNFBApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBApp.release.xcconfig; sourceTree = ""; }; + 7BA696F8AE94237988922476FCE0272A /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; + 7BAD8B4225215297B30BF455AB6179E4 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; + 7BC78FC76B9EEACD75A3FCA6393FB96C /* React-CoreModules.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.release.xcconfig"; sourceTree = ""; }; + 7BDA990D769C1F9652C22C9B51D071AF /* 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; }; 7BF8ABE2C9DBFE33CBFCA97361836DF0 /* SDWebImageTransitionInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransitionInternal.h; path = SDWebImage/Private/SDWebImageTransitionInternal.h; sourceTree = ""; }; - 7BFBAD1CC0AA23AFCC75E44DC37F8A37 /* UMConstantsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.release.xcconfig; sourceTree = ""; }; 7C20EB0B39CA362AB7A0DAD5602D348E /* FIRCLSDwarfExpressionMachine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfExpressionMachine.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfExpressionMachine.h; sourceTree = ""; }; - 7C2DFF1664EC73C434EA2C5FC8700E3E /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; 7C32E1F6881FD663F56C65A9C447722C /* FIRInstallationsItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsItem.h; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.h; sourceTree = ""; }; 7C339D4A98D2F464FB744C8311B8930F /* Subprocess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subprocess.h; path = folly/Subprocess.h; sourceTree = ""; }; - 7C39690C18200C48305B76C89E2EDE45 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; - 7C4EEE048BD1ECA1022F5D1E73D37B99 /* 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; }; - 7C5A75DBEBA07D1D329053979A1E1F7D /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; 7C671A04B96474F5EB8546560FA40157 /* ProgramOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProgramOptions.h; path = folly/experimental/ProgramOptions.h; sourceTree = ""; }; 7C6B584E70EA23D8AFF7CA9B95886F3E /* yuv_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips32.c; path = src/dsp/yuv_mips32.c; sourceTree = ""; }; 7C771730FFF6928CF80ABE9AFAAACDED /* dec_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips_dsp_r2.c; path = src/dsp/dec_mips_dsp_r2.c; sourceTree = ""; }; - 7C8A95117B845CD2BA5EFD37E70F1995 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; + 7C9818187C1FA532EFFCE969BFE77FDD /* RCTUtilsUIOverride.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtilsUIOverride.m; sourceTree = ""; }; 7CA868E2CF1961EC753E032F6F6AD921 /* ExceptionWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionWrapper.h; path = folly/ExceptionWrapper.h; sourceTree = ""; }; + 7CACF8B58F8A7D830F5B5D1D45BCF6FE /* CallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallInvoker.h; path = ReactCommon/CallInvoker.h; sourceTree = ""; }; 7CAF4ABCB04F2C688C13BF5521576A69 /* ecdh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdh.h; path = ios/include/openssl/ecdh.h; sourceTree = ""; }; + 7CC9E381EF1E048DBAD72F45E5B336CA /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; + 7CF70E9F704F5F5ED8990A8B2666796C /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; + 7CF8B3166B0FF5F6D465D0C826C4A4FA /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; 7CFC5F812F532B846C760DB22721ADF9 /* Pods-ShareRocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ShareRocketChatRN-acknowledgements.plist"; sourceTree = ""; }; 7D0AD6D3CF3E6E18BEB41A6A681E7AA7 /* Shell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Shell.h; path = folly/system/Shell.h; sourceTree = ""; }; - 7D5CD9BE92AB43A4215458B3794E4A4C /* UMTaskManagerInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.release.xcconfig; sourceTree = ""; }; - 7D73CFEE36A84DAC62307E1903F2E9B5 /* React-Core.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.debug.xcconfig"; sourceTree = ""; }; - 7D7A81FC0EC00A335F1B848A5B9B2058 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; + 7D0E0F3814C34E0AFFDFFF3F62C76605 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; + 7D46DA8EF5A43BB3EB6FBED2BE067861 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; 7D8D796789F3D6C6BF1B73946AF1B1BD /* JemallocHugePageAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocHugePageAllocator.h; path = folly/experimental/JemallocHugePageAllocator.h; sourceTree = ""; }; - 7D8DDE5B92253392601ADE5237F97ED5 /* RCTBlobPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobPlugins.mm; sourceTree = ""; }; + 7D990D039D935D7251590D4FE52F88D8 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; 7DA26BF59B04F4CD669F95C3C4A1512C /* SharedPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedPromise.h; path = folly/futures/SharedPromise.h; sourceTree = ""; }; 7DA4658DF94BC568A50DE77B9A7E6C47 /* GTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTest.h; path = folly/portability/GTest.h; sourceTree = ""; }; 7DBA531456175987BF425721A5C406DD /* Base-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Base-inl.h"; path = "folly/gen/Base-inl.h"; sourceTree = ""; }; - 7DD4A6659C93D9324AA8FDCC19D544AE /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; + 7DDA158CE293AFF18B90420ABBB2ABB7 /* 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; }; 7DE227D5B2683F5431041C18D4E5A91F /* FIRInstallations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallations.m; path = FirebaseInstallations/Source/Library/FIRInstallations.m; sourceTree = ""; }; 7DE60624E76F59C29DA8F63CAF38D59B /* StaticConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticConst.h; path = folly/lang/StaticConst.h; sourceTree = ""; }; 7DE8121D515BE25FC2F9BB2629336E6D /* rand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rand.h; path = ios/include/openssl/rand.h; sourceTree = ""; }; 7DEBCBF1B626C6C41228540C6474FC8C /* HazptrRec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrRec.h; path = folly/synchronization/HazptrRec.h; sourceTree = ""; }; + 7DF5B9A95AE02B2D81ED25BAB0BC35D0 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 7E17D993214B87C92E8BCD5A9C9FE1B7 /* thread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread.h; path = src/event2/thread.h; sourceTree = ""; }; 7E347C6BF2B9F76C0059F9F21C9BCB80 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = ""; }; - 7E42EF4FC928307821EB59AAE44A71CA /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7E45DD511DE41E270A3D52A6002B9DFF /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; - 7E4DD71BD854DF6DF64F53A99C186A8D /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; + 7E7642FD0CE4C41C67F9173673094B60 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; 7E7C3FC992FC754E255D10D675B80410 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; 7E7E46B76D0AFE3DFC477DC55C5DB326 /* libEXAppleAuthentication.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAppleAuthentication.a; path = libEXAppleAuthentication.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 7E82D8ED9A1193569F1625089D9DD22D /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; 7E8666F420194686503CAA717A8B4452 /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/Portability.h; sourceTree = ""; }; 7E981B382A68E854FAC7C861289CB2C4 /* FIRCLSInstallIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSInstallIdentifierModel.m; path = Crashlytics/Crashlytics/Models/FIRCLSInstallIdentifierModel.m; sourceTree = ""; }; + 7EA7BFCF4F056871F2589013D5F47C70 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; + 7EBAE94D498C12976D44660A24F324ED /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; 7EC28935A3AC29AF72A76302619CAD26 /* StaticSingletonManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticSingletonManager.h; path = folly/detail/StaticSingletonManager.h; sourceTree = ""; }; + 7ECB3B85921004F5E5A9BCFE039DD0D6 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; 7ECC929CF6FD2CC882DA01DC24B97431 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; - 7ED06BF265443B3E425E82A48801B664 /* RNCMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedViewManager.h; path = ios/RNCMaskedViewManager.h; sourceTree = ""; }; - 7EF240967AAD7D875A2FAB0A143E7B0E /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; + 7EE4FA2596A13834A9C25B4ABA37300E /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; + 7EF3B5C32854719229B0367D99637801 /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; + 7F1719491623B5D8449247E249A5F080 /* EXAppleAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthentication.h; path = EXAppleAuthentication/EXAppleAuthentication.h; sourceTree = ""; }; 7F2BD3201DA7489A7C3465251BD751E7 /* sha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sha.h; path = ios/include/openssl/sha.h; sourceTree = ""; }; + 7F3ED5FEEBA746FC88B23257F44CF5D3 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; 7F4D8EE1AB88A80276B6DB6467D43D8C /* ThreadLocalDetail.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadLocalDetail.cpp; path = folly/detail/ThreadLocalDetail.cpp; sourceTree = ""; }; - 7F4E8E646FD0BA4E06F6668A41C92D5B /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; - 7F57BABCBA0174D900BA54401B43790B /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; 7F5B32E3CA7B2F67B639D90AFF94E9E8 /* GDTCOREventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDataObject.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventDataObject.h; sourceTree = ""; }; - 7F6CA3F7F77927A829F95350D1F8092C /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; + 7F723AFBD19313F95B81EE05A68BEE3E /* RCTDevLoadingViewSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingViewSetEnabled.h; sourceTree = ""; }; 7F761D1EB806D3F7FCFAACFF6A958008 /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; - 7F81D7793360D01BE72A5DA71D7FCCBE /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; - 7F8D89D78A2EB910E71744416993BF15 /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; + 7F9445B4E5A8486DA7142E6B6178B57B /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; 7F9DE4A363252E3601268B4A3F049459 /* FIRInstallationsErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrors.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsErrors.h; sourceTree = ""; }; - 7FA8F148446D44D3CB43C8ACC3EB6CD8 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; + 7FB0BE56645AF33757105DD8CF0C459D /* ReactNativeKeyboardTrackingView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardTrackingView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7FBBAE9E2775C548336091B0D63DD00A /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; 7FCD2F8E9DDCAB547EBCEE92B08260F8 /* File.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = File.cpp; path = folly/File.cpp; sourceTree = ""; }; - 7FE57DEA174169B58FEDB52B80D89BAD /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; + 7FDED5D3681B03D3C9B69AF2EC8D746A /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; 7FE920F4D511C9670619E33AE211B85A /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; 7FF0CBC22ECC08F79723E220F75ABBF0 /* MasterPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MasterPtr.h; path = folly/experimental/MasterPtr.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; }; - 80227D8A42D28C003E66266081075B52 /* RNCSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewManager.h; path = ios/SafeAreaView/RNCSafeAreaViewManager.h; sourceTree = ""; }; + 802676C5FD0A6126D30FB6E84F6578CC /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; 802E83F9D1553A5135E751C5CE3D8E75 /* YogaKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YogaKit-umbrella.h"; sourceTree = ""; }; + 804E80C6B7478B90161E0F4DEEEEEC6D /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; 80545F6091AA92EEAF783BF4EF965E1C /* AtomicRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicRef.h; path = folly/synchronization/AtomicRef.h; sourceTree = ""; }; - 805CC1444E8DAA8B74AC46DBBFBCD0C1 /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; - 80702357A447B46FE7A769E855205CF2 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 805CB6D040E6E709E9E9F126DDD53037 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.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; }; 8077B75DA65AED5AD968FB062345BA55 /* FIRAEvent+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRAEvent+Internal.m"; path = "Crashlytics/Crashlytics/Helpers/FIRAEvent+Internal.m"; sourceTree = ""; }; 80825EA1EFB9ACC32393520FD698251E /* ObservableOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableOperator.h; path = yarpl/observable/ObservableOperator.h; sourceTree = ""; }; 808A22FC6B3927AC76D39C9380B6FD4A /* yuv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = yuv.h; path = src/dsp/yuv.h; sourceTree = ""; }; + 80963E85D3C5C51EF1799E0A6172EFBE /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = ""; }; 809C14EF92D1A3A20AFD372D138BB55A /* ThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadFactory.h; path = folly/executors/thread_factory/ThreadFactory.h; sourceTree = ""; }; 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 80AF3550A306A8563FDB94F8C035175B /* react-native-document-picker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.release.xcconfig"; sourceTree = ""; }; + 80A6035EC6BF580BA5DD5CBF902CE5AB /* react-native-notifications.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.release.xcconfig"; sourceTree = ""; }; 80B169EEAA61B4FA9910AE47771885CA /* SKIOSNetworkAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKIOSNetworkAdapter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.h; sourceTree = ""; }; - 80BAA64760F434809E497C3D06BC1AA8 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; + 80D1D5F1826A5E9F932C1951394A9E67 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; 80D337496D6AAB72D22F013DFAD4DEB4 /* krb5_asn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = krb5_asn.h; path = ios/include/openssl/krb5_asn.h; sourceTree = ""; }; 80DED9425178C98B16FB10A99873E0F4 /* FIRCLSApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSApplication.h; path = Crashlytics/Crashlytics/Components/FIRCLSApplication.h; sourceTree = ""; }; 80DF87845281A0627FBC71B4058D432E /* SanitizeLeak.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeLeak.h; path = folly/memory/SanitizeLeak.h; sourceTree = ""; }; - 80E6E9F99DA8F071689A8C4804E01125 /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; - 80EF70DCCE7665BE25CF10B6C2C26C27 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; - 80FCBF51C204A5BF6EA8B12049D35583 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 80E5BFC4461DE1FA8842959B06C4E16E /* EXAppleAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppleAuthentication-dummy.m"; sourceTree = ""; }; + 80FCCE618B5154A78F1A19DED174C210 /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 8103BC8A6B6A7F3845669FADDDD92BF6 /* GoogleDataTransportCCTSupport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransportCCTSupport-dummy.m"; sourceTree = ""; }; 810DEDD3635F8744DAB27871885A95DF /* FIRCLSUnwind_x86.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind_x86.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_x86.h; sourceTree = ""; }; - 81113F643E1CF81D879597FC06BB4375 /* RCTScrollEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollEvent.m; sourceTree = ""; }; + 810EDD5AB3492C2857472B362267C781 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; + 81107AC60A7F64AEA4C517784351C515 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; + 8110A5CBB5050BAF6DEA7B6390C345F6 /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = ""; }; + 812174CFD5F180BAC6547FE529120730 /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; 813AE790C7AF3DF20BE12390BD9D5151 /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = ""; }; + 813EAEADC43DCFDDDE87F93384A514B0 /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; 814702FE73688996BC64C72365975765 /* Flipper-Glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Glog-dummy.m"; sourceTree = ""; }; - 815220269EF7FD141B2588B1748D87C1 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; 81732BE5C2E43D5A6F522D5EC0F6E512 /* random_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random_utils.c; path = src/utils/random_utils.c; sourceTree = ""; }; 817DC2D43C507D5ECE1BA0991C35B7EA /* Flipper-Folly.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Folly.release.xcconfig"; sourceTree = ""; }; - 817FC9D5233E9F4DA79E63E574244283 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; - 81A7A475278E4385E2732BFB8197676B /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; + 81812F3C0F21D126D5A16101BD9C572B /* FBLazyVector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.release.xcconfig; sourceTree = ""; }; + 819CACF06048F7AE075942C888161DE3 /* RCTImagePlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImagePlugins.mm; sourceTree = ""; }; + 81B448B0F1842A660FC92E0600A6D4CF /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; 81B71D08E3CF203A49D78B381A119A15 /* Sse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sse.h; path = folly/detail/Sse.h; sourceTree = ""; }; - 81F11EEDC14F7C4E2AD6F2CCEA310344 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; - 820D918138C8817D6905702A9CB94BDE /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; + 81EBB5D94D81326E4413AF3185FF9958 /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; + 81FAFDED367C8C2C7CEBB5421B0E80E1 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; 8212F17211A09244F12417E5EC41A210 /* ms.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ms.lproj; path = "Objective-C/TOCropViewController/Resources/ms.lproj"; sourceTree = ""; }; 8217EB2EA7812E8BD2B072B120DF42CD /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; - 821B25DDA9010D1E8EB56C5C600E9BB0 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; - 822B444D29B95EDFFB587206F722FBD8 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; + 8218E7443F4DE60378E3CE60A1C22432 /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; + 822913D585B3B4F552DE096E290F87F3 /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; 822BEA017B4A92C48753B01E55150A0C /* AtomicNotification.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AtomicNotification.cpp; path = folly/synchronization/AtomicNotification.cpp; sourceTree = ""; }; + 8238243FE41CD3AFB391954187012675 /* RCTImagePlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImagePlugins.h; path = Libraries/Image/RCTImagePlugins.h; sourceTree = ""; }; + 824FA62404E74448A3121246F4CD815D /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; 82536BB0DC219B76759232C0E9B087CE /* Lazy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lazy.h; path = folly/Lazy.h; sourceTree = ""; }; - 8258B9877D65443B98C03BD5A17A27D9 /* RNCAsyncStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAsyncStorage.m; path = ios/RNCAsyncStorage.m; sourceTree = ""; }; 827B467A361DA82928536D9F7471F92F /* FIRCLSURLSessionTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionTask.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionTask.h; sourceTree = ""; }; + 827BE2553CC1A1A51AE23A61CD5CDF7B /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; 827D6BBA8C98FC9CE340B82257AFB2A2 /* Fcntl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Fcntl.cpp; path = folly/portability/Fcntl.cpp; sourceTree = ""; }; 829B4D94B8648DC836058F8B87661011 /* ThreadedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedExecutor.h; path = folly/executors/ThreadedExecutor.h; sourceTree = ""; }; 82A2D4FE69837872342EB338FFBDA02B /* Preprocessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Preprocessor.h; path = folly/Preprocessor.h; sourceTree = ""; }; 82AA68BDDB907F5270ABB4E44A1FB42E /* SKBufferingPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKBufferingPlugin.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.h; sourceTree = ""; }; - 82E3CD02E7FCC02B224A1D7C02174917 /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; - 82EDAE27007B076E21FB53B2FB275D41 /* react-native-background-timer.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.release.xcconfig"; sourceTree = ""; }; + 82B35C80912EEBECB266F8F45489A1C3 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 82DE9CD365DBCE5C75BE99D75B93318A /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; 82FD998EDC69C9A3276FF8791180CAAF /* CString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CString.cpp; path = folly/lang/CString.cpp; sourceTree = ""; }; - 830661AA4394068076CF03A4EBEA3BA6 /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; - 83092417C55CE84CC47FE1C01B58E11E /* RNFBUtilsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBUtilsModule.h; path = ios/RNFBApp/RNFBUtilsModule.h; sourceTree = ""; }; + 8309D824494C6089478E966E7B5F9930 /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; 8313B3CD1D07DD4D6FCE7D40613A8FE4 /* DynamicBoundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicBoundedQueue.h; path = folly/concurrency/DynamicBoundedQueue.h; sourceTree = ""; }; + 831946879AD54FC1043B75760434B1D6 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXAV/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; 831CBC069C3F01300D540F11687A9BD0 /* SKEnvironmentVariables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKEnvironmentVariables.h; path = iOS/FlipperKit/SKEnvironmentVariables.h; sourceTree = ""; }; - 831E0F7840A1FA12AA8A1AB27CCBFEB6 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTI18nManager.h; path = React/CoreModules/RCTI18nManager.h; sourceTree = ""; }; + 8329375DA1CE8967879379CF7878C999 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; 834F88A28D59C38058B3AD1CD0BF83D1 /* upsampling_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse2.c; path = src/dsp/upsampling_sse2.c; sourceTree = ""; }; - 8365EBC3F2ED55F494DA175785433D93 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8377771EC84A757A47FE1E0DA6B5BA99 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; 838B6681E41D0760A7B5DB7018433C4B /* ExecutionObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutionObserver.h; path = folly/experimental/ExecutionObserver.h; sourceTree = ""; }; 83923B28B4BC340F923D52434BA8B60B /* F14Defaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Defaults.h; path = folly/container/detail/F14Defaults.h; sourceTree = ""; }; - 83B8D068780A2181919555AC04ACF809 /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; - 83BA9ED803CF7A51968401924C6E499A /* RNCSafeAreaProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProviderManager.m; path = ios/SafeAreaView/RNCSafeAreaProviderManager.m; sourceTree = ""; }; - 83C24E4A4FF02EA14E94E0ED7E2543A9 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; + 83C393DC702EE93BEC32346FBF212FDE /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; + 83C64848A6D74DA14B223DE3F25EF91F /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; 83C70F9E0CA6D994C20D82596A791956 /* CacheLocality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CacheLocality.h; path = folly/concurrency/CacheLocality.h; sourceTree = ""; }; - 83CDE58D5FBF2A177AD8AF13164513D9 /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = ""; }; - 83DF0B95EB9A1316418742A7FD5BE172 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 840B29DEE6C6EF5676519A689862FCD6 /* UMModuleRegistryHolderReactModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryHolderReactModule.m; sourceTree = ""; }; + 83CB04FA8B4108F024460B69F9F578D8 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; + 83E74D245F65D89580FF1451F664C0E1 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; + 83EE3409CBA849617F35119D37287D36 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; + 8404F25C1C6CC0F7A04D6D9EEE02E542 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; 842379A4394123E6374666E8FB7969F3 /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; 8423966CED67725A82187FB62E77A69C /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = ""; }; - 842B9EE940BD30BBF74FFFAB474AFA2B /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; - 843E1C4D0C5A0C443F0C222256DADA01 /* RCTTVNavigationEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTVNavigationEventEmitter.h; path = React/CoreModules/RCTTVNavigationEventEmitter.h; sourceTree = ""; }; - 84645EBCC45720045E50FCCEC8333FB9 /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; + 8470510C35E133AB915BE1101362065D /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = ""; }; 847097C14534C0576FBE857AA70C1B4D /* FIRDiagnosticsData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDiagnosticsData.m; path = FirebaseCore/Sources/FIRDiagnosticsData.m; sourceTree = ""; }; 84712B50AB1AF1E436DB1DA71E2D2CA7 /* GULSceneDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSceneDelegateSwizzler.m; path = GoogleUtilities/SceneDelegateSwizzler/GULSceneDelegateSwizzler.m; sourceTree = ""; }; - 84847886F419F249D773888CB16E0F41 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; - 84861E1FFEE73585E77F8FFFE23E2CCC /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 847291F682FA77C90D11145C437AD963 /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 848D2FD6FC82ACCD890DE0DE64B2E0CF /* 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 = ""; }; 848FABBD7A6748D5B65961E5807AC33E /* Flowables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowables.h; path = yarpl/flowable/Flowables.h; sourceTree = ""; }; - 849AE929FF332905341897AC24CD6E1D /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; - 84B59BDF0D00E749F794DCFFEBB1EE34 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; 84C380A7734571FBE19B5D9B92128F0E /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; 84E929774DE381C3972DEFD66EAF9A8B /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/String.h; sourceTree = ""; }; 84F345CAFF57A670A6E8ED740FACD476 /* EventUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventUtil.h; path = folly/io/async/EventUtil.h; sourceTree = ""; }; - 84FBC11852FEEAEF26DA993D029DFB39 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSourceCode.h; path = React/CoreModules/RCTSourceCode.h; sourceTree = ""; }; - 8518359C15379D9FCE0CEA568A8F36FC /* RNCSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaShadowView.h; path = ios/SafeAreaView/RNCSafeAreaShadowView.h; sourceTree = ""; }; + 850762DB3807EDBFADDC68F8928B08DF /* React-RCTAnimation.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.debug.xcconfig"; sourceTree = ""; }; + 850F8D7D69D1910927471A1CAD63CED0 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; + 85152428D8B21481787B9DE6A47B1B73 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; + 8515A97E19679DDB5C9AA3A05AEB397F /* BugsnagPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagPlugin.h; sourceTree = ""; }; 851B54F330B9717D1DD606ED30512BA0 /* UIColor+SDHexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+SDHexString.m"; path = "SDWebImage/Private/UIColor+SDHexString.m"; sourceTree = ""; }; + 851E02DCDAA1E364BD099CE1FF998D28 /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = ""; }; 8524B5EA22FA3717480AF21588922B83 /* QuotientMultiSet-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "QuotientMultiSet-inl.h"; path = "folly/experimental/QuotientMultiSet-inl.h"; sourceTree = ""; }; 852C0606A4CB62EF49CEAC0A8CC22091 /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/gen/Core.h; sourceTree = ""; }; 852DC564997734F4D539E66A2B03F20B /* Pods-ShareRocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.release.xcconfig"; sourceTree = ""; }; 852DF2EB0BA9A845ACE4C9A35AF3DCB2 /* ThriftStreamShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThriftStreamShim.h; path = yarpl/flowable/ThriftStreamShim.h; sourceTree = ""; }; 854DF059F552091257A1C34464EECCCC /* FlipperCppBridgingResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingResponder.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.h; sourceTree = ""; }; + 855320E9829E9123176EB5A1EA917125 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 855E16EBCC3978D7F990D6473D3B1B4B /* nl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = nl.lproj; path = "Objective-C/TOCropViewController/Resources/nl.lproj"; sourceTree = ""; }; - 855E19E00BCCC9D0E8F7010CD3AEC66F /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = ""; }; 856042B73E1C8C0F0942229F352F2ADF /* FKPortForwardingServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKPortForwardingServer.h; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingServer.h; sourceTree = ""; }; 85694364113E72419951156931325A1A /* FIRCLSThreadState.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSThreadState.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSThreadState.c; sourceTree = ""; }; 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransport.a; path = libGoogleDataTransport.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 856F519FB7E58FD7B2108F74EF0A1A1B /* RCTLocalAssetImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLocalAssetImageLoader.mm; sourceTree = ""; }; 8585650A5B7C2864CF0F1EB6ABF83886 /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = ""; }; 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "librn-extensions-share.a"; path = "librn-extensions-share.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 85920769A67980742E26BD6D5DD20327 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; + 858D2A524F08EFB1CA0999CC5D4C55F2 /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = ""; }; 8597C38FF2B6314F7BBE0C87F0911E94 /* DelayedDestructionBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestructionBase.h; path = folly/io/async/DelayedDestructionBase.h; sourceTree = ""; }; - 85A1FEF2C4E89DE861256ED8BE1A4F41 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + 85A119EF008044BD6DD681CF1E205D2D /* RNCAsyncStorage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.release.xcconfig; sourceTree = ""; }; 85A96B56D7218F1BBD52D3F49915DC08 /* FIRInstallationsSingleOperationPromiseCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsSingleOperationPromiseCache.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m; sourceTree = ""; }; - 85C0C0551B9D3D505C413182E46450AC /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; - 85DB9DCD90930166F793C7CA35983E71 /* 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; }; - 85E12D48404FDE5B55261A25F28CAC25 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + 85F2FD52AC5B5ECCD36AA0B1E47F0FD1 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; 85F485231897A7443DCD7805A9DAFED3 /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = ""; }; 85FC2CFF7FB4286CB0729B44AEE2B60F /* 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 = ""; }; - 86057C2F677FB198EEF2098C4C42A644 /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = ""; }; 8606A8A06A4A6D3686D2E6AB02E47B63 /* OpenSSLCertUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLCertUtils.h; path = folly/ssl/OpenSSLCertUtils.h; sourceTree = ""; }; 86375444C196BA272DDBB8165BF64A15 /* libFirebaseCrashlytics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCrashlytics.a; path = libFirebaseCrashlytics.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 863AA3927423F2F05661F4E2C322C366 /* UMCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.release.xcconfig; sourceTree = ""; }; 863B8675E3454FFBF4057E7C1C3C146E /* dec_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips32.c; path = src/dsp/dec_mips32.c; sourceTree = ""; }; - 8650B4EEF412482AF89B9400A42CA245 /* EXImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXImageLoader.m; path = EXImageLoader/EXImageLoader.m; sourceTree = ""; }; + 864B8D59A91DEB6E928550ADF13B874A /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; + 8668E3CAF69BE16789679B2D955374BA /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; 867199107D83A031C2690C93AC51B5BA /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; + 8689200E66B48FA97BD34CF6758E2C71 /* 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; }; 868B8E2E3BF06F434C4DF6545367BD8D /* SetupResumeAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SetupResumeAcceptor.h; path = rsocket/internal/SetupResumeAcceptor.h; sourceTree = ""; }; + 868C912614BF52D467F395714ACF4AD2 /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; + 868FE5B287B4AA1A630B83060B377279 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; 8696F258B45090E3396F2D3363913CBB /* dec_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse41.c; path = src/dsp/dec_sse41.c; sourceTree = ""; }; 86A4E5AC93422FF3708C8520ED92754B /* obj_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj_mac.h; path = ios/include/openssl/obj_mac.h; sourceTree = ""; }; - 86B5F5B570A2CBD2663248ADEEE519F5 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 86A66890ECB3155B1A8B93CE45F62A25 /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; 86BC3BB242CB1BF65E1D7CBDD1931B2D /* FIRCLSInternalLogging.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSInternalLogging.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSInternalLogging.c; sourceTree = ""; }; - 86C399F396152F8A49704DF5C9FF453B /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; + 86C9A29DF70E0BDD75BEEE10DC8DA60F /* EXImageLoader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.release.xcconfig; sourceTree = ""; }; 86EF5B883FD9EA0ECA724535C4754B02 /* Stdlib.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Stdlib.cpp; path = folly/portability/Stdlib.cpp; sourceTree = ""; }; - 86F26F35353333A6BB22CEF6AE743C17 /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; - 870B3102B3CD8E9D89FAAA197875B50A /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; + 87020B85ADE1CC6C75520E57AC007451 /* React-callinvoker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-callinvoker.debug.xcconfig"; sourceTree = ""; }; + 870619E9BD4D6E766AEEF6AF3B407256 /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; + 870A0FC7FD6163455CE70509D8BA7DDE /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; 8715181C789B513EE718305DAAD7B2A2 /* FLEXUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXUtility.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXUtility.h; sourceTree = ""; }; + 871E82D05EB9AB9FCBAE6FC42C893819 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; + 872B20A313FEBB2D2A17EDA1CD8A2D3F /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; 873F0F716D3C21046502FF5DC13B399E /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; - 876200FACA564D249B78E989F8012391 /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; + 876523F4E547D2A85EF38C20BDB92CB6 /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; + 877D5D9C11F99DAB97885055DB0552B1 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; + 878099AB4D046C6309958F1198C70B2F /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; 878FD84776C457C8588F1FE37EE8F309 /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = ""; }; 878FEB13EDDBC5864A86714D1689CADF /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; - 87990953DE6B7AE787098538E6ADE5C9 /* React-RCTAnimation.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.release.xcconfig"; sourceTree = ""; }; + 879A58F8DBB2D066AD0E0CCC6BCD4B9B /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; 87B456B334445E95DA63057ED4A28D8C /* msa_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msa_macro.h; path = src/dsp/msa_macro.h; sourceTree = ""; }; 87C031E4203074D0359AD79DB91EA091 /* RSocketParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketParameters.h; path = rsocket/RSocketParameters.h; sourceTree = ""; }; - 87D275F3587EBC8800BBB84AB24C0913 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 87C0745C2B00E26851984475A2EC1F6C /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; 87DB3B65AF071F6B13BD008F884A4D93 /* ExceptionWrapper-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExceptionWrapper-inl.h"; path = "folly/ExceptionWrapper-inl.h"; sourceTree = ""; }; - 87E77CF31339DA6A1101CE4ADD0F7E0E /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 87F14A7850EAF0A98EED0890AEFAE40B /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; 880D787C8592FC29486FB31E4673BF21 /* backward_references_cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_cost_enc.c; path = src/enc/backward_references_cost_enc.c; sourceTree = ""; }; + 885DA116CE9D078A43342E34C643CAE1 /* RNFBSharedUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBSharedUtils.h; path = ios/RNFBApp/RNFBSharedUtils.h; sourceTree = ""; }; 8863D29966B54EB5C813F1CC96D4CCD8 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; - 886AC1F36B8DEE39F487D5ED93776C00 /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; - 887614149377D43F39373680F4866684 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; 88794576813B772E591C081BE3BA0D9B /* WarmResumeManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = WarmResumeManager.cpp; path = rsocket/internal/WarmResumeManager.cpp; sourceTree = ""; }; 88B04AF1BDF18085CFE54FB20705F3EE /* StringKeyedCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedCommon.h; path = folly/experimental/StringKeyedCommon.h; sourceTree = ""; }; - 88C803B99AEC562FC0C0CCA0D1D2B59F /* RNDeviceInfo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.release.xcconfig; sourceTree = ""; }; + 88D07320CD70DE4FAF6B2B22BCD24E90 /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = ""; }; 88D3F2DD016DB83E6C6176947E0E58D0 /* SKStateUpdateCPPWrapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKStateUpdateCPPWrapper.mm; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.mm; sourceTree = ""; }; 88E06EDD49EAA4EA3B221D0DF8AB80A2 /* Arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Arena.h; path = folly/memory/Arena.h; sourceTree = ""; }; 88E4CF555FD659586B1D8B1CBEC6F760 /* FIRCLSURLSessionDownloadTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionDownloadTask.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDownloadTask.m; sourceTree = ""; }; - 88F12DA062AF850E2FEAED304CCAEE06 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; - 88F8834973F0172F692546FFF74125A3 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; + 88F3ACF17A442C69012929FAA7AA09B0 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; + 890CEB8887D28B161E961BFB34BE5991 /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; 8936A4E53BCF8BA5CF715044BD01D0A3 /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = ""; }; 894B5C976B9AA4234BBBF58168F002CA /* ThreadWheelTimekeeperHighRes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeperHighRes.h; path = folly/experimental/ThreadWheelTimekeeperHighRes.h; sourceTree = ""; }; + 895142227D5E1DCFE5188DA32DFEE118 /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = ""; }; 8956ACF74B500301F363E9F2FEB2FB5C /* SDWebImageWebPCoder-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImageWebPCoder-dummy.m"; sourceTree = ""; }; - 89604576AB251799A65DBAD5F05D1A56 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; 8960989F068E7074D7F5F729BED89923 /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Subscription.cpp; path = yarpl/flowable/Subscription.cpp; sourceTree = ""; }; 896C79386505AB6551664FA34D9DFB3B /* ThreadedExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadedExecutor.cpp; path = folly/executors/ThreadedExecutor.cpp; sourceTree = ""; }; 897CFC6BCAD9715BD60DE2B2E4C87D32 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; - 89934B9D4927DCE9310D7C45B12B7B3E /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNVectorIcons.a; path = libRNVectorIcons.a; sourceTree = BUILT_PRODUCTS_DIR; }; 899F662725775307469383BAC8039062 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h; sourceTree = ""; }; - 89BD880E0A73881F2D829E47488EB8CE /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; 89C062B8ED4D916D00E38E692F628ECC /* AtomicHashArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashArray.h; path = folly/AtomicHashArray.h; sourceTree = ""; }; - 89C0CE47EDF6D262EF6412AA95303E8A /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; + 89D80FA7EDEA9BB9685AF92143C0EA14 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; 89EC4A1B4428FD280E0972F31F4D2B9C /* RSocketStats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketStats.h; path = rsocket/RSocketStats.h; sourceTree = ""; }; 89ED429065B06DB4B6B4BC6DB02F0D8A /* SysMembarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMembarrier.h; path = folly/portability/SysMembarrier.h; sourceTree = ""; }; - 8A05FB46307785CD9F4F089431CA9E07 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; - 8A0B6953C59C9D2B38E042FC7461962F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 8A00EE5B081426E430409D0FA4B68F81 /* RNFBVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBVersion.h; path = ios/RNFBApp/RNFBVersion.h; sourceTree = ""; }; 8A10F16CDAD18691E2AC31157D0D1375 /* tree_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_dec.c; path = src/dec/tree_dec.c; sourceTree = ""; }; 8A1AC44125A60D4279CFAF166CC57C8B /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/utils/utils.h; sourceTree = ""; }; 8A3C306919D7B3AD2C1EABA2E4ECAA80 /* SDImageWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageWebPCoder.m; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.m; sourceTree = ""; }; - 8A40BD840EC14017F3F9E2A0DF9385FC /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; - 8A4525E2B09FFD4376CD4BC624AB3720 /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; - 8A461FB71F14FA8FC2FEA6C262341DDD /* RNFBAppModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAppModule.m; path = ios/RNFBApp/RNFBAppModule.m; sourceTree = ""; }; 8A546B934018A1CEFDA66A8FC345EB48 /* FIRCLSException.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSException.mm; path = Crashlytics/Crashlytics/Handlers/FIRCLSException.mm; sourceTree = ""; }; - 8A550C495FCC6EB98720BED6AE0389B3 /* RCTKeyboardObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTKeyboardObserver.mm; sourceTree = ""; }; + 8A564A141A9AE2E73F2C52C8CFAF09C0 /* EXLocalAuthentication.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.release.xcconfig; sourceTree = ""; }; 8A6E793FC79ACAC14E4649A7029ACC22 /* ScheduledRSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledRSocketResponder.h; path = rsocket/internal/ScheduledRSocketResponder.h; sourceTree = ""; }; - 8A79536B310A95CADE2533A213CA0C89 /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; 8A7C3160EF2F747B2440F1A3C5FE058D /* EventBaseThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseThread.h; path = folly/io/async/EventBaseThread.h; sourceTree = ""; }; + 8A7EFF727BCBB89626C2C49DE6C79EB6 /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; + 8A95002F1882C006E3D362CE26A656E2 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; 8AC594F02CC16F66B98E4468C6C59C62 /* Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Async.h; path = folly/executors/Async.h; sourceTree = ""; }; - 8ACE316B3FFB1BD0D60444A8BBFB7040 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; + 8ADCEDA931ED99DB745AC91AFC84343B /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + 8AE67E34798D3F25FCE88549D2D4077E /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; 8AEB68D8EBD37A2BD7FB4BDBFF9F9AAF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = rsocket/README.md; sourceTree = ""; }; 8AF6C5B01FF5BAF6825B25260AA71F6F /* TOCropViewController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "TOCropViewController-dummy.m"; sourceTree = ""; }; 8AF70313D7D290F3F9DE0DAFC6BBD307 /* OpenSSLVersionFinder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLVersionFinder.h; path = folly/ssl/OpenSSLVersionFinder.h; sourceTree = ""; }; + 8AFCCB6DB983375195BE5A2CFC68114D /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; 8AFF6CAA60FADAF008CECC75E14B73D7 /* GCDAsyncUdpSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncUdpSocket.m; path = Source/GCD/GCDAsyncUdpSocket.m; sourceTree = ""; }; - 8B026627ED5702344586FA2080CA7233 /* NSData+EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+EXFileSystem.m"; path = "EXFileSystem/NSData+EXFileSystem.m"; sourceTree = ""; }; - 8B051D85376D40D49CC0BE842A3DA5FC /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; - 8B13F1C3103B20C02469449ABBE5E29E /* ReactNativeKeyboardTrackingView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardTrackingView-dummy.m"; sourceTree = ""; }; + 8B16EB86B3563046FD395E748D634BBF /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = apple/RNCWebViewManager.h; sourceTree = ""; }; 8B1CE72BEBE578ADD047DAF1E1C7C7B2 /* muxi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = muxi.h; path = src/mux/muxi.h; sourceTree = ""; }; 8B246C0EDAE983AA2B8062390F5120C8 /* Phase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Phase.h; path = folly/init/Phase.h; sourceTree = ""; }; + 8B31E32BCBDC2BC3A9B9C329D0BA117E /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; 8B338B13FB2A0CB1CDCEFC615CB7B580 /* FIRCLSAllocate.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSAllocate.c; path = Crashlytics/Crashlytics/Helpers/FIRCLSAllocate.c; sourceTree = ""; }; 8B411D56B0722F0042A139888031AB62 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; 8B42718A565DD6379568761EBAB55A87 /* TOCropViewController.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TOCropViewController.release.xcconfig; sourceTree = ""; }; - 8B7D7FE6AC4A9EF21678B0F718C686D8 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; + 8B4979F5348E68CD6231849E89CDFEBA /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; + 8B50E94B26C9F1A608B665BC2A8CC140 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; + 8B60382AE50DC24935A0B636721A9B5D /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; + 8B6694E32E38F412D3C5C6B9F1AE7ED2 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; + 8B756C0A9A4F81198C19841EEB554379 /* RCTSettingsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsManager.mm; sourceTree = ""; }; 8B7E9AEC5A6084B6CE988F3D084D7404 /* SocketOptionMap.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SocketOptionMap.cpp; path = folly/io/SocketOptionMap.cpp; sourceTree = ""; }; 8BA4FADDAC4C382B8866EC1C616DF2E1 /* ossl_typ.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ossl_typ.h; path = ios/include/openssl/ossl_typ.h; sourceTree = ""; }; 8BC8BE97ECD6781E8AF985B22B169ED0 /* GoogleAppMeasurement.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.debug.xcconfig; sourceTree = ""; }; - 8BE3EA169CDDD47FA3A16D8B029D2644 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8BF305FE2C8820749C8D808B72932E5C /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; 8BF48A73600607CCF16A089B70F9881B /* HazptrThrLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThrLocal.h; path = folly/synchronization/HazptrThrLocal.h; sourceTree = ""; }; + 8C0A897A9531DAA43E434EBE10498467 /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 8C0C26EFAD2AA5822B5C67AEF254EBCA /* neon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = neon.h; path = src/dsp/neon.h; sourceTree = ""; }; 8C26C01A38DB126D61350F53D40B29C6 /* ScopedEventBaseThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopedEventBaseThread.h; path = folly/io/async/ScopedEventBaseThread.h; sourceTree = ""; }; - 8C28554EF6D0DADF26EA3AEE55D546AA /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; - 8C2AB648E07B7960F35B28879CE8FD53 /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; 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; }; 8C4047EDAB36FAFC73C964E7CB4B38E5 /* FIRCLSSerializeSymbolicatedFramesOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSerializeSymbolicatedFramesOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSerializeSymbolicatedFramesOperation.m; sourceTree = ""; }; - 8C437A0F8547D44B9402405CE5307176 /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; + 8C44EF7BBBD61F7EAAC7BCD526D3BB6B /* EXSessionTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionTaskDelegate.h; sourceTree = ""; }; 8C47950876FB080FEE6CF111D6965109 /* FIRCLSGlobals.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSGlobals.h; path = Crashlytics/Crashlytics/Components/FIRCLSGlobals.h; sourceTree = ""; }; 8C494AE0F641C814E22A3A06BEA1688C /* CallOnce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallOnce.h; path = folly/synchronization/CallOnce.h; sourceTree = ""; }; 8C73C03F66BD6F21E6E434A1E5207829 /* mux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux.h; path = src/webp/mux.h; sourceTree = ""; }; - 8C84418838D4A68539AEA9EC71B2E83F /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; - 8CAD5E6F474AF1FF7AAE8DF1FA61FCA8 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; - 8CB4AA67BD2B213132F628BADBB74527 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; 8CB9B22C72AA59D0A6AAC17079BACD05 /* FIRCLSSerializeSymbolicatedFramesOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSerializeSymbolicatedFramesOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSerializeSymbolicatedFramesOperation.h; sourceTree = ""; }; + 8CBB013107BEF10373F55BBF5D608EAC /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCoreDiagnostics.a; path = libFirebaseCoreDiagnostics.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8CCFA58ECEC7F398263D2B001C299167 /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = ""; }; 8CEE1307A880AE9DB37B35924BC2272D /* buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = ios/include/openssl/buffer.h; sourceTree = ""; }; 8CF9EE6287178E6A0498DC4394E42DF7 /* FlipperKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FlipperKit.modulemap; sourceTree = ""; }; 8D0F292DC9D03A66EAE4CE1EF2528CB4 /* GlobalThreadPoolList.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GlobalThreadPoolList.cpp; path = folly/executors/GlobalThreadPoolList.cpp; sourceTree = ""; }; 8D1573A39C750B43D3F510471DBF5425 /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; - 8D17D989E39AD42EE658569F64DB5B63 /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; 8D1E56880C335CA741243304C3685EB5 /* Hazptr.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Hazptr.cpp; path = folly/synchronization/Hazptr.cpp; sourceTree = ""; }; 8D290A74B6579F6AE968BCA3B5C98FFA /* kssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kssl.h; path = ios/include/openssl/kssl.h; sourceTree = ""; }; 8D4398376C658332A4E207A3C6EC1636 /* FIRCLSNetworkResponseHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSNetworkResponseHandler.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSNetworkResponseHandler.m; sourceTree = ""; }; + 8D5DFF74B09A6C161836EF11E9AC5183 /* React-RCTSettings.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.debug.xcconfig"; sourceTree = ""; }; 8D6ACD75F461F77ABF6D174E9B1955CB /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; - 8D713BABFAD65EF8C45A6700E4B6F39F /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; - 8D8F25EC98F541974A440A80EE558A8B /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = ""; }; - 8D93BD1146A4C0A236F966A6F6838A6E /* React-CoreModules.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.release.xcconfig"; sourceTree = ""; }; - 8DA4C0665A79F02E040D94E17AE674D4 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; - 8DA4E2C2F9097E387CE2E133BE46A2E6 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; + 8D7FCCDD87EBD1FD593954249061ED13 /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; + 8D9D1E2BED34E1EEA324F2AFA3C64956 /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; 8DAD9A0ED847DB05BD8A3846F1928EE5 /* HazptrHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrHolder.h; path = folly/synchronization/HazptrHolder.h; sourceTree = ""; }; 8DB0863FEEBA79B7135ED6D56CBA8FE4 /* FKTextSearchable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKTextSearchable.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutTextSearchable/FKTextSearchable.h; sourceTree = ""; }; - 8DB62626329AD368164DC39477309A85 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; - 8DCDA898216AFF5600FE513729B89CC7 /* ReactNativeKeyboardInput.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardInput.release.xcconfig; sourceTree = ""; }; - 8DD4C456AC60D79C47047A17DC8B9BF2 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; + 8DE5A344FC5D9F8D2661C956E875D832 /* RNFBCrashlytics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBCrashlytics-prefix.pch"; sourceTree = ""; }; 8DEE777427A6F0383CAC9400766BB483 /* filters_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_neon.c; path = src/dsp/filters_neon.c; sourceTree = ""; }; + 8DF201CA20DB3C2986766F022D7709FB /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 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; }; - 8E0F7EEE9DDCDFA5D9EB9C5B049E7FB6 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; - 8E503EDDBD1DB36A1BD8F4FC767CA336 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; - 8E79929D60E5EB0B3B9D5F4B634822E1 /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; + 8E480A7A13E053B8061176C3A93EB158 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; + 8E53CD52B144CE62B88B22A323A0E4ED /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; + 8E656994523FD0B6EB65AC4EB81BC602 /* BSG_KSMachHeaders.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachHeaders.h; sourceTree = ""; }; 8E88D4C1E3B50296AA50B1E0645DC0C4 /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Private/GULKeychainStorage.h; sourceTree = ""; }; 8E940DF76A9E872A76ED5CFCB5A78364 /* cost_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips_dsp_r2.c; path = src/dsp/cost_mips_dsp_r2.c; sourceTree = ""; }; - 8EA2935DD483DD04CFF48AC2B8CA813B /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; + 8E9A5E5F6AE9E3C5E06AC13200C08739 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; 8ECB7DE442578B4250D103A2CC9DFD67 /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; 8ECC8D555BC8AC007B25E74115110267 /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = ""; }; - 8ED9D7109547C0C03FC510B8D478482B /* EXImageLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXImageLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8EDCC62D0D6C9A44794ED7BF5ED2467A /* RCTScrollEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollEvent.h; sourceTree = ""; }; + 8EE8E5ADE000CA354915B00E07060792 /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 8EE94A12F93DF005287FCD544E42723C /* AsyncSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSocket.cpp; path = folly/io/async/AsyncSocket.cpp; sourceTree = ""; }; - 8EF94749AF7D5A568E7346572B5D31C9 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; + 8EEA3FC26644B0F50416F14C24D4DF1F /* RCTAccessibilityManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAccessibilityManager.mm; sourceTree = ""; }; + 8EED67439E272B995EE2BB852645EAD9 /* react-native-safe-area-context.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.debug.xcconfig"; sourceTree = ""; }; + 8EF565A096A340ED3706FF2AAE2E918B /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; + 8EFA498F3E82E6172192E338E0D28301 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; + 8F0058703FECE1F2AF98235947677D3D /* UMAppLoader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.debug.xcconfig; sourceTree = ""; }; 8F00CE382FC97B23F198F2EF91229C8C /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = SDWebImage/Core/SDImageHEICCoder.m; sourceTree = ""; }; - 8F0ED77E17110CF0DCC62274268EE6F2 /* EXImageLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXImageLoader-prefix.pch"; sourceTree = ""; }; 8F1DF8E8135EE9941DE57B6D73193444 /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = ""; }; + 8F2998A3D69D0A9390F653F636FFD01F /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; 8F2D56C0B547C6E296DFBB24FFBC4D17 /* Launder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Launder.h; path = folly/lang/Launder.h; sourceTree = ""; }; - 8F4BE8947965BCF3EDBA67A36A42B66E /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; + 8F390769550F9EBFA38C6467A73BC886 /* EXSessionUploadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionUploadTaskDelegate.m; sourceTree = ""; }; 8F544917428E69389934AA67C6A36D47 /* CancellationToken.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CancellationToken.cpp; path = folly/CancellationToken.cpp; sourceTree = ""; }; - 8F577B189DA552F53EFA7A813B03E107 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; - 8F612F968B328ADB51FDD5E992A36613 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 8F56120C000075994417F54F24B7F02B /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNGestureHandler.a; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F747C55B7F59FC7E3A1271912321591 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; 8F9DCD272640E2D4760895BF139750E1 /* filters_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_msa.c; path = src/dsp/filters_msa.c; sourceTree = ""; }; + 8FA4F3AC4B16DEF39957BE9C328EF6DB /* Sha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Sha.h; sourceTree = ""; }; 8FC7FE9592C368CA2F614E879D2D05F5 /* CallstackHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallstackHelper.h; path = xplat/Flipper/utils/CallstackHelper.h; sourceTree = ""; }; - 8FCDC781E38756A04A3732BA0422E7B5 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; 8FF5BADF156183AEA00C3ED1F5B77F2E /* FlipperClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperClient.cpp; path = xplat/Flipper/FlipperClient.cpp; sourceTree = ""; }; 8FF6199AEAF7121D0AE424638D5725C7 /* QuotientMultiSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuotientMultiSet.h; path = folly/experimental/QuotientMultiSet.h; sourceTree = ""; }; - 90296E1E32178391C6AB06323D26E6CE /* react-native-safe-area-context-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-safe-area-context-dummy.m"; sourceTree = ""; }; + 90093221BAE0DBF1DA1E4AD409AF4D68 /* UMFaceDetectorInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.release.xcconfig; sourceTree = ""; }; 9030AC7B4B1B893267055C59910B29AE /* Allowance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Allowance.h; path = rsocket/internal/Allowance.h; sourceTree = ""; }; 904361E90A52583205848B9F91E5DF80 /* UIView+SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+SKInvalidation.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIView+SKInvalidation.h"; sourceTree = ""; }; - 904B62DA18A599479B46FB4C7413D88B /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; - 905DF53B9D7EB2C9D2DFF66ED4A59C55 /* UMFileSystemInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.release.xcconfig; sourceTree = ""; }; + 90513B4ABA29DD56CEC22203DF268ED3 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 907041439734F9C359301C4276389E71 /* Flowables.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Flowables.cpp; path = yarpl/flowable/Flowables.cpp; sourceTree = ""; }; - 907E4E7E56EA71EF2252C76C4385A7CD /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; + 908527F5DA004C72A551B5C6E3617F90 /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; + 90872266C38F5CC92D54264C2475B988 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; + 908B5E94A817C1FB2AFE04151D97743E /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 90A101C1BF62F8015950FE51820C9005 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/portability/Malloc.h; sourceTree = ""; }; 90A97D7281D270A8185628EF9E0E147A /* ReentrantAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReentrantAllocator.h; path = folly/memory/ReentrantAllocator.h; sourceTree = ""; }; 90B4D1DBD0FE3FBA0170C4211A38E7F7 /* IOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBuf.h; path = folly/io/IOBuf.h; sourceTree = ""; }; 90B64C4E2C319CF52970A31675FC54E2 /* Framer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Framer.h; path = rsocket/framing/Framer.h; sourceTree = ""; }; 90CE73A36750830EBB13C0BBA60B4644 /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; - 90DF2E522D992D90A49BEBD74E5284A1 /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = ""; }; - 90E1207CAC8C95AB1F458E75F09B7813 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; 90E9A66F61B1987C02C1F6B39436DB87 /* Random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Random.h; path = folly/Random.h; sourceTree = ""; }; - 90FC737285D1D3969BDF19BE4863D4C5 /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; + 90EAB669E72009D3CE8E989050ABF0E5 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; + 90FB941DD33F09DDEA39C157FCAF1264 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; 910B6E346ADF2EA88D681358353F2385 /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; 910B713ED3D194484C37B0EA32185B88 /* Combine-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Combine-inl.h"; path = "folly/gen/Combine-inl.h"; sourceTree = ""; }; - 910B716DEA6D359A8E55A8013FEB9C60 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; - 910D50CD85DE5BAB15CFB3344F112A9B /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; - 9119D4D3ACD814C75D13B064DC3B83ED /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = ""; }; - 911C0005841625987C56A533CC2ACB78 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; - 916445C5D0D965FAFDCB5F3E2024B88C /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; - 916D2ECCE2AA53071AB94C6DB377C034 /* RCTFileRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileRequestHandler.mm; sourceTree = ""; }; - 917436F04D28B8273DFF73770698D8CB /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; - 919C50A6D079D487FD6A921C0145CE02 /* RNDateTimePicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.debug.xcconfig; sourceTree = ""; }; + 9112E2FAF4D576BAE202B4F4281B5FF5 /* RCTLinkingPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingPlugins.h; path = Libraries/LinkingIOS/RCTLinkingPlugins.h; sourceTree = ""; }; + 913C710CC0D2498D2B52DF900DDC9CBA /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; + 914EBF309912C985E247DF24426247E8 /* EXAppleAuthentication.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppleAuthentication.release.xcconfig; sourceTree = ""; }; + 919838236667A64B9CB82BC946C38E90 /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; 91A9CCDD95C21077EEF8CE07C19AB3AC /* crashlytics.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = crashlytics.nanopb.c; path = Crashlytics/Protogen/nanopb/crashlytics.nanopb.c; sourceTree = ""; }; - 91BA18ED6F6AF5B08848DD3D1BFA26C4 /* EXHaptics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.release.xcconfig; sourceTree = ""; }; + 91AB230F03D20F87F1EC190F45D1EFC1 /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = ""; }; + 91B2DE28E9A692B96A4835AEF15D02EE /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; 91BB95B9291ACE4D0989F38EC2988C6F /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; 91BCB69A1E4DD62C7128ADF940448421 /* GDTCORConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORConsoleLogger.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m; sourceTree = ""; }; - 91BE08716D9890E5E995E3D75EA07C0B /* RCTImagePlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImagePlugins.h; path = Libraries/Image/RCTImagePlugins.h; sourceTree = ""; }; - 91C16FDAC603B24260D05A1CA37F4280 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; 91C24BBC5333024EBB822ECEC5BD27E8 /* AsyncTimeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTimeout.h; path = folly/io/async/AsyncTimeout.h; sourceTree = ""; }; + 91D226FCE30BC7A319F2B070E94819F5 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; + 91DE9659A9F5DF223DAF15667A44EF39 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; 91EEC9727B2A6DCDD162A7D9CC1B2301 /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = ""; }; + 91F02B239575217740A7E0E7D99F556B /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = ""; }; + 91F4E3FEF1E29B754525D8E4AB04F6BE /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; 920247926C5331B1EC290AE92CF3C8C1 /* FIRCLSFABAsyncOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABAsyncOperation.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation.h; sourceTree = ""; }; - 92100BE1C38D96A1A7AE0F9E0D1D53C8 /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; + 920A4A1D7E30CF2F6A466C6DE5927C0F /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRedBox.h; path = React/CoreModules/RCTRedBox.h; sourceTree = ""; }; + 921838622BDFEB12CE507B8D55A32497 /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; 921BC9ABA34D5748781D1E6EDBF20E0C /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; - 9252D601BCD628BAFD6AC64ED3C4FB52 /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; - 92583E593A12717DA04A34625A26C660 /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; - 925B493C179939C067B87958520CB2C1 /* ReactNativeVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactNativeVersion.h; sourceTree = ""; }; + 923D9FA5FAB28A78DA172A5126E48EAE /* RCTRefreshableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshableProtocol.h; sourceTree = ""; }; + 925AB7E6055E535474E702A10D7E7692 /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; 925EA221FD57FBAB393A0DFC92DD6D3D /* UIColor+SKSonarValueCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SKSonarValueCoder.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIColor+SKSonarValueCoder.h"; sourceTree = ""; }; 9261C61EF5440C1CCA6B8BD8349FF409 /* Future.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Future.cpp; path = folly/futures/Future.cpp; sourceTree = ""; }; - 926C3209CE2195F08D664BA0AE61D907 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; 926E963CD723D74A05E1CBC44724BBEF /* Parallel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Parallel.h; path = folly/gen/Parallel.h; sourceTree = ""; }; + 927DFF859129888C3409A02CB33B9E13 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; 9281C6096649860F621018DA9B27F992 /* SKDescriptorMapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKDescriptorMapper.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.mm; sourceTree = ""; }; + 928B336238E52683E9DA84AD368A45C3 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; 928E9DFC14EFAE16D9BC8FA822B681A6 /* RSocketClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketClient.h; path = rsocket/RSocketClient.h; sourceTree = ""; }; - 92C245C6F25D618B4BDD6F457C28A9EF /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = ""; }; - 92DF677A3DDE76EC4D1B71DDBA4FAD29 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; + 92C3D71AF53455A575541F6D79EA6900 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; 92E0FB9EC2BAB227D17599B5793BD136 /* SingletonStackTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SingletonStackTrace.cpp; path = folly/detail/SingletonStackTrace.cpp; sourceTree = ""; }; 92E1DA3FCE428FC7F032E7C25C255166 /* TOCropView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropView.m; path = "Objective-C/TOCropViewController/Views/TOCropView.m"; sourceTree = ""; }; - 92E97F9B6E3CC7373BF22EF7FC1F4E9A /* RCTNetworkTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkTask.mm; sourceTree = ""; }; + 92E7FD88520F0381C8BE02EA2E4EC923 /* RNUserDefaults.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.debug.xcconfig; sourceTree = ""; }; + 92F1950224E717B54A556C01B41BCEBC /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = ""; }; 92F66EDE16505F83607A0EFFA7674116 /* IntrusiveList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntrusiveList.h; path = folly/IntrusiveList.h; sourceTree = ""; }; 92FA1F7177A0D7300887658417DBE8CE /* ResumeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ResumeManager.h; path = rsocket/ResumeManager.h; sourceTree = ""; }; 92FF476829752ADDF95984D8F7AC0D7A /* AtomicUnorderedMapUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMapUtils.h; path = folly/detail/AtomicUnorderedMapUtils.h; sourceTree = ""; }; - 931A5BAE4E60413B254829DC0CF1E382 /* EXAppleAuthenticationButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButton.m; path = EXAppleAuthentication/EXAppleAuthenticationButton.m; sourceTree = ""; }; - 931C706B472CBA1C47C29E0E24B67BD9 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; + 9304F71D50FA4B8D88B58E16E3309E0F /* Pbkdf2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Pbkdf2.h; sourceTree = ""; }; 93216BD09E76361A7787201D814B5908 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = ""; }; - 93286CC5CF180ABA659F3A0B996FAA7C /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 93317CB6FAB6B5749D8046FD3B0DCCCD /* RNRootView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.debug.xcconfig; sourceTree = ""; }; + 932E06F35BD30FDB84DA15CA2EE1834F /* RCTSettingsPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsPlugins.h; path = Libraries/Settings/RCTSettingsPlugins.h; sourceTree = ""; }; + 93318E50298AE5B4F38C06E4D233A00E /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; 9347867965816742C839763681673031 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = ""; }; - 934ADB02D0E720443CAF0F8B49A48D6B /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; 934D09E554C7222B4985745923F5709C /* ConnectionSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionSet.h; path = rsocket/internal/ConnectionSet.h; sourceTree = ""; }; - 936320A64EDEEA8877AC905B74B766CB /* UMCameraInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.release.xcconfig; sourceTree = ""; }; - 9372BF2C4DCE7E376A2E15DAC6D4411B /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = ""; }; 93857FE1524EF997E10A0BD0551E8F91 /* TOCropScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropScrollView.h; path = "Objective-C/TOCropViewController/Views/TOCropScrollView.h"; sourceTree = ""; }; + 938E0011BFC8D17952D67104D78B2D2D /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = ""; }; + 9397784A9A2A7149D76FD7BAB094F1FA /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 9397865973489CE4FCB045A40BDEFE2F /* TOCropScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropScrollView.m; path = "Objective-C/TOCropViewController/Views/TOCropScrollView.m"; sourceTree = ""; }; - 93B15EBA61520B294F2806D2491F89B9 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; + 93C65F7F5646FCD41A7119937A3BA994 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; + 940966263C1A8EAA81AB593C8883D9F1 /* RCTSha.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSha.m; path = ios/RCTCrypto/RCTSha.m; sourceTree = ""; }; 940A2EDDED3BA8FE4F7437F924DE902C /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; - 940F2ED5D095A85104318D927C91282C /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; + 940B22BA9A4EB605FC1C5AABA249EDEC /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; + 94107D879BCEB21762CBDC99DAB6E41E /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; + 9411ACCE57314AFC3CBEF643BA9D06B0 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertManager.h; path = React/CoreModules/RCTAlertManager.h; sourceTree = ""; }; 942063CD54FC46D4C00E63EC9C824B6C /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = ""; }; - 94218B8FFE4CD853DBA47FA9D80434AD /* react-native-orientation-locker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.debug.xcconfig"; sourceTree = ""; }; + 94390EE11EEEF33FF287B2AD01387C28 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; 943B56E5FD2CBF41AA8829BD63BE3949 /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h; sourceTree = ""; }; - 944B0F7A57C59A4360F98042BF96033F /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; - 9454578DD2DBF791A1854C6669918622 /* RNFBCrashlyticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBCrashlyticsModule.m; path = ios/RNFBCrashlytics/RNFBCrashlyticsModule.m; sourceTree = ""; }; + 943F85E38AACA47C1407F8324CD900A3 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTiming.h; path = React/CoreModules/RCTTiming.h; sourceTree = ""; }; 945C7B9DE5C7749C8AF93C78396E33F3 /* JemallocNodumpAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocNodumpAllocator.h; path = folly/experimental/JemallocNodumpAllocator.h; sourceTree = ""; }; 945D027B31400F5D962EB6D46E107B13 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event.h; path = src/event.h; sourceTree = ""; }; + 9462B04FF146D96412FE84421F32838B /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; 9465B9D6403EED9F3BB5F0CC2638C5E1 /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; 946CEEB02110E768A56394600C152040 /* libssl.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libssl.a; path = ios/lib/libssl.a; sourceTree = ""; }; 9476641CFC65AAFBD424E20B037D972C /* PriorityUnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedBlockingQueue.h; path = folly/executors/task_queue/PriorityUnboundedBlockingQueue.h; sourceTree = ""; }; 949C95689BC714498AA6763F62F2FF25 /* FrameSerializer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameSerializer.cpp; path = rsocket/framing/FrameSerializer.cpp; sourceTree = ""; }; + 94B016C7B1E321C82D0956ABBFC2C864 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; 94C181505D22DBB1A12C3E9EA40A1FEB /* lossless_enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_neon.c; path = src/dsp/lossless_enc_neon.c; sourceTree = ""; }; 94E7A39379698281F37AEFEA27990679 /* Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Folly-prefix.pch"; sourceTree = ""; }; - 94F02BA5410D8CBECFD4EF39436ED427 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; + 94FD73B8023F68344113833DE2CAC507 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; 94FFDD103D6234CF206B76CD1A66872B /* analysis_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = analysis_enc.c; path = src/enc/analysis_enc.c; sourceTree = ""; }; 950F36E5F7F16D8DDF792D8E0C53DA81 /* bn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bn.h; path = ios/include/openssl/bn.h; sourceTree = ""; }; 951474F407686268CDA66E09DAEFC146 /* ssl3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl3.h; path = ios/include/openssl/ssl3.h; sourceTree = ""; }; + 951567F288583437515CCC2E4F51CFF0 /* React-RCTText.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.release.xcconfig"; sourceTree = ""; }; 951CAAE88A7E15B568918C8CE389AB4D /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/synchronization/Utility.h; sourceTree = ""; }; + 95484398BD43F93D52448A2E0F064600 /* RCTDevLoadingViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingViewProtocol.h; sourceTree = ""; }; + 9563E977201559A0134033EC35B2CFAF /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; 956F5D99E06DD7FD97D9460CE5CB5FD5 /* Assume-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Assume-inl.h"; path = "folly/lang/Assume-inl.h"; sourceTree = ""; }; 9585138CAA967669EEF70E90C8FEB870 /* SKObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKObject.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKObject.mm; sourceTree = ""; }; - 958878E7F5EB446B20B4070569600ED0 /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; - 9597CFEC9BA8376B97C82F1836CC6245 /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; + 95AF288A0C519673FD1D3DFFFC6DB69A /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; 95B1AD2818AC61222A735E1B72CA44D8 /* demux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demux.h; path = src/webp/demux.h; sourceTree = ""; }; + 95DE7649994A89BB12E5BC74C4BBBBF1 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; 96088961000596DE7AC10CC4450620F4 /* TOCropToolbar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropToolbar.h; path = "Objective-C/TOCropViewController/Views/TOCropToolbar.h"; sourceTree = ""; }; - 962C9C1558BE0FBB69BAF645AD26C2A1 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; - 9655546D55EF3CA44CC44C6FBE351C28 /* RNFBApp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBApp-dummy.m"; sourceTree = ""; }; - 967230DF1C3FE2DD0BD4851B40CCC5B4 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; - 9672644DCA64089147DE331ED18B734D /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; 968663FA1FB09B860DD8510075F2EAEE /* HazptrThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThreadPoolExecutor.h; path = folly/synchronization/HazptrThreadPoolExecutor.h; sourceTree = ""; }; 96A57B02FF30BD10957597C5A1C0DABE /* TokenBucket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TokenBucket.h; path = folly/TokenBucket.h; sourceTree = ""; }; - 96C0B3299F989768C3E116301D81EA57 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; - 96C86D44150486D099DDB2694E5E7BCA /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; 96CA2C908A06FFB3AE8A31E1051A78AD /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; 96CD31CF3530DEE59CAE211676707481 /* TLRefCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLRefCount.h; path = folly/experimental/TLRefCount.h; sourceTree = ""; }; - 96E629813A79E1A1B2A6F1C220CB9F57 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; + 96E754743729641DCA959EB39FEE4CCD /* UMAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppLoaderProvider.h; path = UMAppLoader/UMAppLoaderProvider.h; sourceTree = ""; }; 96F3280EC2ACE76E96BFBDD0D16DEA5C /* FIRCLSUUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUUID.m; path = Crashlytics/Shared/FIRCLSUUID.m; sourceTree = ""; }; 96F787CF090DDA037FA87DAA4ACFE5C7 /* GroupVarint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarint.h; path = folly/GroupVarint.h; sourceTree = ""; }; 96FCCAB6D6C3A3FABF1F45FF497AE2E1 /* ShutdownSocketSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ShutdownSocketSet.h; path = folly/io/ShutdownSocketSet.h; sourceTree = ""; }; 9704D4A31BB885EA1F89FD4630AE3B2D /* GDTCORTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransport.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m; sourceTree = ""; }; - 9708539E7BF99FA329197A49573F80C1 /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9710E213DF582CC31939C04EE0D5A781 /* RNFastImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.debug.xcconfig; sourceTree = ""; }; 972307791D3909AD02BA6255085CBEBE /* rpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc.h; path = src/event2/rpc.h; sourceTree = ""; }; 9725C06642ED2A558A105962D98A73F1 /* SSLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSession.h; path = folly/ssl/SSLSession.h; sourceTree = ""; }; - 972DD2AA0947D1FCE181610CF7DD8ADD /* UMFileSystemInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.debug.xcconfig; sourceTree = ""; }; - 9733E3EA059013A66F730CC18D6F7888 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; + 97277C5DAD93FA668839E3B22ECC3F4E /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = ""; }; + 9731C43347EF79296227EA00C54C4F9F /* RNCSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewManager.h; path = ios/SafeAreaView/RNCSafeAreaViewManager.h; sourceTree = ""; }; + 973566A0731048F981CB918094BACFB0 /* RCTSha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSha.h; path = ios/RCTCrypto/RCTSha.h; sourceTree = ""; }; 9737529540B90891761E6E271EFB788C /* EventBaseThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseThread.cpp; path = folly/io/async/EventBaseThread.cpp; sourceTree = ""; }; + 974179F395B152EAE8203AD985C85A84 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; 974231CA2D92B7FC40AA468569B99461 /* FIRCLSRecordHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordHost.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordHost.h; sourceTree = ""; }; + 974D27C6BB7FA744CAF29AFB084679CD /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; 977AACBE4CE84B021995365A14DB94E6 /* AsyncSSLSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSSLSocket.cpp; path = folly/io/async/AsyncSSLSocket.cpp; sourceTree = ""; }; - 978114B5BFEDE880EDCF41632D8A9570 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; 979860C073443F85314DE3A66FB900CC /* FIRCLSInstallIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInstallIdentifierModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSInstallIdentifierModel.h; sourceTree = ""; }; + 97AA77101C4F58F411C23FBECA88553B /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; 97BBAE9AEA0ECF8584025A7CB42584E1 /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.m; sourceTree = ""; }; + 97D492645A87D04D738F814A6F684B5F /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = ""; }; 980860B4EBD4FEE077A8347D1C65272B /* FIRCLSRecordBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordBase.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordBase.m; sourceTree = ""; }; - 981C51D036ED8F8BACDAAE65B23E5F15 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; - 98901934FA5E1814FDAB823CAFD4F9D0 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; - 9892AC57B2D11F83B974FADF819E7B3D /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; + 984B021CE47144ED2C3F29BB03912A66 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; 9893F1FF5D07793FA6DCEC1628856C0B /* SmallLocks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SmallLocks.h; path = folly/synchronization/SmallLocks.h; sourceTree = ""; }; 98A06C6ED02BDC47D135C8D13C803FF3 /* SKRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKRequestInfo.m; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.m; sourceTree = ""; }; - 98A13AFEBB39F488516653C7CC75C935 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; 98DB8D635F75EC308CD57804A3A446C6 /* Flipper-RSocket.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-RSocket.release.xcconfig"; sourceTree = ""; }; 98EB8AE36B3ADC1E1C75984D08CA4F69 /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; - 992A71B82D810DFD51FB042D3A046289 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; - 99301D52ABA5602CDA8549C2847BE9C5 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; - 99345556668772A8DF17604C052E7052 /* RNCSafeAreaProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProvider.h; path = ios/SafeAreaView/RNCSafeAreaProvider.h; sourceTree = ""; }; - 994EA60A4463CD206016C425E8C8D2E6 /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; + 9906551BAF3D78633755ADBE82C8358C /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; 995177A13A1B08DC476F83C60261146E /* FIRCLSUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSUnwind.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind.c; sourceTree = ""; }; + 9953D75B31B4F5EE4A8B43B1F7A626F2 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; 995CB46BC392BF0AF27270E18696EA9B /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; - 996461F103F45D5BE5529D84D47528FC /* React-jsiexecutor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.release.xcconfig"; sourceTree = ""; }; - 9989D8FF156402DA473B382F354E8546 /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; - 9997637E9AE122E96AD545C106C528AF /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAccessibilityManager.h; path = React/CoreModules/RCTAccessibilityManager.h; sourceTree = ""; }; + 999615D0AC998BEDAAFFAAB361CD76D7 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; 999B4690B40AD8F2635BE66CC1B9576D /* PTUSBHub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTUSBHub.m; path = peertalk/PTUSBHub.m; sourceTree = ""; }; 99C4DDF3D212EDD1E80C6B0E5BB41DD7 /* FIRInstallationsAPIService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAPIService.h; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h; sourceTree = ""; }; 99C9CAFFCFE22274385F710F072B29A7 /* MemoryResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryResource.h; path = folly/memory/MemoryResource.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; }; - 99D6277633D0745518D5EEC9BB5A6D08 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 99F03C1665761FA81336C8E67D423DAC /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; + 99EA8F25F706103275853B27929389C0 /* Aes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Aes.m; sourceTree = ""; }; 99F241E194119E22497F0BBE063E2FF8 /* ParallelMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParallelMap.h; path = folly/gen/ParallelMap.h; sourceTree = ""; }; - 9A19805C017832692074F5E607A22CA7 /* RNFBJSON.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBJSON.m; path = ios/RNFBApp/RNFBJSON.m; sourceTree = ""; }; + 9A1B7F2CAA77C2A06EFE232F2D59DA79 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; 9A26B1E2138AF774E3D5228700334E96 /* FIRCLSCompactUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSCompactUnwind.c; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind.c; sourceTree = ""; }; + 9A2F720A66EB9BABFED4F0746D5D8628 /* UIImage+Extension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Extension.m"; path = "ios/src/UIImage+Extension.m"; sourceTree = ""; }; 9A31D59FFB8BAA76F5182ED7C26E43BC /* PublisherBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PublisherBase.h; path = rsocket/statemachine/PublisherBase.h; sourceTree = ""; }; 9A36ADBAA7FED27F1E4A346CA02A5DC7 /* webpi_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = webpi_dec.h; path = src/dec/webpi_dec.h; sourceTree = ""; }; + 9A3744465D93ADBE55E87D06E7908F39 /* RNRootView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.debug.xcconfig; sourceTree = ""; }; 9A382AD3DB08D3BAA1277207D85CDD48 /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = ""; }; - 9A493FF5ECE799F8773951B83D84B40D /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; + 9A6C8BC8D9E8F68B539AE68210D40977 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; 9A749148F7E2718DB58217FAA735FC64 /* enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse41.c; path = src/dsp/enc_sse41.c; sourceTree = ""; }; 9A753105AFC15D0D5195B78D817D0CFE /* FIRCLSReportUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportUploader.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportUploader.m; sourceTree = ""; }; + 9A7CD66AC4A0E175359962C75D0CAEA5 /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; + 9A88152DDF176713D7E5325BFE9C419E /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; + 9A8A50C0FE61109864D0DE6C1C2728A4 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; 9AE848FA083D178953EBCE99B1AE60BB /* FIRCLSProcessReportOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSProcessReportOperation.m; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSProcessReportOperation.m; sourceTree = ""; }; 9AEEA5A29B1E57C2E1292C34D4E013EC /* ThreadCachedInt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInt.h; path = folly/ThreadCachedInt.h; sourceTree = ""; }; 9AFF0774B1B5AEBD5F516109A73ECB09 /* ui.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ui.h; path = ios/include/openssl/ui.h; sourceTree = ""; }; - 9B0299C2B37069873D2F1DA966C6E45F /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; + 9B019BB6A9EEF24D3F907B21B9A35AD1 /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; 9B0AAE84C3EF2B9C607571DAACB65FF4 /* FIRCLSURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSession.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSession.m; sourceTree = ""; }; 9B1FEA7C0C077226D84162CF1ED34F9A /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = ""; }; - 9B3B1234649236B562BD6FCC80E8053C /* RCTSettingsPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsPlugins.mm; sourceTree = ""; }; + 9B2422CF70802E4E1E01EA9DB34DC77D /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; + 9B6513CA650B24002DEDA91FFD42C220 /* RNCSafeAreaProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProviderManager.m; path = ios/SafeAreaView/RNCSafeAreaProviderManager.m; sourceTree = ""; }; + 9B6AEAFA772885546685732B096CE7CB /* NSData+EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+EXFileSystem.h"; path = "EXFileSystem/NSData+EXFileSystem.h"; sourceTree = ""; }; + 9B6B6D6CC8D385E288AA757E1E8A5ED1 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; 9B7BE8F2D52CAAC1A1A0D5FA4C11331E /* UIColor+SDHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SDHexString.h"; path = "SDWebImage/Private/UIColor+SDHexString.h"; sourceTree = ""; }; - 9B891790864D2327604E885A1BB1CE29 /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = ""; }; + 9BA95D42F40D31629F11CA7A8071D173 /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; 9BABD11FF59C0C00F4255F87443E298B /* IPAddressV4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV4.h; path = folly/IPAddressV4.h; sourceTree = ""; }; - 9BFB858FFCD75C16524DAE41E50EDA6C /* FBLazyVector.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.debug.xcconfig; sourceTree = ""; }; - 9BFE97469F8EBB187FAE310F59862C63 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; + 9BDE64646D9D223282E0F76784510950 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 9BF3FB8854EA8EBF72F9E09A810FD653 /* RCTTVNavigationEventEmitter.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTVNavigationEventEmitter.mm; sourceTree = ""; }; + 9BFCE08E6AF80A47463D31DA35651250 /* RNCMaskedView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.release.xcconfig; sourceTree = ""; }; 9C045DC314E85068EB7D60CC0222BF84 /* rescaler_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips32.c; path = src/dsp/rescaler_mips32.c; sourceTree = ""; }; 9C0DE7918741A106452A0BF31E8BF336 /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = ""; }; - 9C190D329DAF3108EFA7B75F70E14C21 /* EXConstants.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.debug.xcconfig; sourceTree = ""; }; 9C1AC88AB1451F95FD7ECE33D22387CF /* DoubleConversion.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.release.xcconfig; sourceTree = ""; }; 9C251BDD668A0833CABC259C54C08DB3 /* Pods-RocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; 9C2E1877EE5FC0B6EEBBDDEFA3A94CC5 /* InitThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InitThreadFactory.h; path = folly/executors/thread_factory/InitThreadFactory.h; sourceTree = ""; }; + 9C358D353DD141BD21895040795E55AC /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; 9C44288E4F9D989101F85D6BC24EA9B5 /* Pods-ShareRocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ShareRocketChatRN-dummy.m"; sourceTree = ""; }; 9C476D8F58C1AB32EAB39D6ACAF1959E /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Sources/Private/FIRComponent.h; sourceTree = ""; }; - 9C59E950AED0EA83139AD0A0DDD4D111 /* ReactNativeKeyboardInput-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardInput-dummy.m"; sourceTree = ""; }; - 9C6B6BA9573A3D5114944B9DD5890D74 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; + 9C4D51D385772E2BBF1A10656FD38C4D /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; + 9C670B14A01FCE56532A07BE5D0B6417 /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = ""; }; + 9C68548D6C785F1993C49879BED5F4C2 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; + 9C689CCE45F014929C9A2B69B9A6FF60 /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; + 9C6CC98D84C1DFD6F4B303A32049966E /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; 9C8D15BD98064FC8CD29C15DDA8B429F /* yuv_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_neon.c; path = src/dsp/yuv_neon.c; sourceTree = ""; }; 9C8FF16709CB4F3C15BDCEA85EAE552D /* TOCroppedImageAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCroppedImageAttributes.m; path = "Objective-C/TOCropViewController/Models/TOCroppedImageAttributes.m"; sourceTree = ""; }; + 9C96217247B430EF9B379F1445129888 /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 9C9A254A254A1AC4B483B0AB59F19BA2 /* SafeAssert.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SafeAssert.cpp; path = folly/lang/SafeAssert.cpp; sourceTree = ""; }; + 9CB144DB24C9E77FE8CFE6E51E4BA56B /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; + 9CB60E2C44F5337D7A4F109C9E680E98 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; 9CC78DB2A1715FC2DC8188A059408CE8 /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; - 9CE1A9CF7F02C3FA486D29963BBAED13 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; 9CF6E2E9DAF8B678188507245149E047 /* evhttp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evhttp.h; path = src/evhttp.h; sourceTree = ""; }; - 9D0511FB3538261E00C6038C99BC7901 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; - 9D0A00D1A88171A2D8A975BE1ABBBDF3 /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; - 9D1E5807E6B2E750827BEC4F53052268 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; - 9D363A821FA6441C0415E5D82EAFC999 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; 9D3D9958F6CB7E4E0642099398810093 /* IOBuf.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IOBuf.cpp; path = folly/io/IOBuf.cpp; sourceTree = ""; }; - 9D5252337079F8CE162493DD6B908CB9 /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; 9D5DAD20CF4A7EBEC0EF93F1E3C7CCFC /* DelayedDestruction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestruction.h; path = folly/io/async/DelayedDestruction.h; sourceTree = ""; }; - 9D7D30FD062FA2F4CE761A3A1CCA8F85 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; - 9D7F3EAAC32341136ACA4C5AB471EAB1 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; - 9D8B89C272CF86B251E03058FD3D8ACA /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; + 9D65ACE4894B7C6D19401FC9D7F79DF0 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; 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; }; - 9DC6AB712F618A1FAB640E85CC25EE6D /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; + 9DB5D050E2903F9E86F8DA2C7E0D42D1 /* react-native-safe-area-context-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-safe-area-context-prefix.pch"; sourceTree = ""; }; 9DD3EF1C6D3DE055DAB3B1DAC5262D91 /* ReentrantAllocator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ReentrantAllocator.cpp; path = folly/memory/ReentrantAllocator.cpp; sourceTree = ""; }; - 9DDBF86AF93CBB926DC4E4BAF0BCB169 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; 9DE8C076A7F3BBAB0915FD7A48723018 /* FIRInstallationsStoredItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredItem.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m; sourceTree = ""; }; 9DEA61F84FCCD1A8BC54C4031629C8D6 /* SpookyHashV1.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV1.cpp; path = folly/hash/SpookyHashV1.cpp; sourceTree = ""; }; + 9E002D3D0835B9BAD650C25C5FD482FB /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; 9E364C59C27AA05317CF1F625F7F0AB3 /* libevent_core.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent_core.a; path = lib/libevent_core.a; sourceTree = ""; }; - 9E440C343714FE4959B71309ABB82D0D /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; - 9E647A63FBE8492458D2D3E07E006264 /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = ""; }; + 9E3C2AA1E332C41F4597D3BE7D3DA30A /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; + 9E5506C6B5BB0E34728B18BE119D9031 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; 9E78A6591875A2E87C3D9B92C25BA517 /* SerialExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SerialExecutor.h; path = folly/executors/SerialExecutor.h; sourceTree = ""; }; - 9E9417DB68C894934F552EDBEFEE30B4 /* RNFBAnalyticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAnalyticsModule.h; path = ios/RNFBAnalytics/RNFBAnalyticsModule.h; sourceTree = ""; }; - 9ECE254E55D820019E2A31F099741180 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; + 9EA7B638DE3BA0082760D9A915C72D46 /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; 9ED39D48FF337EEE3AAED3D9E33340B8 /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; - 9EE033307D0F79534498A6083415BD28 /* UMAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLoaderInterface.h; sourceTree = ""; }; 9EE3279EA0E17FEC633AF8BD94F01D87 /* FrameFlags.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameFlags.cpp; path = rsocket/framing/FrameFlags.cpp; sourceTree = ""; }; 9EE8EABA697CAD3C088C278AAF62F880 /* PThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PThread.cpp; path = folly/portability/PThread.cpp; sourceTree = ""; }; + 9EEBE3FB9E6A370DF39E06D21B15BE38 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 9EEF581B0A0DDC0537B752219C768A2C /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; 9F0CDC412D3BC1DE73D9AA45C945E83A /* ThreadWheelTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadWheelTimekeeper.cpp; path = folly/futures/ThreadWheelTimekeeper.cpp; sourceTree = ""; }; + 9F1C30E13C60F490B8A7F2FC458DE848 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; + 9F200047510DDD9139206D22E894C7E1 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; 9F214FB06E444D8A7000EECFB6744CA2 /* FIRInstallationsAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResult.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsAuthTokenResult.h; sourceTree = ""; }; 9F22E961462439F5DE19AF2A9AB73729 /* FixedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FixedString.h; path = folly/FixedString.h; sourceTree = ""; }; - 9F406DC9FC0FBA22BDD27D58E004442A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 9F40E7C1DA00B7438765C6875D8A5E83 /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; + 9F444D3A41C282D1D574A988EB8C947D /* RCTAnimationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAnimationPlugins.mm; sourceTree = ""; }; 9F4861194EFDA9EF727093A75C3F1512 /* ScheduledFrameProcessor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledFrameProcessor.cpp; path = rsocket/framing/ScheduledFrameProcessor.cpp; sourceTree = ""; }; + 9F4E9AAA9497C7411F9336045624D9F2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 9F51225B19F6FCA744F6B84D257914B6 /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport.h; sourceTree = ""; }; 9F5591EAF7C1CA860B874A46EB898BE1 /* TOCropViewConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropViewConstants.h; path = "Objective-C/TOCropViewController/Constants/TOCropViewConstants.h"; sourceTree = ""; }; 9F5807D7BDE94BFE16ED6972BD019525 /* FlipperStateUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStateUpdateListener.h; path = iOS/FlipperKit/FlipperStateUpdateListener.h; sourceTree = ""; }; - 9F5C0D3412115B1C70F87A175BFA94DB /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; + 9F6BEB4055793CCB7C6172EA559CC5F8 /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; + 9F79487D60FD7EA8B246E90D3BF4B209 /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = ""; }; 9F79B09A11FC5373131D8BD312B9C5FE /* FIRCLSUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUtility.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSUtility.m; sourceTree = ""; }; 9F80816C241D2134924EA901807D4877 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "Objective-C/TOCropViewController/Resources/zh-Hans.lproj"; sourceTree = ""; }; 9F80B46EE1ED0DDF73DA0C187058D9F8 /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; + 9F822CDE094D1C8C018E2062E3B779C5 /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; + 9F823EB7BF3A2AE2CBA4A958D05EBA3D /* EXFileSystem.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.release.xcconfig; sourceTree = ""; }; + 9F92CE6F80CBFB4B11ADD6D6AC0D0586 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; 9FB8473115801B8DAADF0B2E3A59B836 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; - 9FC5884C82AABE2EC8332BCB64221E9A /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; + 9FBB57C4E86E8DBF43BB7E6E576B6FCB /* RCTHmac.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTHmac.m; path = ios/RCTCrypto/RCTHmac.m; sourceTree = ""; }; 9FC94F54E8C416696AED4A2C8A8F9232 /* GDTCORUploadPackage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadPackage.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploadPackage.h; sourceTree = ""; }; - 9FD87FA1B82E5D26C5A6665CC1B6F36B /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = ""; }; - 9FE33FEB54FCCD540B5C8AF66F5BA1B1 /* RNCMaskedView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.debug.xcconfig; sourceTree = ""; }; + 9FCB8BCA853AFFF0B707A6E40BF3A15D /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; 9FE5CAE96A925B150D03CF7F1F87D840 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; 9FF9192DB0085A1E3A6AAC823BDDFCB9 /* SharedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SharedMutex.cpp; path = folly/SharedMutex.cpp; sourceTree = ""; }; 9FFBB1EA94B4B41E86AFD609025CCE50 /* MPMCPipelineDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipelineDetail.h; path = folly/detail/MPMCPipelineDetail.h; sourceTree = ""; }; + A006EF98F9A04DB3992598CA5A7CBC4C /* 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; }; A0084D9BDAA8D290DA7A8AB2A3D504D6 /* dec_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse2.c; path = src/dsp/dec_sse2.c; sourceTree = ""; }; A00A4F1F10995C8C9B5B661A47C3602C /* Frame.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Frame.cpp; path = rsocket/framing/Frame.cpp; sourceTree = ""; }; - A020774C760BA3ADBB770E3ECC848753 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; + A019AB4378C025E44D01E34104D1ACC9 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; + A01E6B7A5A694C940D621C26BFE22735 /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = ""; }; A04B5CB1B57C0A6012190EBDCBA91165 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = "Objective-C/TOCropViewController/Resources/en.lproj"; sourceTree = ""; }; A0579689A0AA2FD1418C4E1BEC2D759F /* SpookyHashV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV1.h; path = folly/hash/SpookyHashV1.h; sourceTree = ""; }; A057C2D4613AFF46B498C667A434590F /* SKNodeDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNodeDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNodeDescriptor.h; sourceTree = ""; }; - A06771E1FA15F21EA27C833B19E56899 /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; + A07221879DBBCA7A2F1965B6FFEF70DF /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; + A073F0C7139D4139BEB8E29AF22F7236 /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; A081FCF8E24CE17EE6C1EF96819E169F /* CpuId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CpuId.h; path = folly/CpuId.h; sourceTree = ""; }; + A096C271D4C402AE27DDDBFB48CAFCBB /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = React/CoreModules/RCTWebSocketModule.h; sourceTree = ""; }; + A099E36DC8541FE37E87A54002BB71DB /* EXAppleAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthentication.m; path = EXAppleAuthentication/EXAppleAuthentication.m; sourceTree = ""; }; A0A1664C74155B12F00681B9D4E85251 /* Log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Log.cpp; path = xplat/Flipper/Log.cpp; sourceTree = ""; }; + A0A4F9F2CBF92FD226A84C59FA7A1C64 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; + A0BAD312062B71CFECD4ADFD31EEDCF7 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; A0BCB7A5793B7E9EBF95DB101F103273 /* StreamRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamRequester.h; path = rsocket/statemachine/StreamRequester.h; sourceTree = ""; }; - A0D9D6A2339F0BA2D9379EC5E5A14AED /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; + A0C63E63A81405A5C6EB32CF1018A977 /* RCTConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConstants.m; sourceTree = ""; }; + A0CBE66BCB7A5C1380FC7AE1A80C991C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; A0E87E798698FE098A0C563DFCE30C2F /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/portability/String.cpp; sourceTree = ""; }; A1011E110924DC5239489D276CE4D257 /* FIRCLSSymbolicationOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSSymbolicationOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSSymbolicationOperation.m; sourceTree = ""; }; - A10E8C4738B541B45BEF58011E47A174 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; - A110C36112C624ED8ECBF5AF8E1914E0 /* UMFaceDetectorInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.debug.xcconfig; sourceTree = ""; }; + A105509D8A9F07E954F332C530C6C5F5 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; + A13175FC7A083A90924486CB240BB740 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; A137B00CD5DF2AA05399AA9E08F2490B /* Firebase.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.debug.xcconfig; sourceTree = ""; }; A147A30B6FEF86333F09AA5A26499A1E /* ar.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ar.lproj; path = "Objective-C/TOCropViewController/Resources/ar.lproj"; sourceTree = ""; }; A14CE4F1D63089A513D208476C51D825 /* BaselinesTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BaselinesTcp.cpp; path = rsocket/benchmarks/BaselinesTcp.cpp; sourceTree = ""; }; A1673F8C9DD85AC5A52E6094F95F00DE /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; + A17E4986EBB2FA4FF6BE179E2CB3852B /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; A18AED10030E3D4A212708F61EEEEC6B /* asn1t.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1t.h; path = ios/include/openssl/asn1t.h; sourceTree = ""; }; + A19E8CE6ADDD11FD388D78A0BC92AD69 /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; A1A4306CE5201CAC7DC5E1DAD66091AD /* ScheduledSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSubscription.h; path = rsocket/internal/ScheduledSubscription.h; sourceTree = ""; }; - A1A9376297DD52A7F492DD0F82F79FD9 /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; - A1C73AD44C809A7DB22A5F187106DA39 /* ReactNativeKeyboardInput.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardInput.debug.xcconfig; sourceTree = ""; }; + A1A4CC45FC023B26EBA1045B4E382F16 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; + A1C7168B0251D94DB472003FAA6F7E1F /* RCTAppState.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppState.mm; sourceTree = ""; }; A1D820240F0210A102F96722E586A1AC /* Checksum.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Checksum.cpp; path = folly/hash/Checksum.cpp; sourceTree = ""; }; A1E42D060EB9AC14839CB57030345E6E /* TimerFD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFD.h; path = folly/experimental/TimerFD.h; sourceTree = ""; }; - A1E5D39742A35A37A4E784EA66C1B093 /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; + A1EA997FD932C020A5406FA52448A2FF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + A20791D8CF65FC8D4B181535E1C5068A /* UMFontInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.debug.xcconfig; sourceTree = ""; }; + A22290B542A251F93A04F312C7D04FA9 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; A22753CCAF27A03A676310C9D462C3B8 /* ConnectionContextStore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionContextStore.cpp; path = xplat/Flipper/ConnectionContextStore.cpp; sourceTree = ""; }; A22D011F800C14E3E1D42398E3B93B38 /* Observables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observables.h; path = yarpl/observable/Observables.h; sourceTree = ""; }; A22D9A7CFBC22707CE31B8C69953EA96 /* FIRCLSApplicationIdentifierModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSApplicationIdentifierModel.m; path = Crashlytics/Crashlytics/Settings/Models/FIRCLSApplicationIdentifierModel.m; sourceTree = ""; }; A24284C74F85ABEDEA36C8B3588B98E6 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; A24753E35FC2734220C5A1E9A5F5C005 /* x509_vfy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509_vfy.h; path = ios/include/openssl/x509_vfy.h; sourceTree = ""; }; A24C7D282F66A9FD25CBD5041231EA2C /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/detail/Singleton.h; sourceTree = ""; }; - A253EF83DF55BCC8F110EFF0E561CB3E /* RNFBMeta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBMeta.h; path = ios/RNFBApp/RNFBMeta.h; sourceTree = ""; }; - A26259A99D7BB43B4E5B892901507493 /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; A27322334E897A7C3C38F13287D46F2F /* aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aes.h; path = ios/include/openssl/aes.h; sourceTree = ""; }; A2753B277060D11E0A6EF6AA5DB7BCFD /* PicoSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSpinLock.h; path = folly/synchronization/PicoSpinLock.h; sourceTree = ""; }; A2815A30FB1FF4B8F62752C035B70A46 /* AsyncSocketException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocketException.h; path = folly/io/async/AsyncSocketException.h; sourceTree = ""; }; - A28A3F5095CAA1FC8CAE9C7B5F5E0028 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; A2A61E991447F4CBCB200A416E406D4E /* Payload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Payload.h; path = rsocket/Payload.h; sourceTree = ""; }; + A2B73EA0D540C759D83C4600F35E43F4 /* RNReanimated.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.debug.xcconfig; sourceTree = ""; }; A2D7CCDCF1C8DE8449332EF5ECFFFFCB /* FIRCLSSettingsOnboardingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSettingsOnboardingManager.h; path = Crashlytics/Crashlytics/Settings/FIRCLSSettingsOnboardingManager.h; sourceTree = ""; }; A312099D302195A9FF7DF10D03D5EF27 /* libevent.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent.a; path = lib/libevent.a; sourceTree = ""; }; + A3151DD7D723C608DACC7F041A26C855 /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; A3167313ECE7FD9005A4185BF31DB2EB /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; - A35EF79CAC3FCBBDDF05214E4A93FDF8 /* RNCSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewLocalData.h; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.h; sourceTree = ""; }; - A37F4E18B49A65DB3186E273A9501F57 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + A320A3911341C5140ABE961520BBE0BA /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; + A33661B6BA1AE837B7D500B9B7BAC3E1 /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; A380206DA70CE3513CE8C4223608A4D4 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; - A39528DE36943718B9A4D993F4D079A7 /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; + A38CEF72E84E4D8CCB3AF1580184553D /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; A399A511739E94F4FD8E1A82764664FD /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = ""; }; + A3C4A0ED064E3739D0823FBB083D7233 /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; A3CDE3A926A54EE04C600DD76CD5D1DC /* muxedit.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxedit.c; path = src/mux/muxedit.c; sourceTree = ""; }; A3D3DEE16D2637E483164A00BC1D7D23 /* FrameProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameProcessor.h; path = rsocket/framing/FrameProcessor.h; sourceTree = ""; }; - A3EA69EE11ADAF8D290E70524F9C32CD /* RNFBPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBPreferences.h; path = ios/RNFBApp/RNFBPreferences.h; sourceTree = ""; }; A3F2601C7D430A952DA08D18520AAB0F /* SingletonRelaxedCounter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonRelaxedCounter.h; path = folly/experimental/SingletonRelaxedCounter.h; sourceTree = ""; }; + A407E803874A512180988E07B0E2ED4D /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; + A42796C02B772B696F575A4480587B6D /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; A43BCE29FCEF86AAA4D786DE72FCD206 /* FIRAEvent+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRAEvent+Internal.h"; path = "Crashlytics/Crashlytics/Helpers/FIRAEvent+Internal.h"; sourceTree = ""; }; - A4646EA6592A48382242A9808410A72B /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; - A4683F683ADF5793EB03A32071C78EE7 /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = ""; }; - A489583354216CBFC03DB851B4556CD9 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; - A48A8718E4BB3BBAF4546E0B15307BFC /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; + A456557C80F42FDCDB18CF95272BD808 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; + A466E69D1453E4527BAEFDE5D27D7DFA /* React-RCTText.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.debug.xcconfig"; sourceTree = ""; }; + A470B2520D2D0A66F6F244292E0463E9 /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; + A49DF31BFA977D6648A29C2C6C537B98 /* EXConstants.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.debug.xcconfig; sourceTree = ""; }; + A4B3A69AC62C974C063165EF7246FC11 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; A4C8D874A90E0E3DA610AFB8251B5DBD /* RSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketResponder.cpp; path = rsocket/RSocketResponder.cpp; sourceTree = ""; }; - A4D54A32E207A52E94C4F5219C97F37D /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; - A50FD284847D089996CE7B9D64B5E2BD /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; + A4DA2B1B3289D8AEB084D56AD99B69F8 /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; + A4DEC320CA763FB8B1568A52946CE756 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; A535C14C4C0DF18A481BAC455E82A9B5 /* FIRCLSApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSApplication.m; path = Crashlytics/Crashlytics/Components/FIRCLSApplication.m; sourceTree = ""; }; A5577C0F2D8D5C2DC5D7EA3BBC536D8F /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = SDWebImage/Private/SDAssociatedObject.m; sourceTree = ""; }; + A5677D7CF54E83BEDEC8DB86156DB6E7 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; A56991907904515F662A4154291C453E /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = ""; }; - A56BC009F9F3D20ACF799DED02654DB1 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; - A57BA32A859BD99754F04A2532EAA4D5 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; A57E897FD9EB7C345ECF04ED47097BC2 /* FIRCLSFABHost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABHost.h; path = Crashlytics/Shared/FIRCLSFABHost.h; sourceTree = ""; }; A58A2DF8CAF4BB6A8F111A113CADAF9A /* FireAndForgetResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FireAndForgetResponder.cpp; path = rsocket/statemachine/FireAndForgetResponder.cpp; sourceTree = ""; }; - A5A72C91B95BBE1B5764C5113D1042ED /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; - A5BDC94EBC9ED964369495694B7D1365 /* React-RCTText.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.debug.xcconfig"; sourceTree = ""; }; + A5A38ECA87AFCF18D64753DDF96D020A /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; + A5C6250905443356CFCF031CD00D61A5 /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; A5C8FBEB81978D0198E1F01083624C7F /* nanopb.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.debug.xcconfig; sourceTree = ""; }; - A5C96A1C11DB3ED91606C4295CE5004A /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; A5CBB2C669A31CB1A41D967FB8337B96 /* SKHiddenWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKHiddenWindow.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKHiddenWindow.h; sourceTree = ""; }; - A5D95122CFB7FE65048C4E038BAF4AE5 /* RNCMaskedView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.release.xcconfig; sourceTree = ""; }; - A5DBF0EF0AE9E9D08516585E61E7AD3F /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; - A5ED4395691E2745D117436EC74A630D /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; - A5F5D00C3B1B9044219B9557875AC433 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A60EE0DC677F9126D19E38CA9E8F4FF4 /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; - A629ACF8E06C13D5446917A9CEC51866 /* react-native-slider.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.release.xcconfig"; sourceTree = ""; }; - A634CE8A6832A8210B2D1D5A4393D787 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; + A5E8B7591097E0D40C455828E434DF81 /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; + A601AB634FFB37458BEBDCD55A86F8EA /* RCTConvert+FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIROptions.h"; path = "ios/RNFBApp/RCTConvert+FIROptions.h"; sourceTree = ""; }; A634D57EC222D84FF4ECC0A0BFDB203E /* FIRCLSAsyncOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAsyncOperation.h; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation.h; sourceTree = ""; }; A64EACCAC2AD1192454CC5C7C68922BF /* SocketAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SocketAddress.cpp; path = folly/SocketAddress.cpp; sourceTree = ""; }; - A65989EEFCE0BEEE7CC1C7B5746AD31F /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; + A65B79DE925E9D20F359B16D4E5E20E2 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; A65BE022C1E6E9C4E2D24A4B27784FEB /* RangeSse42.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RangeSse42.cpp; path = folly/detail/RangeSse42.cpp; sourceTree = ""; }; - A65BEF8F4688F80EC26978291C60CFE3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + A662F68F07725FE4F23E951AA2ACCCD9 /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A685DADE5B63EB020F3217C711F0F725 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; A687F8B07E3CA701D4812ADD113A2D63 /* ScheduledSingleSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSingleSubscription.h; path = rsocket/internal/ScheduledSingleSubscription.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; }; - A690B77AF36B409F1055F68CA6448437 /* RNFBAnalytics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBAnalytics-prefix.pch"; sourceTree = ""; }; - A69AE08F95980E663E0F174E842E8833 /* RNCSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaView.m; path = ios/SafeAreaView/RNCSafeAreaView.m; sourceTree = ""; }; - A6AB8A3C286ADBC0DD45803999A7441D /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; - A6ADA129893F70144FEF13AEC75F6C50 /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; - A6B532F95BF9183102D4EECEA65C6C40 /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; - A6BD875B4BAD5FF60A223E6B55FE2A2E /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; A6C24D6E1CD9A82E6060BAA7660E9FB1 /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; + A6C598973F0ED3E9D576B49F2421842E /* RNDateTimePicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.release.xcconfig; sourceTree = ""; }; A6C5BE5A9FF7E4B6E04146F4B4ABDAE8 /* ru.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ru.lproj; path = "Objective-C/TOCropViewController/Resources/ru.lproj"; sourceTree = ""; }; - A6F37BCFA3A5E229FD1BB7EC45AB0D94 /* UMErrorCodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMErrorCodes.m; path = UMCore/UMErrorCodes.m; sourceTree = ""; }; - A6FC1CFFB5DC32295F20E44DCDB47E96 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; A7002C4ED447F0AF7C642C886490C66E /* CodingDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodingDetail.h; path = folly/experimental/CodingDetail.h; sourceTree = ""; }; + A72C6F12B355BDC28AEA9A51A506EC03 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; + A731D37C1545BEE1BD1FBED7F1898E45 /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; + A7454DFA3416991FD8CF47A1A8407586 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; A7520D469435750C9E7F2D06CC30E5E6 /* 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 = ""; }; - A76AAED13C095EE24F5B78C280BA7E7D /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; + A767A2F23DF3F32017F033FA84A00D28 /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; A76D6A693C0D21E2384BF0959E030A63 /* Access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Access.h; path = folly/container/Access.h; sourceTree = ""; }; - A77252654B46B877F690EA895ABFECCC /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; + A772281D540534EE390A9517BF3E06CA /* Shared.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Shared.m; sourceTree = ""; }; A775460F308E0E9BECB41B0D5533BCF4 /* GoogleAppMeasurement.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.release.xcconfig; sourceTree = ""; }; A78A9FC207B94E593F87E1CA868BA804 /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Subscription.cpp; path = yarpl/observable/Subscription.cpp; sourceTree = ""; }; - A796CF694DD3645B4FD6E6C681D161A6 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; + A794775F8DF971E6FD1695648F1CC33D /* RCTStatusBarManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTStatusBarManager.mm; sourceTree = ""; }; + A7971C717587662968EDBE106F56E639 /* react-native-jitsi-meet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.release.xcconfig"; sourceTree = ""; }; + A799BE99ACA2C06A7320F5B1B7FF51DA /* RNBootSplash.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.debug.xcconfig; sourceTree = ""; }; + A7B837210F912CC59FC3951EA9CA2A6A /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = ""; }; A7CB4A8E23DEA51B29118A7E23B9ADC7 /* ThreadName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadName.h; path = folly/system/ThreadName.h; sourceTree = ""; }; A82DB10CEF4AD624093C41C5236AECB1 /* STTimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = STTimerFDTimeoutManager.h; path = folly/experimental/STTimerFDTimeoutManager.h; sourceTree = ""; }; - A84270B47B32FFB2AE5802D6A3A49C0B /* EXAV.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.release.xcconfig; sourceTree = ""; }; - A846D19AFA9BD80524577EBBBF4AC156 /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; - A849B46747A2D27F06CD4B0F19DFA865 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; - A8515FB5F1C12DB7D542564CB98954D2 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A861EBD95221184C3571AA73D072093F /* huffman_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_utils.h; path = src/utils/huffman_utils.h; sourceTree = ""; }; A86A1518D8CD6EA2081BF8E945C08764 /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Private/GULKeychainUtils.h; sourceTree = ""; }; - A86A32F345AF00A0B92C61CD6EC4683B /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; A86F23BF854AD6BAA200C9C9E7F01997 /* Flipper-DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-DoubleConversion-dummy.m"; sourceTree = ""; }; A87A337FD06C7DE49C5268D3A32F2889 /* bufferevent_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent_struct.h; path = src/event2/bufferevent_struct.h; sourceTree = ""; }; + A891ED113445A000F63BDA0E14FFE595 /* Pbkdf2.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Pbkdf2.m; sourceTree = ""; }; + A8A036EF500B0CEDC902E32C84DE6FA4 /* ReactCommon.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.debug.xcconfig; sourceTree = ""; }; + A8AEF77C3E2AF534A8C594FE32E647CF /* RNBootSplash.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.release.xcconfig; sourceTree = ""; }; + A8B4894330B65A448011885A09AA345C /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; + A8C2ED9069F6157678C17034BD74A846 /* EXImageLoader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.debug.xcconfig; sourceTree = ""; }; + A8CC09998BD35D6727E081D22D1EAED2 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; A8CD097D222DD48A5707C487C634FF8B /* ClockGettimeWrappers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClockGettimeWrappers.h; path = folly/ClockGettimeWrappers.h; sourceTree = ""; }; - A8CE00DD3674D4D80825B09A7432548E /* UMBarCodeScannerInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.debug.xcconfig; sourceTree = ""; }; A8FC42D4FC5B5C609C187742BBAEBA82 /* Pods-RocketChatRN-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-frameworks.sh"; sourceTree = ""; }; A926914D137BAE3D5B0D9EA130554748 /* Pretty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Pretty.h; path = folly/lang/Pretty.h; sourceTree = ""; }; - A92A23DF1C627F65E62E5CF16694F9C9 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; A93560B57142BA35A6DB50F982B46EF0 /* picture_tools_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_tools_enc.c; path = src/enc/picture_tools_enc.c; sourceTree = ""; }; A9450B220E2FAD9FB66FC7D161733C1C /* IOThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IOThreadPoolExecutor.cpp; path = folly/executors/IOThreadPoolExecutor.cpp; sourceTree = ""; }; A947B3C19810FBC8007D4747F09BC5A7 /* FirebaseInstallations.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.debug.xcconfig; sourceTree = ""; }; + A95BFF03C5817188409D2224F4C13F3C /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; + A9702FD719CEB8BA077A2EF668C554A8 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; A974E1F948FF2C9F30C70F9BC23A5399 /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Private/GULNetworkMessageCode.h; sourceTree = ""; }; - A97E8279FC797BDCFA942FE1B190D5EF /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; + A9782627E4C2BC9AE88667E53322A0CE /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; + A99906F6637692D1D33D5301D525119F /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; + A99D233D751AFB80375F9B7D69233B74 /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; A9A9520BCCFE84444C092865963AE9AE /* FIRCLSURLBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLBuilder.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSURLBuilder.m; sourceTree = ""; }; + A9AA456219BF44242E56EDA9F74B95B3 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; A9BB4EF9FE8F53144150B0C641B7AE66 /* FormatTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatTraits.h; path = folly/FormatTraits.h; sourceTree = ""; }; - A9BF6CF75337707C6C44E8C493666FDC /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; A9C6360C93996D598F2058C604BA7BB1 /* filters_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filters_utils.h; path = src/utils/filters_utils.h; sourceTree = ""; }; - A9C8CC6B552AAACE526AF0F60CEE4E15 /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = ""; }; + A9DA114D384F059FB99528E847EE2BCF /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; A9DB086520DF52114ACB861BF3D32B77 /* Indestructible.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Indestructible.h; path = folly/Indestructible.h; sourceTree = ""; }; - A9E00A34A5703FE4ABE079A37420A613 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; A9E5795A957D0B9B061734BC5F032D34 /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; A9EAF670D84052F7654D2EE9710F5D03 /* md4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md4.h; path = ios/include/openssl/md4.h; sourceTree = ""; }; - A9F1828E00B05C11D6AA90198F9E15EF /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; - AA1B111B2E6AD4B9C43B10BE64552485 /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; AA2088DCA6A069516608B5F7D3CBB86F /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; AA291DB2ED89D4A0FFEA36264FE8EA39 /* PTProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTProtocol.h; path = peertalk/PTProtocol.h; sourceTree = ""; }; + AA3AB276B12B041B0C4DEE01A95B7E8C /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; AA5C6670BC1E9CD617E1993F92F4A046 /* FIRAValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAValue.h; path = Crashlytics/Crashlytics/Helpers/FIRAValue.h; sourceTree = ""; }; AA62312D15439145FA1B26275171FCEF /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; - AA7D49DE36A032F79C8774BCE239F7D4 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; - AAB51BAD1D7EB7BB5508094F794F42BD /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; - AABA6F6EAEBDBF0B0AF9C297500403B6 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; + AA78C15CF890787E1AB3B6872A7F4764 /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + AABD01C3DC1B63D6EF185B60AB75079D /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; + AAD17C6707DFCD86F47E8BCBC98E05B6 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; AAD34FDF01C3E0CE5CBB6BD91286CC40 /* Executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Executor.h; path = folly/Executor.h; sourceTree = ""; }; - AAD5E595AF2F03838EEC047E74643F8E /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; AAEBF8516462AA52A00712CA926FC43E /* Subscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscription.h; path = yarpl/flowable/Subscription.h; sourceTree = ""; }; - AAF07727CB6168579B8C1875EBD0CDE9 /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; - AAFF2100BEAAD51B76D28DA4825C6D13 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; - AB1626DF9AA02609081D8183E536AD83 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; - AB2925D8C2603401461F149542B5552F /* RNCSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewManager.m; path = ios/SafeAreaView/RNCSafeAreaViewManager.m; sourceTree = ""; }; - AB4060BE11A773B16711180C44F6FFA0 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + AAF6DFD1680B4843D7869192BAFB762C /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; + AB0C95038AC70E05623DDED58EF89C6A /* RNFBAppModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBAppModule.h; path = ios/RNFBApp/RNFBAppModule.h; sourceTree = ""; }; + AB28A62947B978F0CD549D37C69CD20F /* RNGestureHandler.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.debug.xcconfig; sourceTree = ""; }; + AB3F9EB164E7333B1A3AA6012FF934DE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; AB475280C59BD9871C05412BDDD86FB8 /* SafeAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SafeAssert.h; path = folly/lang/SafeAssert.h; sourceTree = ""; }; AB47869EAA35910D419276C3898E9841 /* FIRCLSPackageReportOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSPackageReportOperation.h; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSPackageReportOperation.h; sourceTree = ""; }; AB4A1B46C170A5BC5BE09443C1460189 /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = ""; }; AB4BDEDA5764AD38E56FAC3FF32C53E0 /* Folly.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Folly.debug.xcconfig; sourceTree = ""; }; - AB53E5D98E91A696B994A91DA3E4DAE8 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXAV/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; + AB4BE439FE677F2C274ADDEE36ADB81D /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; AB6ECE59591EFB07A9E7C658BE19F9F6 /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = ""; }; - ABB1F06AA1DF276D588AF6CC5CDF84D2 /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; + AB97DA50708919C7437E5968B9D0B3E3 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; + ABB372D5CE9737CFB8A445BF5F3A4510 /* RCTNativeAnimatedModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeAnimatedModule.mm; sourceTree = ""; }; ABB90F0430438DEAAD83FC4A210BFBB4 /* upsampling_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse41.c; path = src/dsp/upsampling_sse41.c; sourceTree = ""; }; - ABC6D7742F151F1F3D3B9795F920CBE7 /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; - ABC9927896ABF0D4AD242A9A8AABBCDF /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.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; }; ABE1208B3C2EA015BD10A4C0B83FFD2A /* Constexpr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Constexpr.h; path = folly/portability/Constexpr.h; sourceTree = ""; }; + ABF766A6608B4F5019108A0F5239DB36 /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; + ABF86DAC23E4317452CA96401F0EDDCC /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFBReactNativeSpec.a; path = libFBReactNativeSpec.a; sourceTree = BUILT_PRODUCTS_DIR; }; AC06769877230EE670F699DA9C97CA0F /* FIRCLSNetworkClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSNetworkClient.h; path = Crashlytics/Crashlytics/Controllers/FIRCLSNetworkClient.h; sourceTree = ""; }; AC0D104B0EF983C65368EF4A7D568EF5 /* GlobalExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalExecutor.h; path = folly/executors/GlobalExecutor.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; }; AC142A670CFA71C3B078555A66CCEC37 /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/gen/String-inl.h"; sourceTree = ""; }; - AC1E412F15D9043B12CE835BB2ECBD5A /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; - AC31DEC51B5F0464273FCE1E863FDA95 /* RCTRedBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTRedBox.mm; sourceTree = ""; }; + AC2E8AEC2D0EBEB57417B0D43F82BC8B /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevMenu.h; path = React/CoreModules/RCTDevMenu.h; sourceTree = ""; }; AC44E3289F69DDB45D21427F852C0832 /* GDTCORTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h; sourceTree = ""; }; - AC5B50A9A39C315EBC6182D6DB59056E /* RNFBPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBPreferences.m; path = ios/RNFBApp/RNFBPreferences.m; sourceTree = ""; }; - AC5BB9D02C5CCBA69F7401F894B9152A /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; + AC4B5139E782DBEAA9EC3A547A70A15C /* RNReanimated.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.release.xcconfig; sourceTree = ""; }; + AC53EB8AECF7D69E4E3497C1D8161B43 /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; AC5D0745B0C7FB9596507A0F02F18491 /* EventBaseBackendBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseBackendBase.h; path = folly/io/async/EventBaseBackendBase.h; sourceTree = ""; }; AC6CB4B56F1E2CE2F0DF73C70B1A847B /* DoubleConversion.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.debug.xcconfig; sourceTree = ""; }; - AC753904BAFFB1A9511FF9C52E65141B /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + AC6DEBA2FCF6E7F35C4B76020F58C198 /* EXKeepAwake-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXKeepAwake-dummy.m"; sourceTree = ""; }; + ACA8BCB84BD9F477015E416BBA05F548 /* 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; }; ACAD98DF8A6ED7B5051A3D0232C1C329 /* syntax_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax_enc.c; path = src/enc/syntax_enc.c; sourceTree = ""; }; - ACB931B616D9A99DDDC08850C664FAC0 /* BitUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitUtils.h; path = yoga/BitUtils.h; sourceTree = ""; }; + ACB63E1500DC44BE2A144965045C6FCE /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.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; }; ACCD70BE3508992B4913688C5ADC1425 /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = ""; }; ACCD86DE9ABFDC69CD5982FF9C8BDA2E /* DecoratedAsyncTransportWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DecoratedAsyncTransportWrapper.h; path = folly/io/async/DecoratedAsyncTransportWrapper.h; sourceTree = ""; }; - ACEE99CB5C80E1F18512833C8A0D7555 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; + ACD1D731388E27A1289D03009CC8EBE1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + ACE7245AA924EB78235512EC827D2CB7 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; + ACEEFD05B5373601AF5679953038CAAC /* ReactNativeKeyboardInput-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardInput-prefix.pch"; sourceTree = ""; }; ACF94B1EA40A9E302767E9B8BFD88B35 /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; - ACF96AD73B645DC5180BCEF311D6C93E /* EXKeepAwake.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXKeepAwake.m; path = EXKeepAwake/EXKeepAwake.m; sourceTree = ""; }; + AD089AD9926351A99E8454AC7E9E3FC0 /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; + AD19A60B1913122CEA2EAE013EEAF0EE /* react-native-background-timer.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.debug.xcconfig"; sourceTree = ""; }; AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAV.a; path = libEXAV.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AD50CECE3CCFF5A4DC48B6D5C0A607B7 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; + AD566F4AA43AE88A1998632B7D9A9352 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; AD5EC6741D9CADA0C823A8FCF5460C05 /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = ""; }; AD6C301670C68E1E2AD81A1B3DA132B7 /* Time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Time.h; path = folly/portability/Time.h; sourceTree = ""; }; - AD84635EE517890E530B9D01221D50D9 /* EXVideoThumbnails.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXVideoThumbnails.debug.xcconfig; sourceTree = ""; }; AD91FB7DFDC4BD0B1FEC91699C9ADFF9 /* GroupVarint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GroupVarint.cpp; path = folly/GroupVarint.cpp; sourceTree = ""; }; AD9AFE100CCA7B80C790FECCF0EA38A5 /* ParkingLot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParkingLot.h; path = folly/synchronization/ParkingLot.h; sourceTree = ""; }; - ADC8934F7ADFEFF6A171E337FF1CF90A /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; + ADC7C66180771F2D0AFFC27CB04EB18C /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; + ADD612320D6447A37D6DA8FE9B53B375 /* RCTPerfMonitor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPerfMonitor.mm; sourceTree = ""; }; ADED4B467E106FD0A53033E1ADB3CCB3 /* FIRCLSFABAsyncOperation_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFABAsyncOperation_Private.h; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation_Private.h; sourceTree = ""; }; ADF0EF4CB83EC500D9F0E79FEC019A8D /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/IPAddress.h; sourceTree = ""; }; ADF7948164BC405C41BB28AA4725194E /* bufferevent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent.h; path = src/event2/bufferevent.h; sourceTree = ""; }; + AE276CFC301FAA07309CA152AFDD4B2D /* RCTAppearance.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppearance.mm; sourceTree = ""; }; AE30E261819D23C9AB49EAC5A4D59350 /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = ""; }; + AE3654370AF6B4CA21D4A8AFC49DA6F9 /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; AE3D3772DFCABE80F393AF62F767E9DD /* TOCropViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropViewController.h; path = "Objective-C/TOCropViewController/TOCropViewController.h"; sourceTree = ""; }; AE53ABA58C65425E382B06C5D488EA9A /* FIRCLSInternalReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSInternalReport.m; path = Crashlytics/Crashlytics/Models/FIRCLSInternalReport.m; sourceTree = ""; }; - AE5EA27B9331ED54A9B03E4A673E572A /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevMenu.h; path = React/CoreModules/RCTDevMenu.h; sourceTree = ""; }; AE7B9BB25D34C030377834B8D443EFAA /* StreamResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamResponder.h; path = rsocket/statemachine/StreamResponder.h; sourceTree = ""; }; AE7F4E89ACD757D1414078813800BCC1 /* HHWheelTimer-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HHWheelTimer-fwd.h"; path = "folly/io/async/HHWheelTimer-fwd.h"; sourceTree = ""; }; AE87ACA68D2EED9D0044D08DA160196C /* rpc_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_struct.h; path = src/event2/rpc_struct.h; sourceTree = ""; }; + AE897E3984F4AF7BDF3D4923F34EA121 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; + AEA821130DCC7D1B9EB415663C052449 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; + AEA9BF7061E003A72517F2BDD850F6E2 /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; AEB6BDCD96FFBB6571C832D2207C2FCC /* SanitizeLeak.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SanitizeLeak.cpp; path = folly/memory/SanitizeLeak.cpp; sourceTree = ""; }; - AEB8FAC197F567664C62C5115C5F764E /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; AEBEB3C7880A71951B087BC7F00FD063 /* TOActivityCroppedImageProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOActivityCroppedImageProvider.m; path = "Objective-C/TOCropViewController/Models/TOActivityCroppedImageProvider.m"; sourceTree = ""; }; - AEC47ABD196CA68E5B3CAA944A380989 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; - AED243402FC7D1A09ECAA4180D3C1E1D /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; - AEDFEC830C6396DC336515996BCABA8A /* RNCAsyncStorageDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorageDelegate.h; path = ios/RNCAsyncStorageDelegate.h; sourceTree = ""; }; + AED89FC23A74912C86B1E2359357F009 /* react-native-simple-crypto-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-simple-crypto-dummy.m"; sourceTree = ""; }; AF0504E5E31C9BB8CA6DFAA251617684 /* Dirent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Dirent.h; path = folly/portability/Dirent.h; sourceTree = ""; }; - AF2990C86ED4A958996CB1EEC73A61C4 /* React-RCTActionSheet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.release.xcconfig"; sourceTree = ""; }; + AF07E1F4322D1E28826EAA6A30186F8A /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; + AF0A42439028E5ECA19DF76388248706 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; + AF1ABD19F3566903B036E55A5ABCFFFE /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; AF2A19ACD78BA942503C43E989CB083D /* AsyncPipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncPipe.h; path = folly/io/async/AsyncPipe.h; sourceTree = ""; }; AF324330325140B3CA61398B025D261A /* GDTCCTPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTPrioritizer.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTPrioritizer.h; sourceTree = ""; }; - AF3755175A28C62308EFFEF2C0372793 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; - AF3B089ECAF786E274B31B13DFDB50C7 /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = ""; }; - AF3F9404B3BF466F59DA49FEFB4BDA61 /* RNCAsyncStorage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCAsyncStorage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; AF44DB3BA93A422D2426F319941BA646 /* SetupResumeAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SetupResumeAcceptor.cpp; path = rsocket/internal/SetupResumeAcceptor.cpp; sourceTree = ""; }; AF4CD1EFC5BF0D7131F5EB9A2C3D8A04 /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; AF4DDAFE73A2760792C1FD698E4F5F7A /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/hash/Hash.h; sourceTree = ""; }; AF64C327CA5F3EDF8CDAF5B102C443B2 /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = ""; }; AF65D9B11D6F359DD6F8BDBD7A62082A /* AtFork.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AtFork.cpp; path = folly/detail/AtFork.cpp; sourceTree = ""; }; + AF6C0F334EBF97DA121E3969730EADA3 /* RCTWebSocketExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketExecutor.mm; sourceTree = ""; }; + AF6DADBDC411D7EDB8BE79D2E048884D /* RCTClipboard.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTClipboard.mm; sourceTree = ""; }; AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AF89F539CC356A48B11301CD40D2556D /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; + AF9161DDC9E4048EA41FCC4316A1C8AD /* ReactNativeKeyboardTrackingView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardTrackingView-prefix.pch"; sourceTree = ""; }; AF91ED62C8FCABF57348996D54435C62 /* FIRCLSThreadArrayOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSThreadArrayOperation.m; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSThreadArrayOperation.m; sourceTree = ""; }; AF995A3FFE359817D816013A718B2520 /* FIRInstallationsErrorUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsErrorUtil.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m; sourceTree = ""; }; AFA0E76A8835A80FBF25E4ABD0D55BFE /* RSocketServiceHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketServiceHandler.cpp; path = rsocket/RSocketServiceHandler.cpp; sourceTree = ""; }; - AFE821B9CF33BCFA69769E00511A4CAC /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; - AFECFD51798699035DB0BCF6B49FB45B /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = ""; }; + AFA2296417D66958C0DEB49723700D2F /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; + AFC8A5266AA6A474F182951B5D20CB9C /* RCTRedBoxSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxSetEnabled.h; sourceTree = ""; }; + AFF9DA7B4C4466F41A8425FC5E2A9C4A /* RNCMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedViewManager.m; path = ios/RNCMaskedViewManager.m; sourceTree = ""; }; B0089C1340C7665EEDA237988C9F6981 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; - B00DD0BE7AC6D9C136E32F7A168E81B4 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; B0117E01F7E3F2005550463BB87253AC /* webp_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_dec.c; path = src/dec/webp_dec.c; sourceTree = ""; }; + B019429F3C6266D3C892317EF92021DE /* EXAppleAuthenticationButtonViewManagers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationButtonViewManagers.m; path = EXAppleAuthentication/EXAppleAuthenticationButtonViewManagers.m; sourceTree = ""; }; B04534EC5FEB19A83194F8408C3AB91A /* WarmResumeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WarmResumeManager.h; path = rsocket/internal/WarmResumeManager.h; sourceTree = ""; }; - B0662D051DF42D8150D5F4B6B50190F0 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; - B069EE34B326027D9F9DB0253BBE2F76 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; - B06DB10651505B1202A5EBD31DC18D5E /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; - B07A26A7DFBB35CA9A90B48E8286C628 /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = ""; }; - B0818E2D4045BB155ECBA3279D032FC3 /* RCTView+SafeAreaCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTView+SafeAreaCompat.h"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.h"; sourceTree = ""; }; + B0575D2AF8AA7F6CA50A8B39A9F1B828 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + B07ACF687700BE6CBB826B6777AE4311 /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; + B08D9D6DCA80E660BFD13F2884E03F9D /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; B0AE618E17207EBF0BEB11CC8D8A940A /* idea.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idea.h; path = ios/include/openssl/idea.h; sourceTree = ""; }; B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImage.a; path = libSDWebImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; B0B2958A1D0A7BD13E6A915313643353 /* FIRAEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAEvent.h; path = Crashlytics/Crashlytics/Helpers/FIRAEvent.h; sourceTree = ""; }; + B0B505E53C1698C9629F2470938C249F /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; B0CF668ADA8DE63AF171C23F908B60E4 /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/Utility.h; sourceTree = ""; }; - B0EB7CB6752B86283C260B92DC6A4963 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; - B0EF65143FEF1E8BF5F4863D198767DC /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; - B15471ED62E393D50463991E5883996B /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; + B0F716DAEC7A089F45EF0F96E91DCB58 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = React/CoreModules/RCTWebSocketExecutor.h; sourceTree = ""; }; + B104C3A416E6EE68513971DB0E7779CC /* EXImageLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXImageLoader-prefix.pch"; sourceTree = ""; }; + B10AABC42F01ECC08694EA8D96B811F6 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; + B15198656612D6F7D67CF6C22B9ACCA9 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; + B15941ABDC61A8180B4683BF55D89C19 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; + B162F812689F10D4EE205CC660DCEE07 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; B168C1C6BFAF203817A7B428E2C3F461 /* JitsiMeetSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JitsiMeetSDK.debug.xcconfig; sourceTree = ""; }; - B1B7C35B671F31D96B7568B4B60D3148 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; - B1C1C8D3CA86CC9AC6F90B5BA2E2D4D0 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; + B1750DB806612F24A8E2960C3680C7C4 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; + B1A59D286D2DB96AFA4A62F0B482CBCD /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; + B1AD6C3D5951F7E1D5789BBDBF57C4A9 /* RNFBUtilsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBUtilsModule.h; path = ios/RNFBApp/RNFBUtilsModule.h; sourceTree = ""; }; B1D2768790089369FDAD067E9F5E3A1A /* RSocketStateMachine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketStateMachine.cpp; path = rsocket/statemachine/RSocketStateMachine.cpp; sourceTree = ""; }; B1D5BD0C81CB3656FB94DF0E747A9454 /* TcpConnectionAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpConnectionAcceptor.cpp; path = rsocket/transports/tcp/TcpConnectionAcceptor.cpp; sourceTree = ""; }; - B2031454B79FE34BF059E24DFBED2A2C /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; + B1DF77105E249E71434137526EB413B4 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; + B1E99A8D51AD3A77673B7F55F65C20F8 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; B213E36BD092B8ECF924B73AC7950F42 /* AsyncTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncTrace.cpp; path = folly/detail/AsyncTrace.cpp; sourceTree = ""; }; B218FA1B891938657EFAAF30ADC50387 /* backward_references_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_enc.c; path = src/enc/backward_references_enc.c; sourceTree = ""; }; - B2231AA2A6C89D8C24B89FE88890ADF3 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = ""; }; B22A4F0C5C5073F153DFB33891288B87 /* Fingerprint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Fingerprint.cpp; path = folly/Fingerprint.cpp; sourceTree = ""; }; - B2345C6E92A99582DE012EFD3C6825CC /* 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; }; + B22B7605941D7A7BF4C6A92B469BD746 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; + B22FB9D497AD7D63DC4CDAC56A4F44AF /* React-Core.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.release.xcconfig"; sourceTree = ""; }; B23C3C7E3CFE2486555F49A3E95060B1 /* FlipperStep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStep.h; path = xplat/Flipper/FlipperStep.h; sourceTree = ""; }; - B256DD186535793D13DC257337B65783 /* ReactNativeKeyboardTrackingView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardTrackingView.debug.xcconfig; sourceTree = ""; }; - B27C1729B947583819817A07568759FC /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; - B28281D8A3C5B7A81FD9068BBF81E78A /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; + B268560C9B6855ECA16713BBE8C56D8F /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; + B29AA0DE15639835847075E5952D1DC7 /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; B2AEF8B48EF07823C59E4886848C58C1 /* pt-BR.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "pt-BR.lproj"; path = "Objective-C/TOCropViewController/Resources/pt-BR.lproj"; sourceTree = ""; }; - B2AF1EF698BB35A59A2F874D9664CE3C /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; - B2C807BFF82D083C7CDD29EB94C0E9BF /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; - B2C87D6A57E3DC54C8AC21CEC5488A9A /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + B2CE1922FF9EF9AA7022846CC5699365 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; B2E218777922850F8FD2F2ED85C3558C /* ApplyTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ApplyTuple.h; path = folly/functional/ApplyTuple.h; sourceTree = ""; }; + B2E84F01E5CCFCBA63118C19E8A5C4C3 /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; B2ED6DBFD924840998A0C46761F585D7 /* RecordIO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RecordIO.h; path = folly/io/RecordIO.h; sourceTree = ""; }; - B30BA0A1F6C0B36295ADD9637D5CFBC5 /* 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; }; - B30EA90EB1269BBEFA1BBAF96A86C2B5 /* react-native-orientation-locker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.release.xcconfig"; sourceTree = ""; }; + B2FFFFCC814F685D375F33C41B0509C3 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; B30FBF72273EED52EE488B0E4553704D /* SpookyHashV2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV2.h; path = folly/hash/SpookyHashV2.h; sourceTree = ""; }; - B34A5411E38593F13C8E70AD86AD3C6C /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; - B34E333AA829AB810A209CE9465344B5 /* 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; }; - B38E7428E0296176DEC476D2C96AB5E5 /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; - B398DEE73A5C9C348689DB92A7688F1A /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; - B3AF4A5988E442DE2537BB056BD7988D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + B316AF37C726545B7DB0FF965CE84FC7 /* KeyCommands.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.release.xcconfig; sourceTree = ""; }; + B33A2BB3EABCAD841A6CB01F8CEEE633 /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; + B3789F19E11AAEF9B51FEAE1BF45D6E6 /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = ""; }; + B37FE4E4178184906B679078CE8782CD /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; + B38E9B3F31570A56DE84B43E72D581D1 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; B3C7A19714DEBBAAF4DA1C17E3539BD4 /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; B3D918B16411C96B6E1075E810026669 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; B3FC7F21CD9F656675673A5907F9D6A1 /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventHandler.cpp; path = folly/io/async/EventHandler.cpp; sourceTree = ""; }; - B3FDD204AA7584A8104379B1A39CE687 /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; - B404EF4438136C9589D21E0096944B6C /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; + B400C9F52EDC4E8EF296F1AEBD2C6722 /* react-native-simple-crypto-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-simple-crypto-prefix.pch"; sourceTree = ""; }; + B405BB575FE7D7BBF3F0C5186526FC9E /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; B40817A55A6AE1DBA3B73B68BCE8E6D9 /* Align.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Align.h; path = folly/lang/Align.h; sourceTree = ""; }; B40C6016F2FB45B2888901ABCAD841B4 /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = ""; }; B419D9B36020C7037A307DD6EB37644D /* ExceptionString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionString.h; path = folly/ExceptionString.h; sourceTree = ""; }; B41D245736BFC4423B50A15CB56959DB /* SysStat.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysStat.cpp; path = folly/portability/SysStat.cpp; sourceTree = ""; }; - B436D3F2B9217D9F332F061EC2502208 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; + B41FBD7F6CF25150FA96D491254ABD65 /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = ""; }; + B4294E52C539D454750D9B0938D809D4 /* EXAppleAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppleAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B441C3BD1F1173B64ED0BAFB195C8A84 /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; B4458140E6D2028D79E668F93BBC2D1C /* Sockets.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Sockets.cpp; path = folly/portability/Sockets.cpp; sourceTree = ""; }; - B448A70A3DB1231697957139D2E35D54 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; - B45A6A9F70AE4BEC97C0B6F5F9EB6FCE /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; + B448C98F442FC63AE1823BD6158C16C1 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; B4639B772DB39D4D2A279DB9D79471FD /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; - B4735C3818F5505C46AA5FB0839CD0B3 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; - B474F17B094D105BD1B8A508374E07EE /* Yoga.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Yoga.modulemap; sourceTree = ""; }; + B46538D0F117CDC900C3D745B78997AE /* RNFBMeta.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBMeta.m; path = ios/RNFBApp/RNFBMeta.m; sourceTree = ""; }; B485CDC4034C41AEEBF96D68090FF0CB /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; B496DFF7D0BB3686DC6EC9DDE2163B8F /* FIRCLSReportAdapter_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReportAdapter_Private.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSReportAdapter_Private.h; sourceTree = ""; }; - B4BC8D466330FF04E668ADEE095ED817 /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; - B504F18D9932B776255E075028541B1F /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; + B49923FF554A640004BD5D0741C2CEEE /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B4AC8B6BBAA665574832CF9CDB57A7E4 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; + B4C04AFBC40ECD13A31F81AC8829F216 /* 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; }; B50CAADF40375595241ACD401B48CB97 /* DeferObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeferObservable.h; path = yarpl/observable/DeferObservable.h; sourceTree = ""; }; - B50FCEF319BE9602824CD526D0A8139A /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; - B511866C557FC6A4878CDC484356D0FC /* UMCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.debug.xcconfig; sourceTree = ""; }; + B523AB0AC4577A94C44BDEA527DBF0A9 /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; B5263EB718B07A8904F6171B9650CFC5 /* LifoSem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSem.h; path = folly/synchronization/LifoSem.h; sourceTree = ""; }; B52867177ABED01D3ABB5EC4169B8859 /* FlipperKitReactPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitReactPlugin.h; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.h; sourceTree = ""; }; B52F8BE551A2E00D181C98D318D45A83 /* SingletonStackTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonStackTrace.h; path = folly/detail/SingletonStackTrace.h; sourceTree = ""; }; + B54009EB2A2484DD2B2C7B63927AF7C2 /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = ""; }; + B541DA0D51F5AC9471B8CD9E4F94B8A0 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; B557FCECCAF95A2A0E7178A3ABE68CBB /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/gen/File.h; sourceTree = ""; }; + B5795E4037BB528418C5A85C10327278 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; + B58AC5C8CABAE9B472A076AEC3464D92 /* react-native-simple-crypto.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-simple-crypto.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B59F44BB18119014A555C0C1F0D7205F /* mdc2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mdc2.h; path = ios/include/openssl/mdc2.h; sourceTree = ""; }; B5A91E6264A8A5A08D257204360C922F /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = ""; }; - B5CB3671277BAEC0BF91F2FBD3A42D80 /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; - B5D066D4EAC03BAF75BB78CB74A7002E /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = ""; }; + B5DF450B1873A50E2500B3CE41192C97 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = ""; }; + B5E2FE0F645B8A10E9354F5F1310E458 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; B5F500FFDDD7367AB85A174A3BF43312 /* pem2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pem2.h; path = ios/include/openssl/pem2.h; sourceTree = ""; }; + B5FF8562B889CE5E6887CF2C680BB123 /* ReactNativeVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactNativeVersion.h; sourceTree = ""; }; + B62375929EF36FB848926680CC411838 /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; B627E39B731911254D1ED433565B6D9C /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; - B645C8150E6AD50B10361C0416E48B9C /* BSG_KSMachHeaders.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachHeaders.h; sourceTree = ""; }; - B650074EFC46B04DF230D7228E596A77 /* RNFBAnalyticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAnalyticsModule.m; path = ios/RNFBAnalytics/RNFBAnalyticsModule.m; sourceTree = ""; }; B665E4C6DA3790D807C96D8D13A5CE47 /* ProxyLockable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ProxyLockable-inl.h"; path = "folly/synchronization/detail/ProxyLockable-inl.h"; sourceTree = ""; }; - B666216830B6B853F32CC6C38D2F67B4 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B669426002B57006ABA90A955CBB404A /* RecordIO.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RecordIO.cpp; path = folly/io/RecordIO.cpp; sourceTree = ""; }; - B66CA779567DA05361DA46F034BBF906 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; - B675A0ADBD0E25B3F1B3ED5CAB45A210 /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; - B69AB15F6C5804973CC3C68F8F721F3E /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; - B69C7C00A5732F511B0954ABCC50E172 /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = ""; }; - B69E358DE1B052453E9808EA9EE10AF8 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; B6A57B9436B37E83CCE2E0876FC5F8AB /* Flipper-Glog.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Glog.debug.xcconfig"; sourceTree = ""; }; + B6C734D0499C175CC7338AED32A6FD8C /* React-RCTActionSheet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.release.xcconfig"; sourceTree = ""; }; B6CB789D9800AB939DF5B886BFE4F2E1 /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; B6D0DEB38DAA670F8FDA8DDB8D9D9CB6 /* YGLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YGLayout.m; path = YogaKit/Source/YGLayout.m; sourceTree = ""; }; - B6D6086CE45490722A87835E3EA7DCCF /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAsyncLocalStorage.h; path = React/CoreModules/RCTAsyncLocalStorage.h; sourceTree = ""; }; + B6D43BAB35E3C1B95E670EBFABF597CD /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = ""; }; B6E275C51BEDCA15C5244D977D306D7F /* SKHighlightOverlay.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKHighlightOverlay.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitHighlightOverlay/SKHighlightOverlay.mm; sourceTree = ""; }; B6F1466EA36D8D3E080E9420F560BD55 /* Fixture.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Fixture.cpp; path = rsocket/benchmarks/Fixture.cpp; sourceTree = ""; }; - B6F2D27935E40271411244186FD57C08 /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; B6FB942E1E461388F22F393A3861A0E3 /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = ""; }; - B7003F698BAF63FE172F3DD6410525E7 /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; B706CC060A954ECBE7FCABA41B30F199 /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = ""; }; - B70F1DF507D00E00B3FFC520389E46D5 /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; B7294287DFCE5D1369CE237A67966E2F /* opensslv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslv.h; path = ios/include/openssl/opensslv.h; sourceTree = ""; }; - B72CCF12206A1914948949B3950AC81B /* RCTUtilsUIOverride.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtilsUIOverride.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; }; B75BCBFFF6925D3612F1250AF81E6FEE /* AsymmetricMemoryBarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsymmetricMemoryBarrier.h; path = folly/synchronization/AsymmetricMemoryBarrier.h; sourceTree = ""; }; B76A90ED9E44ED3B15F89EB662C2ABF7 /* buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = src/event2/buffer.h; sourceTree = ""; }; - B7743AE73E9139677017E03C6DA9C817 /* react-native-notifications.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.release.xcconfig"; sourceTree = ""; }; B77BC85CBF3600F35E8CB3E735700FC7 /* ThreadCachedLists.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedLists.h; path = folly/synchronization/detail/ThreadCachedLists.h; sourceTree = ""; }; - B78492F97AD567F7C43E727921B571DD /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; B7851E80B74E6136AC1F7656B00BAB11 /* PolyException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyException.h; path = folly/PolyException.h; sourceTree = ""; }; B78C914D0DDC6AEC1FE178D4D2257956 /* Promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Promise.h; path = folly/futures/Promise.h; sourceTree = ""; }; B78DB233E9B8759A132B9976CCDB7C60 /* GlobalShutdownSocketSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalShutdownSocketSet.h; path = folly/io/GlobalShutdownSocketSet.h; sourceTree = ""; }; B790CC79B3BDDEACDAAFE9599910BCE0 /* FIRInstallationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStore.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h; sourceTree = ""; }; - B79F8D60DE89F1BC22AE005D981E0B63 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; B7C6BC5E3A68DE13D360B6E9E54332B0 /* zh-Hant.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hant.lproj"; path = "Objective-C/TOCropViewController/Resources/zh-Hant.lproj"; sourceTree = ""; }; - B7D366120B6EF65E206BE928F596207D /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; + B7E12A532E80DAD7CAF5F1DEF2B00FD6 /* RNFastImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.release.xcconfig; sourceTree = ""; }; B7E2DD19AF59F534DC0922B386BB9FAB /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = ""; }; - B7E2F239C8FFF859F2A01A2FA0E32394 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; B7F2B74DFE83B51094258A1292C18508 /* FireAndForgetBasedFlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FireAndForgetBasedFlipperResponder.h; path = xplat/Flipper/FireAndForgetBasedFlipperResponder.h; sourceTree = ""; }; + B7F87683167423E18918050232C0F9F5 /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = ""; }; B7F97D52CFDD14A3350B46776025F1BC /* FutureSplitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureSplitter.h; path = folly/futures/FutureSplitter.h; sourceTree = ""; }; B8084064F0612995D9D98DD02CA3687F /* FIRErrors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRErrors.m; path = FirebaseCore/Sources/FIRErrors.m; sourceTree = ""; }; - B81CD30965DFF268320C3E94FACF6BF0 /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; - B822C39AA6B0EC03D3F6E42F67AB74BD /* React-Core.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.release.xcconfig"; sourceTree = ""; }; - B83C5E5327019875A74DCDBFF4D491CE /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = ""; }; B8421EBD92A3A57D52FDF461D9DECC2D /* DiscriminatedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtr.h; path = folly/DiscriminatedPtr.h; sourceTree = ""; }; B851ADC9A9ED54BECE01236CBE9EFD44 /* MemoryIdler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryIdler.h; path = folly/detail/MemoryIdler.h; sourceTree = ""; }; + B858F36E16147B9EDD7666E15590DCE0 /* react-native-appearance.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.debug.xcconfig"; sourceTree = ""; }; B86CCEE97920930641ED93C64B6FB547 /* Subscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscription.h; path = yarpl/observable/Subscription.h; sourceTree = ""; }; B870E1D42C8D3B51683AAB305991AC42 /* F14Map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Map.h; path = folly/container/F14Map.h; sourceTree = ""; }; - B87583B1A79ADB92AA6A3BDEBB40FB2B /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = ""; }; - B87FF275E154F63E37A966F7B77A1290 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDeviceInfo.h; path = React/CoreModules/RCTDeviceInfo.h; sourceTree = ""; }; B88A238698DB985A72ABBB4934774B45 /* AtomicLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicLinkedList.h; path = folly/AtomicLinkedList.h; sourceTree = ""; }; - B88CF7572FC59624D214D535B06891AC /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; + B8A1125AEA40DE35466D53C546D297C5 /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; + B8A153EE45C98CCF4EC042349241A9F9 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; + B8A73154CBC41CC0533A283D89499792 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; B8A9D86194CC47D111EE61AC3BAC8621 /* ssim.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim.c; path = src/dsp/ssim.c; sourceTree = ""; }; - B8B023184401C6EF64FB724C3F17CF1F /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; + B8AF713EA42BD2EB9135B888DFB4D80C /* React.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.debug.xcconfig; sourceTree = ""; }; + B8BCAB40DB42F03C8A169FC2B033AB78 /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; + B8BEFEA43B969B5272884B286965FA5B /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; B8CD4B9B578CE9FA38114B638C9CAA78 /* libRNCMaskedView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNCMaskedView.a; path = libRNCMaskedView.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B8CE15BD4D857D963E523DDE4C02D111 /* UMTaskManagerInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.debug.xcconfig; sourceTree = ""; }; - B8D5F0575AAA7CBC7BACD04B7BAD538F /* RNBootSplash.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.release.xcconfig; sourceTree = ""; }; - B8D9D2D340FF2BF639FDC74AEF3A6E75 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; - B8EFD70AC1C4217D2B1CC3633458352D /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTiming.h; path = React/CoreModules/RCTTiming.h; sourceTree = ""; }; B8F556D1B2C06800731E71B68B910F1F /* yuv_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse41.c; path = src/dsp/yuv_sse41.c; sourceTree = ""; }; + B8F8291E20B8E31ADAA0F53DD6AACDFC /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + B8F9AC230A36F8BF2E5009E18DA179BF /* RNFBApp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBApp-dummy.m"; sourceTree = ""; }; B8FA1BDFCA7226956CF2EEC8AF63E901 /* DistributedMutexSpecializations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutexSpecializations.h; path = folly/synchronization/DistributedMutexSpecializations.h; sourceTree = ""; }; B908A43E3E2CD7AF7CB8C41A2C574215 /* SKEnvironmentVariables.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKEnvironmentVariables.m; path = iOS/FlipperKit/SKEnvironmentVariables.m; sourceTree = ""; }; - B9097B61709ED3382E63E974A9751CF4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - B90D2B3CC85E13D905C62FB4DBE07DBA /* ReactNativeKeyboardTrackingView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardTrackingView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B91307C3A929D8DF91AC58B802C9E247 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; + B908E56D81A49B17826F2EC8ACE1CCC3 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; + B9156046C5920860169C459F1E127BF0 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; B919AC00C231FCA8B3216BDE1CA1EC92 /* ColdResumeHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ColdResumeHandler.h; path = rsocket/ColdResumeHandler.h; sourceTree = ""; }; - B92F821C4225B68C5B18D5B06629C189 /* EXFileSystem.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.release.xcconfig; sourceTree = ""; }; + B9232883679A433EDC3F31B9F8DB0EA3 /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; + B940B2BC2F80F750B2D3E98D7D49E910 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; B94372BA7970C7073569A25540E62C94 /* libcrypto.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libcrypto.a; path = ios/lib/libcrypto.a; sourceTree = ""; }; - B946381FB2B4E28BB88F1ACEDEA452BB /* EXSessionResumableDownloadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionResumableDownloadTaskDelegate.h; sourceTree = ""; }; - B9618AF8600308521930317617B79BAE /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; B9665409270F1193682225868F3A7A82 /* Combine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Combine.h; path = folly/gen/Combine.h; sourceTree = ""; }; - B97B2D7FE0E734635F61FB19F658FC9D /* rn-fetch-blob.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.release.xcconfig"; sourceTree = ""; }; - B98A890925D554B7EDDC37D6D880FCF7 /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; - B9E4ECDEC4128C93752296ECB0EEE079 /* RNFBJSON.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBJSON.h; path = ios/RNFBApp/RNFBJSON.h; sourceTree = ""; }; - B9EB4B1BD9B256964FD8E9469D4FDF22 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; - B9EDAB230A22538F001EA2540A377270 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; - B9FA1C1D46EC0E307CC45842DACA0CCB /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; - BA0ABA8E745BB4558F5FAEF68134356C /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; + B969DFDB250DDED871D90AEDACDA763E /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; + B972397B2F0BFF8BD1752E0FEAF70252 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; + B9798BA0CFA3B96768EBC15D33CEEC6A /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; + B99B36C5DD3E7F3D880AF5BEA7CE12FC /* UMPermissionsInterface-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMPermissionsInterface-dummy.m"; sourceTree = ""; }; + B9A466CD6E5A8B678B51C4A03F3EE6ED /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; + B9C967B671EC8DCD6F78AA20CF0CECE4 /* RNCAsyncStorage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCAsyncStorage-dummy.m"; sourceTree = ""; }; + B9CB3F838B51DEBDA2AD9DB3A5AC5069 /* rn-fetch-blob.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.debug.xcconfig"; sourceTree = ""; }; + B9DCC1D2F1F5D7DFD5DCFEA22404AB74 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = ""; }; BA22C4DE66B3426A117A12C8FDB66876 /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; + BA332493C5E2E9FFE7EDF2ACDFDEBE35 /* RCTWebSocketModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketModule.mm; sourceTree = ""; }; BA42125CC2E10D520A5604301F9B6041 /* ManualExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ManualExecutor.cpp; path = folly/executors/ManualExecutor.cpp; sourceTree = ""; }; - BA5519A71D70FC7E93734EBAAF1B53F8 /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = ""; }; - BA65CD9F60D6CD9D2918F1119B037C55 /* EXHaptics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.debug.xcconfig; sourceTree = ""; }; - BA7090045FE2DBEAB8C5F7109BC42117 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; BA7476F2D05A4A7CEF06C849E2A6AAFF /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; - BA812CA4C38920369FDD5B8C7831688D /* React.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.release.xcconfig; sourceTree = ""; }; BA95CBE1D99F3A9AED81628E727470FF /* QueuedImmediateExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QueuedImmediateExecutor.h; path = folly/executors/QueuedImmediateExecutor.h; sourceTree = ""; }; - BA9C24247421D29B5BD9E43BD588A665 /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; - BA9DD9271924E5AE5D47A6F04A32A493 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; BAB4A2B9FF05259EF6EDD92FAAA668B8 /* Flipper-Glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Glog-prefix.pch"; sourceTree = ""; }; - BAC3BF99ECBDA7FAAAB832C9282CC5E5 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; - BACA52C24099F0800D61CF1C7A6C4588 /* rn-fetch-blob.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.debug.xcconfig"; sourceTree = ""; }; + BAB6317BA5F9AE797209849E56CA5AC2 /* RCTAsyncLocalStorage.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAsyncLocalStorage.mm; sourceTree = ""; }; BAD502587DADED987DA3B89EF2E0CF38 /* upsampling_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_msa.c; path = src/dsp/upsampling_msa.c; sourceTree = ""; }; BAF1BFF30695A4275DF5CE87CF2D3782 /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = ""; }; + BAF650B614D2282B446078A7C1EFB37B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; BB146CEA44AA1120318B1FF2DC15E9C9 /* GDTCOREvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREvent.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m; sourceTree = ""; }; BB2985C98F1A60C94AE0CEA277868740 /* FIRInstallationsVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsVersion.m; path = FirebaseInstallations/Source/Library/FIRInstallationsVersion.m; sourceTree = ""; }; BB2B2706232F03B53A8D43357F13823F /* Init.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Init.cpp; path = folly/ssl/Init.cpp; sourceTree = ""; }; BB2B5280D895C797CD9172BE3B2396C6 /* SKApplicationDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKApplicationDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKApplicationDescriptor.m; sourceTree = ""; }; - BB3BD72FE1CB1FB1C94AD1E936F437EA /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; - BB596ACA49EDF073E44F234D0869BE45 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; - BB762257B51BEB7CCBEEC293A78F8878 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; + BB357A151D6B225C1A8128543A09AD98 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; + BB54F236562CF24682F1DAA9A4402280 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = ""; }; + BB73684B1FFD013D5BD82C59D3872573 /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; BB902DEA4F0D74EC761DDE951BE97112 /* bio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bio.h; path = ios/include/openssl/bio.h; sourceTree = ""; }; - BB9408A97352ED127BA999C50F5DAF2F /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; - BB949948C374544BE44417A02D9D49F5 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; - BBD78CAA6416E3C6C0E9A765BADB047F /* UMAppLoader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.release.xcconfig; sourceTree = ""; }; - BBD86E34AA76095B88203BCB3CDC5B60 /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; - BC18E8E54381F3A9539D5849A9EA0441 /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; - BC282D79910D6F5C3C62503D5C1F04C3 /* RNFBApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBApp.debug.xcconfig; sourceTree = ""; }; - BC2DA67449514277872F910294874E7E /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; - BC40F8216DC8525D701B380F73B2CBF4 /* RNCSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaView.h; path = ios/SafeAreaView/RNCSafeAreaView.h; sourceTree = ""; }; + BB95C3E1D0D3F79114987E36C0717C9E /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; + BBA166BE67A84D2F441EF657DC27E453 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; + BBB6BDDA31252CE947EB19A25D78C788 /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; + BBD4361A03B64E5742D4F88DE5A2A478 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; + BBE64EAC86AAD07687903A83625329E5 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; + BBEA8CAFF75CDEE68027BDE08DD47A10 /* rn-fetch-blob.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.release.xcconfig"; sourceTree = ""; }; + BBF56D8C089A97520810E25603915E50 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMPermissionsInterface.a; path = libUMPermissionsInterface.a; sourceTree = BUILT_PRODUCTS_DIR; }; - BC49FBA937D0C70793E721F50A44F6B7 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; + BC4804B36143588010725865A3FF6163 /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; + BC4FCD4A12128CE6BCC7B7AD065B5005 /* RCTImageStoreManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageStoreManager.mm; sourceTree = ""; }; BC50E2E1DC1D4961ACE08AD2E8F01799 /* cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_enc.c; path = src/enc/cost_enc.c; sourceTree = ""; }; + BC5A3FC8AFDC6481A9ACF677E1C92C2F /* RNScreens.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.debug.xcconfig; sourceTree = ""; }; + BC63C1CF2DB0D3038568B54B1DC909E0 /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; + BC68D012D9B82C10D2104ADEE0351D39 /* UMAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppRecordInterface.h; sourceTree = ""; }; + BC7339B8473F04B0785014553A717B78 /* UMCameraInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.release.xcconfig; sourceTree = ""; }; BC78A19DEC5FBD1172C9805C65297C15 /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = ""; }; - BC886792F63CBB204AF163F4F10381F2 /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; - BCA00DCC0F009D822BBD751887B83A58 /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; - BCD29E30D08AA725101A72D71096FF99 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; - BCD33FA1C4A2DE809A407E674FD93977 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; + BC7F1DCD2BB3AEC13C0DB73A0DBE7B2D /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; + BC8204E8DF0FAED7A38AAA344E26E16A /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; + BC9FDD88B9204303D70026F7C404AD1D /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; + BC9FDED44C7F4E87F1D096925E259F14 /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; + BCA6F506BF538A9611B5FBE267CFC39D /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = ""; }; BCD691FACAED48EC4AC844A32ED1DC8F /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = ""; }; BCE822D74B11D22E737B6FD6F8BECA25 /* SDWebImageWebPCoder.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.debug.xcconfig; sourceTree = ""; }; + BCEB53D067D418E580BACB61B25B3C3A /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; + BCEE2A1825F67182895199AE7C75F159 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; BCF3EBA563842A9B7B132E359B257EE1 /* Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Folly-dummy.m"; sourceTree = ""; }; BD1B62C6CCC9B0025AF7A6FB03DC4E4B /* Benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Benchmark.h; path = folly/Benchmark.h; sourceTree = ""; }; - BD29C3393953D54B4142E70C530F56D4 /* EXImageLoader.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.release.xcconfig; sourceTree = ""; }; BD61C89570B5A88E2570EC349EF795FF /* FIRCLSURLSessionDataTask_PrivateMethods.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionDataTask_PrivateMethods.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDataTask_PrivateMethods.h; sourceTree = ""; }; + BD71B0B722E9D677AFBDA9BEF7449EB2 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; BD71E2539823621820F84384064C253A /* libReact-Core.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-Core.a"; path = "libReact-Core.a"; sourceTree = BUILT_PRODUCTS_DIR; }; BD779A9FB857CF6A75245FC41B4C925E /* TestObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestObserver.h; path = yarpl/observable/TestObserver.h; sourceTree = ""; }; - BD796413BB5238298EC57D3914A8D2A3 /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; - BD8722B88E814091C19479A32D208AA7 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; + BD86530E213F2225C67A4E11C51FDE43 /* rn-extensions-share.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.release.xcconfig"; sourceTree = ""; }; BD87456377ECC7FDB6C6803925D1D7D2 /* SysResource.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysResource.cpp; path = folly/portability/SysResource.cpp; sourceTree = ""; }; + BD8C712E7588F5E8C98B731E57DA0E69 /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; BD8FF74FC2C68F044BCD34CCD9D0889B /* Foreach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Foreach.h; path = folly/container/Foreach.h; sourceTree = ""; }; BD96F1F174D44004F2B151A5D9F6E827 /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/SceneDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = ""; }; - BDB4D6F7A742AB23E860D735598C54C9 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - BDB5D7FD80EE9CC211FEDAD1FFAACAAF /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; BDBBFBCD7DE76109F755131AAA2F136C /* vi.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = vi.lproj; path = "Objective-C/TOCropViewController/Resources/vi.lproj"; sourceTree = ""; }; BDC04ACA19D50CB3F37840A676EF96D1 /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = ""; }; - BDCA37D27080B97E0CBCD46A2CEF9D5C /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; - BDCDEFE731D4FE20F8FC6E23D341D96F /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; BDD5F79EA0CDF85DB4991BA3920931CB /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; BDD65E3747A5D5ACF394F36A06F6D087 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Private/GULReachabilityChecker.h; sourceTree = ""; }; - BDD86810C1FC0229CB481AEE4EE39FE2 /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; BDDF861A37CFD8442F2EC5A4A183C88C /* FIRCLSMachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSMachException.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSMachException.h; sourceTree = ""; }; BDE85F2AABBD97AB6DB7675D0A4E253E /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; - BE0D50CFB583D551B6FBB45D768E65C3 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; + BDEBFB4DD6D7394F69B5F9178B6DDF02 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; + BDF5B077E05F2FBB8B2C0184106BE41C /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; + BDF8207602D306790BE3B8DC9A4226AD /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; + BE11A5529D1AB89EBEE94F3553006904 /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; + BE12A1B72479404179FF9DB5E449E114 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; + BE138A9C0A3EE212138214A13874FF9D /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; BE1E51DAF2980431DDB971605F808257 /* FarmHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FarmHash.h; path = folly/hash/FarmHash.h; sourceTree = ""; }; - BE266C9B8E76939FE5C71EF566479AE5 /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; - BE2B8394DC33A02F432878F1D821234A /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; + BE341F17C723BC55110B4ED51AEDF689 /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; BE3649EB3CE3A580B449A847ABA02273 /* PriorityUnboundedQueueSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedQueueSet.h; path = folly/concurrency/PriorityUnboundedQueueSet.h; sourceTree = ""; }; + BE3B58E833213B298F389965FC69C3F7 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; BE4BE6450CD453CA09A3712441E8BCD4 /* rescaler_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips_dsp_r2.c; path = src/dsp/rescaler_mips_dsp_r2.c; sourceTree = ""; }; - BE52A37A1BE7982A06FB78B7CE518E5E /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; BE605AAAFCDAF34DE912991CEBF479C7 /* Select64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Select64.h; path = folly/experimental/Select64.h; sourceTree = ""; }; - BE6DCDB3EEEA0F4D656FB2354B1F3C84 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; + BE7BBEA16AA2770CC45B4FA4532085C1 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; BE7CC2BAD08A670CD2B94687FEE57CBA /* FIRCLSFABHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABHost.m; path = Crashlytics/Shared/FIRCLSFABHost.m; sourceTree = ""; }; BE839073D61550D2CD5027048D1E550D /* TimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutManager.h; path = folly/io/async/TimeoutManager.h; sourceTree = ""; }; BE88E1F560AED9BE6B8FF7674386A364 /* GDTCORReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORReachability.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m; sourceTree = ""; }; BE9244916F677D32A4DACFD9D2E45785 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Sources/Private/FirebaseCoreInternal.h; sourceTree = ""; }; + BE962801C192A4B5C58CC93EE76E4BDC /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; + BE9F320B5CB23ED87E6A858E223EC0CF /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; BEB9202103762A615C4A5838134AEA64 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = FirebaseCore/Sources/FIRDependency.m; sourceTree = ""; }; BEBC614680E2DD243719EEE5C7711F4A /* dtls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dtls1.h; path = ios/include/openssl/dtls1.h; sourceTree = ""; }; + BEC770B8F5C2CDCD16EA05F38DD4ACFD /* UMCameraInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.debug.xcconfig; sourceTree = ""; }; BED35C705418034A0AD71A3014130F99 /* Observer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observer.h; path = yarpl/observable/Observer.h; sourceTree = ""; }; BEE0464E0C94B162B36114026C0592E2 /* CacheLocality.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CacheLocality.cpp; path = folly/concurrency/CacheLocality.cpp; sourceTree = ""; }; BEE19A918E2759AE4572DC3E4A2ACB42 /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = ""; }; - BEECD186DC6CEF2E410F959F5806EF44 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + BEEB80E752CC0E9C816577072F114016 /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; BEEEF4249B6909EB1BFD6C850BACB51F /* Flipper-Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Folly-prefix.pch"; sourceTree = ""; }; BEF42821D115C4B51E21250EE57DCBFD /* MallctlHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallctlHelper.cpp; path = folly/memory/MallctlHelper.cpp; sourceTree = ""; }; - BEF495DA086741CFF80D572578A0875B /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; BF035BF0C0C598620C14CB365BDBC4DC /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/Traits.h; sourceTree = ""; }; - BF0C4AC8BB6062280C356E9369DE4721 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; - BF30C043E2C8978989FE992779AC8646 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; + BF1CE46C0D909DD9EFFE550B20C0B2B4 /* react-native-notifications.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.debug.xcconfig"; sourceTree = ""; }; + BF1F456334C248BD77BE65C60F42FF67 /* libreact-native-simple-crypto.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-simple-crypto.a"; path = "libreact-native-simple-crypto.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + BF2B461FFB034141F0EDFD0FCB7A8445 /* EXLocalAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXLocalAuthentication-prefix.pch"; sourceTree = ""; }; BF37DE038BBD1FB36F8EEFDC5A3042CE /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = FirebaseCore/Sources/Public/FIRLoggerLevel.h; sourceTree = ""; }; BF59D3DDFDAEAA2F0B0DD8E6E780975F /* OpenSSLUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLUtils.h; path = folly/io/async/ssl/OpenSSLUtils.h; sourceTree = ""; }; - BF6CC9E1559313D2D819B74ED1ADC435 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; BF74BBBEC6741E80407BE482F91CE4B3 /* Shell.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Shell.cpp; path = folly/system/Shell.cpp; sourceTree = ""; }; - BF78E5C625685E0CB6D4C8D77A19163B /* react-native-slider.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.debug.xcconfig"; sourceTree = ""; }; - BF7C89715C342A26D2AE3FBD19699A91 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; - BF8CDD264099EA4CB7EB7831969E98AA /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; BFA58B5670781EDFB4499E3B407B0D8F /* GroupVarintDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarintDetail.h; path = folly/detail/GroupVarintDetail.h; sourceTree = ""; }; - BFBC79B1D54204585867BE47A6E185D9 /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; + BFB1DA4419E8C7CF47F6509CD375F2BC /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; + BFB75D2486AC6C6768591D614DB9B395 /* RCTJSInvokerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSInvokerModule.h; sourceTree = ""; }; BFC99C09E5CDD8F3F63DF87C58BF997D /* FIRStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStackFrame.m; path = Crashlytics/Crashlytics/FIRStackFrame.m; sourceTree = ""; }; BFCE4058442BFB8DEB89BA3F261A76BA /* libRNUserDefaults.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNUserDefaults.a; path = libRNUserDefaults.a; sourceTree = BUILT_PRODUCTS_DIR; }; - BFE395D21FBE6AD8B8B5C5EBD078B42E /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; + BFD610C620148C24DE3EC5F4671CBB6D /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; BFEDF1AF19BFCBED0DC57C5D7820D920 /* Stdio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Stdio.cpp; path = folly/portability/Stdio.cpp; sourceTree = ""; }; C029C98C5203133743360966E72DD122 /* Poly.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Poly.h; path = folly/Poly.h; sourceTree = ""; }; C02D3D810F67640DBF05FC174F2CFDDA /* FIRInstallationsAuthTokenResultInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResultInternal.h; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h; sourceTree = ""; }; + C032B7EB532DAA8F547EB8860076C0C6 /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; + C05140C2F4F337FC835A966EEAF990C5 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; + C08CACE9EE348C2AFB780A00CDFA2888 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; C096C897C4DDDD531EA3E0EFBDA11B31 /* vp8_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8_dec.h; path = src/dec/vp8_dec.h; sourceTree = ""; }; + C09B0FA159AA5DE352504C0F23838725 /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; C0A22C9278CA947AE60BED7BD3998B1E /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = ""; }; - C0B878BE30AF115074D0B02354D82966 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; C0BC53810B2EF06324FB8E91968ED00E /* FKUserDefaultsSwizzleUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKUserDefaultsSwizzleUtility.h; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsSwizzleUtility.h; sourceTree = ""; }; - C0C2E58B15F6B96D6E542C553E6248E3 /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; C0C4B160DB5701B99F301CB5D6C04896 /* dsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsa.h; path = ios/include/openssl/dsa.h; sourceTree = ""; }; + C0D47778668E7FB9D16EB61395631AB2 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; C0FD0D7A7D1251868C2B3BFA97996C55 /* SKSwizzle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKSwizzle.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKSwizzle.h; sourceTree = ""; }; - C154BE5A4B2852054012AB53B149493B /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; - C168E75C2CE01B7AA6795B1E1B62A1AC /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; + C10C816D6B7FC6107D6C3908F781567C /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = ""; }; + C11ACF913DFC22CE3342B5D4223B037E /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; + C140589B4A887B18B65333867E77DFE9 /* RCTFileReaderModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileReaderModule.mm; sourceTree = ""; }; + C1409995935389D3483866220BA1B497 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; C18AD4E20713E272A237CF3B7E66CE69 /* HardwareConcurrency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HardwareConcurrency.h; path = folly/system/HardwareConcurrency.h; sourceTree = ""; }; - C18FE588563165C2933D5F0BF859CE5F /* RNCAsyncStorage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCAsyncStorage-prefix.pch"; sourceTree = ""; }; C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTVibration.a"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - C1C5FEE9D571263D18B986F78BBAFAEB /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - C1D7863437C4B5CF0A49FC901466CB3C /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; C1DEFABAFF75C96B932168C9BACE677D /* FIRCLSURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSession.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSession.h; sourceTree = ""; }; - C1E37BD24B44979ADFB937576E6081AF /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; C1F996E72EE7854D636C3AB7125A19BC /* FIRCLSFileManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFileManager.m; path = Crashlytics/Crashlytics/Models/FIRCLSFileManager.m; sourceTree = ""; }; - C1FF87D2217864C38E298491E235183E /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; C20049E8620AE1385BB1CDDE0F70E4CE /* cost_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_sse2.c; path = src/dsp/cost_sse2.c; sourceTree = ""; }; - C213DF80BD8103AF65A5D4187A9119B3 /* RCTRedBoxSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxSetEnabled.m; sourceTree = ""; }; - C243495974C4509A2870B16FFD36C84E /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; + C208216896601E60980FEE68919E480E /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = React/CoreModules/RCTActionSheetManager.h; sourceTree = ""; }; + C20AED945E57E23DDAB69E9A7FBDBF52 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; + C247A99D32C548B14F4AC5661F2AEFB0 /* RNFBAnalyticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAnalyticsModule.m; path = ios/RNFBAnalytics/RNFBAnalyticsModule.m; sourceTree = ""; }; C2ABBCD0551B5BD38ED87B30CE3CE4A0 /* UniqueInstance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UniqueInstance.h; path = folly/detail/UniqueInstance.h; sourceTree = ""; }; C2BE735E7D3712383AA21EE699871983 /* dns.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns.h; path = src/event2/dns.h; sourceTree = ""; }; C2DB8461A2F9054FB548ED9944DDFAE3 /* ConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionFactory.h; path = rsocket/ConnectionFactory.h; sourceTree = ""; }; - C2DE2A07BE9D20BB2D46088AA36B890E /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; C2E161EBDEE94559C264E94D3F607551 /* ScheduledSingleSubscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledSingleSubscription.cpp; path = rsocket/internal/ScheduledSingleSubscription.cpp; sourceTree = ""; }; - C2EDD1CADC43293D0D1DAD6D57DD9A1C /* RCTTypeSafety.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.debug.xcconfig; sourceTree = ""; }; - C306B80865CC3E63B75556571E0A7DAD /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; + C2E5D1F1E35AC184AC035DF596842089 /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; + C30105D555B17C02F5E431DD902F8CC3 /* RsaFormatter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RsaFormatter.m; sourceTree = ""; }; C307FA4DDA124CE3D860A07650C7336A /* CPortability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPortability.h; path = folly/CPortability.h; sourceTree = ""; }; C30F7F89E791711B48464342106226F8 /* AutoTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AutoTimer.h; path = folly/experimental/AutoTimer.h; sourceTree = ""; }; C31EB01DE51A7B7602E85F5B860644AA /* SSLOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLOptions.h; path = folly/io/async/SSLOptions.h; sourceTree = ""; }; - C3228E4AB9503EF03C33153392E16F3D /* 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; }; C32D1847F790C890FF54165A3577E950 /* OpenSSL.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSL.cpp; path = folly/portability/OpenSSL.cpp; sourceTree = ""; }; C32E6CE0BD0ED8E9FF9C88C35E0303EB /* RSocketParameters.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketParameters.cpp; path = rsocket/RSocketParameters.cpp; sourceTree = ""; }; C3357C3D92B275430BE1CA336548C8CF /* FIRCLSInternalLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSInternalLogging.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSInternalLogging.h; sourceTree = ""; }; C342A484C7AF378CAF18A0CDFE2E0877 /* SaturatingSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SaturatingSemaphore.h; path = folly/synchronization/SaturatingSemaphore.h; sourceTree = ""; }; - C345AE8BD2B7BBA4879C79348156B798 /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; - C3509D7E6E6FF57DEB0BB98F4D9970A1 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; + C3631283E0B72E97696BC4640B59714A /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; C37041973B07121668BCB6C55581597A /* 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 = ""; }; + C374A285EA196B85F5BD56ADC2C73015 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; C39027DDFFC8785415DE36B4302732A2 /* FKPortForwardingServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKPortForwardingServer.m; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingServer.m; sourceTree = ""; }; C3967C32512CD5EF785596B6A3D1CB53 /* Flipper-RSocket.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-RSocket.debug.xcconfig"; sourceTree = ""; }; C3989D4ABB04D0A64F86389304BC5D61 /* EventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventHandler.h; path = folly/io/async/EventHandler.h; sourceTree = ""; }; - C3C050640767572917109B49EED829C0 /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = ""; }; C3D0B731AE100532F2662E22FB50CC67 /* OpenSSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSL.h; path = folly/portability/OpenSSL.h; sourceTree = ""; }; - C3F78613C365C6584A4A55392589118F /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; + C3D79763F775C30D1F51390A1AD489B9 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; + C3DA8029EA7E15298CB70CEC74E30EA0 /* ReactNativeKeyboardInput-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardInput-dummy.m"; sourceTree = ""; }; + C3F73556D59F2914CDBE38BD35F20F16 /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; C3FF3E4DC4280B964575038808876B40 /* GDTCORTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h; sourceTree = ""; }; - C4067232583C4304F137FCD4C6779D75 /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = apple/RNCWebViewManager.h; sourceTree = ""; }; + C40547CF9A97052A9AD762F0CAC782C5 /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; + C406937EEF785452DCC7AE1CA3300119 /* RNFBAnalytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBAnalytics-dummy.m"; sourceTree = ""; }; C4141BB5449ECE42D0A3DDC9A489ECF3 /* EventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBase.cpp; path = folly/io/async/EventBase.cpp; sourceTree = ""; }; - C41599671F15C864ADB088C60B32DE20 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; C42C5CEB47051C0274973F10D377EC96 /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = ""; }; - C435C76EADB943EB9C2B899EDB65C8E0 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; - C436F1FFF2784DCB906FA3FDDE2BB48D /* UIImage+Extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Extension.h"; path = "ios/src/UIImage+Extension.h"; sourceTree = ""; }; - C4500ED7625F4B31BA4A9BB0C356A0B9 /* RCTFileReaderModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileReaderModule.mm; sourceTree = ""; }; C4519A2E6D871278F650A04C4A791304 /* SKHiddenWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKHiddenWindow.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKHiddenWindow.m; sourceTree = ""; }; C453D6935668B31A88214650D990B85D /* Benchmark.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Benchmark.cpp; path = folly/Benchmark.cpp; sourceTree = ""; }; C45D6053017EBCB71D9BF9F738C38545 /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = ""; }; - C4666EF3E75689F621B347AB37C0D8D4 /* 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; }; - C475CD97836017BA624960DEE9E51170 /* EXKeepAwake.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.release.xcconfig; sourceTree = ""; }; - C476AD4F5CA61B74AC357631AA1F446F /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; - C486A606163B725BA83E893805DD0904 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; - C48ABC73C98EA778E99870657E1F63BA /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; + C4AA78CBB6782C8E7428B534F72B07FB /* React-cxxreact.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.debug.xcconfig"; sourceTree = ""; }; C4B488DCBE297BF27E5027CA04CD1C41 /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; + C4B6B1AAC5F6EC73DDBDD5E950FFD76D /* react-native-appearance.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.release.xcconfig"; sourceTree = ""; }; C4CF7BC049CC7E28A6D3502E44A12248 /* SDImageHEICCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoderInternal.h; path = SDWebImage/Private/SDImageHEICCoderInternal.h; sourceTree = ""; }; - C4D25F70DC8B45BD854D50AB634AD856 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; + C4D29E3BF5AFA8963710D2CD11A6A533 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; + C4D5933A5C565722F7F7DE4299EC20C3 /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; + C4EDF2773774F9840137423D407C0747 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; C4F07654FD3094B454512BD85A427606 /* ThreadCachedArena.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadCachedArena.cpp; path = folly/memory/ThreadCachedArena.cpp; sourceTree = ""; }; C4F4D328F2927FC94EB73B5D096AE792 /* GDTCORReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability_Private.h; sourceTree = ""; }; - C4F7E4CFCBDB2C5DA6CAE16C755C4FE1 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; - C51284D778271F65A086135D3DCEBCEE /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; + C50FDEDD56937FA38E03475D2A44C3F2 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; C518097A36C3D994BC4CAD27FBBA3204 /* GDTCOREvent+GDTCCTSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCOREvent+GDTCCTSupport.h"; path = "GoogleDataTransportCCTSupport/GDTCCTLibrary/Public/GDTCOREvent+GDTCCTSupport.h"; sourceTree = ""; }; - C52F6244DBE87444847755B2FBA95A2D /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; + C51911E24EEC25A472F557BDA41A0839 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; + C529C5A09E9C8618BF94AB88CE9F75D5 /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; + C537B807CB0583208FB7549C525142F1 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; + C53C15122D0E87369DA8ECFF045FD3D5 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; C54A81776A28367C5075A1A7E025C665 /* CancelingSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancelingSubscriber.h; path = yarpl/flowable/CancelingSubscriber.h; sourceTree = ""; }; - C54B454D6AAC14D6C0EE7A5D4235273A /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; - C59DB90CF3AC928BF2F41DEEDA4939E5 /* EXWebBrowser.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.debug.xcconfig; sourceTree = ""; }; C5A95432B6070546FF747D5AA2420AB9 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; - C5C7412F9ECAF3FE9730283FF495B766 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; - C5D47C7F1E0D3601E4E12DE1B2D42CEE /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; + C5CA0A7B52FE174A212C2B1468843BD5 /* ReactNativeART.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.release.xcconfig; sourceTree = ""; }; C5D5B55DE426FBF8666A75743E87094B /* FIRCLSDwarfUnwind.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDwarfUnwind.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwind.c; sourceTree = ""; }; - C5ECDE1C5CBBFC663F87AF1A6B5B3E32 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; + C5DB9707A6C7523B1A10746722C4AA46 /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; + C5F909970166EA401334159FA97CD541 /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = ""; }; + C601EF69E33157791DF6996BBD80C7EB /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; + C603E18F4F042ECA9E90222CD55561B8 /* React-RCTActionSheet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.debug.xcconfig"; sourceTree = ""; }; + C607C3464072E76848AC01F155D838D2 /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; C617F30F38D7264BBC69D87465DAB6E4 /* DestructorCheck.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DestructorCheck.h; path = folly/io/async/DestructorCheck.h; sourceTree = ""; }; C6197429E2F18649F9A7CB13A6ABF9B4 /* 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 = ""; }; + C624970691D41EB2D3544108C4E76286 /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; C62C8B9EAE3CFF78053EFF659E7A9A8C /* Rcu-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Rcu-inl.h"; path = "folly/synchronization/Rcu-inl.h"; sourceTree = ""; }; C637A6272077BF390AF8E503CA25F9DD /* TypedIOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypedIOBuf.h; path = folly/io/TypedIOBuf.h; sourceTree = ""; }; C63998ECC5F17889AC0A1B7BDFD6CF09 /* SocketAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketAddress.h; path = folly/SocketAddress.h; sourceTree = ""; }; C646C169A280E39C2FC6B82856CB057E /* ThreadCachedArena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedArena.h; path = folly/memory/ThreadCachedArena.h; sourceTree = ""; }; C646FE3EB952D4ACD7AB461CA254C21A /* FIRCLSUUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUUID.h; path = Crashlytics/Shared/FIRCLSUUID.h; sourceTree = ""; }; - C6473AD8D884C122D30D147CB2EEA634 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; C64BC1718707B1A113EE6BE56A5AB74D /* PriorityLifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityLifoSemMPMCQueue.h; path = folly/executors/task_queue/PriorityLifoSemMPMCQueue.h; sourceTree = ""; }; C64F1ABE0A71785564EFEB70DA843B6A /* Pods-ShareRocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ShareRocketChatRN-resources.sh"; sourceTree = ""; }; - C66080E2B8DB2977C93C96CDACD6A64F /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; + C6553FE5AE815B261BAC5F613BBFB516 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; + C67A1A8BD86BC3BE65BD161E3C387CF5 /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; C6837DCCFD84960D87157F938E6F85AF /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = ""; }; - C6AAB4B2FE1673E707CA8A15E36967EF /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; - C6CF8F4840B8CB15ABAC8F1308ED3C52 /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C68F6027AAD94B607FCEA0DF5649BA7F /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; + C6B68FB989D9B38049C471869BDA1B0D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; C6E791AAFDE581645641A9BE02AD212B /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/experimental/Bits.h; sourceTree = ""; }; - C6F9203A9A10EE2E9608F5D0DCA8B05F /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; C70F877B24AD4A37B3DC052BD07BD341 /* Function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Function.h; path = folly/Function.h; sourceTree = ""; }; + C71220D0ED345A50FB432737110D26A1 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; C726E05B4F05E6451476515A1092F10B /* ParkingLot.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ParkingLot.cpp; path = folly/synchronization/ParkingLot.cpp; sourceTree = ""; }; - C72C37267ACB301B335FD0DB84E0A927 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; C73984F9AF5A3D5EFCE8B428C9F2B31F /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; + C73D49DCE02BB49A6916CE159C31DFD1 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; C74544180C6AF0CCE0506538D7C099D0 /* RequestResponseResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RequestResponseResponder.cpp; path = rsocket/statemachine/RequestResponseResponder.cpp; sourceTree = ""; }; C76F9B3A827F1FB31A99CC0A53E4A9C2 /* ebcdic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ebcdic.h; path = ios/include/openssl/ebcdic.h; sourceTree = ""; }; C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNReanimated.a; path = libRNReanimated.a; sourceTree = BUILT_PRODUCTS_DIR; }; C779CD88C05D8F0F0E51858A7A49B7EC /* CocoaAsyncSocket.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaAsyncSocket.release.xcconfig; sourceTree = ""; }; - C77C9FBBCB438359DBDE6B871BF7983B /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; + C77CE6D3AF5EFBF954E7F29328776D6A /* RCTConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConstants.h; sourceTree = ""; }; C78B635B9A224AD7B149387A6F039970 /* bufferevent_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent_compat.h; path = src/event2/bufferevent_compat.h; sourceTree = ""; }; + C7922B598A8816128E19340F2BE2857D /* EXResumablesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXResumablesManager.h; sourceTree = ""; }; C798B7984A25A4FDBF685F8AE32B5206 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; + C79C7F37666022CF39C5F90280C4FDD5 /* RNCSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewManager.m; path = ios/SafeAreaView/RNCSafeAreaViewManager.m; sourceTree = ""; }; C7AD28417FC4C27A6777BE497F82889B /* lossless_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_neon.c; path = src/dsp/lossless_neon.c; sourceTree = ""; }; C7BAC394858823FBA7E97990F6AC49E4 /* FIRInstallationsItem+RegisterInstallationAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstallationsItem+RegisterInstallationAPI.h"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h"; sourceTree = ""; }; - C7BC7CDCAD9DB52E4C3A81FB92EFC4DC /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; - C7D772435F16A21FE7465CF7022B14B4 /* React-RCTText.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.release.xcconfig"; sourceTree = ""; }; - C7EF22BF34462DA4E33A8103B75E4076 /* RCTAppState.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppState.mm; sourceTree = ""; }; - C821CE4EDCA77EAB61D4C95468B99CE1 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; - C8265C63AC43F5A886877016BFB2C59E /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; - C83E27AA1E995B00AC0C874EC4F88520 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; + C80DE865776E85161465B18D33B6DE06 /* React-jsiexecutor.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.release.xcconfig"; sourceTree = ""; }; + C81CE05CBDBD3F1E22A33AEF3AF016D4 /* EXAppleAuthenticationButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppleAuthenticationButton.h; path = EXAppleAuthentication/EXAppleAuthenticationButton.h; sourceTree = ""; }; + C8201567BCB5342D649D8C7BB250B67C /* RNCSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaView.m; path = ios/SafeAreaView/RNCSafeAreaView.m; sourceTree = ""; }; + C840E94E1B75F5A9E424E49D786C3B0A /* 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; }; C84BBB5EE6F5A7506E0DC196EDCEE025 /* SDWebImageWebPCoder-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImageWebPCoder-prefix.pch"; sourceTree = ""; }; C85CB77B6343410166E443F990D0BFA6 /* GULNSDataInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNSDataInternal.h; path = "GoogleUtilities/NSData+zlib/Private/GULNSDataInternal.h"; sourceTree = ""; }; C85D88EC210D312E3F7C5285811CDECE /* RSocketConnectionEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketConnectionEvents.h; path = rsocket/RSocketConnectionEvents.h; sourceTree = ""; }; - C8972C8A0470C9BC3219DA4032A09601 /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; + C89BDE44708E963901B95EDB046EEAAD /* RNCAsyncStorage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCAsyncStorage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; C8A094FB1252916A1EC6E86B94966416 /* RSocketServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServer.h; path = rsocket/RSocketServer.h; sourceTree = ""; }; + C8AF807DD85E6C844346669B3AD47A84 /* RCTImageView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageView.mm; sourceTree = ""; }; C8C705230CA55BC0655C5ED11110778B /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/Math.h; sourceTree = ""; }; - C8D0607E6F1D8EEAB90007F6BB4D6239 /* RNFBVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBVersion.m; path = ios/RNFBApp/RNFBVersion.m; sourceTree = ""; }; - C8DA6D312263F96893BF291F3AA57FE2 /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = ""; }; - C8E7806004C4DC8DFF006B2AAB08738D /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; C8F34AF3B88CCEC074D0777A5E4688FC /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; C8F503D43AD34E7D7A4E826535F57AB5 /* lossless_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless_common.h; path = src/dsp/lossless_common.h; sourceTree = ""; }; - C900C13132D72C348F00160742357092 /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; - C91D0A391046F259A09B4F20546CF13C /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; - C92C68AEBB9197C1FBF155507CCBC0E0 /* 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; }; - C935479999A27089DE9E10F5AB6D6D62 /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = ""; }; - C974638B279A70C7F30601F69AD7781F /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; + C8F5F8EE47940E56A11D1F6336DCD3FD /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; + C92D2F1E221B70EF17DB12920D92AC56 /* UMImageLoaderInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.debug.xcconfig; sourceTree = ""; }; + C93F2056C98F2C6691B1851396673025 /* UMPermissionsInterface-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMPermissionsInterface-prefix.pch"; sourceTree = ""; }; + C987E0E268B890DBF8F6078F9904CFB3 /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; C98EDB5D7FC65AA16888B7C5F5C0B236 /* FIRCLSDwarfUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSDwarfUnwind.h; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwind.h; sourceTree = ""; }; - C99A858C6E2FA0F9908159864A40BD93 /* UMPermissionsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.debug.xcconfig; sourceTree = ""; }; C9B2686D36ADF4DF858FE6E74E729BAF /* random_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_utils.h; path = src/utils/random_utils.h; sourceTree = ""; }; + C9B671744E30424E7E777FD565C6D663 /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; C9C553C8F56C05B906B96AEABE78037E /* FlipperDiagnosticsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperDiagnosticsViewController.h; path = iOS/FlipperKit/FlipperDiagnosticsViewController.h; sourceTree = ""; }; C9C7345871F0300E23872F039A8D7BFD /* TimeoutQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimeoutQueue.cpp; path = folly/TimeoutQueue.cpp; sourceTree = ""; }; + C9C9BB902DE7317043E3439C2FFD3E24 /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; C9CFFD5ABC45030F942FC9BCB1EA1BEA /* OpenSSLHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLHash.h; path = folly/ssl/OpenSSLHash.h; sourceTree = ""; }; - C9DDD577ED5F2CD90CA550AECAC8C1FF /* RNCSafeAreaViewEdges.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewEdges.h; path = ios/SafeAreaView/RNCSafeAreaViewEdges.h; sourceTree = ""; }; + C9D6A897D4B77DD75D7A72E3A0E3A922 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; + C9DCB9FF8CD05F5086304842F517F8E6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + C9DFAE1CED3AF75F343225DB3D0C244D /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; C9E8E7182D11738945BBA52D71FB008A /* lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc.c; path = src/dsp/lossless_enc.c; sourceTree = ""; }; C9EC7681EB17222ADFEED343B3673AD8 /* stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stack.h; path = ios/include/openssl/stack.h; sourceTree = ""; }; C9EFB34CCF70545A780B4A8FD2382307 /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = ""; }; C9F3B0B75B87EA9A9804DADE11EE6C2A /* FlipperConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnection.h; path = xplat/Flipper/FlipperConnection.h; sourceTree = ""; }; CA015E8AEF215DBBEC722E24ECAD42DA /* FIRCLSRecordApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordApplication.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordApplication.h; sourceTree = ""; }; CA07F830D3DCA4E1EC5DF4D590D93872 /* Ordering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Ordering.h; path = folly/lang/Ordering.h; sourceTree = ""; }; - CA0D1B313D1DF488566BEB346ADA59E4 /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; CA1317E241D2EB102870C3801D0CD50C /* FrameSerializer_v1_0.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameSerializer_v1_0.cpp; path = rsocket/framing/FrameSerializer_v1_0.cpp; sourceTree = ""; }; CA1555768D8D86414AF37BD34221F823 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; - CA23B711DE0852EF3E1C3E50898D485A /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; + CA3067B2F5081F7EF4ACBB6BDDC0E4B6 /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; CA369CF1281AEE99F25BFCB738675250 /* bit_writer_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_writer_utils.c; path = src/utils/bit_writer_utils.c; sourceTree = ""; }; CA4A019C7B2509901664E9F8F9C1EA8A /* enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse2.c; path = src/dsp/enc_sse2.c; sourceTree = ""; }; - CA782B6CB8D0E07AD5544587498F4408 /* RNFastImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.release.xcconfig; sourceTree = ""; }; CA9FF35AC25F983CCFF29F17AB6A5347 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; CAAA557DA874749CDE0FFF6F91E828AA /* FlipperClient+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FlipperClient+Testing.h"; path = "iOS/FlipperKit/FlipperClient+Testing.h"; sourceTree = ""; }; + CAB8C72BFF7FFFC6A220F53B5559BD87 /* ResourceBundle-AccessibilityResources-React-Core-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-AccessibilityResources-React-Core-Info.plist"; sourceTree = ""; }; CAC064618A90A0213A771B7BB5DB52E2 /* ssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl.h; path = ios/include/openssl/ssl.h; sourceTree = ""; }; CAC1E1BFBCE8B6C218C73D00A33BFDC8 /* libevent_pthreads.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent_pthreads.a; path = lib/libevent_pthreads.a; sourceTree = ""; }; - CAD71D94ADEA26A24434DEE519D7FAA9 /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; - CAF380BEAB1E336DF46EA3D02D047BDD /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; + CACA43D7BF27B12F7FE692E8B266B622 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; + CAD4D7F6011F574FBA32ECD96D646F38 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; + CAE325D44FDA7C1A7B388037506C94D8 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; CAFC6E52C58FF0F4DF956FBE62F844B7 /* FIRCLSURLSessionUploadTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionUploadTask.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionUploadTask.h; sourceTree = ""; }; - CB2655499D2764752901A4AEC16BBE7D /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = ""; }; - CB3368D04A2DD89077159C210647FB7B /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = ""; }; + CB04EDD30E1301CB3E8CD2506B60FD7C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + CB178F8CC178C95C40F8D661E4ADE424 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; + CB2F96E3A191018568BACAAC52D89428 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + CB307A9B47688D70F2FA2F49AFF27A8F /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; CB3858A6C43E0E49533D1C37A288B686 /* SysUio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysUio.cpp; path = folly/portability/SysUio.cpp; sourceTree = ""; }; - CB500AB949632FBC3E40BC286DEB19CB /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; - CB5116DE3B4CC1DA76422E8DA604FE4D /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; - CB51A939D391539943E41BC790E64512 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; - CB65047EC0D46C0C4412606BF0EF6382 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = React/AccessibilityResources/en.lproj; sourceTree = ""; }; - CB66756B68D9BCD4C42A9E759B0D2120 /* RCTAsyncLocalStorage.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAsyncLocalStorage.mm; sourceTree = ""; }; + CB3EEAA2837CD8068F3E6D72B69C1062 /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = ""; }; + CB605356388C336D2CF6595A3FF68DD2 /* RCTRedBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTRedBox.mm; sourceTree = ""; }; CB6C61548755A9F5988E6C06022D09AA /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = ""; }; CB73B05A85B9346F0A3CF80C49B994AA /* FIRAnalyticsInteropListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsInteropListener.h; path = Interop/Analytics/Public/FIRAnalyticsInteropListener.h; sourceTree = ""; }; - CB7FAEBA9D689C73A940EBDAEC58B625 /* EXResumablesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXResumablesManager.h; sourceTree = ""; }; CB86913A2964BFCED45D24480BB55482 /* FIRCLSUnwind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSUnwind.h; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind.h; sourceTree = ""; }; + CB91C117B7376C95521D5E7FD96C9F30 /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = ""; }; CB93CF2EA3FCAA32D518CE126600C085 /* RSocketRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketRequester.h; path = rsocket/RSocketRequester.h; sourceTree = ""; }; CBBE73D808462C2869392C6BD48CA4E5 /* Poly-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Poly-inl.h"; path = "folly/Poly-inl.h"; sourceTree = ""; }; CBC6A743A4576AB895C1007CEE84A86D /* TimekeeperScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimekeeperScheduledExecutor.h; path = folly/executors/TimekeeperScheduledExecutor.h; sourceTree = ""; }; @@ -9499,155 +9590,152 @@ CBE8DA9EF47B2DF6E24BF46ECC99504A /* ManualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualExecutor.h; path = folly/executors/ManualExecutor.h; sourceTree = ""; }; CC0CE5A3FFDD97552D725E57667A6C86 /* GoogleUtilities-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-prefix.pch"; sourceTree = ""; }; CC1C3D6E2E4932492A8B3B7F454E0173 /* common_sse41.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse41.h; path = src/dsp/common_sse41.h; sourceTree = ""; }; - CC2D7C55CBCC6D6AD79421C5F0AAB192 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; - CC311E2E0AA72D79FAEB72F6127AA157 /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; - CC3B029D80BE1096B22E0C92D046BD78 /* RNScreens.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.release.xcconfig; sourceTree = ""; }; - CC4A8A5746AC02E50BDE6FF0B381FE14 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; CC6BB10D842A4A9E15B036B75213A500 /* Foreach-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Foreach-inl.h"; path = "folly/container/Foreach-inl.h"; sourceTree = ""; }; + CC7862F62BACC115156A6724857486F5 /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; CC85EC7FAAD59D077810D1D2CCCE4CF4 /* GlobalExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GlobalExecutor.cpp; path = folly/executors/GlobalExecutor.cpp; sourceTree = ""; }; CCA0E31995C102885FF7EB22F021C8FF /* Flipper-PeerTalk-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-PeerTalk-prefix.pch"; sourceTree = ""; }; - CCA1D7E14117C738A5119AA2C3C7FA02 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; - CCA445C75B442CC0833E539B3948F610 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; - CCEA52403CD4611FB40B7A447982030E /* react-native-background-timer.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.debug.xcconfig"; sourceTree = ""; }; - CD2A07A92E6452F93F0F544982C468EB /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; + CCC8C2C47E5C9669DDA0108E7F417BFF /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = ""; }; CD2E0E29B2602E47A26BB8780A6283EE /* Throughput.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Throughput.h; path = rsocket/benchmarks/Throughput.h; sourceTree = ""; }; - CD364142AD14D67CB621A7AEAF189416 /* CallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallInvoker.h; path = ReactCommon/CallInvoker.h; sourceTree = ""; }; CD3C9A9022B9DD377CC29BE1056E468D /* FIRCLSFile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFile.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSFile.m; sourceTree = ""; }; - CD3F8E4D63A82ED04CC3C4FDAB80A2F2 /* RCTWebSocketExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketExecutor.mm; sourceTree = ""; }; + CD3F1AFD73DFC9EEE504983BE9768173 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; CD4FFA9FFC507CE5B36986E997018FCF /* demux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = demux.c; path = src/demux/demux.c; sourceTree = ""; }; + CD5488500C4C25AA8510B878FBAB25AE /* UMAppLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMAppLoader-dummy.m"; sourceTree = ""; }; CD76B92632517694DABAFDBCD0847C3F /* Flipper-PeerTalk.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-PeerTalk.release.xcconfig"; sourceTree = ""; }; - CD9B8971F619BA4C22DFA45EDBC286AA /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + CD815710F48E3ABBE415013859067C6F /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = ""; }; + CD8DDCE7BBF1DEFB586A48D9DAC6398E /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; + CD946AE806766F8C22B5D974803F68E9 /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; CD9C305B1161EAFEB0273D62045CBFB1 /* FIRCLSURLSessionAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionAvailability.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/FIRCLSURLSessionAvailability.h; sourceTree = ""; }; - CDA22CF0190708367475F1C9DF73DD55 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; - CDA53E6309D597F1A328D58C06B39D6B /* RCTAccessibilityManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAccessibilityManager.mm; sourceTree = ""; }; + CDA040136B3239A03E1407AF961730BC /* UMPermissionsMethodsDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMPermissionsMethodsDelegate.m; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.m; sourceTree = ""; }; + CDB1B1E6DD51B733C551D0A84FA5F0E3 /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = ""; }; + CDC5E5922F936CFFC09DC328A3103636 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; CDCE06C44A51E26FFBFB86791602BA62 /* CocoaAsyncSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CocoaAsyncSocket-prefix.pch"; sourceTree = ""; }; - CDCFD5FBA22753E346CB7AA7F72793D7 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; CDD10E3EAD8DC815BF645C8BA8D97737 /* SysTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTime.h; path = folly/portability/SysTime.h; sourceTree = ""; }; CDD8B489FEE7559F434B9E2A898ADA1E /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; - CDEA08C7FF025D3288B25D1B49D63EC7 /* RCTScrollEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollEvent.h; sourceTree = ""; }; CE32AAE75C4BD581E7BC9D6B73A8F88B /* FIRCLSCompoundOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSCompoundOperation.m; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSCompoundOperation.m; sourceTree = ""; }; CE3530F492846720B51391F9AB783A52 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; - CE374EBE8F0C05C51482CF61FFCFF753 /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; CE5167562CDE6169DA6D106D090D7DE6 /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; - CE66643F5FC639D8B673507543236734 /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; + CE54E17C4D5E975049EEE8EF60B1CD07 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; + CE75A10165E4CD14C11C9FCDB62C2699 /* react-native-orientation-locker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.release.xcconfig"; sourceTree = ""; }; CE7A439AB1D7DA8406151F48943F0FA2 /* SSLSessionImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLSessionImpl.cpp; path = folly/ssl/detail/SSLSessionImpl.cpp; sourceTree = ""; }; + CE92F9D67E3F9B8FFB96D0BCB42800DF /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; + CE93C8477745682D17113E1E17B028A3 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + CEA088956AC567543765699D52C9C1F2 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; CEA243D951DB804A2D2B061752D4838F /* SSLOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLOptions.cpp; path = folly/io/async/SSLOptions.cpp; sourceTree = ""; }; + CEE49B8D45F187E30A1C692531935198 /* EXWebBrowser.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.release.xcconfig; sourceTree = ""; }; CEE886B7CAE178D81226A4C10A7A652A /* OpenSSLThreading.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLThreading.cpp; path = folly/ssl/detail/OpenSSLThreading.cpp; sourceTree = ""; }; - CEF676D927EF30BF109A54DE3874714E /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; - CF2873E4B2CEBD2FC34DA56588176ED4 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; - CF478C7810D07EA971A338A7AACCE201 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; - CF54BA97F1204F092610662BFBA7BD89 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = React/CoreModules/RCTWebSocketExecutor.h; sourceTree = ""; }; + CF08DF48753BFB102BBBD5E2927D72D9 /* Hmac.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Hmac.m; sourceTree = ""; }; + CF226AAE0BDB6B804BA947C361D94F0D /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; + CF450C48FD34F318523681D898F16533 /* RNFBAppModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBAppModule.m; path = ios/RNFBApp/RNFBAppModule.m; sourceTree = ""; }; CF5EDDE0A60674EC16F462B8AC129B53 /* FIRInstallationsItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsItem.m; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.m; sourceTree = ""; }; CF7C5FBE44267D75D7624C4853972AB1 /* NamedThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NamedThreadFactory.h; path = folly/executors/thread_factory/NamedThreadFactory.h; sourceTree = ""; }; CF809DE1D6E4AF39B39B6F097B6A7592 /* FlipperKitLayoutPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperKitLayoutPlugin.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.mm; sourceTree = ""; }; CF8281271ADB1F358A919C352A86515F /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; CF8804BC3E347D4851ADD147BAB6EDBC /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/init/Init.h; sourceTree = ""; }; - CF8DCCE23CDBAB54A36458A4E4D5EADB /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; + CF91F406A7494A8E1A5957B1A8A213AB /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; CFAD8597CC3ED06B8717AF6EBBEA4EFA /* GoogleDataTransport.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.debug.xcconfig; sourceTree = ""; }; + CFB41288C18EF0E2426E348B1408ECA6 /* react-native-jitsi-meet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.debug.xcconfig"; sourceTree = ""; }; CFCBC0F5DDDBD51A7867EBB782D07E63 /* ResumeIdentificationToken.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ResumeIdentificationToken.cpp; path = rsocket/framing/ResumeIdentificationToken.cpp; sourceTree = ""; }; CFCC2D274ED22535ECD02924D62DE800 /* EventBaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseManager.h; path = folly/io/async/EventBaseManager.h; sourceTree = ""; }; CFD03FB0C2D11E2F1F3FCA505CB8BB2B /* SKSearchResultNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKSearchResultNode.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKSearchResultNode.m; sourceTree = ""; }; CFF9BBFC575965D7B3497942602B4C5B /* cost_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_neon.c; path = src/dsp/cost_neon.c; sourceTree = ""; }; CFFA0BCA42AA79D5F6DA194B2B9F7549 /* FIRCLSURLSessionDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSURLSessionDataTask.h; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDataTask.h; sourceTree = ""; }; + CFFB4991418144058ABB0032A92BD9B1 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D0067F371BD4B2788A1A0D3B25889D0F /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/Exception.h; sourceTree = ""; }; D006B45F73E3EB98184E5E01EA61C062 /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/Memory.h; sourceTree = ""; }; D01A6489F6406718065AA34144250BC2 /* UIColor+SKSonarValueCoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UIColor+SKSonarValueCoder.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIColor+SKSonarValueCoder.mm"; sourceTree = ""; }; + D036560680007EB641CBF9B43E8DCDC0 /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = ""; }; D03FC597ACA1B5536916170C06AF2D65 /* YogaKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = YogaKit.modulemap; sourceTree = ""; }; - D06903DA43987F38A89CFD31562F611C /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; - D079176E8C813D460512DB84FB1E2175 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; + D03FCD60357441A717BF3EE720E5A032 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + D04162FF7702661C01D7DC283C5D7452 /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; + D08EFCBEA423BA10284B5BA66BE2CE5B /* RNDeviceInfo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.release.xcconfig; sourceTree = ""; }; + D090FFC3A6677EA00EA2D10986C849BB /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = ""; }; D0A2D5085A9C7246D336E57AB03F491D /* Instructions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Instructions.h; path = folly/experimental/Instructions.h; sourceTree = ""; }; + D0AFF9FF2A55E542476F9D24C1DBEF72 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; D0B93C26B41920E48F778CCD2CB459F8 /* ko.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ko.lproj; path = "Objective-C/TOCropViewController/Resources/ko.lproj"; sourceTree = ""; }; D0C71BA9D25DA1A550006AACAFB19E1C /* glog.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.release.xcconfig; sourceTree = ""; }; + D0CF17BEBECBE98BA81D8120D72E9DD2 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; D0D15115DE4F2B4375C2D5A879A000A4 /* safestack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = safestack.h; path = ios/include/openssl/safestack.h; sourceTree = ""; }; - D0D2CD5DF7CEA11922512B699BFB6E5D /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; - D0D5223366946270BD599C4598AB0B0A /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; - D0E4142B407E6E4E9BDB00E3BF5FA229 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; - D0E4678A27EB9FBA6FD50EA9E4E835CA /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; + D0D829E35FB56A68F2CAA7B3C9832583 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; D0E937DC56A82C3FD397AC2B9C6CA46C /* FirebaseInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations.h; sourceTree = ""; }; D1036F01106D7DF59D8A20219D893A91 /* ThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocal.h; path = folly/ThreadLocal.h; sourceTree = ""; }; + D1156480B64AAEEFD35C61D87FA4B096 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; D12A12D7F3B3D9DDC225890901EB30DF /* FlowableDoOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableDoOperator.h; path = yarpl/flowable/FlowableDoOperator.h; sourceTree = ""; }; - D12FAEB3375BBA04A0D84C42BE07D59C /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; + D13D79C58B287031D4AC4C1DE850ED5C /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; D14E497BA6EACDDFF8B4B8F6190DEBAE /* FIRCLSAsyncOperation_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAsyncOperation_Private.h; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation_Private.h; sourceTree = ""; }; D156D0FA1E2F685372E62ABE58EA2C73 /* json_pointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_pointer.h; path = folly/json_pointer.h; sourceTree = ""; }; - D1C4FC5E1F23F942780D21CCBD9CA28C /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; + D17D4F57B1C655FAAEC659AD35B8F9B8 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + D1903DC187C0ECED2E7D9ED05B3D1E87 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; D1DC49481802A33DECEF52D19B2A6DE3 /* FIRCLSFCRAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFCRAnalytics.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSFCRAnalytics.m; sourceTree = ""; }; - D1E113F1A3AAF6788086A286702821B8 /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; - D1ED42C56DC5FCC815A8BA2BCC5A8831 /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; + D1E79E6F6FDF19F1F5B2BD6EAA6D9D52 /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; D1EE034565DB2081CB6210430635012B /* ObservableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableConcatOperators.h; path = yarpl/observable/ObservableConcatOperators.h; sourceTree = ""; }; + D1F477634C1A9B974575AFFDF69B5340 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D1FEB8A17E597B536CD017BB386ACF22 /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/synchronization/Baton.h; sourceTree = ""; }; D2070E7713070D87C78A790F9EE65344 /* FIRInstallationsIIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDTokenStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h; sourceTree = ""; }; - D20E2386F518E8E4CE98EF9C8F896925 /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; D21E34F415CE98C43A45525B1341DBA2 /* Iterators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterators.h; path = folly/detail/Iterators.h; sourceTree = ""; }; - D2499C8B2186DA8E61F638035B873017 /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; D24CAA086F77F9010EA8201A3EFF59A9 /* FIRCLSReportManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSReportManager.m; path = Crashlytics/Crashlytics/Controllers/FIRCLSReportManager.m; sourceTree = ""; }; - D2558CABF87F180513EE640FC82D1CBE /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = ""; }; + D25A0A68EC8D0921730247EF6DCB9C91 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; D25D9BFA97BE17F3CBD7B42D3D39A123 /* FIRCLSReport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSReport_Private.h; path = Crashlytics/Crashlytics/Models/FIRCLSReport_Private.h; sourceTree = ""; }; - D25ED1CD1ACB72C9EA7AAF0297417A5E /* EXSessionTaskDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionTaskDispatcher.m; sourceTree = ""; }; + D260818C7B84863399660D3979D3A14E /* RCTDataRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDataRequestHandler.mm; sourceTree = ""; }; D27036E21C986400F5F94AB52C5DDF5B /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; D27C3F612CCCE53B76EEA2A7FE15C664 /* SKHighlightOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKHighlightOverlay.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitHighlightOverlay/SKHighlightOverlay.h; sourceTree = ""; }; D288AFE463AA20280B392AACF944EF72 /* 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 = ""; }; + D2917C637ECC06C1DEC86BEC5BFCF434 /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; D291DE38229CCA16DF54B55291CDD8AF /* AsyncPipe.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncPipe.cpp; path = folly/io/async/AsyncPipe.cpp; sourceTree = ""; }; - D2930589CAE3B436E83097AA1ADE8724 /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; + D2998CFECD9FB872258F99DE7224F85C /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAccessibilityManager.h; path = React/CoreModules/RCTAccessibilityManager.h; sourceTree = ""; }; D2ABD46D41C0C7C4E7DA7A0208227F71 /* CocoaLibEvent.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaLibEvent.debug.xcconfig; sourceTree = ""; }; - D2B8B6E373698F862883B51B8AC67F17 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; + D2ADA587AA0692848BBB01A850B74C47 /* UMBarCodeScannerInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.debug.xcconfig; sourceTree = ""; }; D2D902806CF778A22E4AEF91885DEE9A /* CertificateUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CertificateUtils.cpp; path = xplat/Flipper/CertificateUtils.cpp; sourceTree = ""; }; - D324B9F20D3B0BF34F35245AC8ABC505 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; - D340B4EDA1C2D6952B90A2FDD2CE52BA /* RCTImageEditingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageEditingManager.mm; sourceTree = ""; }; + D2F491348EF282ACF8546F4C85ADA1FB /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; + D3196CB88A2AFE340401C26838AFF849 /* RCTImageViewManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageViewManager.mm; sourceTree = ""; }; + D332923C4435CB0D9A4E240B3A9067F2 /* RNCMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedView.h; path = ios/RNCMaskedView.h; sourceTree = ""; }; + D347B19BB32B3E0FC907A2D97CE1A567 /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; + D34ED1E59A8C518300CB6CAAD73BDF70 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; + D364C8D0E86B50A066A7473E6C6C5739 /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; D36F6563C1B50FAE5A199E63F8B4A5CC /* StreamStateMachineBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamStateMachineBase.cpp; path = rsocket/statemachine/StreamStateMachineBase.cpp; sourceTree = ""; }; - D3727FAB0BE2037FEE16FE0B671AD10C /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; - D372B58B07D58281BA62F9165AF037AC /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; D372D5BE6AF13F4983B8238EFA79822A /* FIRCLSCompactUnwind_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCompactUnwind_Private.h; path = Crashlytics/Crashlytics/Unwind/Compact/FIRCLSCompactUnwind_Private.h; sourceTree = ""; }; - D3749DB4BC9E9ED52FC1398435CC5789 /* React-RCTImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.release.xcconfig"; sourceTree = ""; }; D39F2F593B426FC17FAA344D8A0C4BB3 /* FIRCLSHost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSHost.m; path = Crashlytics/Crashlytics/Components/FIRCLSHost.m; sourceTree = ""; }; - D3ABDD622ABCBDBB9B57E4C372874B25 /* RCTTiming.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTiming.mm; sourceTree = ""; }; - D3B01EEE739ACB789829BE7C00604679 /* UMAppLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMAppLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D3B7A8958EB01D6B4C199D7AFC54B407 /* SKIOSNetworkAdapter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKIOSNetworkAdapter.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.mm; sourceTree = ""; }; - D3B83B7B2B70F1BEE028F4BF4D66027B /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; - D3D252E98E5FDE432A51D5F0430640A3 /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; - D42777CA461B620478E3E2108813C937 /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; - D42AFDA613E0E45A006CDC0E8DCCF71B /* UMReactNativeAdapter.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.debug.xcconfig; sourceTree = ""; }; D4531DB289C980609179E55E7E05ADA9 /* FBCxxFollyDynamicConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBCxxFollyDynamicConvert.h; path = iOS/FlipperKit/FBCxxFollyDynamicConvert/FBCxxFollyDynamicConvert.h; sourceTree = ""; }; - D45569970FC2C3DFC09F7E5C85BDE7A5 /* RNLocalize.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.debug.xcconfig; sourceTree = ""; }; - D4751B6CBCADBEBB84043585F1E2CB43 /* RCTLinkingPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingPlugins.mm; sourceTree = ""; }; + D45CAE684DBA14D5D214A49F27E3C009 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; + D47A085905A6E73FE50B5B2412BDD065 /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; + D480A731B9A6D6FEB9ABBD7BD3FDFD0F /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; D49491FFF9858D16254048821075C689 /* DistributedMutex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DistributedMutex-inl.h"; path = "folly/synchronization/DistributedMutex-inl.h"; sourceTree = ""; }; D49DBE19A2224B63E60F7946DCE2DCBC /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; D49DC92A9BA7853CA58F46AC9266A803 /* ExecutorWithPriority.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorWithPriority.h; path = folly/executors/ExecutorWithPriority.h; sourceTree = ""; }; D4A2F2833D63935CFDB5EB3F8970F1F8 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = ""; }; + D4AC9585D0485AA14FF197F4554FD25E /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; D4BBB50A7E45B836DCF7C3B9D6D27C43 /* Flipper-DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-DoubleConversion-prefix.pch"; sourceTree = ""; }; - D4C5C2F2A590847A20066D8E55D6A600 /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; - D4D5A168DA5148C3BFE7AE35AF72D057 /* EXAppleAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthentication.m; path = EXAppleAuthentication/EXAppleAuthentication.m; sourceTree = ""; }; - D4D60BF37DC772598986B63B234539A3 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; D4EBA7BFD322A0C942FE9C93C965A06A /* FKUserDefaultsSwizzleUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKUserDefaultsSwizzleUtility.m; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsSwizzleUtility.m; sourceTree = ""; }; D4FBD0D54235095901816BAD1591D244 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; D4FF583822AD5EE4F35FA0BC25181BEC /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = SDWebImage/Private/SDDeviceHelper.h; sourceTree = ""; }; - D50932CCC095608F0E80DE688979F74D /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; D52A0BB4D92DDC9B593AF5C5AEF7FBE9 /* AtomicHashUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashUtils.h; path = folly/detail/AtomicHashUtils.h; sourceTree = ""; }; - D52B18ADDB0220AC45266D155DBBCD63 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; - D5328BB01B041DED6741C77026C1C3B9 /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; - D53887821DF8B50E33EFD33CB134980B /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = ""; }; - D5479F3E9496239A6874B908FAA082AB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + D5429BBA9D90375789702E87959B59EE /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; + D552968CCDD5E2ACCBD64C900FFD157C /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; D552AA6F9A19F177C535E3D8C9996AD4 /* DiscriminatedPtrDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtrDetail.h; path = folly/detail/DiscriminatedPtrDetail.h; sourceTree = ""; }; D55EE896BA9E886C8CC4209E453E1747 /* Semaphore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Semaphore.cpp; path = folly/portability/Semaphore.cpp; sourceTree = ""; }; D5815646C641AE1DA9DC3A2A8BE65A05 /* GDTCORDataFuture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORDataFuture.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORDataFuture.m; sourceTree = ""; }; D58AF32ED9DB1F74C78993A077BD0FB9 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; - D5B0029823E72E494A8A47AC82D8D02C /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; + D597CA5A46DDE523098E80808CA77D5E /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; + D5AA969F9254FB32855E8FC189FEF20C /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; + D5B615889697D5B7F6101292528E8805 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + D5B93BC99632CAF946A24433E8881026 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + D5BEDE36755A77D49123F02AA99D65B1 /* UMPermissionsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.release.xcconfig; sourceTree = ""; }; D5BEE6F6E58926E4E227F4F23CD9F2E9 /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = ""; }; D5C3A3ED07819AA58E2388510FC12EF3 /* StampedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StampedPtr.h; path = folly/experimental/StampedPtr.h; sourceTree = ""; }; - D5C4C528C5F7D7C8CD0F56A9349E9D6B /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; - D5C69347EB7CD708F1AA61F95ED3F7ED /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactCommon.a; path = libReactCommon.a; sourceTree = BUILT_PRODUCTS_DIR; }; D5DB6FC2EBE9CDD062A29F854D56A109 /* FIRCLSDemangleOperation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDemangleOperation.mm; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSDemangleOperation.mm; sourceTree = ""; }; D5F9AA892A3D82F221F0349435A24B99 /* FIRCLSRecordIdentity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordIdentity.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordIdentity.h; sourceTree = ""; }; D60762786B729E1E3B20178B47DF18F9 /* opensslconf-armv7.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-armv7.h"; path = "ios/include/openssl/opensslconf-armv7.h"; sourceTree = ""; }; D60BFD037003D28671AC378A8151A57D /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = ""; }; + D6185F90FAD1A154AEE236615FCE7187 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; + D61FD2194D31E36528E34EBD1F4DDD96 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; D63E2E149F2A36D921DC6A957F608D18 /* RequestResponseRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RequestResponseRequester.cpp; path = rsocket/statemachine/RequestResponseRequester.cpp; sourceTree = ""; }; - D64DC0E7882C3037340B07ABBDB1D7DE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + D65994D8884E9332444C83613BCEDA44 /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; D6616131E1CBAE84597361AB3FA6252B /* YGLayout+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "YGLayout+Private.h"; path = "YogaKit/Source/YGLayout+Private.h"; sourceTree = ""; }; D663FB020110A69454793BA1C65B70BE /* MallctlHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallctlHelper.h; path = folly/memory/MallctlHelper.h; sourceTree = ""; }; - D674A3976574A3B46BAA6F260B8F4D55 /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; + D68BF64C928CF8F9FA95DD2E22073501 /* RNRootView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.release.xcconfig; sourceTree = ""; }; D690A8DA370757420AB0DA2D239503B4 /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; D6A639D66DF7F2A0EA37365C46A0ABA5 /* lossless_enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse2.c; path = src/dsp/lossless_enc_sse2.c; sourceTree = ""; }; - D6C5597DE25F8E7626314E989E46E869 /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; D6CDA11540DA42D8C58943AEFBCF4A16 /* ChannelResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChannelResponder.h; path = rsocket/statemachine/ChannelResponder.h; sourceTree = ""; }; D6E677AA069F3B2E0C95E2A3532E7545 /* CString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CString.cpp; path = folly/lang/CString.cpp; sourceTree = ""; }; D6F59D495EA402CC8014E131087820ED /* NestedCommandLineApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NestedCommandLineApp.h; path = folly/experimental/NestedCommandLineApp.h; sourceTree = ""; }; @@ -9655,100 +9743,84 @@ D70D9EBB5B766C22C2364940119C9F1B /* Pods-RocketChatRN-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-RocketChatRN-umbrella.h"; sourceTree = ""; }; D71907EF6E509563241D089292427C58 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/FirebaseAnalytics.framework; sourceTree = ""; }; D7267D6853057BCC3AA6120C86810954 /* HeterogeneousAccess-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HeterogeneousAccess-fwd.h"; path = "folly/container/HeterogeneousAccess-fwd.h"; sourceTree = ""; }; - D7270FFD70B21B464B3F297F9DFD1418 /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; + D737FFC2EA2D54C77E6E0FC44975B21A /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; D744DBB287F294E3E4909C69FBC72BF7 /* MemoryMapping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryMapping.h; path = folly/system/MemoryMapping.h; sourceTree = ""; }; D74D496CD85F9435AF2210CD1D5B1ABB /* GDTCORAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORAssert.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m; sourceTree = ""; }; - D76481BA42895BBC55EF6913C8B9C0ED /* EXAppleAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppleAuthentication-dummy.m"; sourceTree = ""; }; - D77E88B8F92CD747787766712C35CEB1 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + D76B06F6DA1498FACE20667A5C1E2891 /* 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; }; D782570526354C26DF397665643D6BFE /* Atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Atomic.h; path = folly/portability/Atomic.h; sourceTree = ""; }; - D78C16123F26867389FF7FE6E17714A0 /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = ""; }; - D7944E5A513971BF665F70699EAA88B3 /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = ""; }; + D79D1FDACF2B5637B25C0F9BB0277937 /* RNFBJSON.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBJSON.m; path = ios/RNFBApp/RNFBJSON.m; sourceTree = ""; }; D7ACB1BDB84F32D9774FF98F2998CC0B /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = ""; }; - D7B09C1B2107DC053C8EB1F4107DBB2A /* UMAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppLoaderProvider.h; path = UMAppLoader/UMAppLoaderProvider.h; sourceTree = ""; }; D7BB76964E107165FE6FB5BB640513DB /* predictor_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = predictor_enc.c; path = src/enc/predictor_enc.c; sourceTree = ""; }; D7C398BC98205EC0ECDF300FAE70F619 /* FramedDuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FramedDuplexConnection.h; path = rsocket/framing/FramedDuplexConnection.h; sourceTree = ""; }; + D7CBB395D27136A57AB09F85AB4FD00B /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; D7D2CE91B0F1539697C4EB6BCBADC774 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; + D7DC0CE6921C622B13C7D6C00F957B81 /* RNFBCrashlytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBCrashlytics.debug.xcconfig; sourceTree = ""; }; D7ECAAE8A2CCA4ADE5B901E16909C5E4 /* Pods-ShareRocketChatRN.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ShareRocketChatRN.modulemap"; sourceTree = ""; }; + D7F592FCED96399322301F625BF28E4D /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; D7FF584FEF64FAA8ED31EC8AD274FABC /* SonarKitNetworkPlugin+CPPInitialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SonarKitNetworkPlugin+CPPInitialization.h"; path = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SonarKitNetworkPlugin+CPPInitialization.h"; sourceTree = ""; }; D8008EE7E4997CA88AE86541711A3D52 /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = ""; }; - D818E222B950B079F25A51D8DA47BD82 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - D81E7D8E09879708218A86BABEFFEE3E /* RNCMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedViewManager.m; path = ios/RNCMaskedViewManager.m; sourceTree = ""; }; + D808E42C2A968EFF27A62747678F92D1 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = apple/RNCWKProcessPoolManager.h; sourceTree = ""; }; + D836881817502EA9E41F0AE96F5D8067 /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; D8463992C0E5ABD00862C3B18A24F04F /* StreamRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamRequester.cpp; path = rsocket/statemachine/StreamRequester.cpp; sourceTree = ""; }; D85EED07444D4B51858078CFD5682920 /* FlipperConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnection.h; path = iOS/FlipperKit/FlipperConnection.h; sourceTree = ""; }; D86491B44DC4CC15C6B183486608E886 /* TOCropViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropViewController.m; path = "Objective-C/TOCropViewController/TOCropViewController.m"; sourceTree = ""; }; - D877DE4156A4D3B475AFDF2C5963C8D4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - D8948141E9C8C2805ECCEDEAE42FF5DA /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; - D8978B41EC5C42C72E39B57CDB731BFC /* EXAppleAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppleAuthentication-prefix.pch"; sourceTree = ""; }; D8BFF2C75F1D020BB8BADE27D4F3A221 /* AtomicUtil-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicUtil-inl.h"; path = "folly/synchronization/AtomicUtil-inl.h"; sourceTree = ""; }; D8C1F9294048D11139309DAA8664A061 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = ""; }; - D8C9AD6C661265BB283DB275371E5729 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; D8D9605C760B55C2A4986F290E32981D /* OpenSSLThreading.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLThreading.h; path = folly/ssl/detail/OpenSSLThreading.h; sourceTree = ""; }; - D8E38E17D242F20046B5C18296FF4036 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; + D8F85567D82EC97DBA341F1041B12D6C /* RCTDevLoadingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevLoadingView.mm; sourceTree = ""; }; D90B60EC1714E2D87A76DD06CDBDBC3A /* StreamFragmentAccumulator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamFragmentAccumulator.h; path = rsocket/statemachine/StreamFragmentAccumulator.h; sourceTree = ""; }; - D911854E283D5A3D29D6E9364AF97229 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; - D91BB1ECE44DA6D5D6FC3E2B8B084F56 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; - D925E6E218E5DCE4AF401CE2A0E47E29 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; D9297D862AC45B1799018A4D56ED6404 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Private/GULMutableDictionary.h; sourceTree = ""; }; D949714B82A3876A47FCBE15A0ADC935 /* FIRCLSExecutionIdentifierModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSExecutionIdentifierModel.h; path = Crashlytics/Crashlytics/Models/FIRCLSExecutionIdentifierModel.h; sourceTree = ""; }; - D94A437EF4F7977CA04A4E2006530910 /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = ""; }; - D956D2806D0F529E17960D261C2D725E /* RNFBCrashlyticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBCrashlyticsModule.h; path = ios/RNFBCrashlytics/RNFBCrashlyticsModule.h; sourceTree = ""; }; D9637F6F9E5D3EEC9D14D0BC7D5FDA17 /* SKViewControllerDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKViewControllerDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewControllerDescriptor.m; sourceTree = ""; }; - D9841E3FE0DF5557C4203AB7BCCB8B15 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; + D98ECF4ED99FEE15AB7B9F73801F9E08 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; + D99400D4DC6E0AD110A8A92A8577A89E /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; + D9A72ABCDBA4B8CD103B81B4E7E1C6EC /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; D9AD953A08259ECE88C05A86A3E7C5F6 /* Fingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fingerprint.h; path = folly/Fingerprint.h; sourceTree = ""; }; D9B4A71044D1BFD18DFB1F2B39CEAC98 /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = ""; }; - D9B85170C4634A76D5AB655148A1A4D2 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; D9C536C9D9E93047012E73C262822EA8 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/portability/String.h; sourceTree = ""; }; + D9CC10D2F25AC43156165F68C141E9D9 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; D9D2E0011E6FB9B34452AAF1764422BD /* Flipper-RSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-RSocket-dummy.m"; sourceTree = ""; }; - D9D443D8C8355E2C6FFE517B93508081 /* KeyCommands.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.debug.xcconfig; sourceTree = ""; }; D9DADE0B8EDDBDFE5D41442453B9E07C /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Private/GULSecureCoding.h; sourceTree = ""; }; - D9E0446ED9B7395D9EC833AC41C8853F /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = ""; }; + D9E5644F0AF4686846C4BB49CDB3BD59 /* React.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.release.xcconfig; sourceTree = ""; }; D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsi.a"; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - D9F797ADABEA1D975F651342F0747B47 /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; DA06F1A0859CB257877B8F2190F57600 /* FIRCLSdSYM.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSdSYM.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSdSYM.m; sourceTree = ""; }; - DA09DA19BA1F08B4FC77F346077C3D82 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; DA0C4AE8768526B9F3B1DA24E400E1A8 /* Observables.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Observables.cpp; path = yarpl/observable/Observables.cpp; sourceTree = ""; }; - DA1F7258603E32301912920D04C84C57 /* ResourceBundle-AccessibilityResources-React-Core-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-AccessibilityResources-React-Core-Info.plist"; sourceTree = ""; }; DA253442FCCFE9267924F820DDEAABCC /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/Hash.h; sourceTree = ""; }; + DA29658B2437964B570A02E1D6695908 /* EXImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXImageLoader.m; path = EXImageLoader/EXImageLoader.m; sourceTree = ""; }; DA2DE3757EB80813FE0335992D2801E2 /* SKScrollViewDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKScrollViewDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKScrollViewDescriptor.m; sourceTree = ""; }; - DA57CF4D7EFB4835344739C41D24C9B3 /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; + DA6199AE33BE0BA85B5C974A74F9A5A4 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; DA61E79A1DA4850F186B6E7FAE885B2B /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; DA6858A479AB9FE0C884C5E7FF4046D8 /* FIRCLSDataCollectionToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDataCollectionToken.m; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionToken.m; sourceTree = ""; }; - DA699A133FD5F3E9FD88AF5DA3E43439 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + DA9F5896B85B721297FC4071DB29C726 /* EXWebBrowser.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.debug.xcconfig; sourceTree = ""; }; + DAB03A51E903C2546AA7ADF029B3B200 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; DAB360787BD09147B7D4275C2EE9CE1E /* FIRCLSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSLogger.m; path = Crashlytics/Crashlytics/Helpers/FIRCLSLogger.m; sourceTree = ""; }; DAFEC659A8527AD057880EC534F758F2 /* srp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srp.h; path = ios/include/openssl/srp.h; sourceTree = ""; }; DAFFDF2E7DA31743ADBF3729BCC14DD5 /* SwappableEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SwappableEventBase.h; path = rsocket/internal/SwappableEventBase.h; sourceTree = ""; }; - DB0CA032F37B433F854D45C37919050B /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; - DB10A20CA7CBE0226FB6E9D676874892 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - DB17E355B3E4389A35A31109CD1D8CBC /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; + DB1B8CC10B42DC93855CD660E107727A /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = ""; }; DB248296E395E7513088B9554AF15B81 /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; - DB342CB3D65E6B3C7690F3A485DD4A17 /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; - DB4EC185D4DEECB11ACB8223DAF9535F /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; + DB35CC62936B6D2F3D2550C225EE6372 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; DB6AA76CA965FEB21CB4E70BC077B312 /* FIRInstallationsItem+RegisterInstallationAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstallationsItem+RegisterInstallationAPI.m"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m"; sourceTree = ""; }; DB6B9416A00283FD7E767ACDC68B80EA /* OpenSSLLockTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLLockTypes.h; path = folly/ssl/OpenSSLLockTypes.h; sourceTree = ""; }; - DB734CDD85DE035D3E3648615C166C51 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; DB7400E1E548D543DF0C3889C6F9C448 /* modes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = modes.h; path = ios/include/openssl/modes.h; sourceTree = ""; }; DBA1A78B72CAF7F6F2B4F7DA48BC50B0 /* FIRCLSMultipartMimeStreamEncoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSMultipartMimeStreamEncoder.m; path = Crashlytics/Shared/FIRCLSNetworking/FIRCLSMultipartMimeStreamEncoder.m; sourceTree = ""; }; DBAB427011508392FC76ECFCC561FCE7 /* TOCropViewControllerTransitioning.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropViewControllerTransitioning.m; path = "Objective-C/TOCropViewController/Models/TOCropViewControllerTransitioning.m"; sourceTree = ""; }; - DBC7570A5DEE14CEF9E6716AEC679116 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; - DBDCF9FF37FE3A1B39848A302A4A1ADE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - DBEDCF660820BB528AC2D2BF39B73B8C /* EXImageLoader.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.debug.xcconfig; sourceTree = ""; }; - DBF672D1EE1DA63957AA594369559645 /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = ""; }; + DBBDC1D1B7A881F1010AC3D8852888E6 /* EXPermissions.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.debug.xcconfig; sourceTree = ""; }; DC32A9F0CBD5FEF1CA531CF9ECD9A81C /* FlipperInitConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperInitConfig.h; path = xplat/Flipper/FlipperInitConfig.h; sourceTree = ""; }; - DC57C423A33C42B2A298B13DC5A42409 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; - DC57DD111EE87C957BED6D9A2B4AB339 /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; + DC58FAC6156E3B40E662C704400396C5 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; DC5DE7B43EDEC6BB6109659446FB1517 /* SKTapListenerImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTapListenerImpl.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListenerImpl.h; sourceTree = ""; }; - DC69FA2A4EC2B49A56984778E676D622 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; DC6A9ADCC13FD83092A97CFFC08CF82F /* AtFork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtFork.h; path = folly/detail/AtFork.h; sourceTree = ""; }; DC838C180D88DB09B7730773393A161F /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = ""; }; - DC8EA8D5C7FA0BE6031770E36D366558 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; DCC259173C3B5318500F2071F6DB6BFD /* SSLErrors.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLErrors.cpp; path = folly/io/async/ssl/SSLErrors.cpp; sourceTree = ""; }; + DCCC0FBA80759C3891F44BEEA84ADD1B /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; DCCDF4556C559E94C1DFCBE573138E5D /* TOCropToolbar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TOCropToolbar.m; path = "Objective-C/TOCropViewController/Views/TOCropToolbar.m"; sourceTree = ""; }; DCDD037A359CA7D019F0241DD6AEAD58 /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; - DCE28981DADFB136421AA01942EC8448 /* RNUserDefaults.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.release.xcconfig; sourceTree = ""; }; - DCF7A4DCA000540AAE3AB8F4C832C85C /* 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; }; + DCF94CBADA035B27DFD28E45D2763719 /* 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; }; DCFDE752107DBE06301B466EF1DA2D00 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; - DD090DEFEE78CA5F9A5C0824C58F138E /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; + DD1873B8D345D785644EF681C883BF15 /* EXLocalAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocalAuthentication.m; path = EXLocalAuthentication/EXLocalAuthentication.m; sourceTree = ""; }; DD25D40ECEE446AA7CC1689C02583B7C /* ProducerConsumerQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProducerConsumerQueue.h; path = folly/ProducerConsumerQueue.h; sourceTree = ""; }; + DD2EB68231C88DCB38B369BE5388E0DD /* EXAppleAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppleAuthentication-prefix.pch"; sourceTree = ""; }; + DD350B40E0B83DB2FF78D7475D3EBBFA /* ReactNativeKeyboardInput.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardInput.debug.xcconfig; sourceTree = ""; }; + DD47F3C56C808DB695DF92BB778BA0DF /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; DD4A8F1FE3CA9D4DC79DF63C890FFD45 /* asn1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1.h; path = ios/include/openssl/asn1.h; sourceTree = ""; }; DD4D28611153BB043B6A4D50390FF9C2 /* FlipperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlugin.h; path = iOS/FlipperKit/FlipperPlugin.h; sourceTree = ""; }; DD4F1A29653F747F710E69C5B3A997C7 /* ScheduledSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSubscriber.h; path = rsocket/internal/ScheduledSubscriber.h; sourceTree = ""; }; @@ -9756,517 +9828,527 @@ DD6CBAC7265A674A7DC4821652763024 /* SKNetworkReporter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNetworkReporter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKNetworkReporter.h; sourceTree = ""; }; DD7EAFD1483D5DBCC456C3105A7EB6BA /* FlipperClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperClient.h; path = xplat/Flipper/FlipperClient.h; sourceTree = ""; }; DD9134F5951D1C0EE74B8B30BD86586E /* TcpConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionFactory.h; path = rsocket/transports/tcp/TcpConnectionFactory.h; sourceTree = ""; }; + DD919EBD2111F4C801F3A37826681F55 /* RCTPbkdf2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPbkdf2.h; path = ios/RCTCrypto/RCTPbkdf2.h; sourceTree = ""; }; DD955A50F1D367F42A0666F31733C86A /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; - DDA05A84E44F3960778A2AEF32D007EC /* 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; }; DDA186F2D12CC245B1F0165BF1603DF1 /* GoogleUtilities.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.release.xcconfig; sourceTree = ""; }; - DDBF72E6FCD984F43D2C99C7E38D7A06 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; + DDCA516DB035E1A1EB939C5F5A4FCE24 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; DDE43A897EC38B3CB5703723105E8E34 /* BasicTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BasicTransportCertificate.h; path = folly/io/async/ssl/BasicTransportCertificate.h; sourceTree = ""; }; + DDFCDE2BC0DC8EEFC73CE00582A4794C /* RCTRsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRsa.h; path = ios/RCTCrypto/RCTRsa.h; sourceTree = ""; }; DDFF884E47DBF09F53C84431AD41F52A /* SSLContext.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLContext.cpp; path = folly/io/async/SSLContext.cpp; sourceTree = ""; }; - DE1772011CF6FE788CF9D3707F3C2198 /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; - DE1B4993B60E87E4148EE22CB928423E /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; - DE3A2B83E6FA608B0054E0684CD1B314 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + DE03E352349C63FE35EFEB9458363A05 /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; + DE0465438FA7DCC04C52FEE2F4C95ABC /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; + DE070B6264DE12F56C38399BE0BBAB6F /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; DE3EB3117146B11B286B64E28D0F2F3B /* 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 = ""; }; + DE4A46E63839FD3C57A35147F554A389 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; DE545F42622CDC093FA359E115DDCFF7 /* TimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFDTimeoutManager.h; path = folly/experimental/TimerFDTimeoutManager.h; sourceTree = ""; }; DE77504710A8365B6F4B08E60A7323EA /* FlipperConnectionImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionImpl.h; path = xplat/Flipper/FlipperConnectionImpl.h; sourceTree = ""; }; DE97931CB5B1012872AE6AC4E139BCEA /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; - DE9D1DB0F7F8B888A942D173C1F8A3A7 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; - DEA98AA593CC70D9EA8EB5BEF9499F32 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; DEABB9B94AE47F03448DD3A5A17E6953 /* ExceptionWrapper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ExceptionWrapper.cpp; path = folly/ExceptionWrapper.cpp; sourceTree = ""; }; + DEB167D2D733B0BAE26E0B16608E079C /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; + DECA8018A1EEF2C4E9956EED27FA621F /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; DEE74521553B07DF14372091022DF068 /* AsyncServerSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncServerSocket.h; path = folly/io/async/AsyncServerSocket.h; sourceTree = ""; }; - DEEBF6EFFA56877246B99740642125E4 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; DEFC4AC23F3BDCE1E880C7FE6F254A66 /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; - DF2F531A169E8D893DFBE626E2C1E7F3 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; - DF3F910F68A48F3A9ED31BF8FE2B6142 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; + DF1A2A0B4ABEDE7D1B83B70C9D501033 /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; + DF1DFE57EBF276337DA2AF560F70D8AD /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = ""; }; DF498B8A4D1A9565313C90AA12B4E086 /* FIRCLSDataParsing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSDataParsing.c; path = Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDataParsing.c; sourceTree = ""; }; DF4DA3E5645DBAA0402D9E4646554307 /* dns_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_struct.h; path = src/event2/dns_struct.h; sourceTree = ""; }; - DF503594CA1DAEF07071E64383DE076E /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; DF6463ED812E3EA6D67BAF193C3B5DEC /* FrameType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameType.cpp; path = rsocket/framing/FrameType.cpp; sourceTree = ""; }; + DF680E906C85A1D16522326B16F2A815 /* EXSessionTaskDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionTaskDispatcher.m; sourceTree = ""; }; DF6AFABDBADF52E4F614055915B0724E /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; + DF73C2F5D79B3487433A4311C145E2BC /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; + DF7B4D0AEFF442CA20A3E8F4E66E9FF4 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; DF840BE0F79A0C95C8EDF043006BEDD5 /* picture_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_enc.c; path = src/enc/picture_enc.c; sourceTree = ""; }; - DFA2E97EBDDD60CE01428880EDF3AB7B /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; DFA54CFD5494BED40880277F3341A66B /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; + DFA933E4F93ADD51BA644F751181E114 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; DFADDB9096EAE269A1047ACDC3909543 /* TimeoutManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimeoutManager.cpp; path = folly/io/async/TimeoutManager.cpp; sourceTree = ""; }; DFEA62358E782ACE8BBBDCD4176D1CC6 /* quant_levels_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_utils.c; path = src/utils/quant_levels_utils.c; sourceTree = ""; }; - E000C11C6DF90635207CA5133B38C806 /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; + DFF491CB56E9E0B2ACA17F0CD982683E /* 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; }; + E004C75BE9D78B752470454D07B05144 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; E00888A954132CDA18BC44F319AC147E /* Partial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Partial.h; path = folly/functional/Partial.h; sourceTree = ""; }; E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Glog.a"; path = "libFlipper-Glog.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - E00C04F111934CCA0CF49B66116F31AF /* EXLocalAuthentication.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.release.xcconfig; sourceTree = ""; }; E02418E058BCA523AC7849267BEBDF41 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; - E035C799787B26FB103927867AB59D05 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; - E03751AD54F23657B6F74EA4C08F74A1 /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = ""; }; + E02F2FE237FEBCD8B9EC4A739098217B /* RCTDevLoadingViewSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingViewSetEnabled.m; sourceTree = ""; }; + E03059FD36393C52DD41D9ABB70E5089 /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; + E03C3A5945F7860E729ED3B3C1E40D3E /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; E044788C0133718446E226937A12F440 /* FrameType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameType.h; path = rsocket/framing/FrameType.h; sourceTree = ""; }; - E04B19BD5A8E139C3FBB1819A1F39921 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; E04CCAB21CECBD8B33156969E4DCA60F /* dso.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dso.h; path = ios/include/openssl/dso.h; sourceTree = ""; }; - E04CFA5C85E9E6F7127B37458F68CD6E /* React-callinvoker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-callinvoker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; E04D434EFADF542E7BC496A7DC232DFF /* conf_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf_api.h; path = ios/include/openssl/conf_api.h; sourceTree = ""; }; + E04E06FB3E393911F7F9520D61FEC016 /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; E065368D6FD3F1479EA5C7D24E148373 /* Assume.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Assume.h; path = folly/lang/Assume.h; sourceTree = ""; }; - E0756F5953137DDAA5358682F86A12FD /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - E0B57A32DBD7A4669B2470B7260E80B4 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; + E0B659FA3D7BF3429389703DFA2C10A9 /* RNCSafeAreaViewEdges.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewEdges.m; path = ios/SafeAreaView/RNCSafeAreaViewEdges.m; sourceTree = ""; }; E0B9138B9D1433CC345183B9754A922D /* GDTCORUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadCoordinator.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h; sourceTree = ""; }; + E0D3185E9B9ED81AE6A967F184C4E85F /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; E0EDCD0844E053BC8DDB3FDC39E74EEB /* IOBufQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IOBufQueue.cpp; path = folly/io/IOBufQueue.cpp; sourceTree = ""; }; - E0F1A9E6DFC12D5FF1B791FD3EB348D0 /* RCTAppearance.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppearance.mm; sourceTree = ""; }; + E0F250B32A26B77DC1FE95A397D6F3A7 /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; E0F605EDBA48EE3FB4151B10849A2C0C /* FIRCLSSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSettings.h; path = Crashlytics/Crashlytics/Models/FIRCLSSettings.h; sourceTree = ""; }; + E0F7E02DBD6EA79D7F7C6571EE5C47FA /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; + E0F86D9E36B0E1FFE48EDFF6780A3D64 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E11152178C28AA50B47376E8919D4805 /* EXLocalAuthentication.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.debug.xcconfig; sourceTree = ""; }; - E115190DC576F2B2DC84264966A279DD /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; - E12655902A04FDE52C97FBB64DCF99B2 /* RCTSettingsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsManager.mm; sourceTree = ""; }; + E11337E75FB0DC8A84038AD805A26E3C /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; + E115A6C05E43000549E55C70DAB71644 /* 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; }; + E1204EBDD6C2C2A0C33E54F59FC45FDB /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; E146A1F6BDC7039BFE0424C45287E293 /* FIRCLSContext.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSContext.m; path = Crashlytics/Crashlytics/Components/FIRCLSContext.m; sourceTree = ""; }; - E1537FA4C8F695610A6B4B8391496604 /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; + E14F2452B68E058A43444DF88AF3572C /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; E15A6EE48553883E0A92860EF2195368 /* FIRCoreDiagnosticsConnector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsConnector.m; path = FirebaseCore/Sources/FIRCoreDiagnosticsConnector.m; sourceTree = ""; }; - E17CBCA42A454FF545BC68AC213E0C24 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; E188A705C5B6B9FCEC18267135BE84B3 /* FIRCLSAsyncOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSAsyncOperation.m; path = Crashlytics/Crashlytics/Operations/FIRCLSAsyncOperation.m; sourceTree = ""; }; - E1AFA9A20D495499386B13F3D69DB8D4 /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; - E1BB99A20197EB8D91245B3A931DE941 /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; - E1C033AD761B3E0BD1EA35E2C84EBCAB /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; + E18BC4B8CAD33EB3CBAAD2CB18F1EAFA /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; + E1BF63CB2C355A8D943DC955344338A4 /* RCTDeviceInfo.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDeviceInfo.mm; sourceTree = ""; }; E20258783BAE679A2D612FC0A2DE6B8A /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FileUtil.cpp; path = folly/FileUtil.cpp; sourceTree = ""; }; - E231195686DAA93C6215F5A37596789A /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; - E235B8279246B8AADAC03EC3906A030C /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; + E21CE3623C1ADE5443172153BEF0D74B /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; + E223C9DB5D8627C45A4D4FE74E9003A4 /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; + E260E0945F4241D783642888D16FDEBB /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; + E273F0F5940CD5884765AB3CA96E2366 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; E279489923D6663F7522CD83CD71939B /* SysFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysFile.h; path = folly/portability/SysFile.h; sourceTree = ""; }; - E28B15566EBCC817DE30ABB0DCF62A23 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; - E2A92ADD71C97A1A9852491D032AC73D /* ReactNativeKeyboardTrackingView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardTrackingView.release.xcconfig; sourceTree = ""; }; + E28907FE122C660D7EB94321BC380C19 /* EXSessionResumableDownloadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionResumableDownloadTaskDelegate.m; sourceTree = ""; }; E2AE422151981E073F684C2F5F0943E9 /* FIRInstallationsIIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m; sourceTree = ""; }; E2B11F8392AB408D01A6130571C326F4 /* RSocketClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketClient.cpp; path = rsocket/RSocketClient.cpp; sourceTree = ""; }; E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E2C1C9DDD2E9FE2340E0EA49FFE6D2FA /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; - E2D3E6FA97B829798D4EF39F9006B80C /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; + E2D17745779B1C6343FB92BCD96DE3DB /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; E2E3C770520B9228520CCB7444A43BDC /* rsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rsa.h; path = ios/include/openssl/rsa.h; sourceTree = ""; }; E2EABCA1C06ED768FE8595C01740CB28 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; E2FB97E593C1D538F020AA2B6E00C4CB /* ts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ts.h; path = ios/include/openssl/ts.h; sourceTree = ""; }; - E30F480795515B199631678A529BAEBF /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; E3129A23443A70A78B91986A738276C7 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; E318D17E660F6CA73A545BC8D003CF6C /* DeferFlowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeferFlowable.h; path = yarpl/flowable/DeferFlowable.h; sourceTree = ""; }; E3264E4B462202D6412A19451847AEDC /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; + E32D60A0C447BA220B8D000D338C2F6F /* ReactCommon.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.release.xcconfig; sourceTree = ""; }; E33E79EDAF913AD9B1D17CED75B8BF63 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Sources/Private/FIRComponent.h; sourceTree = ""; }; E34463439B9C11992D90A9D81C5A5B60 /* FIRInteropEventNames.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInteropEventNames.h; path = Interop/Analytics/Public/FIRInteropEventNames.h; sourceTree = ""; }; E3484287C86F3C361E19FA82FE4676E8 /* DistributedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = DistributedMutex.cpp; path = folly/synchronization/DistributedMutex.cpp; sourceTree = ""; }; E35155B42AD8288D023953AA4B15D449 /* TOCropView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TOCropView.h; path = "Objective-C/TOCropViewController/Views/TOCropView.h"; sourceTree = ""; }; - E36D42AC3D45EAA28DBC294D95C9A7A8 /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; E37175AD68829654212F57BA02FDD293 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; - E377BFD509F53255A0906A3F5D3E2721 /* UMPermissionsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.release.xcconfig; sourceTree = ""; }; - E3795CFDACA4AF8219C8A17A0710D969 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; E37EF9DC59FA0F39D3EB6A22D9BF7B7C /* FIRCLSUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSUserDefaults.m; path = Crashlytics/Crashlytics/FIRCLSUserDefaults/FIRCLSUserDefaults.m; sourceTree = ""; }; E3917CFBA8A1DD50F4584D0D892B7A17 /* AtomicReadMostlyMainPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicReadMostlyMainPtr.h; path = folly/experimental/AtomicReadMostlyMainPtr.h; sourceTree = ""; }; + E396F5E922027B9BC9BE1903BB008449 /* Sha.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Sha.m; sourceTree = ""; }; E3B5482BB9BF22409828FEA630DD445F /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; E3BD5C236B3C384900BE54D78F456616 /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; - E3E18767D1E79CD9DAED40FE9871E929 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; - E3EA3A933063BA7551894E6DBD2131D1 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; + E3EF212C057AA95F9077AB0E0DF49834 /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; E3F3B2E2BA9F3B09851C9D2041EC958F /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; E41376F0ED4F75F8602210EC3CB15A69 /* nanopb.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.release.xcconfig; sourceTree = ""; }; - E4171CF7DCF4F5146DEE052A9D54BB84 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; E4173C47CF775865E048EC494D3067C9 /* ChannelRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChannelRequester.h; path = rsocket/statemachine/ChannelRequester.h; sourceTree = ""; }; E42F139CBEC9EB2C181EB961F1BCC7ED /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Private/GULLogger.h; sourceTree = ""; }; E43D4354872E035AC1C8043C67B92DA8 /* InlineExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineExecutor.h; path = folly/executors/InlineExecutor.h; sourceTree = ""; }; - E4638D71A21504E40ADA3A5D86F07629 /* RNFBCrashlytics.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBCrashlytics.debug.xcconfig; sourceTree = ""; }; + E448CB1CFBC5BA0A3B1238A207A74782 /* React-RCTLinking.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.debug.xcconfig"; sourceTree = ""; }; + E4665E42C91A0BBA65B64FD5984069A4 /* 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; }; E477526892C36149BC613A2CFCF8424F /* ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-TOCropViewControllerBundle-TOCropViewController-Info.plist"; sourceTree = ""; }; - E47B26D53B784AB45DBB639ECACA652E /* RNFBCrashlytics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFBCrashlytics-dummy.m"; sourceTree = ""; }; - E48698ECDAA84196E2680807D1F0071C /* EXSessionUploadTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionUploadTaskDelegate.h; sourceTree = ""; }; - E48E06A106F75E5F1D16F6E2568FDADF /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E47C36A613EB829E3E595E0F72CCA3D7 /* RNCSafeAreaProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProvider.m; path = ios/SafeAreaView/RNCSafeAreaProvider.m; sourceTree = ""; }; E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNRootView.a; path = libRNRootView.a; sourceTree = BUILT_PRODUCTS_DIR; }; E4A4BF9C02577C5444491D132FF306C3 /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; + E4B7017935992937C1AFF371780F6D1D /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; E4BEBC275EE6A6E239E088F61BE38B0D /* SSLSessionImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSessionImpl.h; path = folly/ssl/detail/SSLSessionImpl.h; sourceTree = ""; }; E4C9339C9E6BF54EF634DA3B4686F85B /* TestUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestUtil.h; path = folly/experimental/TestUtil.h; sourceTree = ""; }; E4DAC6F57EF60757FDE43DE970B2C0DE /* FIRCLSThreadArrayOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSThreadArrayOperation.h; path = Crashlytics/Crashlytics/Operations/Symbolication/FIRCLSThreadArrayOperation.h; sourceTree = ""; }; - E4E3210222E7604D06C2A57E5A10F726 /* UMSensorsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.debug.xcconfig; sourceTree = ""; }; E4E420D43A0119E792E92942BADCC7B1 /* Format-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Format-inl.h"; path = "folly/Format-inl.h"; sourceTree = ""; }; - E4E480D3B09BDBA497547A283A7D0910 /* EXAppleAuthentication.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppleAuthentication.debug.xcconfig; sourceTree = ""; }; - E4F78EF9B22CB4410D26717C4AD41513 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; E4FE6A7F9EFA3C2709A76C90A0ACD130 /* FIRCLSCodeMapping.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSCodeMapping.m; path = Crashlytics/Shared/FIRCLSMachO/FIRCLSCodeMapping.m; sourceTree = ""; }; - E4FF97E12FC2AB186BCBE9BEA9367894 /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; - E501194E937A3BFA2518E6A318AF5C0B /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; - E507C5FD255553A749C8EFC6424CA581 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; E525954B7F5EF59800ECC0A9F23400A7 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; - E53093268FF499F2B034BAC7A6B2AAE1 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRedBox.h; path = React/CoreModules/RCTRedBox.h; sourceTree = ""; }; E53236B340E0AEC8EEB3B5FDBFF79B7F /* cpu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu.c; path = src/dsp/cpu.c; sourceTree = ""; }; + E538AB8635E4C63CF851AEDF51F804E0 /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFastImage.a; path = libRNFastImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; E5657D0821A3BB1A7FFECD2E0D206874 /* Likely.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Likely.h; path = folly/Likely.h; sourceTree = ""; }; E568D635BC4BD8AFD2B9E81625C071D9 /* FlipperState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperState.h; path = xplat/Flipper/FlipperState.h; sourceTree = ""; }; E58591D1CEFA0FB3A86FA9815841FC8B /* 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 = ""; }; + E5944082310598AFF7F7C3336AFE168D /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + E5A23D41EDB3D9DE4AF0258871C03FE3 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; E5A32CBDEC9C56EF0D0DB69668F2DCA0 /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; + E5A6AE0135A349D0684FF2E03A7955E9 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; + E5A81481F6D223A9BA1AE3C708EF9241 /* RNFBSharedUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBSharedUtils.m; path = ios/RNFBApp/RNFBSharedUtils.m; sourceTree = ""; }; E5AF56A8D2B5A1A72FE8BCD0955F15D4 /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; - E5AF60035C8105B0AB56C0A99515E219 /* 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; }; E5C114546DABE8DC1B610018CA7490E1 /* Common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Common.h; path = rsocket/internal/Common.h; sourceTree = ""; }; E5C500E6DFB2518E0D8589BECCE04271 /* GDTCORStorageProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageProtocol.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORStorageProtocol.h; sourceTree = ""; }; - E5E9053B90410FA05C6312690546624E /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; + E5E42148D2282BDD5993EB087B038CFE /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; E5EBE17A9890D22415CF33EFA3BAA55B /* FlipperClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperClient.h; path = iOS/FlipperKit/FlipperClient.h; sourceTree = ""; }; - E5F1E60239C7B528EF2F9A1BEFEB8855 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; E60DB8703B1BE91E16C6D23630D90EA7 /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = ""; }; E61A7EB64920C3DBFBF1C0CF2BDF6D94 /* SKRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKRequestInfo.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.h; sourceTree = ""; }; - E61C02CFB51138AA232A555B11F0FB5D /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; - E62F4993A539C76D40D50EC63F184707 /* RNFBSharedUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBSharedUtils.h; path = ios/RNFBApp/RNFBSharedUtils.h; sourceTree = ""; }; + E627698DA595C4CF5C9B66C208968ECF /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; + E6327942D019CF4C0C0528BE4CEC9236 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; + E63927E0C55D2881D7E158AC4378850A /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; E63EEB3AAB147DB6D68D011BEC098641 /* Parallel-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Parallel-inl.h"; path = "folly/gen/Parallel-inl.h"; sourceTree = ""; }; - E658C8E86F0F319FC47B3D827AAD68FE /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; - E6596709E7981E42D7BDC163690719BD /* RCTRefreshableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshableProtocol.h; sourceTree = ""; }; E66161EA3814824B6F11D5D3623AE23A /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/synchronization/RWSpinLock.h; sourceTree = ""; }; - E66AD50035D0D62A5D0159E4493D8B2B /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; - E66CA2AAD01AD30B3866634835213CE9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; E66FE103835547E3F79530DD3FD32AF1 /* cost_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cost_enc.h; path = src/enc/cost_enc.h; sourceTree = ""; }; E670FDD3653083B21240F5654FA2215D /* AsyncSocketBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocketBase.h; path = folly/io/async/AsyncSocketBase.h; sourceTree = ""; }; - E6817B75E1798AAF6EA997F690C91093 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; - E685060B7E28DE532F3A85C18B146079 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; E69FB7A00D6D24D1E54725DEB2184EB9 /* Try-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Try-inl.h"; path = "folly/Try-inl.h"; sourceTree = ""; }; E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTText.a"; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + E6AD8080DC24730D6492B61B6925A174 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; E6D27532401A51A34C1A13132C34C219 /* FIRCLSCrashedMarkerFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSCrashedMarkerFile.h; path = Crashlytics/Crashlytics/Components/FIRCLSCrashedMarkerFile.h; sourceTree = ""; }; E6DA54798692120C09BC03C5646329E2 /* boost-for-react-native.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.debug.xcconfig"; sourceTree = ""; }; - E6E1EB5C5A60DE8EB818D9FFF6EB2941 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; E6E3AE6BB8DEC2E24087DB7AADE60E41 /* FIRCLSProcessReportOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProcessReportOperation.h; path = Crashlytics/Crashlytics/Operations/Reports/FIRCLSProcessReportOperation.h; sourceTree = ""; }; E6F6E2349F8E877941C3894F867C7CF8 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = ""; }; + E70CDB6BEA8C435133FBB0FFDF57E3E1 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; E7148ED1906EA7159B20A07574A706E8 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = ""; }; - E72DD20E2480B30D2EA7F59F9E9071D7 /* 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; }; - E7376132DEF1C7589ED29059F7CAB86E /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - E73DD6E2DDB845423C380CAD3B5C28B9 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; - E748DE4661210BD2F90711673DD75BEA /* NSData+EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+EXFileSystem.h"; path = "EXFileSystem/NSData+EXFileSystem.h"; sourceTree = ""; }; - E74C6677509574D65B174FB977F4BDEC /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; + E730675AAB732A6CCCC0310FD153F641 /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; + E733CF97A9466B399964081BEB37674B /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; E750E9D091D1A9CC5627DDCC4EAA9832 /* Firebase.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.release.xcconfig; sourceTree = ""; }; - E791609D7BB21AA3D70750B1A1CAE766 /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; - E7D92EE151CD8CF5103DD3EA12B62582 /* UMPermissionsInterface-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMPermissionsInterface-prefix.pch"; sourceTree = ""; }; + E75321738D138EBA89206EA5E489FAFB /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; + E78946F1158F8D8216B26729357FBA04 /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; + E78E20A2A789BB4B273DD8B871B47B95 /* RCTImageEditingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageEditingManager.mm; sourceTree = ""; }; + E7B00542CEB17F446EE6CAD048129DB2 /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; + E7DA4A3F4397C61B1F84861FD5D2D569 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; + E7E507DC5E7F3ABBBEC016B9AAD776EF /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = ""; }; E7F27C38B81025F809C1185240F5FB3C /* FIRCLSURLSessionDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSURLSessionDataTask.m; path = Crashlytics/Crashlytics/FIRCLSURLSession/Tasks/FIRCLSURLSessionDataTask.m; sourceTree = ""; }; E7F89F69D58231307B377A09D2F20A93 /* Codel.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Codel.cpp; path = folly/executors/Codel.cpp; sourceTree = ""; }; E7F8B20F7797DDCDECD4DE64EA6C2DCF /* vp8i_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_dec.h; path = src/dec/vp8i_dec.h; sourceTree = ""; }; - E81376F4DE90D4131392325330C4AE4B /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; + E7FE1AF035593CE875A5CA47B864A2DE /* RCTAes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAes.h; path = ios/RCTCrypto/RCTAes.h; sourceTree = ""; }; E82064963A7ABDB567C56254B7F2A7DB /* CPUThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CPUThreadPoolExecutor.cpp; path = folly/executors/CPUThreadPoolExecutor.cpp; sourceTree = ""; }; - E83115FFE7ED69EAD06883FD58323459 /* RCTConvert+FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIROptions.m"; path = "ios/RNFBApp/RCTConvert+FIROptions.m"; sourceTree = ""; }; - E87DA28103B87D680B1EAABAD645DC45 /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; + E824417A235EA0452352E6844625B4F7 /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; + E82C8D2F96BBE650C34592E435155A63 /* RCTConvert+FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FIROptions.m"; path = "ios/RNFBApp/RCTConvert+FIROptions.m"; sourceTree = ""; }; + E830AC92262755C2F75DD42AEAF8F67F /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; + E83A0018AC47871512C75D143056F1B4 /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = ""; }; + E866939F3C5BDF454AD1CC3F9D917364 /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; + E87EF6A68E1F2C36411D64DD0B9F38AE /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; E8845CE8F3CFCB7F539E339526559513 /* AtomicHashMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashMap-inl.h"; path = "folly/AtomicHashMap-inl.h"; sourceTree = ""; }; + E8942F0326870A19E19396FF8D4C8AC8 /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; E8A0E04B7E9A148D8D87648A58DEE8D8 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; - E8CD41D5A7348C3BC9D3A709330AB089 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + E8B0C81BB4C75CE9C39A581A3B07E1A9 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; E8D39C00814A844B5D0D2FA2A9AB5EB8 /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; - E8DB1088C338DF6C8A63B8203A7FA8A2 /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; E8E63FC4A9FB03E11D4F0CBE6C587AE5 /* FIRDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDiagnosticsData.h; path = FirebaseCore/Sources/FIRDiagnosticsData.h; sourceTree = ""; }; E9155CDCB6F9477DAA638981DD1F8EF1 /* FIRCLSDataCollectionArbiter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSDataCollectionArbiter.m; path = Crashlytics/Crashlytics/DataCollection/FIRCLSDataCollectionArbiter.m; sourceTree = ""; }; E9236DAFA6B93985F858462C379B68D4 /* HazptrUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrUtils.h; path = folly/synchronization/detail/HazptrUtils.h; sourceTree = ""; }; + E93611FB0743BE052AED317714C0979D /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; E937E785B312959005739495C040D53F /* Singleton.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Singleton.cpp; path = folly/Singleton.cpp; sourceTree = ""; }; E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFlipper.a; path = libFlipper.a; sourceTree = BUILT_PRODUCTS_DIR; }; E940956CEA8F0B60217652DC6D15E488 /* SwappableEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SwappableEventBase.cpp; path = rsocket/internal/SwappableEventBase.cpp; sourceTree = ""; }; - E9645E347B0F8DCE319C9E869845AF93 /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E9654FF2F799926D75C52D94043F204F /* UMSensorsInterface.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.release.xcconfig; sourceTree = ""; }; E984569071FB6F805DF876395BE2BA3A /* LifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSemMPMCQueue.h; path = folly/executors/task_queue/LifoSemMPMCQueue.h; sourceTree = ""; }; - E989498F1102449860FE4A1396344802 /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; - E98C6E9B46332F1D042DAD93494DF3FE /* RNFBCrashlytics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBCrashlytics-prefix.pch"; sourceTree = ""; }; - E99986382AB553201CAC68181E0D19EB /* RCTVibrationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibrationPlugins.h; path = Libraries/Vibration/RCTVibrationPlugins.h; sourceTree = ""; }; - E9B6F3CFA57FC49F9367B4D6707236AC /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; - E9C12ABB7663D671D0FBB4ECBE0AE182 /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = ""; }; + E98474B5BD1600E5D6C37DF8ADCBC991 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; + E9D3AA4A8590E0DF805CE12F3FD52252 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; + E9DCAD941C0C871AB1CD5719D67CDFA2 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; + E9F123D2417805F1C3E1944AECF2A1EC /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; EA0623992F4DF24E9BFEDD30768B8439 /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = SDWebImage/Private/SDDeviceHelper.m; sourceTree = ""; }; - EA1ABE27DF5CB286C03F53D42C5FD6C2 /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; + EA0AD6C1E6118025A3DE02DD12F1AAAC /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; EA248B5B87A57BDD6811A1434C7E9AD5 /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = folly/portability/Config.h; sourceTree = ""; }; EA2A3E10EE98B90487683B800B158B43 /* ScopeGuard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopeGuard.h; path = folly/ScopeGuard.h; sourceTree = ""; }; - EA2B0F90A51030C59CAEEC3CC7211247 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; EA673DE59200B0B5F64F611040331D9B /* AtomicNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicNotification.h; path = folly/synchronization/AtomicNotification.h; sourceTree = ""; }; EA689CB45B9255133B5191E3C67DE789 /* ProxyLockable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProxyLockable.h; path = folly/synchronization/detail/ProxyLockable.h; sourceTree = ""; }; EA741DFFA933B1348377D9810900C8EE /* YGLayoutExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = YGLayoutExtensions.swift; path = YogaKit/Source/YGLayoutExtensions.swift; sourceTree = ""; }; - EA94FC016FD45F960D93DB70FBF796FA /* RCTVibrationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibrationPlugins.mm; sourceTree = ""; }; - EA98154EB72A5898BABD6144770CAFD6 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; - EAA25E5AC43A7561BD5B6E4BD9251714 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + EAA26860DEACDBF1B7D5FCC9AA8ECD27 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = ""; }; EAB131C6AB34AEE54C5A410672BBB28E /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; - EAC878F132F3D23BE3AA9E64454EE06B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - EACEDCF5538FC4FA4DC6AF4EA003A13D /* RNFBMeta.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBMeta.m; path = ios/RNFBApp/RNFBMeta.m; sourceTree = ""; }; - EAD1A90878A4208C166B3CB5FF718894 /* ReactNativeART.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.debug.xcconfig; sourceTree = ""; }; - EADB5F86FFC4069DCA86C791DF6CCC10 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; - EAE9ABD23596C05FD899E938A7BF91FF /* RNFBCrashlytics.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFBCrashlytics.release.xcconfig; sourceTree = ""; }; - EAF23BFCE92AA47A2873B6BC54CE9A82 /* EXImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXImageLoader.h; path = EXImageLoader/EXImageLoader.h; sourceTree = ""; }; - EAFB6CF89AE27D47BE60053E0B880C6A /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; + EAE79DFBFBFC79287C9F2B59BCE461FE /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; EB2886A12930D246EE32FB51B309ED6E /* FIRCLSFABAsyncOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSFABAsyncOperation.m; path = Crashlytics/Shared/FIRCLSOperation/FIRCLSFABAsyncOperation.m; sourceTree = ""; }; - EB55CC314436DBB45945DDC51FE7D004 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; + EB3B14FE9CB7128A28A56F851854B63C /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; + EB58BDF64BB6F9F2544EA82EC0150681 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; + EB668FE765F74D0F9E34CF5423CE9B67 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSourceCode.h; path = React/CoreModules/RCTSourceCode.h; sourceTree = ""; }; EB70007E42411A897457FA7DC5A6CD3C /* EventBaseBackendBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseBackendBase.cpp; path = folly/io/async/EventBaseBackendBase.cpp; sourceTree = ""; }; EB75382F4995E73E5D121F26D89892C1 /* PTProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTProtocol.m; path = peertalk/PTProtocol.m; sourceTree = ""; }; EB9F0EEB3285F9DFCD12E68EB3FB93DA /* Flipper-Folly.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Folly.debug.xcconfig"; sourceTree = ""; }; EBAF6C158EF5BD3AEAC488F9BFD2CB82 /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; - EBBF9B782F3C738D752793BB84FEB010 /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; - EBC5E288F58A6D96FC62880FB30274F9 /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; - EBCE65DCC6FB536115E3FC64D680516E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + EBDABBA644D3037E76B628C3BA89DD8B /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; EBDDE7676CDFEE61A5F653B015EFDF7F /* Payload.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Payload.cpp; path = rsocket/Payload.cpp; sourceTree = ""; }; - EBE3DB2370C7C02C415C15384824DAA4 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; + EBF297C6C1E86A830F699D34F3ECF5A7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; EC1B7B5B56A495A9A4EC56F6A1E4582B /* FramedReader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FramedReader.cpp; path = rsocket/framing/FramedReader.cpp; sourceTree = ""; }; EC255BAA6FA2C79B5C6671829A6195D6 /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FIRConfiguration.h; sourceTree = ""; }; + EC27CC3982DB33D267F480616A240660 /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; EC46FA42142EA5C958585925BD6A4690 /* Sse.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Sse.cpp; path = folly/detail/Sse.cpp; sourceTree = ""; }; - EC4ACC94BB5B178BC3E38993C613921C /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = ""; }; - EC577564B4218D22378D25F459407B2D /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = ""; }; + EC48217D6190DB1353769610736D2C79 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; + EC4BB61B670DA1E424388EA029520072 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; EC7C0D1A5675D5212F6CDC8DC050FA91 /* FirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCrashlytics.h; path = Crashlytics/Crashlytics/Public/FirebaseCrashlytics.h; sourceTree = ""; }; - EC8A7F4E5B173467ED89968D537F4BAE /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; ECA1D9075F3085AE3955A96E15AC1094 /* common_sse2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse2.h; path = src/dsp/common_sse2.h; sourceTree = ""; }; - ECCBE82CD98E03581599C650EBCE07CE /* RCTImageLoaderWithAttributionProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderWithAttributionProtocol.h; path = Libraries/Image/RCTImageLoaderWithAttributionProtocol.h; sourceTree = ""; }; - ECCD8EC24A8C2697035E0A8D25F0765D /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = apple/RNCWebViewManager.m; sourceTree = ""; }; ECDC3CA8CC5F201C7FAD517E34EA6CCB /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = ""; }; ECDC7200C4C840C9E5D713A1A0AD0EDC /* FIRInstallationsLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsLogger.h; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.h; sourceTree = ""; }; + ECDD46BC09EBF203E065670B5970016A /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; + ECE028A1909F2FC4B6FCA7DC3DC4CF7E /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; ED01487D2DE3631DA4C9618031D03915 /* Subprocess.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Subprocess.cpp; path = folly/Subprocess.cpp; sourceTree = ""; }; ED02939DC8FA00700488775914C2FCFB /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = folly/json.h; sourceTree = ""; }; + ED0B2E383913471B07F3DB0D45AB03CA /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; ED10B9C653A1B5C3E9F2E2D436918838 /* ObservableDoOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableDoOperator.h; path = yarpl/observable/ObservableDoOperator.h; sourceTree = ""; }; ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; ED2A33F7311BFB11DE8592DB33185D3C /* FrameTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameTransport.h; path = rsocket/framing/FrameTransport.h; sourceTree = ""; }; ED34AB4ACBED89FB4EF1E89A1DA24B7E /* FIRCLSUnwind_arm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCLSUnwind_arm.c; path = Crashlytics/Crashlytics/Unwind/FIRCLSUnwind_arm.c; sourceTree = ""; }; - ED60595149C4D4ECE391CD7E055A488B /* RNDeviceInfo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.debug.xcconfig; sourceTree = ""; }; ED6720730BF150F532C5ACF09A797386 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; ED68D0F419727A0FBDC1E9B15E42AF2C /* OpenSSL-Universal.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "OpenSSL-Universal.debug.xcconfig"; sourceTree = ""; }; + ED6B0CF53AAB7617488E10EAEF696A27 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; ED6F99672BDD6A13AE6CF26C4A454EBB /* FlipperRSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperRSocketResponder.h; path = xplat/Flipper/FlipperRSocketResponder.h; sourceTree = ""; }; - ED7C4C841923BFE4FF0571F44E51D380 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; - ED89FD6A33B5F43A9CBFA023D2080DB8 /* KeyCommands.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.release.xcconfig; sourceTree = ""; }; - ED8ECD8D922917999B335311111C1B7E /* RNFBSharedUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFBSharedUtils.m; path = ios/RNFBApp/RNFBSharedUtils.m; sourceTree = ""; }; EDA60D556401803478C9108C4C502BF2 /* BlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlockingQueue.h; path = folly/executors/task_queue/BlockingQueue.h; sourceTree = ""; }; EDAEA3088D709CEB8E89EE623F59F595 /* Padded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Padded.h; path = folly/Padded.h; sourceTree = ""; }; - EDE23A2623E231629D960229923C2633 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; - EDF912ABCDBE2A977D8EBBB859A99FC2 /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; - EE164727FB3FEFEEDC309301CC6174B4 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; - EE227767ADC64FA2F8A043A5AACB0A1D /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; + EDC5E4D53138E9169B74064DF83EA75F /* RCTI18nManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTI18nManager.mm; sourceTree = ""; }; + EDC7EF660E1D08246E8E390ACA367349 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; + EDD997E6F91C408EE3DD8B60C9BFB7D3 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; + EDDF23E79B93E331FC5A7DFAB18199D5 /* RCTNetworkPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkPlugins.h; path = Libraries/Network/RCTNetworkPlugins.h; sourceTree = ""; }; + EDE1A7165B603DC916D495FAB9AC8A0E /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; + EDF4AC5118A1AAB9BC42B53E0093620B /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; + EE035A1EBB3E64A8A9FC3DB0AD169EFA /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; EE25F1E9F68747A3CBE0820C8E825A24 /* Array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Array.h; path = folly/container/Array.h; sourceTree = ""; }; + EE2A70486589BF365D3D12742BB4DF94 /* RNFBAnalytics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFBAnalytics-prefix.pch"; sourceTree = ""; }; + EE2AE208EB32955B9520EC77E30CBE5F /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; + EE35051464522271A5C22307E050997A /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; + EE369D136D84453E1A3A02C5104D67F1 /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = ""; }; EE4AEFEACE275DDCFB42B9400BF6B218 /* libRNFBCrashlytics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFBCrashlytics.a; path = libRNFBCrashlytics.a; sourceTree = BUILT_PRODUCTS_DIR; }; EE4D03CF3B6B05A91F824780567C6BDD /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; - EE510ECFE9740A1362829E8B15A7D768 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; - EE56C46D9D35877C0761AAFB28FF7AAA /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; + EE4F636BB2299A28F2B474DBD1AE3BC7 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; EE5C9EDCAF241D698D2916516A93E4A2 /* EnvUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnvUtil.h; path = folly/experimental/EnvUtil.h; sourceTree = ""; }; + EE642C82B7E7982C5E9BBED1469B2EDC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; EE703EAED3358FD81E42E02DA0472E66 /* FIRCLSFCRAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSFCRAnalytics.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSFCRAnalytics.h; sourceTree = ""; }; + EE7296D21287EDF379BC27C915C5035A /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = ""; }; EE8B5CD82A2247EE689EA950066A50DA /* FIRCLSBinaryImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSBinaryImage.h; path = Crashlytics/Crashlytics/Components/FIRCLSBinaryImage.h; sourceTree = ""; }; - EEAA543205F01FF09C3A376B7CB9223B /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; EEB2E41EF7F4B75D598C884FA80A1459 /* evrpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evrpc.h; path = src/evrpc.h; sourceTree = ""; }; + EEB60FA72529E43882D9ED3F8EDC5D9C /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; EEBBC047CE8C4E65CCCAEF93395AF909 /* SKButtonDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKButtonDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKButtonDescriptor.mm; sourceTree = ""; }; EED611C560BF97239C7E1E38A8618F6F /* FIRCLSAllocate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSAllocate.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSAllocate.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; }; + EEF0D8619BE0D72C2C28450FE40A9E7F /* RNRandomBytes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRandomBytes.h; path = ios/RCTCrypto/RNRandomBytes.h; sourceTree = ""; }; EEF18F0D40D19AD1BB4FA2CE56FE54B8 /* SKButtonDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKButtonDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKButtonDescriptor.h; sourceTree = ""; }; + EEF9C253E10CCF846476FE128A058BA6 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; EF11E8A38840A5B1EA48D172084CE814 /* FutureExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureExecutor.h; path = folly/executors/FutureExecutor.h; sourceTree = ""; }; - EF18428DD6B5C6031E6AF8D7ED927FA1 /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = apple/RNCWebView.h; sourceTree = ""; }; - EF1CB6936684CFF23AB137B5F8CFB337 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; + EF1F9DAF0A95BBE0D3815AC34E50A498 /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; EF245A6D76CD58ACB2E1A543696547D0 /* UniqueInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = UniqueInstance.cpp; path = folly/detail/UniqueInstance.cpp; sourceTree = ""; }; - EF4B57E1481A7B4B821B68EF26FAEAFB /* RCTConvert+FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FIROptions.h"; path = "ios/RNFBApp/RCTConvert+FIROptions.h"; sourceTree = ""; }; - EF4B97470003B61AE2879931D9748DE3 /* React-CoreModules.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.debug.xcconfig"; sourceTree = ""; }; + EF38B221E0F79D1897487F1254678820 /* ReactNativeKeyboardInput.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardInput.release.xcconfig; sourceTree = ""; }; + EF44745F305CE863A41DAA27DC7F42C5 /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; + EF52CE6D58AF9AB112ECEA7526847AB9 /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; + EF5B04B8AC4E9345914B2A352153ECAC /* RCTRequired.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.release.xcconfig; sourceTree = ""; }; EF6CBE3265427633D615491A12EF6500 /* YogaKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YogaKit.release.xcconfig; sourceTree = ""; }; + EF832947BB3B9660609E37EE61DE7C91 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; + EF8C8BBC959D54F7D4C8F67BA8C7F31F /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; EFAAA844D485C9B9F7D48BFB2EA3D20E /* FIRCLSRecordApplication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordApplication.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordApplication.m; sourceTree = ""; }; EFAF6A782701FE357235EC92BC286F99 /* IPAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddress.cpp; path = folly/IPAddress.cpp; sourceTree = ""; }; EFB46122032083C5364787A0655EB0F1 /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = ""; }; EFCA663B5C95A4620819BBC649634D7A /* vp8l_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_enc.c; path = src/enc/vp8l_enc.c; sourceTree = ""; }; - EFCF0B535AAD9257740ED9380BF724AA /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = apple/RNCWKProcessPoolManager.h; sourceTree = ""; }; - EFF80CE80112452C15F49D7B990F9ECA /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; EFFEDF8AEC1135DC222C4AE58E738140 /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; + F00E8C61BDB02F994FBC09F5A222BB0E /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; + F01A7F1CE309364CFADA2C0F2C6A2E67 /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; F01FCC1166E7D6D1590CC7A1F7658301 /* 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 = ""; }; - F03FCA6747A9850EB34084EDF68C1750 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; - F05BD8943320E7B1D726C43EAB73622A /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; - F069E5E3118E6E253A337FFAAEA2B091 /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; + F029ED0DE948E3AC01C65D596DB484DA /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; + F03307F278BBC63A0A9444A3092558EB /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; + F0429179DA86B043A3B1DEF698FFAFA1 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; F06C104977D7B1F53581DD4B5DFE26EB /* ProtocolVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProtocolVersion.h; path = rsocket/framing/ProtocolVersion.h; sourceTree = ""; }; F06C31104F4D714FEEB7A3C4E0271A26 /* SingleWriterFixedHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingleWriterFixedHashMap.h; path = folly/experimental/SingleWriterFixedHashMap.h; sourceTree = ""; }; + F079017069DAB45979E46D9C53B7B171 /* UMConstantsInterface.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.debug.xcconfig; sourceTree = ""; }; F07A9E46FD0C2F2752683C14A8BF8CB2 /* FIRStackFrame_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStackFrame_Private.h; path = Crashlytics/Crashlytics/Private/FIRStackFrame_Private.h; sourceTree = ""; }; - F07AF17231352FAC86958B11B262268C /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; F08795C421DC1A296B93319B6F19C8D7 /* Util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Util.h; path = folly/container/detail/Util.h; sourceTree = ""; }; F08B9575F0B6EED6845FDE7635D3E2E2 /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; F09C010F016527E92F5F3427A5A15B57 /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = ""; }; + F0ACB1CC1FA83E32826A4E6A0D15CD93 /* BitUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitUtils.h; path = yoga/BitUtils.h; sourceTree = ""; }; + F0BEC591BD7C736813D10344B60D5695 /* UMReactNativeAdapter.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.debug.xcconfig; sourceTree = ""; }; + F0C6B5137991848A85D0CD16863BBE3A /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; F0F8A94287F4DC9CAB895057C1501197 /* Synchronized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Synchronized.h; path = folly/Synchronized.h; sourceTree = ""; }; - F10320087A957C5D7E95D07242064BE2 /* FBLazyVector.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.release.xcconfig; sourceTree = ""; }; - F111332F8BD2666EDBDF7148438E369B /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; F11667E63F773F1B77351BE08AD3502D /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = FirebaseCore/Sources/FIROptions.m; sourceTree = ""; }; F121793B88730F859CA0404B3CEBB833 /* ReadMostlySharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReadMostlySharedPtr.h; path = folly/experimental/ReadMostlySharedPtr.h; sourceTree = ""; }; + F1223FFA5A218A24BA119E796EB96043 /* RCTLocalAssetImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLocalAssetImageLoader.mm; sourceTree = ""; }; F1224AA47F780F896630B559FAFBC8D1 /* GDTCORTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTargets.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORTargets.h; sourceTree = ""; }; F12D7B5124DDB3A645644C77932BE8FA /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; F14675070B84D7A6C131F55FADF2F6FE /* Fixture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fixture.h; path = rsocket/benchmarks/Fixture.h; sourceTree = ""; }; - F14F4BD545400FE45AF406E921C39D75 /* 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; }; - F1652A4C1A9C832A0FE94E037EB052BB /* RCTLogBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBox.h; path = React/CoreModules/RCTLogBox.h; sourceTree = ""; }; - F17A40D774E2293A377BA9F5FE267C23 /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; - F18FEE533414EF0E933A14E3B8FC23DC /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; + F15426F1ECD9F5E4AB1E1E56F6259DEC /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; + F1552E99A7FF5F1979FE42E80BF62E84 /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = ""; }; + F15B0373069C0B581AFDD9B519DC58B7 /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; + F18007CA4892127EC3E08FCA887D92EE /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; + F1880F6B6DF200415BF221FB9A8293A5 /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; F198E08753150E8DAA9970B9B8B37FFE /* cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cast.h; path = ios/include/openssl/cast.h; sourceTree = ""; }; + F1A524568ECC5352902538AB8E44E8BA /* BSG_KSMachHeaders.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSMachHeaders.m; sourceTree = ""; }; F1A645E546694C2244A5AFD1099E28E9 /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Private/GULHeartbeatDateStorage.h; sourceTree = ""; }; + F1B52690A0938FCC9C15FBF7FDE7AD06 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; F1C4F954EFDDE9C8BF7A1364C186B6F3 /* util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = util.h; path = src/event2/util.h; sourceTree = ""; }; + F1D5B74F92F3A9D550AA716C8BE6D124 /* EXAppleAuthenticationRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationRequest.m; path = EXAppleAuthentication/EXAppleAuthenticationRequest.m; sourceTree = ""; }; + F1DDEEDBC45048DD00B19D8A069A228A /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; + F1E1361C4992B431E48CAD0CC738A4BB /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; F1EDE2F820502F40C114AAFCA7904336 /* upsampling_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_neon.c; path = src/dsp/upsampling_neon.c; sourceTree = ""; }; - F2087689D10D13039100FAEEB8160DDA /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; + F1FD3D7694E768D6E0AAEC382CF433AE /* RNFBCrashlytics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFBCrashlytics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F2039BF3E34C6B643CC8F48259836000 /* EXVideoThumbnailsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXVideoThumbnailsModule.m; path = EXVideoThumbnails/EXVideoThumbnailsModule.m; sourceTree = ""; }; + F2123B0F45A9E9D1E06385AEFB5EAB88 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; F21299F97711820C37335AEB062868C1 /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULApplication.h; sourceTree = ""; }; - F219018012DA45015DCF19EAB4E7C1C3 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; - F23F8715F75CDD091E99A431B5145660 /* EXKeepAwake-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXKeepAwake-prefix.pch"; sourceTree = ""; }; + F244FA41509E882BAFEE150660326CE2 /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = ""; }; F26996A2CDCB4BBFC22050148D771667 /* FlipperResponderImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponderImpl.h; path = xplat/Flipper/FlipperResponderImpl.h; sourceTree = ""; }; F27BC406AA427190F7009FF9049BD8AD /* IOObjectCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOObjectCache.h; path = folly/executors/IOObjectCache.h; sourceTree = ""; }; F2831FC57283BBC96AB42237214E5A4D /* IOVec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOVec.h; path = folly/portability/IOVec.h; sourceTree = ""; }; + F28AE2863E0C477B78DBCB3B1EAC1F69 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; F28D493A9205E533F19416345126DE59 /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = ""; }; F28DFDC5960D4529CD17CFEF080E911A /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = ""; }; F297E2C22F7A74264423B9A80AB10551 /* Benchmarks.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Benchmarks.cpp; path = rsocket/benchmarks/Benchmarks.cpp; sourceTree = ""; }; + F29BBFA8D317C643C8EFF279CD642EFD /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; F29CB76B10566F662F2F1D6C326A8205 /* PTChannel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTChannel.m; path = peertalk/PTChannel.m; sourceTree = ""; }; F2A5A0F8C8A95B9A7298B3CA06D37886 /* Flipper-RSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-RSocket-prefix.pch"; sourceTree = ""; }; - F2A694C98D0E4AE6F9BABDC3DE3C2C1E /* RNCSafeAreaViewMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewMode.m; path = ios/SafeAreaView/RNCSafeAreaViewMode.m; sourceTree = ""; }; - F2B70451F292A11102014AA7D382DFDA /* RNFBRCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFBRCTEventEmitter.h; path = ios/RNFBApp/RNFBRCTEventEmitter.h; sourceTree = ""; }; + F2C0A8646EBD720C88BD6CDAEBE2C7B0 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; F2C8F5041CA025BA7D33377BEB9D2235 /* FiberIOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberIOExecutor.h; path = folly/executors/FiberIOExecutor.h; sourceTree = ""; }; F2CB8699905D4AECB2EA5ABD317EE9C9 /* ThreadCachedInts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInts.h; path = folly/synchronization/detail/ThreadCachedInts.h; sourceTree = ""; }; F2CBE8588AEC619EF1058D5143DDDEBE /* Pods-RocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-resources.sh"; sourceTree = ""; }; F2CC303B5AE217464EAB24FA2B5308F9 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Sources/Private/FirebaseCoreInternal.h; sourceTree = ""; }; F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsiexecutor.a"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F2E8099A78C485E2ED5C976F24BAB22C /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; F2F208B67F4BF4F7700CD149C4CC6C88 /* hmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hmac.h; path = ios/include/openssl/hmac.h; sourceTree = ""; }; - F3019DF95426F18BC3C20871E16B089D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - F301CC3E64C9B2DBFB07459A48F17278 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; + F2F45F82F3A93884760C8DB40FF71579 /* Yoga.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.release.xcconfig; sourceTree = ""; }; F30A5E06EA95BC4736C2D62CDDB6E5AD /* Replaceable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Replaceable.h; path = folly/Replaceable.h; sourceTree = ""; }; - F31B8E1CFFC76235A0DA3FEAAD5CBE1A /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + F31AB722F6F19E9C9CC18FA2362BD99E /* RCTPbkdf2.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTPbkdf2.m; path = ios/RCTCrypto/RCTPbkdf2.m; sourceTree = ""; }; F324F1517F2FD156164BA6904200BA55 /* RSocketRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketRequester.cpp; path = rsocket/RSocketRequester.cpp; sourceTree = ""; }; F3350D0DE7EA6E6558960F9441FC697F /* CertificateUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CertificateUtils.h; path = xplat/Flipper/CertificateUtils.h; sourceTree = ""; }; + F340895AE3DDDDF83861D0AEB2754E7F /* 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; }; F3488107C82A6CB613082DDD2D830AFC /* SKStateUpdateCPPWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKStateUpdateCPPWrapper.h; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.h; sourceTree = ""; }; - F350944EA40CEADDF0F4C7171F813B59 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; + F3611D92CEB634663616E523EA33E6E6 /* RNFastImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.debug.xcconfig; sourceTree = ""; }; + F37FE0D11A848EF44ADBF866D71C50E8 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; F382D054D64750038F056CF817ABF9CD /* Merge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Merge.h; path = folly/container/Merge.h; sourceTree = ""; }; - F390A4ADFE5065ED118026F7A8CC5920 /* react-native-safe-area-context.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.release.xcconfig"; sourceTree = ""; }; - F398B91E8838747B7ECA29A66CD5B25B /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = ""; }; + F39576908275793365CCF545589D1BC7 /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; + F39A3A428F911B4669E69AE5169C7A17 /* react-native-webview.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.debug.xcconfig"; sourceTree = ""; }; F3BB2AE2F63C291FF044365616F2EBA4 /* tree_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_enc.c; path = src/enc/tree_enc.c; sourceTree = ""; }; - F3DD930BE80233CD66D322362F35FEB9 /* 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; }; + F3BC91850A97810B1DE5C9FA5E851A56 /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = apple/RNCWebViewManager.m; sourceTree = ""; }; + F3BF025C2B821E1BC9D7DD9F37571605 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; + F3C274A19A6E55D76BFB119B2B8D0FC9 /* react-native-simple-crypto.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-simple-crypto.debug.xcconfig"; sourceTree = ""; }; F3E82A5BFCACDC39A13BCFA7AAACAAB9 /* lossless_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_mips_dsp_r2.c; path = src/dsp/lossless_mips_dsp_r2.c; sourceTree = ""; }; F3FDF8EA6880ED4CA0959629FFF8285E /* FIRInstallationsStoredAuthToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredAuthToken.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m; sourceTree = ""; }; F40075B936115DC5B57997FBD0D84841 /* SSLContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLContext.h; path = folly/io/async/SSLContext.h; sourceTree = ""; }; + F401135CF9E9CE9B09A3DA38AD61A99D /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; + F403C4269A40AA50795F6D3F90A05C95 /* RCTUtilsUIOverride.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtilsUIOverride.h; sourceTree = ""; }; F42FD5A2EBD29B9258B1771FBA172705 /* PropagateConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropagateConst.h; path = folly/lang/PropagateConst.h; sourceTree = ""; }; + F43A2B90283A1D1D5BCB4B2306D9694E /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; F44192C3FB065A7DAA1A8AEBF57B1436 /* TestSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestSubscriber.h; path = yarpl/flowable/TestSubscriber.h; sourceTree = ""; }; - F45C86671E626431A5D11FB234D8DFBA /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; - F46740C50C4F1E03FE092B3D1C710F26 /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; - F4685F766E3A537439E671C91583CD6D /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; - F4C95E42DCA4EB60D68F2EDA80EFB4EA /* RNCAsyncStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorage.h; path = ios/RNCAsyncStorage.h; sourceTree = ""; }; + F4553F99B9236CA4FE8D7DB5CBC4FEF3 /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; + F473C7CE1C1DA812CF0A2E795664C494 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; F4D6965BD62563B064DEC19B24099599 /* IPAddressV4.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddressV4.cpp; path = folly/IPAddressV4.cpp; sourceTree = ""; }; - F4E4005F48DF332C4BEE1AA75C1D0839 /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; - F4EB1A7EAB18453C0D385A4B95875284 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; - F4F2CB6239F8738A653B3A5ED87558B2 /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = ""; }; + F4E916E16887711C8AD4EE979ADB6D7D /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; F4F872604D973C5C2E7F249F16CA2E9C /* ErrorCode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ErrorCode.cpp; path = rsocket/framing/ErrorCode.cpp; sourceTree = ""; }; - F526891B950D9445B1A66AC87FCC3B19 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; F52A886CC8A999ABD8AAC5AFA1E12821 /* SKInvalidation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKInvalidation.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKInvalidation.m; sourceTree = ""; }; F53573B1146133FD1FC6647F31DD6A94 /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; - F546B7E8168F1EFA6B4FC83BFBAF4F8D /* FBReactNativeSpec.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.release.xcconfig; sourceTree = ""; }; + F53C0812017E39A5A9861899336B7544 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; F5552A954FD3C3E5AEF301461745A4CF /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; - F564B224DD26082298C97D6A1A1FE620 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; - F5784CDDB261C02F14394FDD99A97BE1 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; + F555A239F2130526E0F1260B37E1DDD3 /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; + F582E7DAF77D62316B8073919E010470 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; F5BADE8D5BF1F09FCC4FF33A6578A037 /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; - F5C32CA22F602B73CDF7D859D50B67DC /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; - F5C8131118E345A6D6CD17A8A3CEDF19 /* RCTConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConstants.m; sourceTree = ""; }; - F5C90F8428D1ECED9E0986EC790A7769 /* UMReactNativeAdapter.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.release.xcconfig; sourceTree = ""; }; + F5BD86CC0F2A82DBE73D8A6D62F8CE36 /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; + F5C09A77B6AC72BC2EAFBE0698BE504D /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; F5CF51212CBF9F332801DA2F4A79CA6B /* FIRCLSOnboardingOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSOnboardingOperation.m; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSOnboardingOperation.m; sourceTree = ""; }; + F5D1A7FB15477A7DC76FD9805285F811 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; + F5DFC2582D2F19C91B8D6CB6559C174E /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; F600F01DC5C0A19939C7E3C1DD49100E /* RequestResponseResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RequestResponseResponder.h; path = rsocket/statemachine/RequestResponseResponder.h; sourceTree = ""; }; + F602CDFC93CCB1F192C77B5FCF12362F /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; F60ADC913DA2666BCC70A8DF01D34BAF /* TypeInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeInfo.h; path = folly/lang/TypeInfo.h; sourceTree = ""; }; F618E351EAE404FAD585BA59E476D255 /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; - F61A2F1091346B98B1DD25282EE1DA55 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - F64C32F9FE444089179FD89427121D4C /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTStatusBarManager.h; path = React/CoreModules/RCTStatusBarManager.h; sourceTree = ""; }; + F61D3C3B536505732A69FFC1C74CD491 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F61D4966DA96A7492131D289921544A5 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; + F63BA0D54DB528DA458BED659F440D15 /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; F650B8B0C23ED9519A598442826CB29E /* frame_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_enc.c; path = src/enc/frame_enc.c; sourceTree = ""; }; F6547816449FD1C41E2C13C99FCD0750 /* FutureDAG.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureDAG.h; path = folly/experimental/FutureDAG.h; sourceTree = ""; }; F6561E3F265A1D5850ED9807D713DF2B /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = "Objective-C/TOCropViewController/Resources/fr.lproj"; sourceTree = ""; }; F667511CE16CA58A871C579C5615D138 /* boost-for-react-native.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.release.xcconfig"; sourceTree = ""; }; - F66929CD5E95ED8EB0C1C5EEA4DCE5FE /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; - F66CF81B10C7E56E280D4BA65272BB3D /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; - F66F4E471DF620EE0F33A0732775F499 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; + F6722367AF9C13EF903BBFCA1CC58AEE /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; + F676FDFAD617AEB73318BA8B1CE8DEEA /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; F67E337E7F5A9F438DFB032A875437E0 /* GDTCORPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORPlatform.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m; sourceTree = ""; }; F6920291020C8AB8AC7EFAA3308497EF /* FIRCLSRecordBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSRecordBase.h; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordBase.h; sourceTree = ""; }; - F69CD72B379C98BD9A1332AC77336174 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; - F6A38E1049A139D1EFC30199A44CFDEF /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; - F6D46679673A45E2393DEE1E0F8B30EF /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; - F6D60BA1CF75E2B12AE25427ED0D8E5F /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; + F6B1C3ECC5367567E61653892F487170 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + F6D5B8E056EF2E9D8F21A8FCA1109E38 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = ""; }; F6EA00EC9B857A8052AC7173CD402F84 /* glog.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.debug.xcconfig; sourceTree = ""; }; F6EE8B397595CE5A729585247F112E22 /* tr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = tr.lproj; path = "Objective-C/TOCropViewController/Resources/tr.lproj"; sourceTree = ""; }; F6F842C80AF223458EB655C1759715FC /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FileUtil.cpp; path = folly/FileUtil.cpp; sourceTree = ""; }; + F70FBE0D817010EDEECA851CC78579EE /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; + F71561FB046C748FB12835CE1E75925A /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; + F715FF90281EF36EBA9AB5EB54853BC0 /* RNCMaskedView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.debug.xcconfig; sourceTree = ""; }; + F71C4DD1A555DEA9B29555448E4589B4 /* RNCAsyncStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAsyncStorage.m; path = ios/RNCAsyncStorage.m; sourceTree = ""; }; + F71DF116E2909F8743466766B13DCD01 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTBlob.a"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F71F10D8FF2C8494E35F3E9F6BB1EB3E /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; F728AC20374201C6C5833167290A5E5C /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Private/GULKeychainUtils.h; sourceTree = ""; }; - F72C6AAB724012592341418F8B056825 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F73B701568E441DDD6BC3000D0D5B932 /* Varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Varint.h; path = folly/Varint.h; sourceTree = ""; }; + F740FDA458ED8EAF667CD596D3DF718A /* RCTHmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHmac.h; path = ios/RCTCrypto/RCTHmac.h; sourceTree = ""; }; F75C21B39D888B53F815D553074F66FC /* ThreadId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadId.h; path = folly/system/ThreadId.h; sourceTree = ""; }; + F76A324B95B15C2ABD32A48C3D7A77F5 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; F76B5B149795649B273FC0BF059DE901 /* pqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pqueue.h; path = ios/include/openssl/pqueue.h; sourceTree = ""; }; F7767C424154BDFC98927B610F35AF43 /* FirebaseInstallations-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstallations-dummy.m"; sourceTree = ""; }; - F7782572C39EF264BF13CB967491D0E7 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; - F783C63D8BF62C97A2110023560BF067 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; - F788C76C4B4C4BF7E938A725AA517167 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; F79212FF1BC55E2F5121E2DF04940601 /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = ""; }; + F795504F2D7DDEC908D2F55201ED70A4 /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; + F7C9597B3282C95B9406F6A0DFF9FC26 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; + F7E55FC00988149092B431815A21CD4A /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; F8039CCD3C7E0FDE229D3B906E841298 /* SysMman.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysMman.cpp; path = folly/portability/SysMman.cpp; sourceTree = ""; }; - F82DAB0168C9A616529AA60F814D8381 /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; F82ED80F25FFBD6E7698FE3F774BC2A7 /* Libgen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Libgen.h; path = folly/portability/Libgen.h; sourceTree = ""; }; + F83101CF0701B271A6F672BA8903994E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; F838AA84018BDF01E31B58B2E3EEFAE6 /* IOThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOThreadPoolExecutor.h; path = folly/executors/IOThreadPoolExecutor.h; sourceTree = ""; }; + F83ECD37D111523C25BA951DBE815297 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; + F83FB2973ACDE06FD3D5312407D84842 /* EXSessionDownloadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionDownloadTaskDelegate.m; sourceTree = ""; }; F853FCFD5610E4F829F3B16A23D72606 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; F85431ACB243CA110A229BE2C7FC8082 /* RSocketStateMachine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketStateMachine.h; path = rsocket/statemachine/RSocketStateMachine.h; sourceTree = ""; }; + F863EADB4843D8385746B415F9E6850F /* RNCMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedViewManager.h; path = ios/RNCMaskedViewManager.h; sourceTree = ""; }; F877C7367E9978E5268E70789C264BEF /* filters.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters.c; path = src/dsp/filters.c; sourceTree = ""; }; F879CDB2EBBAB29A51252B795D9C0342 /* StackTraceUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StackTraceUtils.h; path = rsocket/internal/StackTraceUtils.h; sourceTree = ""; }; - F882B3364320828DE2D9610696FD6D1B /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; + F87C847BA5F52A6F7017B51D1DB5C8AA /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; + F886F3E1A07C2D55200725FC5237857B /* RNDateTimePicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.debug.xcconfig; sourceTree = ""; }; + F886F5A6DAFBF94189D7B993953D5F22 /* RCTTypeSafety.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.release.xcconfig; sourceTree = ""; }; F8A7B7D82F11122F254963066DF66613 /* HazptrObjLinked.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObjLinked.h; path = folly/synchronization/HazptrObjLinked.h; sourceTree = ""; }; - F8AB7578113C306217F64EF0CBBA6A86 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; F8B6D2612157B0F239ABDB54106627DA /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; - F8E3E041B86D708D61869B837ACC9A61 /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; - F8F89B08880AD931DD451E00C6CC6078 /* 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; }; - F8F98C8E4883CD18E543279129575A7E /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; F913C27BBB2B1100FDAF53AA22A0BD34 /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h; sourceTree = ""; }; F92210F9DFE285959B3212269DC66D7C /* dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec.c; path = src/dsp/dec.c; sourceTree = ""; }; + F92493B05E192084869BB32DF794B09D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + F92625B8F9E0142212436740292AA9AD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + F92EF1967A5B0061D978F18124AD65BD /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F947C5849117174417F03B10F031A7BE /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; F94D1AEE1A1631D64AD7152A2C5DDECF /* FIRCLSSignal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSSignal.h; path = Crashlytics/Crashlytics/Handlers/FIRCLSSignal.h; sourceTree = ""; }; F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRCTTypeSafety.a; path = libRCTTypeSafety.a; sourceTree = BUILT_PRODUCTS_DIR; }; + F96EF59EDF94FC8ED7C3AD2E5359AA4C /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; F98B8C80BAFE81848211A2B082408C5B /* 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 = ""; }; + F992E01ED5F77EEAD29CF84E8A7C40E1 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; F9AF1435D07F42704AE3EDA00049E97F /* fi.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fi.lproj; path = "Objective-C/TOCropViewController/Resources/fi.lproj"; sourceTree = ""; }; - F9D48F6F692CB2B4B48666DC835623BB /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; F9DCBD846AF2DEA4399B75EADDE23EDE /* symhacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = symhacks.h; path = ios/include/openssl/symhacks.h; sourceTree = ""; }; - F9EE93BB82B6922ED3469317BC8CA049 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = React/CoreModules/RCTActionSheetManager.h; sourceTree = ""; }; FA03B0E32A0C529E05F4D69DD7243387 /* SysUio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysUio.h; path = folly/portability/SysUio.h; sourceTree = ""; }; FA10520ACAC79ACAD5A273E08745070A /* ThreadWheelTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeper.h; path = folly/futures/ThreadWheelTimekeeper.h; sourceTree = ""; }; FA1D74676B28E8FD5FFDEBEF8A162860 /* YogaKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "YogaKit-dummy.m"; sourceTree = ""; }; - FA2F1AE71FD4E0D504CC1BB23ADC472F /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; - FA31742AD2A94D363D05E51A34ED87AF /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; - FA62BC0653157BD865D46127AEDAA0D3 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; + FA441F279168B5B3A406958506986428 /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; + FA45DCB66A546613091AB4B5E18C0C9C /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; + FA59E6FDE411F774347552C29C245699 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; FA765364029410F519FF5760362E5376 /* UIView+Yoga.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+Yoga.m"; path = "YogaKit/Source/UIView+Yoga.m"; sourceTree = ""; }; FA82C05B69A05871A507E87CDC332270 /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/lang/Exception.h; sourceTree = ""; }; - FA868C8AEFC363B7DCA6560CD8CB2C08 /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = ""; }; - FA88DA0FD1C1E2BE0463D1675A97D882 /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - FA8C55648EBE21309FC8B1FFFF5C1C9C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - FA9BAD987A0B88DCA3C7E6B9381F0B5C /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; FAAEE84DBB25715C319A69A09C3AB507 /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/Conv.h; sourceTree = ""; }; FAC92C0395480DD001C2A66B7458BFF3 /* FlipperCppBridgingResponder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperCppBridgingResponder.mm; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.mm; sourceTree = ""; }; + FAD4E29FEA233592C30A08BA83A8CFD7 /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; FAD4ECEB1F70ECFB86378AC59310BE88 /* VirtualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualExecutor.h; path = folly/VirtualExecutor.h; sourceTree = ""; }; - FAD6926DFBD96416DF1301F4A8F8D53F /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; FB01FFEEBEB11934944E8901A9D74B4B /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; - FB110F52027B8DE7CA9A8F0740578D92 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; - FB391EAC7181CC3C2481AA66C998D311 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; FB48088D8278361389A0CA29114558C8 /* alpha_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_enc.c; path = src/enc/alpha_enc.c; sourceTree = ""; }; - FB5636F03310523B5AB4AC1A89223497 /* react-native-safe-area-context.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.debug.xcconfig"; sourceTree = ""; }; - FB6D4BD0BDCC88F0C30AB09638EB639C /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = ""; }; + FB6E0AB584422C218E5E04B4224C15B2 /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; FB701F812C4E81F3B1962EC2D915BA7A /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; - FB7079DFC1E58A5E1B5B89081640875B /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; - FB9E12BEAEED9961476A04B776B5FFA2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + FB89E6B361004EEF9AC9A6B8C0C8AE12 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + FBAC7CDE546D7D2889270A00B9B289C1 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; FBC0B4EA10E268A34C5AC36C0EBF4815 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; FBC2DDBE90E7BFE19BAE4D1E299F8E53 /* lossless_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_sse2.c; path = src/dsp/lossless_sse2.c; sourceTree = ""; }; - FBD189F2249AEF5C6A23662E07C1B9CC /* EXSessionUploadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionUploadTaskDelegate.m; sourceTree = ""; }; + FBCFE26714872422A8F2BF2300250DEF /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; + FBD3C6F381C857748120249C25C9FEEF /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; FBF2091EACE8556C1666F1775EB57FF7 /* HHWheelTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = HHWheelTimer.cpp; path = folly/io/async/HHWheelTimer.cpp; sourceTree = ""; }; FBF35F269F48AD2A014C0EDDD494FAFF /* FlipperRSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperRSocketResponder.cpp; path = xplat/Flipper/FlipperRSocketResponder.cpp; sourceTree = ""; }; - FC0F5A02284FAE4453FF9203B1B09CF6 /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = ""; }; FC18BF141D8B95451EB6164F0A8E304B /* Builtins.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Builtins.cpp; path = folly/portability/Builtins.cpp; sourceTree = ""; }; - FC1D83CACEF7424175AA61B3864FD586 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; - FC43AD7D7D6D6449F2AD11B47130069A /* EXKeepAwake.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXKeepAwake.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - FC5EE999FCA5EFB1DDAF60710B912F64 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; - FC6D4B5D0DE995D408A99471DF825A0E /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; - FC71A00FA060F57793E94E9200EEB2D7 /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; + FC757556A994BE7779C4C9AC36E38587 /* RCTVibrationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibrationPlugins.h; path = Libraries/Vibration/RCTVibrationPlugins.h; sourceTree = ""; }; FC7983728C8869A0CCFB3DB3FF1C5C97 /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; - FC9F495B764591D370E8445BDDBFA9C5 /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = ""; }; + FC928C56993ACE4B58301329A03FBF07 /* RCTAnimationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationPlugins.h; path = Libraries/NativeAnimation/RCTAnimationPlugins.h; sourceTree = ""; }; + FCA8EBC83678AC28E2CE66AC1B08AE64 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; FCB1C88B1FFF2187394F4E6093BFDA17 /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; + FCC2B1503D651ADC9F6F0161F199446A /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; FCD9CE39E1B114E366E66B6026FA70D8 /* Sched.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sched.h; path = folly/portability/Sched.h; sourceTree = ""; }; + FCDDD2C6F783F69D3705B88CFE72A558 /* RNImageCropPicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.release.xcconfig; sourceTree = ""; }; + FCE523393E4C20C19619A0C7EECC603F /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; FCE58116D862B296433378DE503785D0 /* TimedDrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedDrivableExecutor.h; path = folly/executors/TimedDrivableExecutor.h; sourceTree = ""; }; FCF48F762050C1BDADEAD9656CF08F25 /* FIRCLSOnboardingOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSOnboardingOperation.h; path = Crashlytics/Crashlytics/Settings/Operations/FIRCLSOnboardingOperation.h; sourceTree = ""; }; FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImageWebPCoder.a; path = libSDWebImageWebPCoder.a; sourceTree = BUILT_PRODUCTS_DIR; }; - FCF82FA21C0F6FF876AE1064187FE764 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; FD02497DC00AB4BCF27C39F2D53BC87B /* NSBezierPath+SDRoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+SDRoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.m"; sourceTree = ""; }; + FD0FAFA71967E0AF10220D709B544A51 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; + FD133AA16F00DE99E5ADE204783D7F6F /* EXAppleAuthenticationMappings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppleAuthenticationMappings.m; path = EXAppleAuthentication/EXAppleAuthenticationMappings.m; sourceTree = ""; }; FD1A6D3700A187B9340B40E1CC0B1A07 /* upsampling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling.c; path = src/dsp/upsampling.c; sourceTree = ""; }; - FD2022CE8709BF25A95565699B9E4EED /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; - FD29547C2C3A1FA49DF682A9262506E4 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; FD2F59900FE287CA52E3685C426D35CC /* evutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evutil.h; path = src/evutil.h; sourceTree = ""; }; - FD30FC48D149F5E26DCD521E8D4FEDAF /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; FD33C0439B76095288E5AB817E14F593 /* dynamic-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "dynamic-inl.h"; path = "folly/dynamic-inl.h"; sourceTree = ""; }; - FD4075D0EEA2E39293F1F66F46F392E7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; FD42080AAFC24E1761EA45B633CACB30 /* Flipper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-dummy.m"; sourceTree = ""; }; FD431B49BB02C8439651F9071824D20B /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; + FD5605970FEFFB23ABCCA413FA4E45B2 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; + FD5FF97F665F9994663022299DF5B74E /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; FD88A1E55DCA511E43CFE5EE6BAF8026 /* UnboundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedQueue.h; path = folly/concurrency/UnboundedQueue.h; sourceTree = ""; }; FD9FEEF6D4B48EC20A2ED6B28B080D61 /* Uri-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Uri-inl.h"; path = "folly/Uri-inl.h"; sourceTree = ""; }; - FDC0B6F5E8578026BED7FD6E2AF10D84 /* EXSessionDownloadTaskDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXSessionDownloadTaskDelegate.m; sourceTree = ""; }; - FDED236A58C2D088DBFEC89983AF042F /* EXSessionTaskDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXSessionTaskDelegate.h; sourceTree = ""; }; - FDF70BEB12C406F322F9EE7573864BE1 /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; + FDDEDD05EF147680EF0DBF08ECFBEF1D /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; + FDF9096E7F9D16ED0888A775C06DCD16 /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; + FDFAE8C91A0D4C21F86453A6FE0C921D /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; FE1E812071397E31AE21DFF368B781B1 /* TOCropViewControllerBundle.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = TOCropViewControllerBundle.bundle; path = "TOCropViewController-TOCropViewControllerBundle.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; - FE34BBB59F6F1F6F957581C6CF9D2859 /* UMPermissionsInterface-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMPermissionsInterface-dummy.m"; sourceTree = ""; }; + FE4D2BF80F96319D3DDFB295AA20FC70 /* RNCSafeAreaProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProvider.h; path = ios/SafeAreaView/RNCSafeAreaProvider.h; sourceTree = ""; }; FE64E2226DF655B148E0B726F776901E /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; FE6D792B6328AAF68E46924D7F466631 /* AccessibilityResources.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = AccessibilityResources.bundle; path = "React-Core-AccessibilityResources.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; FE720CD807419A6800517A587B0E4A00 /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; FE73A6B88E8638BC088A41F4E8AFBD31 /* FIRCLSRecordIdentity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCLSRecordIdentity.m; path = Crashlytics/Crashlytics/Models/Record/FIRCLSRecordIdentity.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; }; - FE7E2ACF770FA1F5C61451F18B01DB2F /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; - FE8666F7C978BCDCF45027E49C25C325 /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; FE866C37A692657284301D3C66E0E05B /* Optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Optional.h; path = folly/Optional.h; sourceTree = ""; }; FE9AD63A66C49D000A31CFF2592E92C2 /* buffer_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_dec.c; path = src/dec/buffer_dec.c; sourceTree = ""; }; + FE9C094D694442BB62EF19E890366CC9 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; FEB192CC648D2770FB2A22E7521CC002 /* StreamStateMachineBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamStateMachineBase.h; path = rsocket/statemachine/StreamStateMachineBase.h; sourceTree = ""; }; - FED99EC61698F83EBBB40358492DBF66 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; - FEE079432481F88B93B0B7AF4234558E /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; - FEF1FBE718351B5FDEF0E05FCAF6F4C3 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; - FF0F7F289DAB6779D1358BE55592F61D /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; - FF17147295969C9ACC4288A586DDBA56 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; + FEEBE15411CABFB180D186ACC9671BB9 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; + FF0579425922168F1752FB15EA132CBC /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; + FF099FA8CEFB41AE93B691AA31CA50E5 /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; FF3F390A9E1DA13321325D9F3130CB1A /* FIRInstallationsHTTPError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsHTTPError.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m; sourceTree = ""; }; FF45853268F706452B241C7C236B9585 /* enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips_dsp_r2.c; path = src/dsp/enc_mips_dsp_r2.c; sourceTree = ""; }; + FF4D6EDFEB4CE144E01E91AC6C91E5C9 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; + FF59C8D26BDF413CFCB74B2A2F3EB674 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; + FF5EC75832509595F34CA844C2795CF5 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; FF82869990A40307590CA55A9F72B220 /* FIRCLSProfiling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCLSProfiling.h; path = Crashlytics/Crashlytics/Helpers/FIRCLSProfiling.h; sourceTree = ""; }; - FF9F27BAECB614007A22D13CEA8F45F7 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; - FFAAC1AA0F94ACABCDF845F4DFEFE204 /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; - FFB599276F9A96E8C162F8A8B6E02C89 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; - FFB72840C115C96E91485EB841DF6373 /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; + FFA10CD6CA2ECF2D559428B97B39584B /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; + FFA1BDEEFFDAB36D3A227C4A87473A2C /* EXImageLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXImageLoader-dummy.m"; sourceTree = ""; }; FFCA39C5F531DF1B4083E7C9E7EAF51B /* GDTCORRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORRegistrar.h; sourceTree = ""; }; FFCD9DEA0C4E84783A478751D1860F86 /* FLEXNetworkObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkObserver.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkObserver.h; sourceTree = ""; }; FFD4BD58CC6AA3D495B1C58C46C373AA /* FlowableObserveOnOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableObserveOnOperator.h; path = yarpl/flowable/FlowableObserveOnOperator.h; sourceTree = ""; }; FFDC7746794AB17CFB7150820479DF40 /* libFlipper-RSocket.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-RSocket.a"; path = "libFlipper-RSocket.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFE18C84CD0014434D7A3335EA172451 /* Yoga-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-umbrella.h"; sourceTree = ""; }; FFE6E8C786BBE3BB5B6A0479A2E53867 /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; FFE8F9E9E1BBB1D5100D2BC31A525A62 /* MoveWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MoveWrapper.h; path = folly/MoveWrapper.h; sourceTree = ""; }; + FFF6B8FD983FC58BE98F99549184A81F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; FFFFA05AAF8E632A18AB8C35E0622FE5 /* PackedSyncPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PackedSyncPtr.h; path = folly/PackedSyncPtr.h; sourceTree = ""; }; /* End PBXFileReference section */ @@ -10299,6 +10381,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 1F58A4CEDF767F8DB0AC1BC5674385C2 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 20BA100C85EA53F9E47A90738553B93B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -10656,6 +10745,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 932B4983C4AFAC803EEEDFBA187A5FC5 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 93D55B3707CA4616896C291F6E39B27F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -10705,6 +10801,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 9FF07200459CBF6400AE6012D62B9AAC /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; A3CADA6C32CBDBF37F98BD5E8FC75224 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -10796,20 +10899,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C72C08D1200886957BFEC33E236F1014 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C760E470A50E195F142F42E64F253B90 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; C776EA7DEE83C80C61541C071CA8B739 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -10953,6 +11042,28 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ + 0006B39541FC5F6C5FAD983DB45F3AF4 /* Support Files */ = { + isa = PBXGroup; + children = ( + E93611FB0743BE052AED317714C0979D /* react-native-background-timer-dummy.m */, + ABF766A6608B4F5019108A0F5239DB36 /* react-native-background-timer-prefix.pch */, + AD19A60B1913122CEA2EAE013EEAF0EE /* react-native-background-timer.debug.xcconfig */, + 3CBA5AA9DF9571BF79ACE216CD05DCC0 /* react-native-background-timer.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-background-timer"; + sourceTree = ""; + }; + 00AB36D8F8E688351BDEE345396FB480 /* Pod */ = { + isa = PBXGroup; + children = ( + 8C0A897A9531DAA43E434EBE10498467 /* BugsnagReactNative.podspec */, + 6C4F0898E78E2ACB11DC727F6C23B13E /* LICENSE.txt */, + CB04EDD30E1301CB3E8CD2506B60FD7C /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; 00F68F3CA96F7AAB566786B5FCCB74CB /* FlipperKitNetworkPlugin */ = { isa = PBXGroup; children = ( @@ -10972,106 +11083,124 @@ name = FlipperKitNetworkPlugin; sourceTree = ""; }; - 018D33D95591FEFCE3D888044D77242F /* Pod */ = { + 0244BB2F40B9F184A59FE9C137652D71 /* Support Files */ = { isa = PBXGroup; children = ( - E5AF60035C8105B0AB56C0A99515E219 /* React-RCTText.podspec */, + C11ACF913DFC22CE3342B5D4223B037E /* UMCore-dummy.m */, + 9C4D51D385772E2BBF1A10656FD38C4D /* UMCore-prefix.pch */, + 217CC5108C143D5778890297EC62A091 /* UMCore.debug.xcconfig */, + 863AA3927423F2F05661F4E2C322C366 /* UMCore.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMCore"; sourceTree = ""; }; - 020990EB89C25BA58231AD3AC41CE5B0 /* EXConstants */ = { + 0256DA86107995D4F6CFE2ADD4DC5219 /* Support Files */ = { isa = PBXGroup; children = ( - 185BAEF4EA67ECDB3F3C8D8CB12A839D /* EXConstants.h */, - 59BC674A10587B8D18CDFE67FBC44D0A /* EXConstants.m */, - 88F12DA062AF850E2FEAED304CCAEE06 /* EXConstantsService.h */, - D12FAEB3375BBA04A0D84C42BE07D59C /* EXConstantsService.m */, - EE720B04417ED7A6A843DD8CC033D63E /* Pod */, - 79D60C94D7E15DA2E1870D398C0AE90A /* Support Files */, + D090FFC3A6677EA00EA2D10986C849BB /* RNRootView-dummy.m */, + 06FB1C009918F87DCAF4CA73FD1981E9 /* RNRootView-prefix.pch */, + 9A3744465D93ADBE55E87D06E7908F39 /* RNRootView.debug.xcconfig */, + D68BF64C928CF8F9FA95DD2E22073501 /* RNRootView.release.xcconfig */, ); - name = EXConstants; - path = "../../node_modules/expo-constants/ios"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNRootView"; sourceTree = ""; }; - 020FCC8A2D08F6E2944C080352B4F9CD /* RCTLinkingHeaders */ = { + 02A4650B3ECFEC23F6B6EE3B46F77670 /* Pod */ = { isa = PBXGroup; children = ( - 1EB7EBD62A5D30C9270951F92B4CBFC5 /* RCTLinkingManager.h */, - 0AF66D72B5D6952C34E6C65E90CF41F8 /* RCTLinkingPlugins.h */, + 1E31E7C42A736AA811225148861DEAB5 /* LICENSE */, + 2AD8AEC5CA9466B95D6D17824D198776 /* README.md */, + C840E94E1B75F5A9E424E49D786C3B0A /* rn-fetch-blob.podspec */, ); - name = RCTLinkingHeaders; + name = Pod; sourceTree = ""; }; - 02439B99DD007337C9941347BBCEE561 /* Support Files */ = { + 031177B186BE8B9277C645E37AE504F4 /* Support Files */ = { isa = PBXGroup; children = ( - 8A79536B310A95CADE2533A213CA0C89 /* React-Core-dummy.m */, - 291403C29A0DD0F75D8F868CDA327AB4 /* React-Core-prefix.pch */, - 7D73CFEE36A84DAC62307E1903F2E9B5 /* React-Core.debug.xcconfig */, - B822C39AA6B0EC03D3F6E42F67AB74BD /* React-Core.release.xcconfig */, - DA1F7258603E32301912920D04C84C57 /* ResourceBundle-AccessibilityResources-React-Core-Info.plist */, + 0BF31D6D34312892313B9FF6E2B8A82D /* FBLazyVector.debug.xcconfig */, + 81812F3C0F21D126D5A16101BD9C572B /* FBLazyVector.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React-Core"; + path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; sourceTree = ""; }; - 0462A743A4F1C4196A4EEA4D97A11A01 /* Support Files */ = { + 0366A0E3D7904A29B83F80BB4ED9D851 /* UMImageLoaderInterface */ = { isa = PBXGroup; children = ( - 716F3C697AD5F3B1BB43E1C1669F2F47 /* RNCAsyncStorage-dummy.m */, - C18FE588563165C2933D5F0BF859CE5F /* RNCAsyncStorage-prefix.pch */, - 1D03C8F4266CCCDE032C086B8FEE0576 /* RNCAsyncStorage.debug.xcconfig */, - 0947433F261E40A143BAE8448915BCE7 /* RNCAsyncStorage.release.xcconfig */, + 6578137872E379411808800649EA49BB /* UMImageLoaderInterface.h */, + 87F6E6C3621F20460B25F446BCDFF52F /* Pod */, + 19E1E1BA18BC6D3B54620C1E9EFDA2FB /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNCAsyncStorage"; + name = UMImageLoaderInterface; + path = "../../node_modules/unimodules-image-loader-interface/ios"; sourceTree = ""; }; - 04647071581DEFB44B352B1C83743FAF /* Support Files */ = { + 03DCF2B5EC9BAB67BF1794EEC733D623 /* RCTTextHeaders */ = { isa = PBXGroup; children = ( - 29180AE048012CD4589BA6C1AE87D9E1 /* RNUserDefaults-dummy.m */, - D78C16123F26867389FF7FE6E17714A0 /* RNUserDefaults-prefix.pch */, - 2A3EFED49392A9AF5CE0B7C48B7585F8 /* RNUserDefaults.debug.xcconfig */, - DCE28981DADFB136421AA01942EC8448 /* RNUserDefaults.release.xcconfig */, + D9A72ABCDBA4B8CD103B81B4E7E1C6EC /* RCTConvert+Text.h */, + 1C2AD21730EB81F558CE8F0BD5DA58E1 /* RCTTextAttributes.h */, + E21CE3623C1ADE5443172153BEF0D74B /* RCTTextTransform.h */, + AE969655F2E395E3A742F653A04FA2B7 /* BaseText */, + 9EF20BD72BED40DCE8825657F59CCCFE /* RawText */, + DD88E986A3B6EDD7EA97CFD477A20A59 /* Text */, + 557E16E8AA1F8839D5D34371384F82B3 /* TextInput */, + 64179BAC745F34EC3BEAF84F80507BF5 /* VirtualText */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNUserDefaults"; + name = RCTTextHeaders; sourceTree = ""; }; - 04B5697B02F482155572A4CFDA6317B2 /* Pod */ = { - isa = PBXGroup; - children = ( - 220CFA7BB31BB64689C9B1780ABDBE4F /* React-cxxreact.podspec */, + 03E9B522AAF719FA2E04BD4A04819D42 /* react-native-notifications */ = { + isa = PBXGroup; + children = ( + 6D68A81D97A3E938ED7D35F6C3F26021 /* RCTConvert+RNNotifications.h */, + 17DBFE1809576E6D19087F5102618D18 /* RCTConvert+RNNotifications.m */, + 9F822CDE094D1C8C018E2062E3B779C5 /* RNBridgeModule.h */, + EE35051464522271A5C22307E050997A /* RNBridgeModule.m */, + F029ED0DE948E3AC01C65D596DB484DA /* RNCommandsHandler.h */, + EF44745F305CE863A41DAA27DC7F42C5 /* RNCommandsHandler.m */, + 802676C5FD0A6126D30FB6E84F6578CC /* RNEventEmitter.h */, + A5E8B7591097E0D40C455828E434DF81 /* RNEventEmitter.m */, + 43F07B379BD885C4FF5A57CA1A3D4432 /* RNNotificationCenter.h */, + 93318E50298AE5B4F38C06E4D233A00E /* RNNotificationCenter.m */, + 9906551BAF3D78633755ADBE82C8358C /* RNNotificationCenterListener.h */, + 77F65EED22B827AFC5DFF6ACB681E47A /* RNNotificationCenterListener.m */, + 68B8869BA4FD8B650254062E2F75C239 /* RNNotificationCenterMulticast.h */, + 27F9B38B5B9B2A74D062B970A2C09F07 /* RNNotificationCenterMulticast.m */, + DF73C2F5D79B3487433A4311C145E2BC /* RNNotificationEventHandler.h */, + FFA10CD6CA2ECF2D559428B97B39584B /* RNNotificationEventHandler.m */, + 79CD570BD4BA96051EABBB9BDD906C4C /* RNNotificationParser.h */, + 5501FED9B119AFB062DB91EE6DF92B65 /* RNNotificationParser.m */, + 136FC5D5AF2F68E611ADC8A187889B10 /* RNNotifications.h */, + 4F434E7049538AD6A094CED1BBE590DB /* RNNotifications.m */, + 44BE3DE64D0ABB39CEFA333C566E8742 /* RNNotificationsStore.h */, + B07ACF687700BE6CBB826B6777AE4311 /* RNNotificationsStore.m */, + 8F2998A3D69D0A9390F653F636FFD01F /* RNNotificationUtils.h */, + 8309D824494C6089478E966E7B5F9930 /* RNNotificationUtils.m */, + 908527F5DA004C72A551B5C6E3617F90 /* RNPushKit.h */, + 4DF69A0F0F03B8024D9D140DC89FD7CB /* RNPushKit.m */, + 5BE5BB8AC74CA98538689C41899C713B /* RNPushKitEventHandler.h */, + E5E42148D2282BDD5993EB087B038CFE /* RNPushKitEventHandler.m */, + 890CEB8887D28B161E961BFB34BE5991 /* RNPushKitEventListener.h */, + 872B20A313FEBB2D2A17EDA1CD8A2D3F /* RNPushKitEventListener.m */, + 1AA4ACEF4A6D359C87FD8F94C0A86293 /* Pod */, + 6D203A631EAD9684B7256736DF9C2289 /* Support Files */, ); - name = Pod; + name = "react-native-notifications"; + path = "../../node_modules/react-native-notifications"; sourceTree = ""; }; - 05B433B8D43BC4D387758804FC5589CF /* QBImagePickerController */ = { - isa = PBXGroup; - children = ( - 3DA8CD2ADE38BEC0F03627AEB3D60909 /* QBAlbumCell.h */, - A60EE0DC677F9126D19E38CA9E8F4FF4 /* QBAlbumCell.m */, - DB4EC185D4DEECB11ACB8223DAF9535F /* QBAlbumsViewController.h */, - DC57DD111EE87C957BED6D9A2B4AB339 /* QBAlbumsViewController.m */, - 9372BF2C4DCE7E376A2E15DAC6D4411B /* QBAssetCell.h */, - 693DE983F60B78C8C8C81442F39063F1 /* QBAssetCell.m */, - 16068D73A49A5A26BFF88CA416CE054C /* QBAssetsViewController.h */, - F4E4005F48DF332C4BEE1AA75C1D0839 /* QBAssetsViewController.m */, - 967230DF1C3FE2DD0BD4851B40CCC5B4 /* QBCheckmarkView.h */, - 29997E0EDEA534599D64FBD8CEE9D72E /* QBCheckmarkView.m */, - 7E45DD511DE41E270A3D52A6002B9DFF /* QBImagePickerController.h */, - A77252654B46B877F690EA895ABFECCC /* QBImagePickerController.m */, - 8C2AB648E07B7960F35B28879CE8FD53 /* QBSlomoIconView.h */, - 29655C07B10B5DF828A770A0A321F2B9 /* QBSlomoIconView.m */, - CF478C7810D07EA971A338A7AACCE201 /* QBVideoIconView.h */, - 80BAA64760F434809E497C3D06BC1AA8 /* QBVideoIconView.m */, - 667EEE31AFE56D70450BB1D7C58C7104 /* QBVideoIndicatorView.h */, - FC71A00FA060F57793E94E9200EEB2D7 /* QBVideoIndicatorView.m */, - 28FDD33D3CBAD949F72F588E5555896F /* Resources */, + 061D520D492821331AC24D7B948E938D /* BaseText */ = { + isa = PBXGroup; + children = ( + B10AABC42F01ECC08694EA8D96B811F6 /* RCTBaseTextShadowView.m */, + ED6B0CF53AAB7617488E10EAEF696A27 /* RCTBaseTextViewManager.m */, ); - name = QBImagePickerController; + name = BaseText; + path = BaseText; sourceTree = ""; }; 064063514E3B00B43000EAAB7F8805C2 /* GoogleUtilities */ = { @@ -11091,27 +11220,54 @@ path = GoogleUtilities; sourceTree = ""; }; - 0658AB779FF9F97487CCDE791507BEB8 /* Pod */ = { + 064F2AD3BFAB9A35A1D7B601A69540E0 /* React-callinvoker */ = { + isa = PBXGroup; + children = ( + 7CACF8B58F8A7D830F5B5D1D45BCF6FE /* CallInvoker.h */, + 180686BD0EAFF97FA068D138FBF37876 /* Pod */, + 418FE2A66404BD2759CB8E4FF7F01AE4 /* Support Files */, + ); + name = "React-callinvoker"; + path = "../../node_modules/react-native/ReactCommon/callinvoker"; + sourceTree = ""; + }; + 0678ED63219C0AE9FAD353B7CD69D9C8 /* Support Files */ = { + isa = PBXGroup; + children = ( + 7697E9F6CDD33F2DE63224CF17384CE9 /* RNReanimated-dummy.m */, + D364C8D0E86B50A066A7473E6C6C5739 /* RNReanimated-prefix.pch */, + A2B73EA0D540C759D83C4600F35E43F4 /* RNReanimated.debug.xcconfig */, + AC4B5139E782DBEAA9EC3A547A70A15C /* RNReanimated.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNReanimated"; + sourceTree = ""; + }; + 074C1E67A0EB0E643B0820C31B108F9D /* Pod */ = { isa = PBXGroup; children = ( - C3228E4AB9503EF03C33153392E16F3D /* React-CoreModules.podspec */, + 8689200E66B48FA97BD34CF6758E2C71 /* React-RCTNetwork.podspec */, ); name = Pod; sourceTree = ""; }; - 067261FEA7E09A98BD0B844DF260779B /* Resources */ = { + 08108013DA1D6977475E2A7774802A9E /* UMAppLoader */ = { isa = PBXGroup; children = ( - CB65047EC0D46C0C4412606BF0EF6382 /* en.lproj */, + 96E754743729641DCA959EB39FEE4CCD /* UMAppLoaderProvider.h */, + 043F2F9D122F7DFB997AE801BE095FF6 /* UMAppLoaderProvider.m */, + ABEC7B9326DA2E0FA53EAAD27FF3A64B /* Interfaces */, + AF6ACCF8321D76BC51775CC33C2F797A /* Pod */, + C5FD39AE22525A25A409D0CB90C509CA /* Support Files */, ); - name = Resources; + name = UMAppLoader; + path = "../../node_modules/unimodules-app-loader/ios"; sourceTree = ""; }; - 081AD769DA1E0BEBB35CF1D64652E4BF /* Pod */ = { + 081EDB5D48027559C84DE6F37E4C00CD /* Pod */ = { isa = PBXGroup; children = ( - FD4075D0EEA2E39293F1F66F46F392E7 /* README.md */, - 3AC7F5E3C53487CC69587AE984C032B5 /* RNRootView.podspec */, + 6FF4287B9CA2CD7F333D68798C9D4CC5 /* UMBarCodeScannerInterface.podspec */, ); name = Pod; sourceTree = ""; @@ -11126,26 +11282,51 @@ path = "../Target Support Files/Firebase"; sourceTree = ""; }; - 08682B9BA15D62C558A160E35616C1FF /* FBLazyVector */ = { + 0870E473CB28BF6F12C943E7180472B2 /* Support Files */ = { isa = PBXGroup; children = ( - 27868615EED7FE5E782EA23128323EC7 /* FBLazyIterator.h */, - 3C46A327592F5EEDA786FC0DE9D33BD1 /* FBLazyVector.h */, - 59DAB20FD51511AF0FAA8311AED4169D /* Pod */, - 1A7492250E4F685890CBC6B189DDCC9D /* Support Files */, + 0AC2886B8F45376ABE29A475FF5916DE /* EXLocalAuthentication-dummy.m */, + BF2B461FFB034141F0EDFD0FCB7A8445 /* EXLocalAuthentication-prefix.pch */, + 49415B13A51EC366AA17D94B2ED00D25 /* EXLocalAuthentication.debug.xcconfig */, + 8A564A141A9AE2E73F2C52C8CFAF09C0 /* EXLocalAuthentication.release.xcconfig */, ); - name = FBLazyVector; - path = "../../node_modules/react-native/Libraries/FBLazyVector"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXLocalAuthentication"; sourceTree = ""; }; - 09BC231BC33642E4F1EF9D729A3DB32B /* Pod */ = { + 09880E9385A862D423A5BBC74AB27DEB /* React-RCTAnimation */ = { isa = PBXGroup; children = ( - EDF912ABCDBE2A977D8EBBB859A99FC2 /* LICENCE */, - C4666EF3E75689F621B347AB37C0D8D4 /* react-native-cameraroll.podspec */, - B9097B61709ED3382E63E974A9751CF4 /* README.md */, + 9F444D3A41C282D1D574A988EB8C947D /* RCTAnimationPlugins.mm */, + 7E7642FD0CE4C41C67F9173673094B60 /* RCTAnimationUtils.m */, + ABB372D5CE9737CFB8A445BF5F3A4510 /* RCTNativeAnimatedModule.mm */, + 71235E00DAD096AE8A107B377E20AEBA /* RCTNativeAnimatedNodesManager.m */, + 57DE5C0CA7195DAFAD25B8B708560C25 /* Drivers */, + 929B9CB2C1ED2F8F0116F7C0B6D55BA1 /* Nodes */, + 3E6944384DB861AF1DAE6268CD163456 /* Pod */, + C93B45B6A61FB4DF946AFD369879E45D /* Support Files */, ); - name = Pod; + name = "React-RCTAnimation"; + path = "../../node_modules/react-native/Libraries/NativeAnimation"; + sourceTree = ""; + }; + 0996A9E9776F7E9B1025CF61277B83DD /* RNImageCropPicker */ = { + isa = PBXGroup; + children = ( + C9B671744E30424E7E777FD565C6D663 /* Compression.h */, + 0053459BC93354C408781F87E305F368 /* Compression.m */, + D6185F90FAD1A154AEE236615FCE7187 /* ImageCropPicker.h */, + 107127227797BA3A486AC0727D14E335 /* ImageCropPicker.m */, + 236FD4D356B59ECC08083CA689F814B6 /* UIImage+Extension.h */, + 9A2F720A66EB9BABFED4F0746D5D8628 /* UIImage+Extension.m */, + 6B714D211FC05323C8DA4F3D8B11F04E /* UIImage+Resize.h */, + 74AE01A5E95738B5A672C5BD0D6D891A /* UIImage+Resize.m */, + 2BFE7AF79A3E5EE804C0A9CD3E0F9141 /* Pod */, + A7AB409C41648AA7F047469806C9CD6C /* QBImagePickerController */, + 8A4F5D8FDD136432C3F53455464CA5EA /* Support Files */, + ); + name = RNImageCropPicker; + path = "../../node_modules/react-native-image-crop-picker"; sourceTree = ""; }; 09C419BA6D386182A7C79CD116CA449D /* decode */ = { @@ -11155,44 +11336,47 @@ name = decode; sourceTree = ""; }; - 0B8020C2C440930142E6FAF69A94AEAA /* react-native-appearance */ = { + 0A0642AEF1ADB6C1D73B96B44F93B3BD /* Pod */ = { isa = PBXGroup; children = ( - 83CDE58D5FBF2A177AD8AF13164513D9 /* RNCAppearance.h */, - B69C7C00A5732F511B0954ABCC50E172 /* RNCAppearance.m */, - B5D066D4EAC03BAF75BB78CB74A7002E /* RNCAppearanceProvider.h */, - 1B7CCA9413A61AE736F636A5E68E6543 /* RNCAppearanceProvider.m */, - 1B91E14DDB92EF245CC0042F0DEA2139 /* RNCAppearanceProviderManager.h */, - B07A26A7DFBB35CA9A90B48E8286C628 /* RNCAppearanceProviderManager.m */, - 2173DE4FDFFDDE865AF9F0E8800EC798 /* Pod */, - A971D6BBBE4397DDC0D17D80C7908A1D /* Support Files */, + A006EF98F9A04DB3992598CA5A7CBC4C /* React-jsi.podspec */, ); - name = "react-native-appearance"; - path = "../../node_modules/react-native-appearance"; + name = Pod; sourceTree = ""; }; - 0C57CE8FD5DC879AE192FD0131573BA5 /* React-RCTAnimation */ = { + 0ADAFBAA71233146DFCEC47D0A470F22 /* React-RCTActionSheet */ = { isa = PBXGroup; children = ( - 7150100752089D9774B67052D2CEF1A0 /* RCTAnimationPlugins.mm */, - EE164727FB3FEFEEDC309301CC6174B4 /* RCTAnimationUtils.m */, - 0F93F0F3ADC3C7B0D33D69D20687F0EB /* RCTNativeAnimatedModule.mm */, - 364DB5BD16873F10FAC67C82E3C633C9 /* RCTNativeAnimatedNodesManager.m */, - 5584C24562BE167C7F77F485B6734D62 /* Drivers */, - 37ECEC8255A0B4B2CEA56751FC24C29B /* Nodes */, - 982F2E02769AFCE8F0F7E60FFE924BF4 /* Pod */, - E3439D30DC54F3B49C6C0139E44F596E /* Support Files */, + BBDA5E8FE97FEA5D5DC0034DE6AE9ABD /* Pod */, + 5C3122342FBF5E9BEC825B615B0F3084 /* Support Files */, ); - name = "React-RCTAnimation"; - path = "../../node_modules/react-native/Libraries/NativeAnimation"; + name = "React-RCTActionSheet"; + path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; sourceTree = ""; }; - 0CDF9BB12CC29063052CF727143AFEB5 /* Pod */ = { + 0CDDDF9DF102E5F1DECC51313C846306 /* Support Files */ = { isa = PBXGroup; children = ( - 6F7B6C5BED3609A2F34807DDE18A1C0A /* EXVideoThumbnails.podspec */, + 8D7FCCDD87EBD1FD593954249061ED13 /* RNFastImage-dummy.m */, + 71479BE2B9D276F9C4D000D97DECA76B /* RNFastImage-prefix.pch */, + F3611D92CEB634663616E523EA33E6E6 /* RNFastImage.debug.xcconfig */, + B7E12A532E80DAD7CAF5F1DEF2B00FD6 /* RNFastImage.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNFastImage"; + sourceTree = ""; + }; + 0D19000DF4A7B92A2F2469AAE2DE5E96 /* RefreshControl */ = { + isa = PBXGroup; + children = ( + 923D9FA5FAB28A78DA172A5126E48EAE /* RCTRefreshableProtocol.h */, + F37FE0D11A848EF44ADBF866D71C50E8 /* RCTRefreshControl.h */, + 2F3B2DF0F219B0340B81B5D0D197F591 /* RCTRefreshControl.m */, + FA59E6FDE411F774347552C29C245699 /* RCTRefreshControlManager.h */, + F582E7DAF77D62316B8073919E010470 /* RCTRefreshControlManager.m */, + ); + name = RefreshControl; + path = RefreshControl; sourceTree = ""; }; 0D61EF3FAFF2B3F1D683D382A1D1EE55 /* Frameworks */ = { @@ -11204,6 +11388,14 @@ name = Frameworks; sourceTree = ""; }; + 0D9EA013ABB2CFE198CC8F61BF1AA2AB /* Pod */ = { + isa = PBXGroup; + children = ( + B4294E52C539D454750D9B0938D809D4 /* EXAppleAuthentication.podspec */, + ); + name = Pod; + sourceTree = ""; + }; 0DFC34218C4D7364D7F6E022B9D192C4 /* Support Files */ = { isa = PBXGroup; children = ( @@ -11214,6 +11406,37 @@ path = "../Target Support Files/GoogleAppMeasurement"; sourceTree = ""; }; + 0E24A58163C0747F619838AF67195B37 /* RNCAsyncStorage */ = { + isa = PBXGroup; + children = ( + 076D3EA7E0B8432BF89900593652642B /* RNCAsyncStorage.h */, + F71C4DD1A555DEA9B29555448E4589B4 /* RNCAsyncStorage.m */, + 05C0A0F2BB5834C888BB920A307B7834 /* RNCAsyncStorageDelegate.h */, + 2CA94EB3358FE5ED0FBB0E8E528109EC /* Pod */, + EF3A96D537417B2B7B9795B7FACCD61B /* Support Files */, + ); + name = RNCAsyncStorage; + path = "../../node_modules/@react-native-community/async-storage"; + sourceTree = ""; + }; + 0E7505F79546191433B206B035610A31 /* CxxBridge */ = { + isa = PBXGroup; + children = ( + 2B8E9B0B5F4190EA607859DE9971A46E /* JSCExecutorFactory.h */, + 1F8E0B6C6AB264CBFDAFD180F1089F15 /* JSCExecutorFactory.mm */, + 529CE6A50D1AA01EDF1A567ECE96D59A /* NSDataBigString.h */, + 5F258FBDC8ECC96EC47F227E7B4B017D /* NSDataBigString.mm */, + 3DFE41690BE5311A54AF49FBB8FCF1F8 /* RCTCxxBridge.mm */, + 637992891B88468DF034BC2F9D460507 /* RCTCxxBridgeDelegate.h */, + 60881A4699573C8909A7CA531AABBB16 /* RCTMessageThread.h */, + BE962801C192A4B5C58CC93EE76E4BDC /* RCTMessageThread.mm */, + FF59C8D26BDF413CFCB74B2A2F3EB674 /* RCTObjcExecutor.h */, + F4553F99B9236CA4FE8D7DB5CBC4FEF3 /* RCTObjcExecutor.mm */, + ); + name = CxxBridge; + path = React/CxxBridge; + sourceTree = ""; + }; 0F298455C87F63B744841A4930CEA3D2 /* Environment */ = { isa = PBXGroup; children = ( @@ -11231,25 +11454,42 @@ name = Environment; sourceTree = ""; }; - 1132634C493EEAAD85ABB986608F2B98 /* RCTRequired */ = { + 106A226CFB45862E4FC60F84CFDE75C9 /* Pod */ = { isa = PBXGroup; children = ( - 2BA50BEB85CDEB7F710F384F38314E47 /* RCTRequired.h */, - 5A567CED4BD63F9323491BF6F6227315 /* Pod */, - 79EE71B5295318175FD84A54CD7371FF /* Support Files */, + D76B06F6DA1498FACE20667A5C1E2891 /* React-RCTVibration.podspec */, ); - name = RCTRequired; - path = "../../node_modules/react-native/Libraries/RCTRequired"; + name = Pod; sourceTree = ""; }; - 1173600D3DE88233614795BB1EF16817 /* ReactCommon */ = { + 11B72E7F191C747C8F137B2CB2C811B1 /* EXKeepAwake */ = { isa = PBXGroup; children = ( - BEBA3B74BC5BAA9E0F95DCA2577816CC /* Support Files */, - C610E38D1B5E9E89D61019E959B25EFD /* turbomodule */, + 41FEC350545872E7FD4A4DADB3F554D9 /* EXKeepAwake.h */, + 33908E4F998C3F161A63C4BD11574B38 /* EXKeepAwake.m */, + C178366101C578179E0A01B0E8DB0239 /* Pod */, + 6E337B39E082B352EC671C3D5A69951A /* Support Files */, ); - name = ReactCommon; - path = "../../node_modules/react-native/ReactCommon"; + name = EXKeepAwake; + path = "../../node_modules/expo-keep-awake/ios"; + sourceTree = ""; + }; + 1225C4193925BE77CC0177E46ED84DB6 /* Pod */ = { + isa = PBXGroup; + children = ( + 0A4B1F642CA854C8175A0F5065AA58FE /* LICENSE */, + ACA8BCB84BD9F477015E416BBA05F548 /* react-native-background-timer.podspec */, + 243999533427048349742E4C8497F63D /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 1252E1C27D070AD2DB4F75489CD0A4C5 /* Pod */ = { + isa = PBXGroup; + children = ( + 7BDA990D769C1F9652C22C9B51D071AF /* React-CoreModules.podspec */, + ); + name = Pod; sourceTree = ""; }; 12608368C25577A631F7BD0763342EC1 /* CocoaLibEvent */ = { @@ -11293,71 +11533,58 @@ path = CocoaLibEvent; sourceTree = ""; }; - 131E2D36D95DFD87D98274780ED9F3D3 /* Support Files */ = { - isa = PBXGroup; - children = ( - 0F12B59F9DF6782E82843788360369FA /* react-native-jitsi-meet-dummy.m */, - 4909A17F606A67E1707ECB15C3A11DB5 /* react-native-jitsi-meet-prefix.pch */, - 523DF1DDD948533ECC09FAD0FFA44732 /* react-native-jitsi-meet.debug.xcconfig */, - 525880D7321AB021C70521B79D0DB240 /* react-native-jitsi-meet.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; - sourceTree = ""; - }; - 132C5EDCC1EBBFB19094F9612AF936DE /* Support Files */ = { + 151C882D56B321589445726242E6E87B /* Pod */ = { isa = PBXGroup; children = ( - 22269C4A96526A43CA43EDFCCB2ADD22 /* EXLocalAuthentication-dummy.m */, - 41F067803700B21CF695E473B8C9FD00 /* EXLocalAuthentication-prefix.pch */, - E11152178C28AA50B47376E8919D4805 /* EXLocalAuthentication.debug.xcconfig */, - E00C04F111934CCA0CF49B66116F31AF /* EXLocalAuthentication.release.xcconfig */, + 9BDE64646D9D223282E0F76784510950 /* LICENSE */, + 6E8E6FA764B270BAD55E35CB4CD25211 /* ReactNativeKeyboardInput.podspec */, + EE642C82B7E7982C5E9BBED1469B2EDC /* README.md */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXLocalAuthentication"; + name = Pod; sourceTree = ""; }; - 14384A404F6A82EE191D0ABD4CE5EA2E /* Support Files */ = { + 153A67AABD9B5F612CCD8279E501EA9D /* FlipperKitUserDefaultsPlugin */ = { isa = PBXGroup; children = ( - FE34BBB59F6F1F6F957581C6CF9D2859 /* UMPermissionsInterface-dummy.m */, - E7D92EE151CD8CF5103DD3EA12B62582 /* UMPermissionsInterface-prefix.pch */, - C99A858C6E2FA0F9908159864A40BD93 /* UMPermissionsInterface.debug.xcconfig */, - E377BFD509F53255A0906A3F5D3E2721 /* UMPermissionsInterface.release.xcconfig */, + 7571DC76DC3EADDE963E586E138F8C14 /* FKUserDefaultsPlugin.h */, + 57BD096A0AB10042760B13F762F639AA /* FKUserDefaultsPlugin.m */, + C0BC53810B2EF06324FB8E91968ED00E /* FKUserDefaultsSwizzleUtility.h */, + D4EBA7BFD322A0C942FE9C93C965A06A /* FKUserDefaultsSwizzleUtility.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; + name = FlipperKitUserDefaultsPlugin; sourceTree = ""; }; - 1451A97A0001C25D77E8240BF1027FEE /* Pod */ = { + 155A016203AD2BE722BC59673366A7B3 /* react-native-background-timer */ = { isa = PBXGroup; children = ( - AB4060BE11A773B16711180C44F6FFA0 /* UMSensorsInterface.podspec */, + 5EF4589BC79F087487F8DB953CEF5DE0 /* RNBackgroundTimer.h */, + BC7F1DCD2BB3AEC13C0DB73A0DBE7B2D /* RNBackgroundTimer.m */, + 1225C4193925BE77CC0177E46ED84DB6 /* Pod */, + 0006B39541FC5F6C5FAD983DB45F3AF4 /* Support Files */, ); - name = Pod; + name = "react-native-background-timer"; + path = "../../node_modules/react-native-background-timer"; sourceTree = ""; }; - 153A67AABD9B5F612CCD8279E501EA9D /* FlipperKitUserDefaultsPlugin */ = { + 16892D053FF6FA83D367F27B11CA8A87 /* vendor */ = { isa = PBXGroup; children = ( - 7571DC76DC3EADDE963E586E138F8C14 /* FKUserDefaultsPlugin.h */, - 57BD096A0AB10042760B13F762F639AA /* FKUserDefaultsPlugin.m */, - C0BC53810B2EF06324FB8E91968ED00E /* FKUserDefaultsSwizzleUtility.h */, - D4EBA7BFD322A0C942FE9C93C965A06A /* FKUserDefaultsSwizzleUtility.m */, + 21F179542E735D9228C030EBA51E5145 /* bugsnag-cocoa */, ); - name = FlipperKitUserDefaultsPlugin; + name = vendor; + path = cocoa/vendor; sourceTree = ""; }; - 16448E64E5DDA987F164C322DD32FFA4 /* Support Files */ = { + 16E7E525916182F514459FF0C06D78A0 /* rn-extensions-share */ = { isa = PBXGroup; children = ( - 44B5F12FE1FB7D76171891F7BDEB9249 /* rn-fetch-blob-dummy.m */, - D3D252E98E5FDE432A51D5F0430640A3 /* rn-fetch-blob-prefix.pch */, - BACA52C24099F0800D61CF1C7A6C4588 /* rn-fetch-blob.debug.xcconfig */, - B97B2D7FE0E734635F61FB19F658FC9D /* rn-fetch-blob.release.xcconfig */, + 552B5AE4793D8570E20AA5B8F2F65955 /* ReactNativeShareExtension.h */, + 9F6BEB4055793CCB7C6172EA559CC5F8 /* ReactNativeShareExtension.m */, + A3D3C918C2964DA86E58B203A6C7B509 /* Pod */, + D70C3AF5E2C38D08253FA1D391BDE3E2 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; + name = "rn-extensions-share"; + path = "../../node_modules/rn-extensions-share"; sourceTree = ""; }; 1733B28C33F4DD608639D5BC1749EC61 /* Frameworks */ = { @@ -11368,160 +11595,193 @@ name = Frameworks; sourceTree = ""; }; - 17806737AB8843ED205E379A08CA1644 /* Support Files */ = { + 17D3D82AB170D0288E41DA0DF0B62B79 /* Pod */ = { isa = PBXGroup; children = ( - 9A493FF5ECE799F8773951B83D84B40D /* UMCore-dummy.m */, - 944B0F7A57C59A4360F98042BF96033F /* UMCore-prefix.pch */, - B511866C557FC6A4878CDC484356D0FC /* UMCore.debug.xcconfig */, - 6FF883FD05920DC5D11E10AF337F704F /* UMCore.release.xcconfig */, + 07BC4EDA3A475A9BD824CAFFE65DD55F /* EXConstants.podspec */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMCore"; + name = Pod; sourceTree = ""; }; - 18359D1111542D66AA1CB21E6D2E2F97 /* Pod */ = { + 180686BD0EAFF97FA068D138FBF37876 /* Pod */ = { isa = PBXGroup; children = ( - 99D6277633D0745518D5EEC9BB5A6D08 /* LICENSE */, - D5479F3E9496239A6874B908FAA082AB /* README.md */, - B30BA0A1F6C0B36295ADD9637D5CFBC5 /* rn-fetch-blob.podspec */, + 413028C3C5E2B752075152AF51366072 /* React-callinvoker.podspec */, ); name = Pod; sourceTree = ""; }; - 1887F8269500AA16A6D4C5127842BF96 /* Support Files */ = { + 1899799F66FB9B24298DE6350EB3E8D6 /* Transitioning */ = { isa = PBXGroup; children = ( - D76481BA42895BBC55EF6913C8B9C0ED /* EXAppleAuthentication-dummy.m */, - D8978B41EC5C42C72E39B57CDB731BFC /* EXAppleAuthentication-prefix.pch */, - E4E480D3B09BDBA497547A283A7D0910 /* EXAppleAuthentication.debug.xcconfig */, - 562358291754429BDABD830DBC6BBD5B /* EXAppleAuthentication.release.xcconfig */, + E0D3185E9B9ED81AE6A967F184C4E85F /* RCTConvert+REATransition.h */, + 303B76A3D04E7EC197F1AEDD588AA249 /* RCTConvert+REATransition.m */, + 794C3ECDE8D6E9B7864EFE85EAC61DAB /* REAAllTransitions.h */, + DF1A2A0B4ABEDE7D1B83B70C9D501033 /* REAAllTransitions.m */, + D1E79E6F6FDF19F1F5B2BD6EAA6D9D52 /* REATransition.h */, + BBE64EAC86AAD07687903A83625329E5 /* REATransition.m */, + 65C716B737F4B5AA85697C6B64D367C5 /* REATransitionAnimation.h */, + 83C64848A6D74DA14B223DE3F25EF91F /* REATransitionAnimation.m */, + F7E55FC00988149092B431815A21CD4A /* REATransitionManager.h */, + 13200C5ADF1D0A9A9F65306FFCCECB5E /* REATransitionManager.m */, + 11D56C52FE9A22F7C57314DE2C964560 /* REATransitionValues.h */, + E730675AAB732A6CCCC0310FD153F641 /* REATransitionValues.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAppleAuthentication"; + name = Transitioning; + path = ios/Transitioning; sourceTree = ""; }; - 191D63BC3A7EA57DC5CB946DBA905BCA /* Support Files */ = { + 198C9B3305EE84E5BD605CDD4A440F0C /* Pod */ = { isa = PBXGroup; children = ( - A846D19AFA9BD80524577EBBBF4AC156 /* React-jsiexecutor-dummy.m */, - A6FC1CFFB5DC32295F20E44DCDB47E96 /* React-jsiexecutor-prefix.pch */, - 6F0A2A0EF0637CF3EFB74B0D6111D57D /* React-jsiexecutor.debug.xcconfig */, - 996461F103F45D5BE5529D84D47528FC /* React-jsiexecutor.release.xcconfig */, + E4665E42C91A0BBA65B64FD5984069A4 /* React-Core.podspec */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; + name = Pod; sourceTree = ""; }; - 19408177D9DC1BB97679E92263D03552 /* Support Files */ = { + 1996B8333FE30A311A73487010F01A52 /* RNFBAnalytics */ = { isa = PBXGroup; children = ( - 360D75EE7718C8B5E7E91509B0499EBF /* react-native-cameraroll-dummy.m */, - 6E7106C969A9FE906A20816086BFA5F8 /* react-native-cameraroll-prefix.pch */, - 158702D57A31386B362AC76FE0879CDB /* react-native-cameraroll.debug.xcconfig */, - 1EA92D5997FAF3B0BDE7E6B06A1D7A44 /* react-native-cameraroll.release.xcconfig */, + 3B70C3FFB9A542E89A07BCD05F261CD4 /* RNFBAnalyticsModule.h */, + C247A99D32C548B14F4AC5661F2AEFB0 /* RNFBAnalyticsModule.m */, + E5AC3C688F5A7D30AFC84D4F740D3F33 /* Pod */, + 2F7A5A6937E808B9E20CC0F0FECFCAB2 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; + name = RNFBAnalytics; + path = "../../node_modules/@react-native-firebase/analytics"; sourceTree = ""; }; - 1A5DF7367F074772C94D37C6F61C8E1B /* React-RCTText */ = { + 19C53D749B2A50E4E5A240E0EDE258FA /* UMTaskManagerInterface */ = { isa = PBXGroup; children = ( - 36BE1D0F231B6C4F5E25643D57EBD82F /* RCTConvert+Text.m */, - 4546FAAB66769B385F1C10B5D17AB782 /* RCTTextAttributes.m */, - 9010A7105BC48189E294F1431A4E5B44 /* BaseText */, - 018D33D95591FEFCE3D888044D77242F /* Pod */, - AF62EFE1CA11C259AB282459299AEFA7 /* RawText */, - 9349E9949AEF880C821F966FD23DE4E0 /* Support Files */, - 63F237A2177E17E1A0193BC4A8CE74C4 /* Text */, - D28205F4D052F6DFED609E76D144048F /* TextInput */, - 8FB2BB756416D5422C7A5CBFC24CD256 /* VirtualText */, + BE3B58E833213B298F389965FC69C3F7 /* UMTaskConsumerInterface.h */, + 2B9D8360A88D0731FD11E0F3F22A9AAC /* UMTaskInterface.h */, + 5E75B1F60EB891E8C1055C9E86AF73AB /* UMTaskLaunchReason.h */, + 6D98FF59BA6085025D931D020A9F2582 /* UMTaskManagerInterface.h */, + 1C4E06ABA855E2C575357801F3FA5911 /* UMTaskServiceInterface.h */, + 78DBB33D0FD33B87CFDA15F589B959C3 /* Pod */, + AE519D9B3F8CDC1537342417BA2AF038 /* Support Files */, ); - name = "React-RCTText"; - path = "../../node_modules/react-native/Libraries/Text"; + name = UMTaskManagerInterface; + path = "../../node_modules/unimodules-task-manager-interface/ios"; sourceTree = ""; }; - 1A7492250E4F685890CBC6B189DDCC9D /* Support Files */ = { + 19E1E1BA18BC6D3B54620C1E9EFDA2FB /* Support Files */ = { isa = PBXGroup; children = ( - 9BFB858FFCD75C16524DAE41E50EDA6C /* FBLazyVector.debug.xcconfig */, - F10320087A957C5D7E95D07242064BE2 /* FBLazyVector.release.xcconfig */, + C92D2F1E221B70EF17DB12920D92AC56 /* UMImageLoaderInterface.debug.xcconfig */, + 20ECC9838D9057350279484544C6F8EB /* UMImageLoaderInterface.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; + path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; sourceTree = ""; }; - 1B0A308C600B2BD4046EBEE75BFCACC4 /* React-jsinspector */ = { + 19E9E832F7FA35D03B6EA64D45C46FE3 /* Support Files */ = { isa = PBXGroup; children = ( - F82DAB0168C9A616529AA60F814D8381 /* InspectorInterfaces.cpp */, - 63B24C00CC5FBFF0104C5CEAF26E85CD /* InspectorInterfaces.h */, - B34FBD1B460804386117F4B2909A7B93 /* Pod */, - 45F8461B437A185AB847ED051991025F /* Support Files */, + 18D5D45983DCB0B7EBFFE1A3924B2913 /* RNDateTimePicker-dummy.m */, + E83A0018AC47871512C75D143056F1B4 /* RNDateTimePicker-prefix.pch */, + F886F3E1A07C2D55200725FC5237857B /* RNDateTimePicker.debug.xcconfig */, + A6C598973F0ED3E9D576B49F2421842E /* RNDateTimePicker.release.xcconfig */, ); - name = "React-jsinspector"; - path = "../../node_modules/react-native/ReactCommon/jsinspector"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; sourceTree = ""; }; - 1B9E0DF4E627A0DE58E5C07A1B1F36D0 /* Video */ = { - isa = PBXGroup; - children = ( - 05EDC5EF4F7A61CC4C83B5623AB8466D /* EXVideoManager.h */, - 4A9B577A6378CE182C205BF8D566C836 /* EXVideoManager.m */, - 5D28A2F85BE3CAEE42670EA684A59DB8 /* EXVideoPlayerViewController.h */, - C8972C8A0470C9BC3219DA4032A09601 /* EXVideoPlayerViewController.m */, - 428B8F140F25393AF875A94951A154F9 /* EXVideoPlayerViewControllerDelegate.h */, - CF8DCCE23CDBAB54A36458A4E4D5EADB /* EXVideoView.h */, - AAB51BAD1D7EB7BB5508094F794F42BD /* EXVideoView.m */, + 1A6221E9EC5690E560E82986DD239BFB /* Yoga */ = { + isa = PBXGroup; + children = ( + F0ACB1CC1FA83E32826A4E6A0D15CD93 /* BitUtils.h */, + 79D97CB9F7F1AA3F40B0E4514F18A9CD /* CompactValue.h */, + BEEB80E752CC0E9C816577072F114016 /* log.cpp */, + DC58FAC6156E3B40E662C704400396C5 /* log.h */, + 0B7D0F11B0A71174BAFD88CFA5950E20 /* Utils.cpp */, + 2906C60C0A8B4FABE04A66BE81678F30 /* Utils.h */, + 0BA46C38C51AF2E70BD00F58F20CF2E6 /* YGConfig.cpp */, + 868FE5B287B4AA1A630B83060B377279 /* YGConfig.h */, + 18DAC6E16E8080631EB6D2F47338C8AD /* YGEnums.cpp */, + 65500049A3CBC85DC85FA8B86E2E5386 /* YGEnums.h */, + E98474B5BD1600E5D6C37DF8ADCBC991 /* YGFloatOptional.h */, + 3863BCDA0530CDBFFCA7F3622938626C /* YGLayout.cpp */, + 2EA8E7DCF2FD3A1D4EC6ED370230B5CC /* YGLayout.h */, + ECDD46BC09EBF203E065670B5970016A /* YGMacros.h */, + 5654572C0C76ED72D843423BC53FDB2B /* YGNode.cpp */, + C3631283E0B72E97696BC4640B59714A /* YGNode.h */, + 31CE3BDD8A26CAAD64FBC7859195CEE6 /* YGNodePrint.cpp */, + 607457D0A961DDC14098EE5D02B34596 /* YGNodePrint.h */, + 6BA80AF2106B7988E623EFAE7E9E025D /* YGStyle.cpp */, + 6AC419DDB9DFB6EC1AFE3DC972AC5122 /* YGStyle.h */, + 067AD4EBE0EC673E70438BE05CE3906F /* YGValue.cpp */, + 804E80C6B7478B90161E0F4DEEEEEC6D /* YGValue.h */, + D1903DC187C0ECED2E7D9ED05B3D1E87 /* Yoga.cpp */, + F15426F1ECD9F5E4AB1E1E56F6259DEC /* Yoga.h */, + FF0579425922168F1752FB15EA132CBC /* Yoga-internal.h */, + 60C9D45E0FE0520C1716B02B9E224CC5 /* event */, + C93C5B52ED12C5260DE4D6861807DA6A /* internal */, + 698D538C19DBE6E25160D499BAAC6A56 /* Pod */, + 70955143795B9AD713B32F9417DD0635 /* Support Files */, ); - name = Video; - path = EXAV/Video; + name = Yoga; + path = "../../node_modules/react-native/ReactCommon/yoga"; sourceTree = ""; }; - 1BAB352DD59812C7A38695712309A98B /* RCTNetworkHeaders */ = { + 1A9ED1A88E7EC50CC2D3D04635931E6D /* lib */ = { isa = PBXGroup; children = ( - 6C5965AA3E29FC898B32DF6B21D82EEA /* RCTDataRequestHandler.h */, - 7DD4A6659C93D9324AA8FDCC19D544AE /* RCTFileRequestHandler.h */, - 962C9C1558BE0FBB69BAF645AD26C2A1 /* RCTHTTPRequestHandler.h */, - 555E6E5DD1E71AD0281C53042760395F /* RCTNetworking.h */, - 06C98C79B5EF2C133FF6CE557FF42847 /* RCTNetworkPlugins.h */, - BAC3BF99ECBDA7FAAAB832C9282CC5E5 /* RCTNetworkTask.h */, + 1BDC9ED4D84C8AD7DE9201F431775878 /* Aes.h */, + 99EA8F25F706103275853B27929389C0 /* Aes.m */, + 4710BD7BA3CBBAFEF74171B231A3D6CD /* Hmac.h */, + CF08DF48753BFB102BBBD5E2927D72D9 /* Hmac.m */, + 9304F71D50FA4B8D88B58E16E3309E0F /* Pbkdf2.h */, + A891ED113445A000F63BDA0E14FFE595 /* Pbkdf2.m */, + 267800D1495F26BDAA10F399560AFB1D /* Rsa.h */, + 1C906F762E802CDE135B348A278004AE /* Rsa.m */, + 59C7BFB74DC9408031A4FFFDAB6108D4 /* RsaFormatter.h */, + C30105D555B17C02F5E431DD902F8CC3 /* RsaFormatter.m */, + 8FA4F3AC4B16DEF39957BE9C328EF6DB /* Sha.h */, + E396F5E922027B9BC9BE1903BB008449 /* Sha.m */, + 5BDBF18E13FE0F99D56655A59A7778D0 /* Shared.h */, + A772281D540534EE390A9517BF3E06CA /* Shared.m */, ); - name = RCTNetworkHeaders; + name = lib; + path = ios/RCTCrypto/lib; sourceTree = ""; }; - 1C74BFA4A909CE798117215A9C6EB89A /* MethodSwizzler */ = { + 1AA4ACEF4A6D359C87FD8F94C0A86293 /* Pod */ = { isa = PBXGroup; children = ( - CE5167562CDE6169DA6D106D090D7DE6 /* GULOriginalIMPConvenienceMacros.h */, - F913C27BBB2B1100FDAF53AA22A0BD34 /* GULSwizzler.h */, - D58AF32ED9DB1F74C78993A077BD0FB9 /* GULSwizzler.m */, + 6A38A72ACA4785783F35B1DE761C88C7 /* advancedIos.md */, + A95BFF03C5817188409D2224F4C13F3C /* installation.md */, + 1B0CE6FE61EC98749AFA203CCBA3587D /* LICENSE */, + EF1F9DAF0A95BBE0D3815AC34E50A498 /* localNotifications.md */, + 86A66890ECB3155B1A8B93CE45F62A25 /* notificationsEvents.md */, + 3E2EA9C55F7319FEEE780CB805E3E437 /* react-native-notifications.podspec */, + EBF297C6C1E86A830F699D34F3ECF5A7 /* README.md */, + 6FED99D0314F2E53FDBB47D873DFF6A7 /* subscription.md */, ); - name = MethodSwizzler; + name = Pod; sourceTree = ""; }; - 1D2C396C05A727041C7C3702ED0822CC /* RCTVibrationHeaders */ = { + 1C017B73F94C8453800B0116CA2124D1 /* Support Files */ = { isa = PBXGroup; children = ( - 4ABB6DE6CFDF5327CBEB702D3BFBF97E /* RCTVibration.h */, - E99986382AB553201CAC68181E0D19EB /* RCTVibrationPlugins.h */, + E7E507DC5E7F3ABBBEC016B9AAD776EF /* KeyCommands-dummy.m */, + 100FE2E1388A5147D123885243A1D36D /* KeyCommands-prefix.pch */, + 45BBE812DCB620347D1126DFC59FA9F3 /* KeyCommands.debug.xcconfig */, + B316AF37C726545B7DB0FF965CE84FC7 /* KeyCommands.release.xcconfig */, ); - name = RCTVibrationHeaders; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/KeyCommands"; sourceTree = ""; }; - 1D3A9126B4CCC6DBAC0B07793364ECD0 /* Support Files */ = { + 1C74BFA4A909CE798117215A9C6EB89A /* MethodSwizzler */ = { isa = PBXGroup; children = ( - 3FF3F9F5D4B96F992106B3D82288AE35 /* React-RCTBlob-dummy.m */, - A4D54A32E207A52E94C4F5219C97F37D /* React-RCTBlob-prefix.pch */, - 3DB517B983E703D101B71F0C4F108313 /* React-RCTBlob.debug.xcconfig */, - 1DB9CB995820A385301DDF362DEF8758 /* React-RCTBlob.release.xcconfig */, + CE5167562CDE6169DA6D106D090D7DE6 /* GULOriginalIMPConvenienceMacros.h */, + F913C27BBB2B1100FDAF53AA22A0BD34 /* GULSwizzler.h */, + D58AF32ED9DB1F74C78993A077BD0FB9 /* GULSwizzler.m */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; + name = MethodSwizzler; sourceTree = ""; }; 1D6C301C450EAA57AE4610B126AE9379 /* Support Files */ = { @@ -11530,21 +11790,9 @@ 76C8411FD4ADAEE39D1AB0D8BB5F5FC7 /* FirebaseCrashlytics-dummy.m */, 50E274B0FDC45577FA9549D3C187242B /* FirebaseCrashlytics.debug.xcconfig */, 22C541BE27C6A4521817D915D71EE8A1 /* FirebaseCrashlytics.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/FirebaseCrashlytics"; - sourceTree = ""; - }; - 1D960554F77201415EAE9651353B2CE0 /* EXImageLoader */ = { - isa = PBXGroup; - children = ( - EAF23BFCE92AA47A2873B6BC54CE9A82 /* EXImageLoader.h */, - 8650B4EEF412482AF89B9400A42CA245 /* EXImageLoader.m */, - 909A982B318F492E79A0B0080E7F62E0 /* Pod */, - 8BBFD1D57490B447D7FFF30F43CB9A7C /* Support Files */, - ); - name = EXImageLoader; - path = "../../node_modules/expo-image-loader/ios"; + ); + name = "Support Files"; + path = "../Target Support Files/FirebaseCrashlytics"; sourceTree = ""; }; 1DCDF13F67887E617CC442BB30458428 /* AppDelegateSwizzler */ = { @@ -11571,247 +11819,203 @@ name = FlipperKitReactPlugin; sourceTree = ""; }; - 1FBF978C00A0C3B39C2CF68CA5FA1CDF /* Services */ = { + 1F611240884DE3F99D10880E6F2D247D /* Support Files */ = { isa = PBXGroup; children = ( - 364AAF719192994782312AC2667283A4 /* UMReactFontManager.h */, - 4184308CE6AA6421254E0CDA732DDD3C /* UMReactFontManager.m */, - BD8722B88E814091C19479A32D208AA7 /* UMReactLogHandler.h */, - 5BA879111DE2652A9191BDEADD90C73D /* UMReactLogHandler.m */, - E501194E937A3BFA2518E6A318AF5C0B /* UMReactNativeAdapter.h */, - 33085967C658BAB1A7E41C3173AB2378 /* UMReactNativeAdapter.m */, - 0AFAD99F891D83ECB26F52872B68D810 /* UMReactNativeEventEmitter.h */, - 6C0F1CC8E0B502D0C629574C64F369BD /* UMReactNativeEventEmitter.m */, + DE03E352349C63FE35EFEB9458363A05 /* React-jsiexecutor-dummy.m */, + BDF8207602D306790BE3B8DC9A4226AD /* React-jsiexecutor-prefix.pch */, + 18A4EF80B700EE8CCB76D65C93FA5FC5 /* React-jsiexecutor.debug.xcconfig */, + C80DE865776E85161465B18D33B6DE06 /* React-jsiexecutor.release.xcconfig */, ); - name = Services; - path = UMReactNativeAdapter/Services; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; sourceTree = ""; }; - 1FDCC29DB23EDE31F9694745538009C7 /* Support Files */ = { + 204645C13FDD16B99741AD59951660EA /* EXPermissions */ = { isa = PBXGroup; children = ( - AFECFD51798699035DB0BCF6B49FB45B /* RNRootView-dummy.m */, - 6CEF81A5F611EF0476B2CFB2576845DD /* RNRootView-prefix.pch */, - 93317CB6FAB6B5749D8046FD3B0DCCCD /* RNRootView.debug.xcconfig */, - 2C04FBD6FA48936DAF7EAD4995FBDC01 /* RNRootView.release.xcconfig */, + A07221879DBBCA7A2F1965B6FFEF70DF /* EXPermissions.h */, + 4B9B94158DF5FDA7D0229C21905E263F /* EXPermissions.m */, + C67A1A8BD86BC3BE65BD161E3C387CF5 /* EXReactNativeUserNotificationCenterProxy.h */, + FF5EC75832509595F34CA844C2795CF5 /* EXReactNativeUserNotificationCenterProxy.m */, + ABFCF3DBE8B631D27CDFE5EA7992DB93 /* Pod */, + B7EE9D45488BF6977EAA95E36131B84A /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNRootView"; + name = EXPermissions; + path = "../../node_modules/expo-permissions/ios"; sourceTree = ""; }; - 208DA16BBE6D847A0E155DAA172E6AA8 /* UMCore */ = { - isa = PBXGroup; - children = ( - 0A194A89E97A8617215769B0AE3B435E /* UMAppDelegateWrapper.h */, - 70A13EB69CA9BDD874681BA6977F2382 /* UMAppDelegateWrapper.m */, - BF6CC9E1559313D2D819B74ED1ADC435 /* UMDefines.h */, - 63E1E28392FDDDCD117772C8187B9AB9 /* UMErrorCodes.h */, - A6F37BCFA3A5E229FD1BB7EC45AB0D94 /* UMErrorCodes.m */, - 28341F3A91E1977E1903CEB50390D7D6 /* UMExportedModule.h */, - 88F8834973F0172F692546FFF74125A3 /* UMExportedModule.m */, - F4685F766E3A537439E671C91583CD6D /* UMSingletonModule.h */, - 0ADC1D86EDC0770C17F5DE8A7E021996 /* UMSingletonModule.m */, - E74C6677509574D65B174FB977F4BDEC /* UMUtilities.h */, - 7C5A75DBEBA07D1D329053979A1E1F7D /* UMUtilities.m */, - E4FF97E12FC2AB186BCBE9BEA9367894 /* UMViewManager.h */, - 12A3D4A2CEA64FE1A40E366F6EFD7A9E /* UMViewManager.m */, - 2F2FF8290701D2BD8A42448C63AC954C /* Pod */, - AF8FA3743EF2F00A64CF6271B1CA0CCA /* Protocols */, - A60CDE737F526D7425B011B2DC527755 /* Services */, - 17806737AB8843ED205E379A08CA1644 /* Support Files */, - DED22F350E43D6594180BA9764FDCF52 /* UMModuleRegistry */, - A90CAFB5D029228E6F94A9FE0DE8A641 /* UMModuleRegistryProvider */, + 20DB54C8397C7D9507AEFF3B24F5848A /* TextInput */ = { + isa = PBXGroup; + children = ( + D98ECF4ED99FEE15AB7B9F73801F9E08 /* RCTBackedTextInputDelegateAdapter.m */, + 2F0B2ED39A7FD3B15258303FBAD4EA77 /* RCTBaseTextInputShadowView.m */, + 5FE8C9FCAFAAFB71121ED525719CA807 /* RCTBaseTextInputView.m */, + ED0B2E383913471B07F3DB0D45AB03CA /* RCTBaseTextInputViewManager.m */, + 0BA4B75A0545C551B55B2BAB5C630F94 /* RCTInputAccessoryShadowView.m */, + 54A21F939A27BECCFF62BEB81852C1F0 /* RCTInputAccessoryView.m */, + 94107D879BCEB21762CBDC99DAB6E41E /* RCTInputAccessoryViewContent.m */, + B9A466CD6E5A8B678B51C4A03F3EE6ED /* RCTInputAccessoryViewManager.m */, + B1750DB806612F24A8E2960C3680C7C4 /* RCTTextSelection.m */, + AAFD676EAB908E2F2AC404859379E6F7 /* Multiline */, + 83024692168C7F3E977B42739CDAE2A0 /* Singleline */, ); - name = UMCore; - path = "../../node_modules/@unimodules/core/ios"; + name = TextInput; + path = TextInput; sourceTree = ""; }; - 2173DE4FDFFDDE865AF9F0E8800EC798 /* Pod */ = { + 2157394306A582AF9CDFD1DFC6072D64 /* Pod */ = { isa = PBXGroup; children = ( - 5391FDD4800368F989EB3093C245BE46 /* LICENSE */, - 4F9BA4B3AA26DE7BB0DDE22100C8818D /* react-native-appearance.podspec */, - 44EF6C6F319A7FBFB3639EDC7FF05578 /* README.md */, + 80FCCE618B5154A78F1A19DED174C210 /* EXWebBrowser.podspec */, ); name = Pod; sourceTree = ""; }; - 22549ECE3D00D588E87D786DB3C7CFAB /* RNFetchBlob */ = { + 21F179542E735D9228C030EBA51E5145 /* bugsnag-cocoa */ = { isa = PBXGroup; children = ( - 31C4204D58E0E145C4DBA328B0162E12 /* RNFetchBlob.h */, - 8ACE316B3FFB1BD0D60444A8BBFB7040 /* RNFetchBlob.m */, + FF29C39DA2801102F0E31568BB9257D8 /* Source */, ); - name = RNFetchBlob; - path = ios/RNFetchBlob; + name = "bugsnag-cocoa"; + path = "bugsnag-cocoa"; sourceTree = ""; }; - 24D8DE1E4562FAA738CA0E576FAF96D2 /* React-cxxreact */ = { - isa = PBXGroup; - children = ( - 33D726781738E2B01F5B74C0653D6439 /* CxxModule.h */, - 132A5078717FC91D9B2D0EC41ABE914A /* CxxNativeModule.cpp */, - FA2F1AE71FD4E0D504CC1BB23ADC472F /* CxxNativeModule.h */, - FC6D4B5D0DE995D408A99471DF825A0E /* Instance.cpp */, - 978114B5BFEDE880EDCF41632D8A9570 /* Instance.h */, - 9D7D30FD062FA2F4CE761A3A1CCA8F85 /* JsArgumentHelpers.h */, - AD50CECE3CCFF5A4DC48B6D5C0A607B7 /* JsArgumentHelpers-inl.h */, - E73DD6E2DDB845423C380CAD3B5C28B9 /* JSBigString.cpp */, - D2499C8B2186DA8E61F638035B873017 /* JSBigString.h */, - 9FC5884C82AABE2EC8332BCB64221E9A /* JSBundleType.cpp */, - 30E873B2AF20F8F5322BD2B723FBFBBE /* JSBundleType.h */, - 4F1C090597007F883059F0DBFE7503FA /* JSDeltaBundleClient.cpp */, - A6ADA129893F70144FEF13AEC75F6C50 /* JSDeltaBundleClient.h */, - 7F81D7793360D01BE72A5DA71D7FCCBE /* JSExecutor.cpp */, - BF7C89715C342A26D2AE3FBD19699A91 /* JSExecutor.h */, - B06DB10651505B1202A5EBD31DC18D5E /* JSIndexedRAMBundle.cpp */, - C2DE2A07BE9D20BB2D46088AA36B890E /* JSIndexedRAMBundle.h */, - 67D4209A48F82ADDA4F5818E3EEDB964 /* JSModulesUnbundle.h */, - 5B05CA75F156B8CFF6045C4F3F87CDC5 /* MessageQueueThread.h */, - BA9C24247421D29B5BD9E43BD588A665 /* MethodCall.cpp */, - D5B0029823E72E494A8A47AC82D8D02C /* MethodCall.h */, - 579D50755D6C05683866DF1EC201B0A5 /* ModuleRegistry.cpp */, - 092712BFAC70FAB2B3B011A19B02873E /* ModuleRegistry.h */, - CDCFD5FBA22753E346CB7AA7F72793D7 /* NativeModule.h */, - 3A9DC1D9F0B8012EE56D474C37681860 /* NativeToJsBridge.cpp */, - E685060B7E28DE532F3A85C18B146079 /* NativeToJsBridge.h */, - 524BAB40CDC93E796CC2BB13B74D16D3 /* RAMBundleRegistry.cpp */, - BE52A37A1BE7982A06FB78B7CE518E5E /* RAMBundleRegistry.h */, - E791609D7BB21AA3D70750B1A1CAE766 /* ReactMarker.cpp */, - 37D8507932C176FD9A70992AB837AE8F /* ReactMarker.h */, - 925B493C179939C067B87958520CB2C1 /* ReactNativeVersion.h */, - ABB1F06AA1DF276D588AF6CC5CDF84D2 /* RecoverableError.h */, - DB342CB3D65E6B3C7690F3A485DD4A17 /* SharedProxyCxxModule.h */, - F9D48F6F692CB2B4B48666DC835623BB /* SystraceSection.h */, - 04B5697B02F482155572A4CFDA6317B2 /* Pod */, - FC98867B7FFD6C45EBD30A130648523B /* Support Files */, + 220BDBE0F45144A3C32E00D2408C6E87 /* Support Files */ = { + isa = PBXGroup; + children = ( + A20791D8CF65FC8D4B181535E1C5068A /* UMFontInterface.debug.xcconfig */, + 30A4838546B593A586413B8973B63CB4 /* UMFontInterface.release.xcconfig */, ); - name = "React-cxxreact"; - path = "../../node_modules/react-native/ReactCommon/cxxreact"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFontInterface"; sourceTree = ""; }; - 2580FA943229888A77F50ADE6F65B89E /* Support Files */ = { + 237C75EEE68D83B7788F288220977C63 /* Support Files */ = { isa = PBXGroup; children = ( - 9655546D55EF3CA44CC44C6FBE351C28 /* RNFBApp-dummy.m */, - 4783223EC3E3FE738BD7B35FFC92CD37 /* RNFBApp-prefix.pch */, - BC282D79910D6F5C3C62503D5C1F04C3 /* RNFBApp.debug.xcconfig */, - 7BD0ED98734525242432A759D5F27FBF /* RNFBApp.release.xcconfig */, + 045627483BE41B9F29A5EF1C4BD3D29E /* react-native-jitsi-meet-dummy.m */, + 14E4D664C6D4A92AD0EC73193C96DC9F /* react-native-jitsi-meet-prefix.pch */, + CFB41288C18EF0E2426E348B1408ECA6 /* react-native-jitsi-meet.debug.xcconfig */, + A7971C717587662968EDBE106F56E639 /* react-native-jitsi-meet.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFBApp"; + path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; sourceTree = ""; }; - 2583B775845F0F0D31F4B23DFAA14608 /* Pod */ = { + 241C5CF37CACDF79DEEB6BCE85D9A889 /* Support Files */ = { isa = PBXGroup; children = ( - DCF7A4DCA000540AAE3AB8F4C832C85C /* React-RCTImage.podspec */, + C607C3464072E76848AC01F155D838D2 /* React-RCTText-dummy.m */, + C4D5933A5C565722F7F7DE4299EC20C3 /* React-RCTText-prefix.pch */, + A466E69D1453E4527BAEFDE5D27D7DFA /* React-RCTText.debug.xcconfig */, + 951567F288583437515CCC2E4F51CFF0 /* React-RCTText.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTText"; sourceTree = ""; }; - 2667D906D41BC0B1430ADEBD42377934 /* UMTaskManagerInterface */ = { - isa = PBXGroup; - children = ( - BCD33FA1C4A2DE809A407E674FD93977 /* UMTaskConsumerInterface.h */, - 5D85A284C5F3C63E268E4028F6C491B2 /* UMTaskInterface.h */, - 2A31498DD7FFE5AC83A57E0A20328FD3 /* UMTaskLaunchReason.h */, - D0D5223366946270BD599C4598AB0B0A /* UMTaskManagerInterface.h */, - 53828832B31E3AD0ABCC7423D79998B6 /* UMTaskServiceInterface.h */, - 6A3049C7E8D41E5455E65CA8032E38D6 /* Pod */, - D6C2991C4C40CD41197596951C05E876 /* Support Files */, + 243E8B1E9A5BBC783F5D7C278248A1B6 /* RNGestureHandler */ = { + isa = PBXGroup; + children = ( + 1DE36E839AB1282F9C263A8AAE938666 /* RNGestureHandler.h */, + 7492D25E2059352EE7754C9C74AD3718 /* RNGestureHandler.m */, + 792F207CC13460738EEC66C16F646437 /* RNGestureHandlerButton.h */, + A019AB4378C025E44D01E34104D1ACC9 /* RNGestureHandlerButton.m */, + 0D1134540F45D55632D4068251EFDCA2 /* RNGestureHandlerDirection.h */, + 5413742461E142031AF301F703B0F4DC /* RNGestureHandlerEvents.h */, + CE92F9D67E3F9B8FFB96D0BCB42800DF /* RNGestureHandlerEvents.m */, + 6CA294834D69149A9010595E516E44C0 /* RNGestureHandlerManager.h */, + B2E84F01E5CCFCBA63118C19E8A5C4C3 /* RNGestureHandlerManager.m */, + BCEE2A1825F67182895199AE7C75F159 /* RNGestureHandlerModule.h */, + 870A0FC7FD6163455CE70509D8BA7DDE /* RNGestureHandlerModule.m */, + 53B442F0BC9400B7838C67986AD9F802 /* RNGestureHandlerRegistry.h */, + 0884824E3FE4879C62FBB5E63D34E85E /* RNGestureHandlerRegistry.m */, + 0F93A2E3EA1902AD9906F044F1EE74D7 /* RNGestureHandlerState.h */, + 77589846054FA623814102D675283B71 /* RNRootViewGestureRecognizer.h */, + A19E8CE6ADDD11FD388D78A0BC92AD69 /* RNRootViewGestureRecognizer.m */, + 3A7C91D2CF182E2D70A28253266B8D2C /* Handlers */, + AD2B76864718ACF32DC5FC75F53584B3 /* Pod */, + A0AB9CA88789B94B91895F850B524B05 /* Support Files */, ); - name = UMTaskManagerInterface; - path = "../../node_modules/unimodules-task-manager-interface/ios"; + name = RNGestureHandler; + path = "../../node_modules/react-native-gesture-handler"; sourceTree = ""; }; - 2670145818F8C132EC82F7751F4FD798 /* Pod */ = { + 24CDB287BBA3799FDF41FAB58F616723 /* Pod */ = { isa = PBXGroup; children = ( - 85DB9DCD90930166F793C7CA35983E71 /* React-jsi.podspec */, + DAB03A51E903C2546AA7ADF029B3B200 /* UMFontInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 2695A8A599265E7AE6C1465AD18FF2EC /* Support Files */ = { + 256C339FDBCC5E8CA3E3B3E9BC6F023D /* RNDeviceInfo */ = { isa = PBXGroup; children = ( - 00C5A3A73D5F0FA3B10AE16775F271DF /* React-RCTLinking-dummy.m */, - 6924862759A987052892CB24F5948797 /* React-RCTLinking-prefix.pch */, - 4BF6B8C2CDE8431224EDED81BBAA94F7 /* React-RCTLinking.debug.xcconfig */, - 17B5187116367FE0095FE4AB06B77488 /* React-RCTLinking.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; - sourceTree = ""; - }; - 276654A5E1206D1E591EF1EFC4A0E7FC /* Modules */ = { - isa = PBXGroup; - children = ( - 4F86E8C83611809E996BFEE4CCDE8343 /* RCTEventEmitter.h */, - 184583558AD095BE04823010CFDB855E /* RCTEventEmitter.m */, - 1EE0A5CD5E8D4CA609724F95213B542B /* RCTI18nUtil.h */, - 1A1FAF62998B16AB4476447123A54E5B /* RCTI18nUtil.m */, - 849AE929FF332905341897AC24CD6E1D /* RCTLayoutAnimation.h */, - D324B9F20D3B0BF34F35245AC8ABC505 /* RCTLayoutAnimation.m */, - 32EF82EE1A1D8756C98666B0A26B9255 /* RCTLayoutAnimationGroup.h */, - 3AB05BEFA17D5D67D3C53036B5AE38E4 /* RCTLayoutAnimationGroup.m */, - E6E1EB5C5A60DE8EB818D9FFF6EB2941 /* RCTRedBoxExtraDataViewController.h */, - 53D0830ABE6F5338B281F64C4817C86A /* RCTRedBoxExtraDataViewController.m */, - 4A20830F243A0EE718A622E2C44FB987 /* RCTSurfacePresenterStub.h */, - 0D734DC8F87ADD26C796D0CB7216A261 /* RCTSurfacePresenterStub.m */, - 2A424B921F34A2E684E3317DE9C9F0B0 /* RCTUIManager.h */, - 5FC3DDF45091DA3AC479A574842CC386 /* RCTUIManager.m */, - E035C799787B26FB103927867AB59D05 /* RCTUIManagerObserverCoordinator.h */, - 89934B9D4927DCE9310D7C45B12B7B3E /* RCTUIManagerObserverCoordinator.mm */, - BE2B8394DC33A02F432878F1D821234A /* RCTUIManagerUtils.h */, - 6038AE431D283EF67E531354FC54133B /* RCTUIManagerUtils.m */, + 8B50E94B26C9F1A608B665BC2A8CC140 /* DeviceUID.h */, + B405BB575FE7D7BBF3F0C5186526FC9E /* DeviceUID.m */, + F71DF116E2909F8743466766B13DCD01 /* RNDeviceInfo.h */, + 21087C3500B90DDC9DC1ED19DFB632D1 /* RNDeviceInfo.m */, + 5FCEDBC407E7403BC09BED86E4E47C56 /* Pod */, + 394F189AA2C0524163E70F885C5B4EBF /* Support Files */, ); - name = Modules; - path = React/Modules; + name = RNDeviceInfo; + path = "../../node_modules/react-native-device-info"; sourceTree = ""; }; - 2777ADA4E455AE0B0164A464EC2511F6 /* Support Files */ = { - isa = PBXGroup; - children = ( - 7962B97C0094DF949B3502BDFB8165E5 /* EXWebBrowser-dummy.m */, - 4A2BD6FFF54A43E54E9C814C442F2B69 /* EXWebBrowser-prefix.pch */, - C59DB90CF3AC928BF2F41DEEDA4939E5 /* EXWebBrowser.debug.xcconfig */, - 2D77C6DB0287A5D60AC414B8A6560502 /* EXWebBrowser.release.xcconfig */, + 25CC51A36A61744B3FE2CC6FFB44EB0E /* react-native-safe-area-context */ = { + isa = PBXGroup; + children = ( + 4DBD86C969F632F98B3578F3420B5241 /* RCTView+SafeAreaCompat.h */, + 1E437B7EFEE284B3E346F487AD74184C /* RCTView+SafeAreaCompat.m */, + FE4D2BF80F96319D3DDFB295AA20FC70 /* RNCSafeAreaProvider.h */, + E47C36A613EB829E3E595E0F72CCA3D7 /* RNCSafeAreaProvider.m */, + 2FF898273E1EBDEA1442B5425490A0C1 /* RNCSafeAreaProviderManager.h */, + 9B6513CA650B24002DEDA91FFD42C220 /* RNCSafeAreaProviderManager.m */, + 6659E882A707ED3089A6B423BFE4B183 /* RNCSafeAreaShadowView.h */, + 6F5223EA2733B17B4B781245325BDA74 /* RNCSafeAreaShadowView.m */, + 2294B5E4EEB782F74D763F48A0417DFC /* RNCSafeAreaView.h */, + C8201567BCB5342D649D8C7BB250B67C /* RNCSafeAreaView.m */, + 0A9A2003A028F4496FE281553E1F2B6A /* RNCSafeAreaViewEdges.h */, + E0B659FA3D7BF3429389703DFA2C10A9 /* RNCSafeAreaViewEdges.m */, + 346F0A66EF41AB5375BDA423FCFAFC5E /* RNCSafeAreaViewLocalData.h */, + 0AEC718C8D99FD2DD635DD790C709A25 /* RNCSafeAreaViewLocalData.m */, + 9731C43347EF79296227EA00C54C4F9F /* RNCSafeAreaViewManager.h */, + C79C7F37666022CF39C5F90280C4FDD5 /* RNCSafeAreaViewManager.m */, + 431878370E2C53C0AC6F14CDE90AA760 /* RNCSafeAreaViewMode.h */, + 6AD5BAECE3867B1CE886E5791A0F24BC /* RNCSafeAreaViewMode.m */, + B6469477D6E89D70829C32EC296BF1CB /* Pod */, + 668FCC4851BB1997DFB561651B595EC4 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + name = "react-native-safe-area-context"; + path = "../../node_modules/react-native-safe-area-context"; sourceTree = ""; }; - 279C8F59F403B33573E3E57A04B685A1 /* Support Files */ = { + 278F0D501FD19A689AA4F938C3967397 /* Support Files */ = { isa = PBXGroup; children = ( - A110C36112C624ED8ECBF5AF8E1914E0 /* UMFaceDetectorInterface.debug.xcconfig */, - 248D3CB1F9995186AC0EB934A5CAC0CB /* UMFaceDetectorInterface.release.xcconfig */, + E70CDB6BEA8C435133FBB0FFDF57E3E1 /* React-RCTSettings-dummy.m */, + 6D2C8D60809267C828E6ED33ED82B5C3 /* React-RCTSettings-prefix.pch */, + 8D5DFF74B09A6C161836EF11E9AC5183 /* React-RCTSettings.debug.xcconfig */, + 5F96281C6C4116BF30854726AAE0207D /* React-RCTSettings.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; + path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; sourceTree = ""; }; - 28640BFBCAB291E1DBAE2CC7AE5C7134 /* Nodes */ = { + 28296796A98276A7353B2D870D4B0155 /* SurfaceHostingView */ = { isa = PBXGroup; children = ( - 0029EF376D659E2A8E63C158711381ED /* RCTAdditionAnimatedNode.h */, - 5CAFE45FD6D43A417A0316AB4C6B57D5 /* RCTAnimatedNode.h */, - BCD29E30D08AA725101A72D71096FF99 /* RCTDiffClampAnimatedNode.h */, - F4EB1A7EAB18453C0D385A4B95875284 /* RCTDivisionAnimatedNode.h */, - B27C1729B947583819817A07568759FC /* RCTInterpolationAnimatedNode.h */, - BDB5D7FD80EE9CC211FEDAD1FFAACAAF /* RCTModuloAnimatedNode.h */, - EB55CC314436DBB45945DDC51FE7D004 /* RCTMultiplicationAnimatedNode.h */, - A849B46747A2D27F06CD4B0F19DFA865 /* RCTPropsAnimatedNode.h */, - 31C9DBAB0B12753EFD09AB5FF51312FA /* RCTStyleAnimatedNode.h */, - CCA445C75B442CC0833E539B3948F610 /* RCTSubtractionAnimatedNode.h */, - F6D60BA1CF75E2B12AE25427ED0D8E5F /* RCTTrackingAnimatedNode.h */, - 70C69A5DB7AC59F60F22F98605C4CFCE /* RCTTransformAnimatedNode.h */, - B78492F97AD567F7C43E727921B571DD /* RCTValueAnimatedNode.h */, + C73D49DCE02BB49A6916CE159C31DFD1 /* RCTSurfaceHostingProxyRootView.h */, + 7886B447A8F534B0C5D66064BB93E262 /* RCTSurfaceHostingProxyRootView.mm */, + 0B821F2D8F8128C79F358321A4F62DD3 /* RCTSurfaceHostingView.h */, + 999615D0AC998BEDAAFFAAB361CD76D7 /* RCTSurfaceHostingView.mm */, + 03FE4AB4BDB75C8B503A404B32E25221 /* RCTSurfaceSizeMeasureMode.h */, + F53C0812017E39A5A9861899336B7544 /* RCTSurfaceSizeMeasureMode.mm */, ); - name = Nodes; - path = Libraries/NativeAnimation/Nodes; + name = SurfaceHostingView; + path = SurfaceHostingView; sourceTree = ""; }; 28A091192A04A256A671E6D18B4D008E /* Flipper-Folly */ = { @@ -12446,86 +12650,93 @@ path = "Flipper-Folly"; sourceTree = ""; }; - 28FDD33D3CBAD949F72F588E5555896F /* Resources */ = { + 29DCCD927AB91D8C972BC7B5DBA09EAD /* Pod */ = { isa = PBXGroup; children = ( - D2558CABF87F180513EE640FC82D1CBE /* de.lproj */, - 3BCB76317806C715FA5771BA730E980A /* en.lproj */, - 6EE0BD71B6916BCF37AA235175E69C71 /* es.lproj */, - 34657EB2F270AE6902A20E460C9FBE94 /* fr.lproj */, - 9FD87FA1B82E5D26C5A6665CC1B6F36B /* ja.lproj */, - FB6D4BD0BDCC88F0C30AB09638EB639C /* pl.lproj */, - 89C0CE47EDF6D262EF6412AA95303E8A /* QBImagePicker.storyboard */, - A5DBF0EF0AE9E9D08516585E61E7AD3F /* zh-Hans.lproj */, + 90513B4ABA29DD56CEC22203DF268ED3 /* UMReactNativeAdapter.podspec */, ); - name = Resources; + name = Pod; sourceTree = ""; }; - 2AF259375C0992621F88F5492F086AC8 /* Support Files */ = { + 2AA65F28684F7DCCC22DE8D6A44BE523 /* react-native-orientation-locker */ = { isa = PBXGroup; children = ( - 8DA4E2C2F9097E387CE2E133BE46A2E6 /* React-RCTVibration-dummy.m */, - DEA98AA593CC70D9EA8EB5BEF9499F32 /* React-RCTVibration-prefix.pch */, - 587E2736E299E19869C89B553DCA7677 /* React-RCTVibration.debug.xcconfig */, - 02E9C129039A17E828B1E3DC260FA844 /* React-RCTVibration.release.xcconfig */, + 0703FF866D3C3CA07EAD519056976C91 /* Orientation.h */, + 596978F92933A7221E7CB042A8E8B971 /* Orientation.m */, + 41822C61327F844839B8FAD882D27270 /* Pod */, + EBEA9A0F06BB1C12D59D8F23B72EF270 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; + name = "react-native-orientation-locker"; + path = "../../node_modules/react-native-orientation-locker"; sourceTree = ""; }; - 2B272FBAEF7DC48D5CE4E89B9BE0AC83 /* BaseText */ = { + 2BD5AC2F5E741514BE2C96AB79C79AD0 /* RNFetchBlob */ = { isa = PBXGroup; children = ( - 842B9EE940BD30BBF74FFFAB474AFA2B /* RCTBaseTextShadowView.h */, - FF9F27BAECB614007A22D13CEA8F45F7 /* RCTBaseTextViewManager.h */, + 16EF1252C369284E9A84463285A63986 /* RNFetchBlob.h */, + 8AFCCB6DB983375195BE5A2CFC68114D /* RNFetchBlob.m */, ); - name = BaseText; - path = Libraries/Text/BaseText; + name = RNFetchBlob; + path = ios/RNFetchBlob; sourceTree = ""; }; - 2F224C0F074AF242A9928E738E770F5B /* EXHaptics */ = { + 2BFE7AF79A3E5EE804C0A9CD3E0F9141 /* Pod */ = { isa = PBXGroup; children = ( - 3430F6D9D154829830335E7F6313999B /* EXHapticsModule.h */, - 39A10BB3C37E130890781D22BF31F4A0 /* EXHapticsModule.m */, - 48327B25B35D3B7D359D65B8DFC52772 /* Pod */, - 3A6581DF2795E24727F2AEC0B5A76F42 /* Support Files */, + 49886F7D8D9337AF23D9532AB6F44DA2 /* LICENSE */, + BAF650B614D2282B446078A7C1EFB37B /* README.md */, + 9C96217247B430EF9B379F1445129888 /* RNImageCropPicker.podspec */, ); - name = EXHaptics; - path = "../../node_modules/expo-haptics/ios"; + name = Pod; sourceTree = ""; }; - 2F2FF8290701D2BD8A42448C63AC954C /* Pod */ = { + 2CA94EB3358FE5ED0FBB0E8E528109EC /* Pod */ = { isa = PBXGroup; children = ( - 83DF0B95EB9A1316418742A7FD5BE172 /* UMCore.podspec */, + 559EE3CE9C7BD27F0151361C94E5E4C2 /* LICENSE */, + 4B340D908383E9C741C944D18ED41735 /* README.md */, + C89BDE44708E963901B95EDB046EEAAD /* RNCAsyncStorage.podspec */, ); name = Pod; sourceTree = ""; }; - 2F46BC52A9B5CD71FA5710C2697715CE /* Pod */ = { + 2CF847AB467C8F75540E95B68B367648 /* Pod */ = { isa = PBXGroup; children = ( - B6F2D27935E40271411244186FD57C08 /* advancedIos.md */, - 28E6C99BD266452ED295DC97B659C7BF /* installation.md */, - 5D4CF224D5A50C2846D67D045F8D3554 /* LICENSE */, - CB5116DE3B4CC1DA76422E8DA604FE4D /* localNotifications.md */, - 538EB6F3ADB6DCD760A4BE583FAA852C /* notificationsEvents.md */, - 3DA33AE337C028D6616E3BB9D31A0912 /* react-native-notifications.podspec */, - 6484F69458E0CC690F28F2D472F8BCC6 /* README.md */, - 483255DD648FC921F5EA7B5AAA6ADBFF /* subscription.md */, + 27423B46592FEFD9DD3EF4DF1D7A9185 /* LICENSE */, + A0CBE66BCB7A5C1380FC7AE1A80C991C /* README.md */, + F1FD3D7694E768D6E0AAEC382CF433AE /* RNFBCrashlytics.podspec */, ); name = Pod; sourceTree = ""; }; - 2FB2F2F902D2CA7A9EB82B36542887FF /* Pod */ = { + 2DB4E11DAB0A7DC00EE55CC91A98BD1B /* DevSupport */ = { isa = PBXGroup; children = ( - 2EE1995528678F37FD8CA5126B313D05 /* LICENSE */, - E17CBCA42A454FF545BC68AC213E0C24 /* README.md */, - 7994C9E8A864479BCE554404D286DADB /* RNUserDefaults.podspec */, + 72CE0C750FF08D8FC4C89F718899A51D /* DevSupport */, + D7A57B67EB97FB1E3BB4153738EED852 /* Inspector */, ); - name = Pod; + name = DevSupport; + sourceTree = ""; + }; + 2DDC0B17D11A432FB18689C644E22927 /* Resources */ = { + isa = PBXGroup; + children = ( + 26131611C4C08C665ADB4FEFB3DB096E /* en.lproj */, + ); + name = Resources; + sourceTree = ""; + }; + 2F7A5A6937E808B9E20CC0F0FECFCAB2 /* Support Files */ = { + isa = PBXGroup; + children = ( + C406937EEF785452DCC7AE1CA3300119 /* RNFBAnalytics-dummy.m */, + EE2A70486589BF365D3D12742BB4DF94 /* RNFBAnalytics-prefix.pch */, + 5EBD58B8666614B8858F11A4499E2CCA /* RNFBAnalytics.debug.xcconfig */, + 5A75DE24AA744AEDDDF35FAC73F54424 /* RNFBAnalytics.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNFBAnalytics"; sourceTree = ""; }; 2FB7B0A1FDC03C3E83896B9D967ADDE2 /* Support Files */ = { @@ -12564,203 +12775,205 @@ path = "../Target Support Files/glog"; sourceTree = ""; }; - 30C9ADAB56762AAA3E6BDAC0821E66D7 /* RNReanimated */ = { + 30E26B84B5472E6AFA77689D29B95890 /* FBCxxFollyDynamicConvert */ = { isa = PBXGroup; children = ( - 39FD99D4B527A7357DAF06D5AF92D02C /* REAModule.h */, - 7C2DFF1664EC73C434EA2C5FC8700E3E /* REAModule.m */, - C486A606163B725BA83E893805DD0904 /* REANodesManager.h */, - 546F8EC6A5BA2EACD8433663792C565D /* REANodesManager.m */, - 1D7658D1A395867640649B670435DEF0 /* REAUtils.h */, - 41677718CD41E09B377BFC1DBE02CAF9 /* Nodes */, - 3B40408F82A02CF967D1C0A10E651ADA /* Pod */, - 8A05E962AF26D9D5B81193A187AD7B74 /* Support Files */, - 8B05DEDA14F9435BD6AC943B3F169740 /* Transitioning */, + D4531DB289C980609179E55E7E05ADA9 /* FBCxxFollyDynamicConvert.h */, + 3393287E11CC9482CDC028594487C3B7 /* FBCxxFollyDynamicConvert.mm */, ); - name = RNReanimated; - path = "../../node_modules/react-native-reanimated"; + name = FBCxxFollyDynamicConvert; sourceTree = ""; }; - 30E26B84B5472E6AFA77689D29B95890 /* FBCxxFollyDynamicConvert */ = { + 31D2CDC167C12EA7D78D6F5DC2D2BD97 /* React */ = { isa = PBXGroup; children = ( - D4531DB289C980609179E55E7E05ADA9 /* FBCxxFollyDynamicConvert.h */, - 3393287E11CC9482CDC028594487C3B7 /* FBCxxFollyDynamicConvert.mm */, + 6BFECE4659CCC8F373106F4FBCEBBA8B /* Pod */, + BCD121339CCADFCBF547CC93DAA5ED1A /* Support Files */, ); - name = FBCxxFollyDynamicConvert; + name = React; + path = "../../node_modules/react-native"; sourceTree = ""; }; - 31CEF9FC61EAAFE7E60708B31D74E2E8 /* Pod */ = { + 31EADCD71B1DDC960515C4D247EE1BB1 /* RCTCustomInputController */ = { isa = PBXGroup; children = ( - 381C37C2967EDAC64D59720CA8E93561 /* React-RCTActionSheet.podspec */, + FDDEDD05EF147680EF0DBF08ECFBEF1D /* RCTCustomInputController.h */, + F01A7F1CE309364CFADA2C0F2C6A2E67 /* RCTCustomInputController.m */, + B15941ABDC61A8180B4683BF55D89C19 /* RCTCustomKeyboardViewController.h */, + 6EF2845ED692CD22426BA122C6EFB3A1 /* RCTCustomKeyboardViewController.m */, ); - name = Pod; + name = RCTCustomInputController; + path = lib/ios/RCTCustomInputController; sourceTree = ""; }; - 325523B32C582ACDA3C0EF8D11327567 /* Support Files */ = { + 3270F04CB0045641349810E12C6EFD0F /* Pod */ = { isa = PBXGroup; children = ( - 3037140F1A9967C130D4417F241B2121 /* RNFBAnalytics-dummy.m */, - A690B77AF36B409F1055F68CA6448437 /* RNFBAnalytics-prefix.pch */, - 761A9192EE9B0F232544C13FF99AFEB7 /* RNFBAnalytics.debug.xcconfig */, - 11F0798C2CE3B8FA8FC0CBC2DBF33686 /* RNFBAnalytics.release.xcconfig */, + 3D9384D5118326A3705D3CB8DDADF98C /* UMFileSystemInterface.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFBAnalytics"; + name = Pod; sourceTree = ""; }; - 325535D5D4CDDC93F2A01268E8F38396 /* RNRootView */ = { + 32B5138BC6DBE984AAA14028CECB433F /* Pod */ = { isa = PBXGroup; children = ( - 58FBA6BF8F5DEF89FA285E52026046E2 /* RootView.h */, - 0F32480CCE6172241CC35FCF80FC4695 /* RootView.m */, - 081AD769DA1E0BEBB35CF1D64652E4BF /* Pod */, - 1FDCC29DB23EDE31F9694745538009C7 /* Support Files */, + F92625B8F9E0142212436740292AA9AD /* README.md */, + 58D96A991900B1F41114A4BC42EE9732 /* RNCMaskedView.podspec */, ); - name = RNRootView; - path = "../../node_modules/rn-root-view"; + name = Pod; sourceTree = ""; }; - 34003A6238C72DE598524230293B3FB6 /* Tools */ = { - isa = PBXGroup; - children = ( - 2DA30F863A95CA63A9CA41DC1215B8CB /* BSG_KSArchSpecific.h */, - B91307C3A929D8DF91AC58B802C9E247 /* BSG_KSBacktrace.c */, - A26259A99D7BB43B4E5B892901507493 /* BSG_KSBacktrace.h */, - B5CB3671277BAEC0BF91F2FBD3A42D80 /* BSG_KSBacktrace_Private.h */, - A4646EA6592A48382242A9808410A72B /* BSG_KSCrashCallCompletion.h */, - 7B17532E2B223E59F45E9A8FB9ECBAB0 /* BSG_KSCrashCallCompletion.m */, - 59662D70CC0188329784D74C99BB4310 /* BSG_KSDynamicLinker.c */, - 7146855BE313403C5ED9FEC079FF52B1 /* BSG_KSDynamicLinker.h */, - 5EE32F40D2326C72907CA116A1204685 /* BSG_KSFileUtils.c */, - 281709ACAA55D9AFAACCE5AA7F5903BF /* BSG_KSFileUtils.h */, - FE8666F7C978BCDCF45027E49C25C325 /* BSG_KSJSONCodec.c */, - 81F11EEDC14F7C4E2AD6F2CCEA310344 /* BSG_KSJSONCodec.h */, - 54B4172F1418C6E30F22C3CCEA96A0F4 /* BSG_KSJSONCodecObjC.h */, - 7ADA317B19594AE3218117A8705CDE40 /* BSG_KSJSONCodecObjC.m */, - 05C256C0174F99CDCB35A0DFD17CF608 /* BSG_KSLogger.h */, - 03E5EB47B6A3A71B44638D9608347DF3 /* BSG_KSLogger.m */, - 38831898CC49426083C7D32DBDDDDFB2 /* BSG_KSMach.c */, - 14FC13817F76A9E1878059266BABDA0E /* BSG_KSMach.h */, - 9672644DCA64089147DE331ED18B734D /* BSG_KSMach_Arm.c */, - 76181D3BEF9681839092B950ABBDB66E /* BSG_KSMach_Arm64.c */, - 886AC1F36B8DEE39F487D5ED93776C00 /* BSG_KSMach_x86_32.c */, - 52A10F608DE17A15F5A037EF5954C287 /* BSG_KSMach_x86_64.c */, - EBE3DB2370C7C02C415C15384824DAA4 /* BSG_KSMachApple.h */, - B645C8150E6AD50B10361C0416E48B9C /* BSG_KSMachHeaders.h */, - 1F83739093BCCFAE205C9136BE161A71 /* BSG_KSMachHeaders.m */, - 52D609398B2F685E567D116134F67325 /* BSG_KSObjC.c */, - 9989D8FF156402DA473B382F354E8546 /* BSG_KSObjC.h */, - 6F316D102DA9DE8CDCD08BBACE4B96D7 /* BSG_KSObjCApple.h */, - 4C1B78E1803C23813A250CC2A5EC4ACF /* BSG_KSSignalInfo.c */, - 1BCD28B283C256AD4C796EAA9C2C79D0 /* BSG_KSSignalInfo.h */, - 478FB48FB5CDE7B792FDE0B9E8746200 /* BSG_KSSingleton.h */, - 434261158EB5302CC074E0D9AB6F6442 /* BSG_KSString.c */, - 84645EBCC45720045E50FCCEC8333FB9 /* BSG_KSString.h */, - 8A4525E2B09FFD4376CD4BC624AB3720 /* BSG_KSSysCtl.c */, - 00CE7932055F4F2101C67F5023A81F43 /* BSG_KSSysCtl.h */, - 37B6A17E32F09752D1C491E6E5FBDFCE /* BSG_RFC3339DateTool.h */, - 4C5099265536276347F457C5A85928CB /* BSG_RFC3339DateTool.m */, - 504E01F2F902C5E93CA0FDF7AC084217 /* NSError+BSG_SimpleConstructor.h */, - 230C59BF54A491FFA605006C56FD0B41 /* NSError+BSG_SimpleConstructor.m */, + 32FE94A32E87F1B703DA7D76E7894295 /* Pod */ = { + isa = PBXGroup; + children = ( + 0E08C6048FFEFE2635790CBA33E5FE03 /* React-RCTImage.podspec */, ); - name = Tools; - path = Tools; + name = Pod; sourceTree = ""; }; - 346D910AFBC139F615347025D7968AE5 /* ReactNativeKeyboardTrackingView */ = { + 348AB94FC53477DC6FE285DA4E391D36 /* Pod */ = { isa = PBXGroup; children = ( - 2FBF889F45EB3C2CBCC0F9E4321FF1B9 /* KeyboardTrackingViewManager.h */, - DE1B4993B60E87E4148EE22CB928423E /* KeyboardTrackingViewManager.m */, - 36D256BF4CAA49DBC1CAC7D5BF1E2F63 /* ObservingInputAccessoryView.h */, - E000C11C6DF90635207CA5133B38C806 /* ObservingInputAccessoryView.m */, - C900C13132D72C348F00160742357092 /* UIResponder+FirstResponder.h */, - A6B532F95BF9183102D4EECEA65C6C40 /* UIResponder+FirstResponder.m */, - 60323F742774E248A15B427F6477A9BF /* Pod */, - 9F41AED7E43DF2335EE37C01608E4FCF /* Support Files */, + 6D5269FCA0A7AC8479997C5A390F0694 /* EXImageLoader.podspec */, ); - name = ReactNativeKeyboardTrackingView; - path = "../../node_modules/react-native-keyboard-tracking-view"; + name = Pod; sourceTree = ""; }; - 36EFF12934B4BC4E0F28DDDBF71C0357 /* React-CoreModules */ = { - isa = PBXGroup; - children = ( - 79FBF28A28386300D385A211F73C9F9B /* CoreModulesPlugins.mm */, - CDA53E6309D597F1A328D58C06B39D6B /* RCTAccessibilityManager.mm */, - 7AAB326CC1D6EC158A737333A7A24CB1 /* RCTActionSheetManager.mm */, - 0C463628649DEB06109D13ACDDCCBB59 /* RCTAlertManager.mm */, - E0F1A9E6DFC12D5FF1B791FD3EB348D0 /* RCTAppearance.mm */, - C7EF22BF34462DA4E33A8103B75E4076 /* RCTAppState.mm */, - CB66756B68D9BCD4C42A9E759B0D2120 /* RCTAsyncLocalStorage.mm */, - 31A71D3B96AC98877C45572CE5B79748 /* RCTClipboard.mm */, - 676B19D7ED4D3163C11EF01B7C520593 /* RCTDeviceInfo.mm */, - 2DD2C3F323139CD047CE80B6F2D9C395 /* RCTDevLoadingView.mm */, - 1CB433F762A599FC44DD432A7CD62DFF /* RCTDevMenu.mm */, - 98A13AFEBB39F488516653C7CC75C935 /* RCTDevSettings.mm */, - FAD6926DFBD96416DF1301F4A8F8D53F /* RCTExceptionsManager.mm */, - FCF82FA21C0F6FF876AE1064187FE764 /* RCTFPSGraph.m */, - 3D5639176CDD9669D4556831638B3763 /* RCTI18nManager.mm */, - 8A550C495FCC6EB98720BED6AE0389B3 /* RCTKeyboardObserver.mm */, - 3231820F12D9F31D02742625D5125C27 /* RCTLogBox.mm */, - 5A2FE45D33CECE11F662AF35429FCD12 /* RCTPerfMonitor.mm */, - BB3BD72FE1CB1FB1C94AD1E936F437EA /* RCTPlatform.mm */, - AC31DEC51B5F0464273FCE1E863FDA95 /* RCTRedBox.mm */, - 754D5140B8345DD611E51A98DBCAFDC1 /* RCTSourceCode.mm */, - 23A7E51EEA6CB9F0BC2B16575E04CDCC /* RCTStatusBarManager.mm */, - D3ABDD622ABCBDBB9B57E4C372874B25 /* RCTTiming.mm */, - 75C7AEC5335DB8BDFB34CB88C5498906 /* RCTTVNavigationEventEmitter.mm */, - CD3F8E4D63A82ED04CC3C4FDAB80A2F2 /* RCTWebSocketExecutor.mm */, - 6040B3A3DF348482A355B16BE00DA7D1 /* RCTWebSocketModule.mm */, - 0658AB779FF9F97487CCDE791507BEB8 /* Pod */, - BE028EC925F4E11441FEC1EA1E331684 /* Support Files */, + 3913D9DF7B6ED30BED25B99E35382EB9 /* React-CoreModules */ = { + isa = PBXGroup; + children = ( + 25CA827584AFD1502FF9924AC2B548E4 /* CoreModulesPlugins.mm */, + 8EEA3FC26644B0F50416F14C24D4DF1F /* RCTAccessibilityManager.mm */, + 48E0F76A4EC6ECEC66C37C0DDE3738DB /* RCTActionSheetManager.mm */, + 369CCA86683823974F7D248C8BEFE1EF /* RCTAlertManager.mm */, + AE276CFC301FAA07309CA152AFDD4B2D /* RCTAppearance.mm */, + A1C7168B0251D94DB472003FAA6F7E1F /* RCTAppState.mm */, + BAB6317BA5F9AE797209849E56CA5AC2 /* RCTAsyncLocalStorage.mm */, + AF6DADBDC411D7EDB8BE79D2E048884D /* RCTClipboard.mm */, + E1BF63CB2C355A8D943DC955344338A4 /* RCTDeviceInfo.mm */, + D8F85567D82EC97DBA341F1041B12D6C /* RCTDevLoadingView.mm */, + 1168639493E9553522C59CAE5888E4DB /* RCTDevMenu.mm */, + E11337E75FB0DC8A84038AD805A26E3C /* RCTDevSettings.mm */, + 39846CE0522E32C21F0F7C477159F7AA /* RCTExceptionsManager.mm */, + 4792F421B617D44F1E0FDABE0488C4AC /* RCTFPSGraph.m */, + EDC5E4D53138E9169B74064DF83EA75F /* RCTI18nManager.mm */, + 0394D372B31962CA0FBBFA69F03B88A4 /* RCTKeyboardObserver.mm */, + 3B0D46A166DF5A6CB3464DC69BB2F0D9 /* RCTLogBox.mm */, + ADD612320D6447A37D6DA8FE9B53B375 /* RCTPerfMonitor.mm */, + 302B60A9B1060BC8908DE6EF2A56518F /* RCTPlatform.mm */, + CB605356388C336D2CF6595A3FF68DD2 /* RCTRedBox.mm */, + 00B79655A9D81E5053B0464854B20048 /* RCTSourceCode.mm */, + A794775F8DF971E6FD1695648F1CC33D /* RCTStatusBarManager.mm */, + 28E17600EEEE921DFF6A2EA32F09B0E6 /* RCTTiming.mm */, + 9BF3FB8854EA8EBF72F9E09A810FD653 /* RCTTVNavigationEventEmitter.mm */, + AF6C0F334EBF97DA121E3969730EADA3 /* RCTWebSocketExecutor.mm */, + BA332493C5E2E9FFE7EDF2ACDFDEBE35 /* RCTWebSocketModule.mm */, + 1252E1C27D070AD2DB4F75489CD0A4C5 /* Pod */, + CB89AEB62A4C6F5488ECC1398FDF635C /* Support Files */, ); name = "React-CoreModules"; path = "../../node_modules/react-native/React/CoreModules"; sourceTree = ""; }; - 37ECEC8255A0B4B2CEA56751FC24C29B /* Nodes */ = { + 394F189AA2C0524163E70F885C5B4EBF /* Support Files */ = { isa = PBXGroup; children = ( - BC49FBA937D0C70793E721F50A44F6B7 /* RCTAdditionAnimatedNode.m */, - 36867B33A22C7EF993DCBB3B4614F5C0 /* RCTAnimatedNode.m */, - 05D5E525457517A50EFA34B760767F4B /* RCTDiffClampAnimatedNode.m */, - 55B60445B564430D8FCC6703A32A708D /* RCTDivisionAnimatedNode.m */, - F6D46679673A45E2393DEE1E0F8B30EF /* RCTInterpolationAnimatedNode.m */, - 21928936A97A88A9FA82B955E7BEB826 /* RCTModuloAnimatedNode.m */, - 3D0093DD99E5523E0FB460A10B375718 /* RCTMultiplicationAnimatedNode.m */, - 302E7C75720BA7BDBB4BBB6003DD9934 /* RCTPropsAnimatedNode.m */, - 24687903163FF75252812F63FF1B4BC9 /* RCTStyleAnimatedNode.m */, - F66F4E471DF620EE0F33A0732775F499 /* RCTSubtractionAnimatedNode.m */, - 8C28554EF6D0DADF26EA3AEE55D546AA /* RCTTrackingAnimatedNode.m */, - 8D713BABFAD65EF8C45A6700E4B6F39F /* RCTTransformAnimatedNode.m */, - 1FB1745391EFB0909149AB6FDDDFA85C /* RCTValueAnimatedNode.m */, + 08A3CB43927AA948103E773C29ACEAB4 /* RNDeviceInfo-dummy.m */, + 601EA0D5CF3D4A8C4108CBBB36ED4B31 /* RNDeviceInfo-prefix.pch */, + 56DAF4014B943B40781B830AF5F62887 /* RNDeviceInfo.debug.xcconfig */, + D08EFCBEA423BA10284B5BA66BE2CE5B /* RNDeviceInfo.release.xcconfig */, ); - name = Nodes; - path = Nodes; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; sourceTree = ""; }; - 3848B00E2D732A8D0E9A8AFDA5FFD66B /* KSCrash */ = { + 39C5C4924104179573A0A96E3739945E /* Pod */ = { isa = PBXGroup; children = ( - A4B44B674A8C7C5DF7486DDB41F6CE30 /* Source */, + D5B93BC99632CAF946A24433E8881026 /* LICENSE */, + A685DADE5B63EB020F3217C711F0F725 /* README.md */, + 908B5E94A817C1FB2AFE04151D97743E /* RNReanimated.podspec */, ); - name = KSCrash; - path = KSCrash; + name = Pod; sourceTree = ""; }; - 3A6581DF2795E24727F2AEC0B5A76F42 /* Support Files */ = { + 3A7C91D2CF182E2D70A28253266B8D2C /* Handlers */ = { isa = PBXGroup; children = ( - CCA1D7E14117C738A5119AA2C3C7FA02 /* EXHaptics-dummy.m */, - C1D7863437C4B5CF0A49FC901466CB3C /* EXHaptics-prefix.pch */, - BA65CD9F60D6CD9D2918F1119B037C55 /* EXHaptics.debug.xcconfig */, - 91BA18ED6F6AF5B08848DD3D1BFA26C4 /* EXHaptics.release.xcconfig */, + 04B98A6541C44BDE588A8BB0762135B4 /* RNFlingHandler.h */, + CF91F406A7494A8E1A5957B1A8A213AB /* RNFlingHandler.m */, + 18D673170AC0F84EE74B6EA6A5571B9D /* RNForceTouchHandler.h */, + 1BB66FAF3D4382A0DDB9E75C9B3252CD /* RNForceTouchHandler.m */, + 5A29BA3BE31502514BF510857200FD3C /* RNLongPressHandler.h */, + F63BA0D54DB528DA458BED659F440D15 /* RNLongPressHandler.m */, + E9DCAD941C0C871AB1CD5719D67CDFA2 /* RNNativeViewHandler.h */, + 5F7CA9135269FB2B5C05B8D42EC1D2A8 /* RNNativeViewHandler.m */, + E2D17745779B1C6343FB92BCD96DE3DB /* RNPanHandler.h */, + 29FD9D843251F1B79E260C857FD8ED7C /* RNPanHandler.m */, + BDF5B077E05F2FBB8B2C0184106BE41C /* RNPinchHandler.h */, + 5D72DD647D416808BF34974162C736FA /* RNPinchHandler.m */, + 50984062FEBACC98E301FE8C5FB093ED /* RNRotationHandler.h */, + 4832FB3B469224FF39455BF5CE3C4379 /* RNRotationHandler.m */, + F87C847BA5F52A6F7017B51D1DB5C8AA /* RNTapHandler.h */, + 1BAF23C946EE11A743E0133F6D4DE059 /* RNTapHandler.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXHaptics"; + name = Handlers; + path = ios/Handlers; + sourceTree = ""; + }; + 3AD7074B8B9EB1A80D4A355456E413AE /* RCTSettingsHeaders */ = { + isa = PBXGroup; + children = ( + 310236F89241F84C0477CD04D38A2645 /* RCTSettingsManager.h */, + 932E06F35BD30FDB84DA15CA2EE1834F /* RCTSettingsPlugins.h */, + ); + name = RCTSettingsHeaders; + sourceTree = ""; + }; + 3AE053915A0FEE1B8232CFC7ED39E54C /* Nodes */ = { + isa = PBXGroup; + children = ( + 12D131B54FC10C41082E77668D7FC99C /* REAAlwaysNode.h */, + 281B750A44AD47E03297E51236DE9D1F /* REAAlwaysNode.m */, + 46EF57337E179191A5248B5C8607367E /* REABezierNode.h */, + 3D709346227CA2AD202AF96E58B646A0 /* REABezierNode.m */, + C987E0E268B890DBF8F6078F9904CFB3 /* REABlockNode.h */, + A99906F6637692D1D33D5301D525119F /* REABlockNode.m */, + 3F2FD149F23567FEB3C1D8AB46C2C153 /* REACallFuncNode.h */, + 11756D1E5DAA021125AE9E03335A424A /* REACallFuncNode.m */, + 22DEEF405C74B0E54436D626A23ACD25 /* REAClockNodes.h */, + 8377771EC84A757A47FE1E0DA6B5BA99 /* REAClockNodes.m */, + B15198656612D6F7D67CF6C22B9ACCA9 /* REAConcatNode.h */, + 1E9C43FD1EB2A47BD0BFA000F7505511 /* REAConcatNode.m */, + 15997B9B9CB7793942F1266089D1C249 /* REACondNode.h */, + E0F7E02DBD6EA79D7F7C6571EE5C47FA /* REACondNode.m */, + B9798BA0CFA3B96768EBC15D33CEEC6A /* READebugNode.h */, + 1BFD075B4697B7ECE733A36463E71AB2 /* READebugNode.m */, + BFD610C620148C24DE3EC5F4671CBB6D /* REAEventNode.h */, + ADC7C66180771F2D0AFFC27CB04EB18C /* REAEventNode.m */, + 21D1A9FD9EC9CF2B3C26B5B5AA26701A /* REAFunctionNode.h */, + AEA9BF7061E003A72517F2BDD850F6E2 /* REAFunctionNode.m */, + 74B566E4835051BB89760C27EBF275C1 /* REAJSCallNode.h */, + 15745FA1C01B4BBF22B3A8786B9D11B2 /* REAJSCallNode.m */, + 2D049BBBF6C34C073C4DCD32F6BA1F76 /* REANode.h */, + F7C9597B3282C95B9406F6A0DFF9FC26 /* REANode.m */, + E03059FD36393C52DD41D9ABB70E5089 /* REAOperatorNode.h */, + 717BD5D22EAAEDCCFBD56C98A64442CB /* REAOperatorNode.m */, + 2FC74470958D8E3183AF045DCA6398CA /* REAParamNode.h */, + 1FE3B2FCEA1A0BD87D99A59A4D27CDAC /* REAParamNode.m */, + EE4F636BB2299A28F2B474DBD1AE3BC7 /* REAPropsNode.h */, + BE7BBEA16AA2770CC45B4FA4532085C1 /* REAPropsNode.m */, + 4565F15D87E9621108957B941F9FB2C8 /* REASetNode.h */, + E78946F1158F8D8216B26729357FBA04 /* REASetNode.m */, + 6F5AB2E32FAAE43B89B91433D65C1FAF /* REAStyleNode.h */, + 09C2621E183BF2D8BF063AF6AB16E013 /* REAStyleNode.m */, + E866939F3C5BDF454AD1CC3F9D917364 /* REATransformNode.h */, + 426FFC257D5182156F8091284A830CC5 /* REATransformNode.m */, + 3E5ED966101B9A91EE0BA3B025D9545E /* REAValueNode.h */, + EBDABBA644D3037E76B628C3BA89DD8B /* REAValueNode.m */, + ); + name = Nodes; + path = ios/Nodes; sourceTree = ""; }; 3AF7C679B6C22718162C9462A89AFBD0 /* Support Files */ = { @@ -12787,54 +13000,173 @@ path = CocoaAsyncSocket; sourceTree = ""; }; - 3B40408F82A02CF967D1C0A10E651ADA /* Pod */ = { + 3BA06E93989808F789FEB1C70AFF44C8 /* KSCrash */ = { isa = PBXGroup; children = ( - 7A4BED0978ADAF16D77D8108D65F8D54 /* LICENSE */, - 508BB417CB8DFD0722D75A5F4DF2E318 /* README.md */, - 80702357A447B46FE7A769E855205CF2 /* RNReanimated.podspec */, + 95D7F06839FEE6B91B00C7C39FD72AD6 /* Source */, ); - name = Pod; + name = KSCrash; + path = KSCrash; + sourceTree = ""; + }; + 3C6C8AFA1030473E4CBE74C0DDA086B3 /* Base */ = { + isa = PBXGroup; + children = ( + 4106F5CD23A775271062C62403E9C693 /* RCTAssert.h */, + 1EB77FFC1766F762CCD1BB5D52F29FEF /* RCTAssert.m */, + 3F00203FB366474315D6587C988BF7F0 /* RCTBridge.h */, + 9A6C8BC8D9E8F68B539AE68210D40977 /* RCTBridge.m */, + 60B54D84390877018DB3F64DBA43949C /* RCTBridge+Private.h */, + 0A7654C80CBE607F4F22E9EAD9F4FAFE /* RCTBridgeDelegate.h */, + A1A4CC45FC023B26EBA1045B4E382F16 /* RCTBridgeMethod.h */, + B1A59D286D2DB96AFA4A62F0B482CBCD /* RCTBridgeModule.h */, + 2A928D06C98BB699C052179F4C1BFAF1 /* RCTBundleURLProvider.h */, + 64DAB2059368352B6449ED3CFA077EBA /* RCTBundleURLProvider.m */, + C8F5F8EE47940E56A11D1F6336DCD3FD /* RCTComponentEvent.h */, + DE4A46E63839FD3C57A35147F554A389 /* RCTComponentEvent.m */, + C77CE6D3AF5EFBF954E7F29328776D6A /* RCTConstants.h */, + A0C63E63A81405A5C6EB32CF1018A977 /* RCTConstants.m */, + 46C991973CCE1C61F27547DE4959FEBA /* RCTConvert.h */, + 14CFE64DB22C8515E734CFD8AFBC47B0 /* RCTConvert.m */, + C0D47778668E7FB9D16EB61395631AB2 /* RCTCxxConvert.h */, + 7030667900E390F7CFB4B17B744BF434 /* RCTCxxConvert.m */, + 512ED5A09E8391249A901BEC6AB53FA0 /* RCTDefines.h */, + EDE1A7165B603DC916D495FAB9AC8A0E /* RCTDisplayLink.h */, + 74FA8FA0FD8156A52615CEF09632EE7E /* RCTDisplayLink.m */, + DEB167D2D733B0BAE26E0B16608E079C /* RCTErrorCustomizer.h */, + 6EB29AA5041068095B78AC53CFE61C99 /* RCTErrorInfo.h */, + 6FB567481E28AE196674B742CDD8B9B5 /* RCTErrorInfo.m */, + EEF9C253E10CCF846476FE128A058BA6 /* RCTEventDispatcher.h */, + 8329375DA1CE8967879379CF7878C999 /* RCTEventDispatcher.m */, + 556926480456AAB0A39A0D00ECD7DC05 /* RCTFrameUpdate.h */, + 45846CC68122A0AC3051544A07D5B2B9 /* RCTFrameUpdate.m */, + 3E30D0570676A57905BC13E759607211 /* RCTImageSource.h */, + 41D25E2303087797B675CE467F3E2689 /* RCTImageSource.m */, + 274F8B085DC92CB35B0F007F6D6B7336 /* RCTInvalidating.h */, + 2C1E624888F4BDE97295B8A0B99C6913 /* RCTJavaScriptExecutor.h */, + 4A65D1885DEC5BC40029DC25BF7608B5 /* RCTJavaScriptLoader.h */, + 75AAB43C51B7531BA82FDFF4DB11D5A7 /* RCTJavaScriptLoader.mm */, + BFB75D2486AC6C6768591D614DB9B395 /* RCTJSInvokerModule.h */, + BDEBFB4DD6D7394F69B5F9178B6DDF02 /* RCTJSStackFrame.h */, + 64F314119FA34086B0AF3EBAFD78C3B6 /* RCTJSStackFrame.m */, + ABF86DAC23E4317452CA96401F0EDDCC /* RCTKeyCommands.h */, + 5EFCE5D37FCDD601CD22091C80C7E5C2 /* RCTKeyCommands.m */, + 0C08FB01E122F5F358A979F5F9CE50A1 /* RCTLog.h */, + 02E311417C5E0C06D9146F250652994A /* RCTLog.mm */, + A5677D7CF54E83BEDEC8DB86156DB6E7 /* RCTManagedPointer.h */, + C6553FE5AE815B261BAC5F613BBFB516 /* RCTManagedPointer.mm */, + CAE325D44FDA7C1A7B388037506C94D8 /* RCTModuleData.h */, + 69DB0287B6E73FEAB846D812AD410F88 /* RCTModuleData.mm */, + 33EA54E898E5CAE199E7654058234757 /* RCTModuleMethod.h */, + FBAC7CDE546D7D2889270A00B9B289C1 /* RCTModuleMethod.mm */, + CE93C8477745682D17113E1E17B028A3 /* RCTMultipartDataTask.h */, + 774CB4064061E5F7444F4B5EFA6FF820 /* RCTMultipartDataTask.m */, + 3C0D075CC671699DE5DB6547128FD6BF /* RCTMultipartStreamReader.h */, + 82DE9CD365DBCE5C75BE99D75B93318A /* RCTMultipartStreamReader.m */, + 8CBB013107BEF10373F55BBF5D608EAC /* RCTNullability.h */, + F6B1C3ECC5367567E61653892F487170 /* RCTParserUtils.h */, + 436B0290BB873A84F4E34EBE895DCEFE /* RCTParserUtils.m */, + 7D990D039D935D7251590D4FE52F88D8 /* RCTPerformanceLogger.h */, + 4D8A8277DB1354588CD4DA65CFD95E43 /* RCTPerformanceLogger.m */, + AFC8A5266AA6A474F182951B5D20CB9C /* RCTRedBoxSetEnabled.h */, + 1CD0ECBE15E8434D2E92D4AF5E0A3A0F /* RCTRedBoxSetEnabled.m */, + B5E2FE0F645B8A10E9354F5F1310E458 /* RCTReloadCommand.h */, + 1069F1EA8C302C560D5B44971C53D9CA /* RCTReloadCommand.m */, + B8F8291E20B8E31ADAA0F53DD6AACDFC /* RCTRootContentView.h */, + 2D8A1EDB5219B4C91F3124A0D77AB72E /* RCTRootContentView.m */, + EC48217D6190DB1353769610736D2C79 /* RCTRootView.h */, + 6E277FE9F831DE91835D6BCD502BBCC2 /* RCTRootView.m */, + 93C65F7F5646FCD41A7119937A3BA994 /* RCTRootViewDelegate.h */, + A4DEC320CA763FB8B1568A52946CE756 /* RCTRootViewInternal.h */, + F401135CF9E9CE9B09A3DA38AD61A99D /* RCTTouchEvent.h */, + 8F747C55B7F59FC7E3A1271912321591 /* RCTTouchEvent.m */, + F2123B0F45A9E9D1E06385AEFB5EAB88 /* RCTTouchHandler.h */, + 07A15E1E9476E3BD79C5B79B20217135 /* RCTTouchHandler.m */, + E9D3AA4A8590E0DF805CE12F3FD52252 /* RCTURLRequestDelegate.h */, + D25A0A68EC8D0921730247EF6DCB9C91 /* RCTURLRequestHandler.h */, + 7FBBAE9E2775C548336091B0D63DD00A /* RCTUtils.h */, + 493F44265C4A6B4AF1DBB9655E42217A /* RCTUtils.m */, + F403C4269A40AA50795F6D3F90A05C95 /* RCTUtilsUIOverride.h */, + 7C9818187C1FA532EFFCE969BFE77FDD /* RCTUtilsUIOverride.m */, + 8ADCEDA931ED99DB745AC91AFC84343B /* RCTVersion.h */, + F3BF025C2B821E1BC9D7DD9F37571605 /* RCTVersion.m */, + 868C912614BF52D467F395714ACF4AD2 /* RCTWeakProxy.h */, + C05140C2F4F337FC835A966EEAF990C5 /* RCTWeakProxy.m */, + F74DD1309F0548E63DAD7928FD4CEAC6 /* Surface */, + ); + name = Base; + path = React/Base; sourceTree = ""; }; - 3B96DAD66E4248E1673D835017EDCE10 /* RNLocalize */ = { + 3D10D80528D94CCF33C416966E72BB36 /* Support Files */ = { isa = PBXGroup; children = ( - 51390823E553441028A6FCF5E88F91BA /* RNLocalize.h */, - 4710C0F0782227065D030B37B9241342 /* RNLocalize.m */, - EB4903D80CDFD473B9783C6F8D9046A5 /* Pod */, - A579D14974BBA2B5D7B78282023D5927 /* Support Files */, + FF099FA8CEFB41AE93B691AA31CA50E5 /* react-native-cameraroll-dummy.m */, + A3C4A0ED064E3739D0823FBB083D7233 /* react-native-cameraroll-prefix.pch */, + 0AFF9BF65B24F35A2D5C5A62B3E47808 /* react-native-cameraroll.debug.xcconfig */, + 50FF6DAE7F8DFDB94CF1E5A200062077 /* react-native-cameraroll.release.xcconfig */, ); - name = RNLocalize; - path = "../../node_modules/react-native-localize"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; sourceTree = ""; }; - 3CD7A67ADEAB47B0809C59A0E735FEB3 /* Core */ = { + 3D1116BE9B2ECFA9DF2A41AB7F74B279 /* Support Files */ = { isa = PBXGroup; children = ( + 80E5BFC4461DE1FA8842959B06C4E16E /* EXAppleAuthentication-dummy.m */, + DD2EB68231C88DCB38B369BE5388E0DD /* EXAppleAuthentication-prefix.pch */, + 7214DC633B7FA5A29CACCF6CA3B0E00E /* EXAppleAuthentication.debug.xcconfig */, + 914EBF309912C985E247DF24426247E8 /* EXAppleAuthentication.release.xcconfig */, ); - name = Core; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXAppleAuthentication"; sourceTree = ""; }; - 3E0F4F26042B7F359109D7E7E257472B /* Singleline */ = { + 3D1D03DC255A9725CAC7561538099688 /* Support Files */ = { isa = PBXGroup; children = ( - 391F645395DADABA74114F035E174C4D /* RCTSinglelineTextInputView.h */, - 643FCEC46D4EE7588770B96F2A9FA4FA /* RCTSinglelineTextInputViewManager.h */, - C8265C63AC43F5A886877016BFB2C59E /* RCTUITextField.h */, + 2810B26CEEDC1CED35FAE7B670474663 /* RCTRequired.debug.xcconfig */, + EF5B04B8AC4E9345914B2A352153ECAC /* RCTRequired.release.xcconfig */, ); - name = Singleline; - path = Singleline; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/RCTRequired"; sourceTree = ""; }; - 3F4F255B6E4ADA09A36D52A9A72F7194 /* Pod */ = { + 3E6944384DB861AF1DAE6268CD163456 /* Pod */ = { isa = PBXGroup; children = ( - D3B01EEE739ACB789829BE7C00604679 /* UMAppLoader.podspec */, + 3E427DCBF1F5C0B8CE315C90993698CD /* React-RCTAnimation.podspec */, ); name = Pod; sourceTree = ""; }; + 3EFDA67597E07D2BD83B1F74F2AE316A /* Support Files */ = { + isa = PBXGroup; + children = ( + 8E9A5E5F6AE9E3C5E06AC13200C08739 /* React-cxxreact-dummy.m */, + 33E5248E19B503DE53C1D6976CEC04A5 /* React-cxxreact-prefix.pch */, + C4AA78CBB6782C8E7428B534F72B07FB /* React-cxxreact.debug.xcconfig */, + 63BE788E504947243C67ABE47286B0AF /* React-cxxreact.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; + sourceTree = ""; + }; + 3F2C6DD602E85B72ADBF205302152D41 /* Video */ = { + isa = PBXGroup; + children = ( + 5070AF1FF7BA488BE8FC2FE092602451 /* EXVideoManager.h */, + 2FEC334AAEE7FB1D25D55F1D998AE025 /* EXVideoManager.m */, + EE2AE208EB32955B9520EC77E30CBE5F /* EXVideoPlayerViewController.h */, + 8B31E32BCBDC2BC3A9B9C329D0BA117E /* EXVideoPlayerViewController.m */, + B37FE4E4178184906B679078CE8782CD /* EXVideoPlayerViewControllerDelegate.h */, + 454B54B7087E41A573880B5678B1115F /* EXVideoView.h */, + 12CB2A2132BE96747592AE15E712469C /* EXVideoView.m */, + ); + name = Video; + path = EXAV/Video; + sourceTree = ""; + }; 3F548647CEBB70D1D941CFE1935D00F0 /* encode */ = { isa = PBXGroup; children = ( @@ -12851,89 +13183,63 @@ name = UserDefaults; sourceTree = ""; }; - 3FE02D8FA844687F2FF416FB79EFA694 /* ios */ = { + 3F6DB6A7E9373191576535A17CDF7691 /* Support Files */ = { isa = PBXGroup; children = ( - 1CFAC1F94D57CDCB0B5D001D944668F4 /* RCTTurboModule.h */, - 6F60E8EDD3EB7670E8EB79D56340F729 /* RCTTurboModule.mm */, - 243401B845B68CB7AB081CC4CCF06704 /* RCTTurboModuleManager.h */, - E87DA28103B87D680B1EAABAD645DC45 /* RCTTurboModuleManager.mm */, + 91D226FCE30BC7A319F2B070E94819F5 /* React-RCTLinking-dummy.m */, + 24802765F7576A3981498FB8F21FEA6A /* React-RCTLinking-prefix.pch */, + E448CB1CFBC5BA0A3B1238A207A74782 /* React-RCTLinking.debug.xcconfig */, + 08B0139E8BE058755F5EB3C8996FC9FF /* React-RCTLinking.release.xcconfig */, ); - name = ios; - path = ios; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; sourceTree = ""; }; - 41677718CD41E09B377BFC1DBE02CAF9 /* Nodes */ = { - isa = PBXGroup; - children = ( - 579E112BB7E32ECD9F097D5840406CE5 /* REAAlwaysNode.h */, - E115190DC576F2B2DC84264966A279DD /* REAAlwaysNode.m */, - 96E629813A79E1A1B2A6F1C220CB9F57 /* REABezierNode.h */, - 59965455D74C0B438124F5835829913F /* REABezierNode.m */, - C0C2E58B15F6B96D6E542C553E6248E3 /* REABlockNode.h */, - EBC5E288F58A6D96FC62880FB30274F9 /* REABlockNode.m */, - B81CD30965DFF268320C3E94FACF6BF0 /* REACallFuncNode.h */, - 16D4254ADF5C3F6A41BE4F12C7750B8E /* REACallFuncNode.m */, - 237316B707521AEC76705CCA86B47A0D /* REAClockNodes.h */, - BF8CDD264099EA4CB7EB7831969E98AA /* REAClockNodes.m */, - 33A8B74E82780E85783CF929D1E5C33A /* REAConcatNode.h */, - B7003F698BAF63FE172F3DD6410525E7 /* REAConcatNode.m */, - F111332F8BD2666EDBDF7148438E369B /* REACondNode.h */, - 24D26B10E97574156D744D78C628AF3F /* REACondNode.m */, - 13A2CE1EF3B7728E6B201CE0A9866BEF /* READebugNode.h */, - C1FF87D2217864C38E298491E235183E /* READebugNode.m */, - 2794048F0B28748195004537CAA2D24E /* REAEventNode.h */, - 59BD227B768F741C0631574F513D5B29 /* REAEventNode.m */, - BC886792F63CBB204AF163F4F10381F2 /* REAFunctionNode.h */, - 7308D34C6AF817F460B36C2863BB7E1D /* REAFunctionNode.m */, - 5073F6A7A6E70B84666C738A870B4BB0 /* REAJSCallNode.h */, - 01C0F8981C0D86606BF0639C364CE085 /* REAJSCallNode.m */, - ADC8934F7ADFEFF6A171E337FF1CF90A /* REANode.h */, - 2C5FE14ADE74DC6A73069DA443A98AA4 /* REANode.m */, - CA0D1B313D1DF488566BEB346ADA59E4 /* REAOperatorNode.h */, - 7A7D68D15B0243DFA258DB1E62CDA5F4 /* REAOperatorNode.m */, - E36D42AC3D45EAA28DBC294D95C9A7A8 /* REAParamNode.h */, - 018FF17C1BC7E4AEA45E2A67DB2ABC92 /* REAParamNode.m */, - C91D0A391046F259A09B4F20546CF13C /* REAPropsNode.h */, - 70E5A3AC1066B716AF5B48AE28779BCE /* REAPropsNode.m */, - B8B023184401C6EF64FB724C3F17CF1F /* REASetNode.h */, - 4AD40CF96F3B5613CA523EFFB6C4F838 /* REASetNode.m */, - 2501712FFF7A2530FBA2F2F040E5EAC5 /* REAStyleNode.h */, - 4E01037C53150DD7A4BE27157EF62784 /* REAStyleNode.m */, - 86C399F396152F8A49704DF5C9FF453B /* REATransformNode.h */, - AB1626DF9AA02609081D8183E536AD83 /* REATransformNode.m */, - E1C033AD761B3E0BD1EA35E2C84EBCAB /* REAValueNode.h */, - F17A40D774E2293A377BA9F5FE267C23 /* REAValueNode.m */, + 4144A71C19AC98A393E8C72C4AFBFE64 /* UMReactNativeAdapter */ = { + isa = PBXGroup; + children = ( + 061BB0AF41EF8957C0CEF57545B3CD22 /* UMBridgeModule.h */, + 29DCCD927AB91D8C972BC7B5DBA09EAD /* Pod */, + 4912EFF1C4CC37353E54A31504DF14D7 /* Services */, + 4B45D8CFBC3BC2AA3F944A704E4AFFC4 /* Support Files */, + DCF3B8CF29C53C6379CFFE360027C8B5 /* UMModuleRegistryAdapter */, + D61E137F0C90128868B549E72D132FC7 /* UMNativeModulesProxy */, + 4A8E29832ACC076E315B99D97D93CFE4 /* UMViewManagerAdapter */, ); - name = Nodes; - path = ios/Nodes; + name = UMReactNativeAdapter; + path = "../../node_modules/@unimodules/react-native-adapter/ios"; sourceTree = ""; }; - 4171BB3A0C9A3BC938CCCD0155AE4F6C /* RCTTextHeaders */ = { + 41822C61327F844839B8FAD882D27270 /* Pod */ = { isa = PBXGroup; children = ( - 5DA37A201BF5D7381D9112D017DEB075 /* RCTConvert+Text.h */, - F788C76C4B4C4BF7E938A725AA517167 /* RCTTextAttributes.h */, - 55D28C4F446EF85B88F966A14F398624 /* RCTTextTransform.h */, - 2B272FBAEF7DC48D5CE4E89B9BE0AC83 /* BaseText */, - C9CA355C3E953A1C493B5F14198BDD5F /* RawText */, - 9081107DABCAB3B3A4CF56F5BF9D3CA3 /* Text */, - FA5292E0134B05A244356DE383F55389 /* TextInput */, - DA5C0C93837245DA777160F9882BD360 /* VirtualText */, + 5834DA9C0B2D131CB05580A3CD71B55B /* LICENSE */, + 6B38E3760EB788B4CDF210C77E97DDB4 /* react-native-orientation-locker.podspec */, + 44D1DF953356C1CFEB6C3C8F44AF604D /* README.md */, ); - name = RCTTextHeaders; + name = Pod; sourceTree = ""; }; - 4294BB064AC395EDD48C4A9D00A7A784 /* Support Files */ = { + 418FE2A66404BD2759CB8E4FF7F01AE4 /* Support Files */ = { isa = PBXGroup; children = ( - 3DF7763DC2839EBBF4377FC5EE30D15E /* EXKeepAwake-dummy.m */, - F23F8715F75CDD091E99A431B5145660 /* EXKeepAwake-prefix.pch */, - 2CDE27B48928A37F5C3D238EF4D46660 /* EXKeepAwake.debug.xcconfig */, - C475CD97836017BA624960DEE9E51170 /* EXKeepAwake.release.xcconfig */, + 87020B85ADE1CC6C75520E57AC007451 /* React-callinvoker.debug.xcconfig */, + 0F64A1A41F4E66F99022F2539A36AAAB /* React-callinvoker.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXKeepAwake"; + path = "../../../../ios/Pods/Target Support Files/React-callinvoker"; + sourceTree = ""; + }; + 4195990F0FAFD7FB04FF4546F270A9C6 /* React-RCTLinking */ = { + isa = PBXGroup; + children = ( + 32A87992A21527A69CE2B66FF9D0DB48 /* RCTLinkingManager.mm */, + 02835B7E9F15A20B6E4AE9528C7069A2 /* RCTLinkingPlugins.mm */, + B7C63BE97961E994059B506A157DAF55 /* Pod */, + 3F6DB6A7E9373191576535A17CDF7691 /* Support Files */, + ); + name = "React-RCTLinking"; + path = "../../node_modules/react-native/Libraries/LinkingIOS"; sourceTree = ""; }; 42BAED7EAC91BBEA71BF528089F7E319 /* Flipper-PeerTalk */ = { @@ -12953,37 +13259,34 @@ path = "Flipper-PeerTalk"; sourceTree = ""; }; - 42C9FA7BFEE22110376983E144DA8059 /* Support Files */ = { + 42BB24FEE3559907AB36CF6434F05A17 /* Pod */ = { isa = PBXGroup; children = ( - 76927A9671ED42E8E5FA92BDBE1F9201 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, - 77299313933A9BFA169A53D74BB1FD85 /* RNImageCropPicker-dummy.m */, - B34A5411E38593F13C8E70AD86AD3C6C /* RNImageCropPicker-prefix.pch */, - 30344D38AC24E622A7CB8F90B79B1BDD /* RNImageCropPicker.debug.xcconfig */, - 2732B5BC52CA8008D3579214389C4BE5 /* RNImageCropPicker.release.xcconfig */, + 9397784A9A2A7149D76FD7BAB094F1FA /* UMSensorsInterface.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; + name = Pod; sourceTree = ""; }; - 43144EB1022E739AA849143176A5390F /* Support Files */ = { + 44DB969611520B554B5CABA81B42D7CE /* EXWebBrowser */ = { isa = PBXGroup; children = ( - 64814E0BE194994C80E70506268CD379 /* react-native-notifications-dummy.m */, - 498F9D448F1A2F8FCB916767C2E3FCDC /* react-native-notifications-prefix.pch */, - 7465EF4745AEA5201AC98AD425335674 /* react-native-notifications.debug.xcconfig */, - B7743AE73E9139677017E03C6DA9C817 /* react-native-notifications.release.xcconfig */, + 0534894A0989BDB927FB21B9F60C2E70 /* EXWebBrowser.h */, + 463AB84C1747B2050E472A04BBF45B62 /* EXWebBrowser.m */, + 2157394306A582AF9CDFD1DFC6072D64 /* Pod */, + 99639D428D79683F019E281AA2F79E95 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-notifications"; + name = EXWebBrowser; + path = "../../node_modules/expo-web-browser/ios"; sourceTree = ""; }; - 441561515AF3388B3C86393E56B1D3CF /* Pod */ = { + 453750D936676CFF74E725433B558A0D /* Support Files */ = { isa = PBXGroup; children = ( - 16C61EDF9448F4E6EDB3EDEF8387F64E /* UMFaceDetectorInterface.podspec */, + D2ADA587AA0692848BBB01A850B74C47 /* UMBarCodeScannerInterface.debug.xcconfig */, + 137F89DD5DAEDD02E1D88E58E9DA3F5E /* UMBarCodeScannerInterface.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; sourceTree = ""; }; 455F5737972E930DE18199979499DDA2 /* Flipper-DoubleConversion */ = { @@ -12995,179 +13298,109 @@ FFE6E8C786BBE3BB5B6A0479A2E53867 /* bignum-dtoa.h */, CBE6C69F27CB13EFB9F4ACA9780FDC5C /* cached-powers.cc */, 2F8C8A39F7438E3AF108E6B210E6995D /* cached-powers.h */, - 6979EAB50AB5EF48EE6BB5AF4D3DE794 /* diy-fp.cc */, - 6560D89E5F019D347BE59995EBC3D773 /* diy-fp.h */, - 7410F2A1ED7C7B68D0E68EF4F3F94F89 /* double-conversion.cc */, - F618E351EAE404FAD585BA59E476D255 /* double-conversion.h */, - 36F6B478E1C8AA375374E0F9964F521B /* fast-dtoa.cc */, - DD955A50F1D367F42A0666F31733C86A /* fast-dtoa.h */, - 209E6159B2A3ED415D8A9F22EC1F49B3 /* fixed-dtoa.cc */, - 867199107D83A031C2690C93AC51B5BA /* fixed-dtoa.h */, - 5583F8386CC7AC57CE176AA365FB8EA4 /* ieee.h */, - 1263A8E0612F8ABC10F754CD754179DF /* strtod.cc */, - FBC0B4EA10E268A34C5AC36C0EBF4815 /* strtod.h */, - 549E0A88A80A156B7DA4A9FBEE7C0282 /* utils.h */, - B769BF77F668BB51D020A63960E880D6 /* Support Files */, - ); - name = "Flipper-DoubleConversion"; - path = "Flipper-DoubleConversion"; - sourceTree = ""; - }; - 45F8461B437A185AB847ED051991025F /* Support Files */ = { - isa = PBXGroup; - children = ( - 62B11F68B301D16E3AAB2FDD1D384F8E /* React-jsinspector-dummy.m */, - 6F2D5A1453987538D549BAA26DB61701 /* React-jsinspector-prefix.pch */, - 27B06FC1E3E74DC87660CC1C44A1853A /* React-jsinspector.debug.xcconfig */, - 70121B130EBD45D3CF9B351466EEB35A /* React-jsinspector.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; - sourceTree = ""; - }; - 47776E789C6476DEE35F82BEF31F61C0 /* platform */ = { - isa = PBXGroup; - children = ( - 3FE02D8FA844687F2FF416FB79EFA694 /* ios */, - ); - name = platform; - path = turbomodule/core/platform; - sourceTree = ""; - }; - 48327B25B35D3B7D359D65B8DFC52772 /* Pod */ = { - isa = PBXGroup; - children = ( - DC69FA2A4EC2B49A56984778E676D622 /* EXHaptics.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 4853F06247866052A85429B2F48CB2DC /* Support Files */ = { - isa = PBXGroup; - children = ( - E04B19BD5A8E139C3FBB1819A1F39921 /* UMReactNativeAdapter-dummy.m */, - 03B6126D5858CD6E529195CF96442AEA /* UMReactNativeAdapter-prefix.pch */, - D42AFDA613E0E45A006CDC0E8DCCF71B /* UMReactNativeAdapter.debug.xcconfig */, - F5C90F8428D1ECED9E0986EC790A7769 /* UMReactNativeAdapter.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; - sourceTree = ""; - }; - 48DF91A2E2B7B514FBC4D67675A2CB73 /* React-jsiexecutor */ = { - isa = PBXGroup; - children = ( - 23EA729B2C57815E3E5B59F0E318D8A0 /* JSIExecutor.cpp */, - C66080E2B8DB2977C93C96CDACD6A64F /* JSIExecutor.h */, - 76B12C7156A4F7E42D6CA1AA82F60A99 /* JSINativeModules.cpp */, - B15471ED62E393D50463991E5883996B /* JSINativeModules.h */, - CD861BF28B44335182A8E10219267D57 /* Pod */, - 191D63BC3A7EA57DC5CB946DBA905BCA /* Support Files */, - ); - name = "React-jsiexecutor"; - path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; - sourceTree = ""; - }; - 48EB6C98A2AB4C23DF39FF0C925095AD /* Support Files */ = { - isa = PBXGroup; - children = ( - 1A8191EC0EBF48385F0338017A4746D5 /* React-callinvoker.debug.xcconfig */, - 572F73857E3AE75AFFF506AE103B02F8 /* React-callinvoker.release.xcconfig */, + 6979EAB50AB5EF48EE6BB5AF4D3DE794 /* diy-fp.cc */, + 6560D89E5F019D347BE59995EBC3D773 /* diy-fp.h */, + 7410F2A1ED7C7B68D0E68EF4F3F94F89 /* double-conversion.cc */, + F618E351EAE404FAD585BA59E476D255 /* double-conversion.h */, + 36F6B478E1C8AA375374E0F9964F521B /* fast-dtoa.cc */, + DD955A50F1D367F42A0666F31733C86A /* fast-dtoa.h */, + 209E6159B2A3ED415D8A9F22EC1F49B3 /* fixed-dtoa.cc */, + 867199107D83A031C2690C93AC51B5BA /* fixed-dtoa.h */, + 5583F8386CC7AC57CE176AA365FB8EA4 /* ieee.h */, + 1263A8E0612F8ABC10F754CD754179DF /* strtod.cc */, + FBC0B4EA10E268A34C5AC36C0EBF4815 /* strtod.h */, + 549E0A88A80A156B7DA4A9FBEE7C0282 /* utils.h */, + B769BF77F668BB51D020A63960E880D6 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-callinvoker"; + name = "Flipper-DoubleConversion"; + path = "Flipper-DoubleConversion"; sourceTree = ""; }; - 4910DC168C07CEA5BFACF51F1C7E6662 /* UMFontInterface */ = { + 46D02ECCC70AA969B8718E03D3F2B4EC /* CxxUtils */ = { isa = PBXGroup; children = ( - 6F3043826A89226A7366045E082D9584 /* UMFontManagerInterface.h */, - 0E4F870FD218E121124A4D3143F2E271 /* UMFontProcessorInterface.h */, - EDE23A2623E231629D960229923C2633 /* UMFontScalerInterface.h */, - 63F3B531A37B6FACABA0B0B734B5BFA6 /* UMFontScalersManagerInterface.h */, - 968A84E5244930373D40FDB5F5D2CDEC /* Pod */, - 86AFD7FA88CACE9D4CE5CF0CD9225A9F /* Support Files */, + 506BF5CDED860C7E60A2228AAFC81E1C /* RCTFollyConvert.h */, + 564338EA34BC53641F2A55206A598926 /* RCTFollyConvert.mm */, ); - name = UMFontInterface; - path = "../../node_modules/unimodules-font-interface/ios"; + name = CxxUtils; + path = React/CxxUtils; sourceTree = ""; }; - 49640788344D20B32CFE837D7BBCF130 /* jsi */ = { + 4912EFF1C4CC37353E54A31504DF14D7 /* Services */ = { isa = PBXGroup; children = ( - 4D9AD801C07FD32811D773A81D36DD57 /* decorator.h */, - D9B85170C4634A76D5AB655148A1A4D2 /* instrumentation.h */, - 316DE097F7754637102647D257337A16 /* jsi.cpp */, - CEF676D927EF30BF109A54DE3874714E /* jsi.h */, - 6D4154C92841AA06A2A4EDF702866E88 /* jsi-inl.h */, - F46740C50C4F1E03FE092B3D1C710F26 /* JSIDynamic.cpp */, - 7D7A81FC0EC00A335F1B848A5B9B2058 /* JSIDynamic.h */, - 0B8AEFAB328CB7DB757E4EC325FA37E3 /* jsilib.h */, - B00DD0BE7AC6D9C136E32F7A168E81B4 /* jsilib-posix.cpp */, - 7122D208E7CBDA56D7F285485D4C36DD /* jsilib-windows.cpp */, - 119031EBC17DB49D08AD59362E3FB948 /* threadsafe.h */, + A105509D8A9F07E954F332C530C6C5F5 /* UMReactFontManager.h */, + AA3AB276B12B041B0C4DEE01A95B7E8C /* UMReactFontManager.m */, + 0B5BC62AEECDAB5208B11B2A1D86CF5D /* UMReactLogHandler.h */, + 1069ECE09D76E417618559067276997E /* UMReactLogHandler.m */, + 8A95002F1882C006E3D362CE26A656E2 /* UMReactNativeAdapter.h */, + AFA2296417D66958C0DEB49723700D2F /* UMReactNativeAdapter.m */, + E260E0945F4241D783642888D16FDEBB /* UMReactNativeEventEmitter.h */, + 6D539052FEFA0E040B941DEED078A486 /* UMReactNativeEventEmitter.m */, ); - name = jsi; - path = jsi; + name = Services; + path = UMReactNativeAdapter/Services; sourceTree = ""; }; - 49AFB18E9EBCECAA0EAE9031DBF6EF7A /* RCTWebSocket */ = { + 4A09FC59F32CDC7E20C2653DD09C8179 /* Pod */ = { isa = PBXGroup; children = ( - B3FDD204AA7584A8104379B1A39CE687 /* RCTReconnectingWebSocket.h */, - 436502371746803E5C159209760C5A3D /* RCTReconnectingWebSocket.m */, - 4023F329225D6A97E239B3392E99A0D7 /* RCTSRWebSocket.h */, - 225E2159F6A8AA9BA050DA754BCCD886 /* RCTSRWebSocket.m */, + CA3067B2F5081F7EF4ACBB6BDDC0E4B6 /* LICENCE */, + 41BB1739AC6F4F3B877F941D124780EE /* react-native-cameraroll.podspec */, + D0AFF9FF2A55E542476F9D24C1DBEF72 /* README.md */, ); - name = RCTWebSocket; + name = Pod; sourceTree = ""; }; - 4A5A0673B8B45C06F8AD24B8BD17EDA3 /* UMAppLoader */ = { + 4A8E29832ACC076E315B99D97D93CFE4 /* UMViewManagerAdapter */ = { isa = PBXGroup; children = ( - D7B09C1B2107DC053C8EB1F4107DBB2A /* UMAppLoaderProvider.h */, - 27B50238FD1725E549B8016F06B6EB51 /* UMAppLoaderProvider.m */, - 86823FC030270B15B3A1CF9DFBD11247 /* Interfaces */, - 3F4F255B6E4ADA09A36D52A9A72F7194 /* Pod */, - F0F84E0523E30E70FFA299C43AE81570 /* Support Files */, + F18007CA4892127EC3E08FCA887D92EE /* UMViewManagerAdapter.h */, + A13175FC7A083A90924486CB240BB740 /* UMViewManagerAdapter.m */, ); - name = UMAppLoader; - path = "../../node_modules/unimodules-app-loader/ios"; + name = UMViewManagerAdapter; + path = UMReactNativeAdapter/UMViewManagerAdapter; sourceTree = ""; }; - 4B0D1D5E237F48C2584EB729A6071706 /* UMNativeModulesProxy */ = { + 4A9C7612F115AB9BA36E136147CEE2D2 /* Support Files */ = { isa = PBXGroup; children = ( - B79F8D60DE89F1BC22AE005D981E0B63 /* UMNativeModulesProxy.h */, - 5837CA59DEFBA496C78103D2396783D8 /* UMNativeModulesProxy.m */, + B972397B2F0BFF8BD1752E0FEAF70252 /* EXHaptics-dummy.m */, + CD946AE806766F8C22B5D974803F68E9 /* EXHaptics-prefix.pch */, + 5A35394086F383136398A2771E1A363B /* EXHaptics.debug.xcconfig */, + 02ED863CD770F3959D1A3A05CF7C80F3 /* EXHaptics.release.xcconfig */, ); - name = UMNativeModulesProxy; - path = UMReactNativeAdapter/UMNativeModulesProxy; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXHaptics"; sourceTree = ""; }; - 4B2D4B7F0D504FC434AE6F5DC3569292 /* DevSupport */ = { + 4B45D8CFBC3BC2AA3F944A704E4AFFC4 /* Support Files */ = { isa = PBXGroup; children = ( - 4D9EB9F1414A890594D521351ECC8FB6 /* RCTDevLoadingViewProtocol.h */, - 2250FC50E639D872FED62EFC3AC77442 /* RCTDevLoadingViewSetEnabled.h */, - 341BD64198173E046E86ACBF1EC97D21 /* RCTDevLoadingViewSetEnabled.m */, - A1A9376297DD52A7F492DD0F82F79FD9 /* RCTInspectorDevServerHelper.h */, - B0EF65143FEF1E8BF5F4863D198767DC /* RCTInspectorDevServerHelper.mm */, - 4E32D970E1EFB4FF292A76853E0E1A2E /* RCTPackagerClient.h */, - 443D86D676BDA6439C75244E0E2A37FC /* RCTPackagerClient.m */, - 1002FAF9D0840C5287A1AD3B81685D87 /* RCTPackagerConnection.h */, - B404EF4438136C9589D21E0096944B6C /* RCTPackagerConnection.mm */, + E18BC4B8CAD33EB3CBAAD2CB18F1EAFA /* UMReactNativeAdapter-dummy.m */, + A9702FD719CEB8BA077A2EF668C554A8 /* UMReactNativeAdapter-prefix.pch */, + F0BEC591BD7C736813D10344B60D5695 /* UMReactNativeAdapter.debug.xcconfig */, + 768F6F62CB936FAA24AE5AB7C76977F0 /* UMReactNativeAdapter.release.xcconfig */, ); - name = DevSupport; - path = React/DevSupport; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; sourceTree = ""; }; - 4C63F63163549F4789AA4527430D1530 /* Pod */ = { + 4C19A57870C6DE2ECB988BDAF89B8BE0 /* CxxModule */ = { isa = PBXGroup; children = ( - E48E06A106F75E5F1D16F6E2568FDADF /* Yoga.podspec */, + 6BE3B625A28B176A73741D463C29F3DC /* DispatchMessageQueueThread.h */, + 80D1D5F1826A5E9F932C1951394A9E67 /* RCTCxxMethod.h */, + E6327942D019CF4C0C0528BE4CEC9236 /* RCTCxxMethod.mm */, + 21FC912E10268FA35183A93CCB9083A2 /* RCTCxxModule.h */, + 89D80FA7EDEA9BB9685AF92143C0EA14 /* RCTCxxModule.mm */, + F96EF59EDF94FC8ED7C3AD2E5359AA4C /* RCTCxxUtils.h */, + 83C393DC702EE93BEC32346FBF212FDE /* RCTCxxUtils.mm */, + AB4BE439FE677F2C274ADDEE36ADB81D /* RCTNativeModule.h */, + AD566F4AA43AE88A1998632B7D9A9352 /* RCTNativeModule.mm */, ); - name = Pod; + name = CxxModule; + path = React/CxxModule; sourceTree = ""; }; 4CC1E690141B9C211E1D2110C8F71955 /* Support Files */ = { @@ -13182,53 +13415,102 @@ path = "../Target Support Files/nanopb"; sourceTree = ""; }; - 4DEA5AEEA76775A09C8FC376F1F0BDE9 /* CxxUtils */ = { + 4CFE37264523F531FC5B3BEAF64584B1 /* RNBootSplash */ = { isa = PBXGroup; children = ( - DFA2E97EBDDD60CE01428880EDF3AB7B /* RCTFollyConvert.h */, - B9FA1C1D46EC0E307CC45842DACA0CCB /* RCTFollyConvert.mm */, + 568AC5FC3788F93635BAD94B8C391707 /* RNBootSplash.h */, + 0704E3C0E325A639DC502AAF6444E78C /* RNBootSplash.m */, + F1A3AE196DAEAEB5A557D6ED404E1975 /* Pod */, + A2D1EE55C954512EF462FD761C7FF982 /* Support Files */, ); - name = CxxUtils; - path = React/CxxUtils; + name = RNBootSplash; + path = "../../node_modules/react-native-bootsplash"; sourceTree = ""; }; - 4E7A42514D1A76EC347B3C7C4A15D16E /* Support Files */ = { + 4D3891FA9F4EE6E262B512108ADD0653 /* ios */ = { isa = PBXGroup; children = ( - 6541A25970B3BA2CE271ABABDEBE1B81 /* UMConstantsInterface.debug.xcconfig */, - 7BFBAD1CC0AA23AFCC75E44DC37F8A37 /* UMConstantsInterface.release.xcconfig */, + C51911E24EEC25A472F557BDA41A0839 /* RCTTurboModule.h */, + AF0A42439028E5ECA19DF76388248706 /* RCTTurboModule.mm */, + 1BBC79EA954C21B4237B9CE89E34B5E3 /* RCTTurboModuleManager.h */, + FCE523393E4C20C19619A0C7EECC603F /* RCTTurboModuleManager.mm */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; + name = ios; + path = ios; sourceTree = ""; }; - 4E82CBDDFC88C93AFFDEC63D7F77AAFD /* Pod */ = { + 4D6AA98CD5EEE9D3310216B7B99EB3EB /* Pod */ = { isa = PBXGroup; children = ( - B666216830B6B853F32CC6C38D2F67B4 /* UMConstantsInterface.podspec */, + 63EBB42C03C462BDF4AC06D7E7C3CD15 /* LICENSE */, + 9EEBE3FB9E6A370DF39E06D21B15BE38 /* README.md */, + DD47F3C56C808DB695DF92BB778BA0DF /* RNLocalize.podspec */, ); name = Pod; sourceTree = ""; }; - 4FDBA7480894C6E814049E6BD868686E /* UMCameraInterface */ = { + 4E68AA36AFF9F0CBDE69EBE388ADDE95 /* RCTWebSocket */ = { isa = PBXGroup; children = ( - 03055A2EBF69009AA39593AE83A97542 /* UMCameraInterface.h */, - 71494E336BE4372028FEB98F1216C51F /* Pod */, - B4BDA464A9D885762DAF8E2F162C0699 /* Support Files */, + 787528DF45CEFBF1252EA8738E3B71EE /* RCTReconnectingWebSocket.h */, + 05C06ED8DB2D61102A75E06F2D6B29E2 /* RCTReconnectingWebSocket.m */, + B0B505E53C1698C9629F2470938C249F /* RCTSRWebSocket.h */, + F43A2B90283A1D1D5BCB4B2306D9694E /* RCTSRWebSocket.m */, ); - name = UMCameraInterface; - path = "../../node_modules/unimodules-camera-interface/ios"; + name = RCTWebSocket; + sourceTree = ""; + }; + 4F3C3053AA5B72982B3C20A1A6B0F967 /* React-cxxreact */ = { + isa = PBXGroup; + children = ( + 3D058D1AC9B9903A5C3ADEA60491F100 /* CxxModule.h */, + 3398B9FD014CF6094ABBF459201EA334 /* CxxNativeModule.cpp */, + 928B336238E52683E9DA84AD368A45C3 /* CxxNativeModule.h */, + 631F17A526C76F930DBFF020FEE235B8 /* Instance.cpp */, + B9156046C5920860169C459F1E127BF0 /* Instance.h */, + CDC5E5922F936CFFC09DC328A3103636 /* JsArgumentHelpers.h */, + 20F99F7CC514037A5B67989AB5004552 /* JsArgumentHelpers-inl.h */, + 6ED1BDED00407B3ED4384D0E43E8B714 /* JSBigString.cpp */, + 812174CFD5F180BAC6547FE529120730 /* JSBigString.h */, + 7CF8B3166B0FF5F6D465D0C826C4A4FA /* JSBundleType.cpp */, + C4D29E3BF5AFA8963710D2CD11A6A533 /* JSBundleType.h */, + 5805A22C344D815E3F716218EDDA42D7 /* JSDeltaBundleClient.cpp */, + FDF9096E7F9D16ED0888A775C06DCD16 /* JSDeltaBundleClient.h */, + 6EF1AF19E8C7DDB50175283B2589AD97 /* JSExecutor.cpp */, + 00F0F630C3456D5195516FF5DF7D3922 /* JSExecutor.h */, + 90872266C38F5CC92D54264C2475B988 /* JSIndexedRAMBundle.cpp */, + 3FBE4C810BFAD73625E95976A12DF86B /* JSIndexedRAMBundle.h */, + 6AD2F8F959C5D2B6619194B2EA6D6DCA /* JSModulesUnbundle.h */, + 44D935F32D8CE410B34058A28A92F0B4 /* MessageQueueThread.h */, + 95AF288A0C519673FD1D3DFFFC6DB69A /* MethodCall.cpp */, + 8E53CD52B144CE62B88B22A323A0E4ED /* MethodCall.h */, + 7FDED5D3681B03D3C9B69AF2EC8D746A /* ModuleRegistry.cpp */, + 79F394934F8B412E7CD37367820C088E /* ModuleRegistry.h */, + FD0FAFA71967E0AF10220D709B544A51 /* NativeModule.h */, + 2F52ACD9DE00657BFFCBBC48F64C8AA2 /* NativeToJsBridge.cpp */, + 1367B111BE9784BD88594DFA688C1E08 /* NativeToJsBridge.h */, + 3E8F1EEC71DC36C8B901EEED11669C68 /* RAMBundleRegistry.cpp */, + 49DD624E0EB7E688534649D7775031F7 /* RAMBundleRegistry.h */, + 3731374DB161CFFD4D860E8DF1BF87A1 /* ReactMarker.cpp */, + 33E0AE3C769B6F7D9C335EEA7EB8F7E4 /* ReactMarker.h */, + B5FF8562B889CE5E6887CF2C680BB123 /* ReactNativeVersion.h */, + 63DE13455B1A7FFAE9F8870F41C1617F /* RecoverableError.h */, + 91F4E3FEF1E29B754525D8E4AB04F6BE /* SharedProxyCxxModule.h */, + E75321738D138EBA89206EA5E489FAFB /* SystraceSection.h */, + 8EB953F3F443CD2803F59F4BFCBD19DA /* Pod */, + 3EFDA67597E07D2BD83B1F74F2AE316A /* Support Files */, + ); + name = "React-cxxreact"; + path = "../../node_modules/react-native/ReactCommon/cxxreact"; sourceTree = ""; }; - 4FE0F4EF5C4983C402C48CD928F64E6C /* Support Files */ = { + 4F54348D6CC360C4AF373F2927F722DE /* Reporting */ = { isa = PBXGroup; children = ( - E4E3210222E7604D06C2A57E5A10F726 /* UMSensorsInterface.debug.xcconfig */, - 6B486A186239F52BD48F79798FE34685 /* UMSensorsInterface.release.xcconfig */, + A0188FF9B77D8716C892971B88116607 /* Filters */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; + name = Reporting; + path = Reporting; sourceTree = ""; }; 4FFDCE69E6767E9268DCE2BA4091C035 /* Flipper-Glog */ = { @@ -13252,31 +13534,6 @@ path = "Flipper-Glog"; sourceTree = ""; }; - 507F3588EFB011987711F322A2753B4D /* RCTBlobHeaders */ = { - isa = PBXGroup; - children = ( - C72C37267ACB301B335FD0DB84E0A927 /* RCTBlobManager.h */, - BB596ACA49EDF073E44F234D0869BE45 /* RCTFileReaderModule.h */, - ); - name = RCTBlobHeaders; - sourceTree = ""; - }; - 5171A468E3C010C7A84A4AC6DEB7EB4A /* SafeAreaView */ = { - isa = PBXGroup; - children = ( - 151079F7D3DD6C15785F8271FCF52A06 /* RCTSafeAreaShadowView.h */, - B8D9D2D340FF2BF639FDC74AEF3A6E75 /* RCTSafeAreaShadowView.m */, - BB949948C374544BE44417A02D9D49F5 /* RCTSafeAreaView.h */, - AAFF2100BEAAD51B76D28DA4825C6D13 /* RCTSafeAreaView.m */, - 6B8121C01DC744F53803C1A78D33B123 /* RCTSafeAreaViewLocalData.h */, - 0E4181FD10FDBBC784F2F5F61865614A /* RCTSafeAreaViewLocalData.m */, - B7E2F239C8FFF859F2A01A2FA0E32394 /* RCTSafeAreaViewManager.h */, - 76BD5F3010C6D566E7736D8675B652FC /* RCTSafeAreaViewManager.m */, - ); - name = SafeAreaView; - path = SafeAreaView; - sourceTree = ""; - }; 519321310C6145F0BC711C3B3BC24F11 /* Pods-RocketChatRN */ = { isa = PBXGroup; children = ( @@ -13294,34 +13551,37 @@ path = "Target Support Files/Pods-RocketChatRN"; sourceTree = ""; }; - 52AB36CCC94F01D053AB41AC6BD11ACF /* Pod */ = { + 5256889A12FA698C407B07BF15326741 /* RCTTypeSafety */ = { isa = PBXGroup; children = ( - 2E8F1B836E77BA3DCDE253AD6ABC28D1 /* FBReactNativeSpec.podspec */, + B8BCAB40DB42F03C8A169FC2B033AB78 /* RCTConvertHelpers.h */, + 64D2B21C70A47AD869F2EB3D56E6AB02 /* RCTConvertHelpers.mm */, + C3F73556D59F2914CDBE38BD35F20F16 /* RCTTypedModuleConstants.h */, + 3B725B05DB33B34878427A66813D3A47 /* RCTTypedModuleConstants.mm */, + 95BBA9405E5F1CCA328994226B2F783A /* Pod */, + FC9BAB118AD0926B4A1E937FC0C288B9 /* Support Files */, ); - name = Pod; + name = RCTTypeSafety; + path = "../../node_modules/react-native/Libraries/TypeSafety"; sourceTree = ""; }; - 53616B3E68CD01186CDAA9A5E058D4B2 /* Pod */ = { + 53F9725D4C23A4F0C8412C1368C15941 /* Pod */ = { isa = PBXGroup; children = ( - 5DC24783154DD270273BAF39620A3213 /* EXWebBrowser.podspec */, + D03FCD60357441A717BF3EE720E5A032 /* LICENSE */, + 3A944BE7B748C4E06C2C7635E38645B3 /* README.md */, + 847291F682FA77C90D11145C437AD963 /* RNUserDefaults.podspec */, ); name = Pod; sourceTree = ""; }; - 543033DA6F7C436D4FEFF1AE35AFE1B8 /* React-RCTBlob */ = { + 54FBBFF303B69A5202AA45C4F4AB2CB1 /* Pod */ = { isa = PBXGroup; children = ( - DB734CDD85DE035D3E3648615C166C51 /* RCTBlobCollector.mm */, - F71F10D8FF2C8494E35F3E9F6BB1EB3E /* RCTBlobManager.mm */, - 7D8DDE5B92253392601ADE5237F97ED5 /* RCTBlobPlugins.mm */, - C4500ED7625F4B31BA4A9BB0C356A0B9 /* RCTFileReaderModule.mm */, - AAEC9674CC882DB67244DB546B9C9E85 /* Pod */, - 1D3A9126B4CCC6DBAC0B07793364ECD0 /* Support Files */, + 1001D29FF6C18448E9B858DC1FABD72D /* README.md */, + 21BF8A62782EE8F796CAE98219E12069 /* RNRootView.podspec */, ); - name = "React-RCTBlob"; - path = "../../node_modules/react-native/Libraries/Blob"; + name = Pod; sourceTree = ""; }; 54FC3038B4824A7895A167FB13377D85 /* FlipperKitHighlightOverlay */ = { @@ -13333,82 +13593,79 @@ name = FlipperKitHighlightOverlay; sourceTree = ""; }; - 556FDE3012224A1834BC33D04F26D377 /* Pod */ = { - isa = PBXGroup; - children = ( - 99301D52ABA5602CDA8549C2847BE9C5 /* LICENSE.md */, - 6FFD9C0D2CBFC574BF52BAF79B127E77 /* README.md */, - 62EE55225C9B8279FB519B5382648618 /* RNDateTimePicker.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 5584C24562BE167C7F77F485B6734D62 /* Drivers */ = { - isa = PBXGroup; - children = ( - 35145D11DB7911A08652F4658F072CD4 /* RCTDecayAnimation.m */, - 79C28EBA0AB9D0E1E1E197DCBAE7591B /* RCTEventAnimation.m */, - 68B72C4765B9468FF5A33F4A8F148BC4 /* RCTFrameAnimation.m */, - EAFB6CF89AE27D47BE60053E0B880C6A /* RCTSpringAnimation.m */, - ); - name = Drivers; - path = Drivers; - sourceTree = ""; - }; - 577BCA7B9847D75F5EAA3256E8A0C48F /* Support Files */ = { - isa = PBXGroup; - children = ( - B474F17B094D105BD1B8A508374E07EE /* Yoga.modulemap */, - E30F480795515B199631678A529BAEBF /* Yoga-dummy.m */, - 1931EFB022C112711318EC972AACE65E /* Yoga-prefix.pch */, - 2A117C440D1DF33A1B8D7E7BED7B2C2F /* Yoga-umbrella.h */, - 406BF4C99CB4F1FD0319C9242FDEE632 /* Yoga.debug.xcconfig */, - 6E6D72DCE2064D4DE30A6DE733B88CA7 /* Yoga.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/Yoga"; - sourceTree = ""; - }; - 583A8F59356910D8114CACD7BD588639 /* Support Files */ = { + 557E16E8AA1F8839D5D34371384F82B3 /* TextInput */ = { isa = PBXGroup; children = ( - 1E0048B2497147AA4895F2EA369A04B9 /* EXFileSystem-dummy.m */, - ED7C4C841923BFE4FF0571F44E51D380 /* EXFileSystem-prefix.pch */, - 3DD7C081F1053190D2A1D5378E0B12D3 /* EXFileSystem.debug.xcconfig */, - B92F821C4225B68C5B18D5B06629C189 /* EXFileSystem.release.xcconfig */, + 4B5E2203EB895E27A9139005A24E9FB4 /* RCTBackedTextInputDelegate.h */, + EF832947BB3B9660609E37EE61DE7C91 /* RCTBackedTextInputDelegateAdapter.h */, + D7F592FCED96399322301F625BF28E4D /* RCTBackedTextInputViewProtocol.h */, + 9953D75B31B4F5EE4A8B43B1F7A626F2 /* RCTBaseTextInputShadowView.h */, + 3647FEBB1E89A2E82DEB2CA1DA957E15 /* RCTBaseTextInputView.h */, + 7BA696F8AE94237988922476FCE0272A /* RCTBaseTextInputViewManager.h */, + FBCFE26714872422A8F2BF2300250DEF /* RCTInputAccessoryShadowView.h */, + C1409995935389D3483866220BA1B497 /* RCTInputAccessoryView.h */, + F1DDEEDBC45048DD00B19D8A069A228A /* RCTInputAccessoryViewContent.h */, + 6CE6C71E81A3421C2F847E1D1C738018 /* RCTInputAccessoryViewManager.h */, + 5A797B345C745E88F12B501F50FF51E9 /* RCTTextSelection.h */, + 5B379AA220A9E78CF7A4B0A25B7CA6BB /* Multiline */, + CBFB388E07B9715D028C2212E277994D /* Singleline */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXFileSystem"; + name = TextInput; + path = Libraries/Text/TextInput; sourceTree = ""; }; - 587054A51D364FF13FE685F4560DAAE0 /* Support Files */ = { + 568F2A4708C1558ED8797DECD1794252 /* EXImageLoader */ = { isa = PBXGroup; children = ( - BC2DA67449514277872F910294874E7E /* RNGestureHandler-dummy.m */, - 931C706B472CBA1C47C29E0E24B67BD9 /* RNGestureHandler-prefix.pch */, - 3BC6F446BD80D5F78F941FE2471C86F8 /* RNGestureHandler.debug.xcconfig */, - 032065F6323BD031086AE106FE42F7B7 /* RNGestureHandler.release.xcconfig */, + 13EEFD66936CE1DBF685FDEABB269598 /* EXImageLoader.h */, + DA29658B2437964B570A02E1D6695908 /* EXImageLoader.m */, + 348AB94FC53477DC6FE285DA4E391D36 /* Pod */, + 8838DBE2986B2EB9681E9B8CB6E7660F /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNGestureHandler"; + name = EXImageLoader; + path = "../../node_modules/expo-image-loader/ios"; sourceTree = ""; }; - 598789CFA99F28829DE52A075E2E9FB5 /* KSCrash */ = { + 57DE5C0CA7195DAFAD25B8B708560C25 /* Drivers */ = { isa = PBXGroup; children = ( - B2BA11969FFB481D34AD305FC52E5556 /* Recording */, - D3421E87D2A7F72C681014425DB6A635 /* Reporting */, + E1204EBDD6C2C2A0C33E54F59FC45FDB /* RCTDecayAnimation.m */, + 5F6C659C4FB6E05A3DF10651918DB306 /* RCTEventAnimation.m */, + 9C6CC98D84C1DFD6F4B303A32049966E /* RCTFrameAnimation.m */, + 9FCB8BCA853AFFF0B707A6E40BF3A15D /* RCTSpringAnimation.m */, ); - name = KSCrash; - path = KSCrash; + name = Drivers; + path = Drivers; sourceTree = ""; }; - 59DAB20FD51511AF0FAA8311AED4169D /* Pod */ = { - isa = PBXGroup; - children = ( - F72C6AAB724012592341418F8B056825 /* FBLazyVector.podspec */, + 5853506C2B2F4F655A98363F54AF7F68 /* ReactNativeART */ = { + isa = PBXGroup; + children = ( + 8470510C35E133AB915BE1101362065D /* ARTCGFloatArray.h */, + CB3EEAA2837CD8068F3E6D72B69C1062 /* ARTContainer.h */, + CDB1B1E6DD51B733C551D0A84FA5F0E3 /* ARTGroup.h */, + BB54F236562CF24682F1DAA9A4402280 /* ARTGroup.m */, + 54EC38676D071FA5E7F5129B3F709FAA /* ARTNode.h */, + 63E4383CE61B6C235A35B97EDDBCC0E9 /* ARTNode.m */, + CD815710F48E3ABBE415013859067C6F /* ARTRenderable.h */, + B54009EB2A2484DD2B2C7B63927AF7C2 /* ARTRenderable.m */, + 76F3FCB4AC4D424502F6BE8204720EB0 /* ARTShadow.h */, + 51F8FACE4565755638D68246FE00C3D5 /* ARTShape.h */, + CCC8C2C47E5C9669DDA0108E7F417BFF /* ARTShape.m */, + 75635BC3081A2EAC856C6B52E8753002 /* ARTSurfaceView.h */, + 4169003E075269954D2F4B2645319C31 /* ARTSurfaceView.m */, + 3E6F146997B96086A074C4015761ADE5 /* ARTText.h */, + 5D969E88182C589E4065972834F05189 /* ARTText.m */, + F1552E99A7FF5F1979FE42E80BF62E84 /* ARTTextFrame.h */, + 098BA8B9ABF7386BC09C3EFF19FFB5C0 /* RCTConvert+ART.h */, + 10576E7AE4510A6AE0841BE39EBE1256 /* RCTConvert+ART.m */, + DF5B1065C71CA6EEE3B8A7D61DE598B4 /* Brushes */, + F1312A15D26CB8D148F116D7142EAF16 /* Pod */, + E44B1983FF0988786CB6D31C19A122A2 /* Support Files */, + 9A7B13CEDCCE0ED38CCBEB6CF775A9C5 /* ViewManagers */, ); - name = Pod; + name = ReactNativeART; + path = "../../node_modules/@react-native-community/art"; sourceTree = ""; }; 5A07E2CA90F4DE116AD936A98C153019 /* Core */ = { @@ -13438,32 +13695,67 @@ name = Core; sourceTree = ""; }; - 5A567CED4BD63F9323491BF6F6227315 /* Pod */ = { + 5A7B75161964A6AB28696947253E1C25 /* React-RCTNetwork */ = { isa = PBXGroup; children = ( - BDB4D6F7A742AB23E860D735598C54C9 /* RCTRequired.podspec */, + D260818C7B84863399660D3979D3A14E /* RCTDataRequestHandler.mm */, + 293C50622E6A9A4C5301BAA220DDCCBC /* RCTFileRequestHandler.mm */, + 7A53029F5935263F4D29FF1DD051F618 /* RCTHTTPRequestHandler.mm */, + 8EF565A096A340ED3706FF2AAE2E918B /* RCTNetworking.mm */, + 76F2FB44DBE396A442A93CFBFC40D499 /* RCTNetworkPlugins.mm */, + 36F11BEB8996ABDE53E7F649330D2EBF /* RCTNetworkTask.mm */, + 074C1E67A0EB0E643B0820C31B108F9D /* Pod */, + 691E68CE599C9050B7FDF2E14CEBDCC8 /* Support Files */, ); - name = Pod; + name = "React-RCTNetwork"; + path = "../../node_modules/react-native/Libraries/Network"; + sourceTree = ""; + }; + 5ACB716C9D63C8B2D99960703F2550F2 /* UMCore */ = { + isa = PBXGroup; + children = ( + 7F9445B4E5A8486DA7142E6B6178B57B /* UMAppDelegateWrapper.h */, + 8E480A7A13E053B8061176C3A93EB158 /* UMAppDelegateWrapper.m */, + 1A41753B227E5C63AAC21C90C0946D4C /* UMDefines.h */, + 43ED7B485C9EB2BFBE0DCA579FAD1261 /* UMErrorCodes.h */, + 634C7954F8F8AB6D338C4411EB41370C /* UMErrorCodes.m */, + FCA8EBC83678AC28E2CE66AC1B08AE64 /* UMExportedModule.h */, + 67883964F79EB90B5BB160385717F633 /* UMExportedModule.m */, + 3E6D888DA4B226D528AB7452BCB37701 /* UMSingletonModule.h */, + EDD997E6F91C408EE3DD8B60C9BFB7D3 /* UMSingletonModule.m */, + 54DE25F8E0A8F9CA214FB0A72829B0CB /* UMUtilities.h */, + AEA821130DCC7D1B9EB415663C052449 /* UMUtilities.m */, + 2992D680AB841D9EF4CD26CC91DC3F36 /* UMViewManager.h */, + 459A816CDE529AB0BA16B3B377A66F0E /* UMViewManager.m */, + 8CE5B9115EEFA189276FEEFB56981B64 /* Pod */, + CDFA71CB9A3E0FBDA600479FFCCAD928 /* Protocols */, + A6774CB37784CF9233855739047D01BA /* Services */, + 0244BB2F40B9F184A59FE9C137652D71 /* Support Files */, + A661E5136886028D0BD6DA9B41AFBD83 /* UMModuleRegistry */, + 8D43F3BDD05A821E2E75862CF1678FFE /* UMModuleRegistryProvider */, + ); + name = UMCore; + path = "../../node_modules/@unimodules/core/ios"; sourceTree = ""; }; - 5AD91CC93F714D389F380BD5CF20AE22 /* Pod */ = { + 5AF496081D85B29D0041217A3D37E49B /* Pod */ = { isa = PBXGroup; children = ( - 039577ABC936EC3ACAF56D32A8983B7F /* LICENSE */, - 0546B38E89D5225EFBEEC25FB3B095C8 /* README.md */, - C1C5FEE9D571263D18B986F78BBAFAEB /* RNDeviceInfo.podspec */, + F92EF1967A5B0061D978F18124AD65BD /* KeyCommands.podspec */, + A1EA997FD932C020A5406FA52448A2FF /* README.md */, ); name = Pod; sourceTree = ""; }; - 5B0BEA9A6C9DF6A707EDC5F2EEE5E328 /* Pod */ = { + 5B379AA220A9E78CF7A4B0A25B7CA6BB /* Multiline */ = { isa = PBXGroup; children = ( - 17F2F08227528700B0BA58B4D598943A /* LICENSE */, - E5F1E60239C7B528EF2F9A1BEFEB8855 /* README.md */, - 4513E3774F0605E3A3B323EED137EF6E /* RNFBAnalytics.podspec */, + 522E6FF98519B1462C6426A6C0D7CA11 /* RCTMultilineTextInputView.h */, + 9CB60E2C44F5337D7A4F109C9E680E98 /* RCTMultilineTextInputViewManager.h */, + AF07E1F4322D1E28826EAA6A30186F8A /* RCTUITextView.h */, ); - name = Pod; + name = Multiline; + path = Multiline; sourceTree = ""; }; 5C1B4F9A97AF3D0DACAADE3AB74991F5 /* Support Files */ = { @@ -13478,87 +13770,64 @@ path = "../Target Support Files/Flipper-PeerTalk"; sourceTree = ""; }; - 5C35D3A96CF857E50B4CED608D92F2A3 /* Multiline */ = { + 5C3122342FBF5E9BEC825B615B0F3084 /* Support Files */ = { isa = PBXGroup; children = ( - E507C5FD255553A749C8EFC6424CA581 /* RCTMultilineTextInputView.m */, - A5C96A1C11DB3ED91606C4295CE5004A /* RCTMultilineTextInputViewManager.m */, - D3727FAB0BE2037FEE16FE0B671AD10C /* RCTUITextView.m */, + C603E18F4F042ECA9E90222CD55561B8 /* React-RCTActionSheet.debug.xcconfig */, + B6C734D0499C175CC7338AED32A6FD8C /* React-RCTActionSheet.release.xcconfig */, ); - name = Multiline; - path = Multiline; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; sourceTree = ""; }; - 5D9BF44BA3D35DECED42A803CCE33F30 /* Pod */ = { + 5D066D45B531AD7BA2BCE70BF4587CC7 /* Support Files */ = { isa = PBXGroup; children = ( - 7E42EF4FC928307821EB59AAE44A71CA /* React.podspec */, + B3789F19E11AAEF9B51FEAE1BF45D6E6 /* react-native-appearance-dummy.m */, + 8110A5CBB5050BAF6DEA7B6390C345F6 /* react-native-appearance-prefix.pch */, + B858F36E16147B9EDD7666E15590DCE0 /* react-native-appearance.debug.xcconfig */, + C4B6B1AAC5F6EC73DDBDD5E950FFD76D /* react-native-appearance.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-appearance"; sourceTree = ""; }; - 5DE7CE119EEC801DDFA62EE05CEE6A1D /* Pod */ = { + 5D52FF5E6B94A3E8EAD24BEAA8F640C9 /* ReactNativeKeyboardTrackingView */ = { isa = PBXGroup; children = ( - E0756F5953137DDAA5358682F86A12FD /* LICENSE */, - 76B4D4AB293F0F729AF0BF42FA05EFCB /* react-native-background-timer.podspec */, - 8A0B6953C59C9D2B38E042FC7461962F /* README.md */, + 1DB478E1E2FFD045A6ECA82BB259A811 /* KeyboardTrackingViewManager.h */, + 925AB7E6055E535474E702A10D7E7692 /* KeyboardTrackingViewManager.m */, + 67B443B296C953FF7CE066E586870AEA /* ObservingInputAccessoryView.h */, + 39F82558CB4745D46F543010E33BD420 /* ObservingInputAccessoryView.m */, + D04162FF7702661C01D7DC283C5D7452 /* UIResponder+FirstResponder.h */, + D47A085905A6E73FE50B5B2412BDD065 /* UIResponder+FirstResponder.m */, + C2EA7450A665DF21977DACA8A45ECDA8 /* Pod */, + B73EE5D4FBFEAD036E01A68B6F21CDF7 /* Support Files */, ); - name = Pod; + name = ReactNativeKeyboardTrackingView; + path = "../../node_modules/react-native-keyboard-tracking-view"; sourceTree = ""; }; - 5E61B90073CF930B27640928906F3829 /* Pod */ = { + 5E8490EDC3F3BBB31FF0A37F346A43AB /* Pod */ = { isa = PBXGroup; children = ( - 316935E14C775D75A6B451E041612058 /* LICENSE */, - 128D3917D6DA2280E5D76D60BBE02EE8 /* ReactNativeKeyboardInput.podspec */, - 76D3601422F801D87E899BC4A61F16DD /* README.md */, + 41F493FC24EE6F45AFF90D8B72C2CCE1 /* LICENSE */, + 064FC8F9BD1662E1D9E3FAB2DCDB231E /* react-native-webview.podspec */, + 165DAF87C77BE32FAB19D56C33578A44 /* README.md */, ); name = Pod; sourceTree = ""; }; - 5E8DF45D053F568D5842804099ABFED0 /* EXVideoThumbnails */ = { - isa = PBXGroup; - children = ( - 72CBA7B24624855860A01DFDCC6C723C /* EXVideoThumbnailsModule.h */, - 2ADE9AB62A37B435E018B1132C7FDFEF /* EXVideoThumbnailsModule.m */, - 0CDF9BB12CC29063052CF727143AFEB5 /* Pod */, - E1E421BBB7286321C148B488D08B6AD7 /* Support Files */, - ); - name = EXVideoThumbnails; - path = "../../node_modules/expo-video-thumbnails/ios"; - sourceTree = ""; - }; - 5F045128F608451B0D1BD06CFA0C5E86 /* UMBarCodeScannerInterface */ = { - isa = PBXGroup; - children = ( - 3371866E52645441D616687DD3B21EC9 /* UMBarCodeScannerInterface.h */, - EC8A7F4E5B173467ED89968D537F4BAE /* UMBarCodeScannerProviderInterface.h */, - C4918E48E03A558165BF14088B0BBFC0 /* Pod */, - CA41D916C39699306AD64D7261FE5B3D /* Support Files */, - ); - name = UMBarCodeScannerInterface; - path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; - sourceTree = ""; - }; - 5F1815CE30B31686FFBAC53FADB0EFBB /* event */ = { - isa = PBXGroup; - children = ( - 4E312E4B24A5042A032E967FC1643882 /* event.cpp */, - 9B0299C2B37069873D2F1DA966C6E45F /* event.h */, - ); - name = event; - path = yoga/event; - sourceTree = ""; - }; - 5F4D03543DFFFF577C4E7B8AFD70E32A /* Pod */ = { + 5F4CC357BB8C728DC3B490B62A3D561C /* ReactNativeKeyboardInput */ = { isa = PBXGroup; children = ( - F6A38E1049A139D1EFC30199A44CFDEF /* LICENSE.md */, - F3DD930BE80233CD66D322362F35FEB9 /* react-native-document-picker.podspec */, - 0661EECF808F6E9905F868CA6983E029 /* README.md */, + 745F9BABCC23F97158401A37B6DB0FD4 /* LNInterpolation */, + 151C882D56B321589445726242E6E87B /* Pod */, + 31EADCD71B1DDC960515C4D247EE1BB1 /* RCTCustomInputController */, + 61EC61C092EAF90E2F607F8415D82A93 /* Support Files */, ); - name = Pod; + name = ReactNativeKeyboardInput; + path = "../../node_modules/react-native-keyboard-input"; sourceTree = ""; }; 5F694A1E296A27A81E6344D1EFDAE975 /* Support Files */ = { @@ -13573,81 +13842,87 @@ path = "../Target Support Files/Flipper-Folly"; sourceTree = ""; }; - 60323F742774E248A15B427F6477A9BF /* Pod */ = { + 5FCEDBC407E7403BC09BED86E4E47C56 /* Pod */ = { isa = PBXGroup; children = ( - 45D71F7219F5AC6D6398ED36135E588B /* LICENSE */, - B90D2B3CC85E13D905C62FB4DBE07DBA /* ReactNativeKeyboardTrackingView.podspec */, - C0B878BE30AF115074D0B02354D82966 /* README.md */, + 855320E9829E9123176EB5A1EA917125 /* LICENSE */, + 1B80517CAB0FA3CFBB60296D31A95EFB /* README.md */, + C4EDF2773774F9840137423D407C0747 /* RNDeviceInfo.podspec */, ); name = Pod; sourceTree = ""; }; - 620DCC7D5E23C7287BE81C01E9032188 /* Support Files */ = { + 60C9CA12845E921C7FC37FE1EED84B4A /* ScrollView */ = { isa = PBXGroup; children = ( - CB2655499D2764752901A4AEC16BBE7D /* ReactNativeART-dummy.m */, - E9C12ABB7663D671D0FBB4ECBE0AE182 /* ReactNativeART-prefix.pch */, - EAD1A90878A4208C166B3CB5FF718894 /* ReactNativeART.debug.xcconfig */, - 5DEB102DABB3B9DB0C73E9C3DFA8CBFD /* ReactNativeART.release.xcconfig */, + 984B021CE47144ED2C3F29BB03912A66 /* RCTScrollableProtocol.h */, + 12F2687E63A799ED0EC3B03A0CED33BD /* RCTScrollContentShadowView.h */, + 2CBDEC1EEE9DE1FFBF3979C4ACF74C9B /* RCTScrollContentShadowView.m */, + 28F373C3F8B8B054FED12B035C815828 /* RCTScrollContentView.h */, + 1972088690408CEA31F8B5FB54B9F451 /* RCTScrollContentView.m */, + 9A1B7F2CAA77C2A06EFE232F2D59DA79 /* RCTScrollContentViewManager.h */, + FE9C094D694442BB62EF19E890366CC9 /* RCTScrollContentViewManager.m */, + 8EDCC62D0D6C9A44794ED7BF5ED2467A /* RCTScrollEvent.h */, + 13E450D69101261A74BD7F400625DE7A /* RCTScrollEvent.m */, + AE897E3984F4AF7BDF3D4923F34EA121 /* RCTScrollView.h */, + FDFAE8C91A0D4C21F86453A6FE0C921D /* RCTScrollView.m */, + 5A022B544A1A50C725011B8F8D14BFFC /* RCTScrollViewManager.h */, + F2C0A8646EBD720C88BD6CDAEBE2C7B0 /* RCTScrollViewManager.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactNativeART"; + name = ScrollView; + path = ScrollView; sourceTree = ""; }; - 621B1E96F4068DE96A0C73DE2BA6E3A8 /* RNCAsyncStorage */ = { + 60C9D45E0FE0520C1716B02B9E224CC5 /* event */ = { isa = PBXGroup; children = ( - F4C95E42DCA4EB60D68F2EDA80EFB4EA /* RNCAsyncStorage.h */, - 8258B9877D65443B98C03BD5A17A27D9 /* RNCAsyncStorage.m */, - AEDFEC830C6396DC336515996BCABA8A /* RNCAsyncStorageDelegate.h */, - 6B0E520C39E3403C4718DB025F7C019C /* Pod */, - 0462A743A4F1C4196A4EEA4D97A11A01 /* Support Files */, + 1C8DE520F238D4F342B968AB61C76AA9 /* event.cpp */, + 47250686BE8611CBFB199666C21A4F3E /* event.h */, ); - name = RNCAsyncStorage; - path = "../../node_modules/@react-native-community/async-storage"; + name = event; + path = yoga/event; sourceTree = ""; }; - 63F237A2177E17E1A0193BC4A8CE74C4 /* Text */ = { + 61EC61C092EAF90E2F607F8415D82A93 /* Support Files */ = { isa = PBXGroup; children = ( - 5F51E4002185AABCB6902118765D16B6 /* NSTextStorage+FontScaling.m */, - AEC47ABD196CA68E5B3CAA944A380989 /* RCTTextShadowView.m */, - 130B04FC1D20D5FC2BE328A052C068D5 /* RCTTextView.m */, - 270D7844C35BA0D746D45981ADB64C2E /* RCTTextViewManager.m */, + C3DA8029EA7E15298CB70CEC74E30EA0 /* ReactNativeKeyboardInput-dummy.m */, + ACEEFD05B5373601AF5679953038CAAC /* ReactNativeKeyboardInput-prefix.pch */, + DD350B40E0B83DB2FF78D7475D3EBBFA /* ReactNativeKeyboardInput.debug.xcconfig */, + EF38B221E0F79D1897487F1254678820 /* ReactNativeKeyboardInput.release.xcconfig */, ); - name = Text; - path = Text; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardInput"; sourceTree = ""; }; - 64079D04D503E9D81BF43CE526FEBAB4 /* FlipperKitLayoutTextSearchable */ = { + 6372A3987C47659FA544E22C4857D790 /* EXVideoThumbnails */ = { isa = PBXGroup; children = ( - 8DB0863FEEBA79B7135ED6D56CBA8FE4 /* FKTextSearchable.h */, + 68F4F003A610DB5785D8C11D6D45BD76 /* EXVideoThumbnailsModule.h */, + F2039BF3E34C6B643CC8F48259836000 /* EXVideoThumbnailsModule.m */, + 7630FAB3B4893E72DC86EBCF66FCEF22 /* Pod */, + A053F66D53C6D19646EF3716E71DF59B /* Support Files */, ); - name = FlipperKitLayoutTextSearchable; + name = EXVideoThumbnails; + path = "../../node_modules/expo-video-thumbnails/ios"; sourceTree = ""; }; - 645516F425987F0AAC80CC0D863A6989 /* Support Files */ = { + 64079D04D503E9D81BF43CE526FEBAB4 /* FlipperKitLayoutTextSearchable */ = { isa = PBXGroup; children = ( - 294504C486F5F64864F99B2EFB421FE9 /* UMImageLoaderInterface.debug.xcconfig */, - 3D5FD0B95ACC58746CBA3B0C6E668BD3 /* UMImageLoaderInterface.release.xcconfig */, + 8DB0863FEEBA79B7135ED6D56CBA8FE4 /* FKTextSearchable.h */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; + name = FlipperKitLayoutTextSearchable; sourceTree = ""; }; - 64B47B1FD3C9B34FDC881BCFF71F68D7 /* Support Files */ = { + 64179BAC745F34EC3BEAF84F80507BF5 /* VirtualText */ = { isa = PBXGroup; children = ( - 382A426BE4A12489EDDCD59CB0E7AC12 /* React-jsi-dummy.m */, - 992A71B82D810DFD51FB042D3A046289 /* React-jsi-prefix.pch */, - 1BBB8586CCC5771E3123F71C5B381644 /* React-jsi.debug.xcconfig */, - 1945EE587E1BE1EAAAA7448B347758F7 /* React-jsi.release.xcconfig */, + 6CD30E882540FDD3A3001A9E8B85EA6C /* RCTVirtualTextShadowView.h */, + 8EFA498F3E82E6172192E338E0D28301 /* RCTVirtualTextViewManager.h */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsi"; + name = VirtualText; + path = Libraries/Text/VirtualText; sourceTree = ""; }; 64D7DF0A5D356B715009B81778AB6DCE /* glog */ = { @@ -13671,28 +13946,90 @@ path = glog; sourceTree = ""; }; - 654C290CE1E1127FA6F91BAE6BE6343C /* Support Files */ = { + 64EBA14D60F7CF6ACEC6E174794AF111 /* Pod */ = { + isa = PBXGroup; + children = ( + 10FBFD93A490DFF045CCC70048C4A392 /* RCTRequired.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 660B989FC214C336A24B546BF03A2003 /* EXSessionTasks */ = { + isa = PBXGroup; + children = ( + C7922B598A8816128E19340F2BE2857D /* EXResumablesManager.h */, + 216446D6814EE569C854C55221CE555E /* EXResumablesManager.m */, + 3A9D64CE35C4B3FA675FC8DC910A1F48 /* EXSessionDownloadTaskDelegate.h */, + F83FB2973ACDE06FD3D5312407D84842 /* EXSessionDownloadTaskDelegate.m */, + 644FC86838357E190B06CFE6C58E28DB /* EXSessionResumableDownloadTaskDelegate.h */, + E28907FE122C660D7EB94321BC380C19 /* EXSessionResumableDownloadTaskDelegate.m */, + 8C44EF7BBBD61F7EAAC7BCD526D3BB6B /* EXSessionTaskDelegate.h */, + 0B6E78C9330BCF05B98CBFAF0361BF16 /* EXSessionTaskDelegate.m */, + 6DB1839D2FA81FC0A50ABC1FFAF00941 /* EXSessionTaskDispatcher.h */, + DF680E906C85A1D16522326B16F2A815 /* EXSessionTaskDispatcher.m */, + 6BA032B99984987DC27A083C21D5F5B6 /* EXSessionUploadTaskDelegate.h */, + 8F390769550F9EBFA38C6467A73BC886 /* EXSessionUploadTaskDelegate.m */, + ); + name = EXSessionTasks; + path = EXFileSystem/EXSessionTasks; + sourceTree = ""; + }; + 668FCC4851BB1997DFB561651B595EC4 /* Support Files */ = { isa = PBXGroup; children = ( - 9C59E950AED0EA83139AD0A0DDD4D111 /* ReactNativeKeyboardInput-dummy.m */, - 72FBE81319107DAD3733527ACB227DC5 /* ReactNativeKeyboardInput-prefix.pch */, - A1C73AD44C809A7DB22A5F187106DA39 /* ReactNativeKeyboardInput.debug.xcconfig */, - 8DCDA898216AFF5600FE513729B89CC7 /* ReactNativeKeyboardInput.release.xcconfig */, + 28842B3C970E39EBCCC32EBB0D40F67A /* react-native-safe-area-context-dummy.m */, + 9DB5D050E2903F9E86F8DA2C7E0D42D1 /* react-native-safe-area-context-prefix.pch */, + 8EED67439E272B995EE2BB852645EAD9 /* react-native-safe-area-context.debug.xcconfig */, + 1C6667914E8A269765FE106EC821B8B9 /* react-native-safe-area-context.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardInput"; + path = "../../ios/Pods/Target Support Files/react-native-safe-area-context"; sourceTree = ""; }; - 6797AC2B6A2C539EE54A5CFA08B7B85F /* EXLocalAuthentication */ = { + 6692D5A9201A35555F4DC3D1B3B64AC9 /* RCTRequired */ = { isa = PBXGroup; children = ( - 3036C06861E5784B6061546B1BF887AF /* EXLocalAuthentication.h */, - 73D6BC1DD7224F079A9E99183D7D8C34 /* EXLocalAuthentication.m */, - F02435DEF2721CFAB42C5ED14DB4EC73 /* Pod */, - 132C5EDCC1EBBFB19094F9612AF936DE /* Support Files */, + 4092F966654F165964E11D3E5C90610B /* RCTRequired.h */, + 64EBA14D60F7CF6ACEC6E174794AF111 /* Pod */, + 3D1D03DC255A9725CAC7561538099688 /* Support Files */, ); - name = EXLocalAuthentication; - path = "../../node_modules/expo-local-authentication/ios"; + name = RCTRequired; + path = "../../node_modules/react-native/Libraries/RCTRequired"; + sourceTree = ""; + }; + 669EBC53B5E69F19EC9E78FE50422B2B /* Support Files */ = { + isa = PBXGroup; + children = ( + C537B807CB0583208FB7549C525142F1 /* React-RCTImage-dummy.m */, + 344C2436D9ADBA442B07BD4C151DA1CF /* React-RCTImage-prefix.pch */, + 7628631F91838F3AF268C253391DCA15 /* React-RCTImage.debug.xcconfig */, + 779A1C066D57206871E683BEEA4ED27A /* React-RCTImage.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; + sourceTree = ""; + }; + 672FD3FD78C225E330E340933DF14373 /* Resources */ = { + isa = PBXGroup; + children = ( + 6B9C3D80ADBA84851DE880C9C2AB83DE /* AntDesign.ttf */, + BBB6BDDA31252CE947EB19A25D78C788 /* Entypo.ttf */, + 7744928A225A1D5EADF8DAE03D63899E /* EvilIcons.ttf */, + 634111F7D0041A6061CFF29CF57DB5B8 /* Feather.ttf */, + 1FE69E99E48A78798EED7AD1D7C6434D /* FontAwesome.ttf */, + B541DA0D51F5AC9471B8CD9E4F94B8A0 /* FontAwesome5_Brands.ttf */, + 10D6BA0C60F74505AFDC4E4EA2BDA209 /* FontAwesome5_Regular.ttf */, + 88F3ACF17A442C69012929FAA7AA09B0 /* FontAwesome5_Solid.ttf */, + 1B0470528ED07B3791A96240A248143B /* Fontisto.ttf */, + 13D35646D6ACC7DDA2C0742A4439A94F /* Foundation.ttf */, + A731D37C1545BEE1BD1FBED7F1898E45 /* Ionicons.ttf */, + F1B52690A0938FCC9C15FBF7FDE7AD06 /* MaterialCommunityIcons.ttf */, + 71C9B3F1A61FDA5280AD8F8D590484B3 /* MaterialIcons.ttf */, + 864B8D59A91DEB6E928550ADF13B874A /* Octicons.ttf */, + 83E74D245F65D89580FF1451F664C0E1 /* SimpleLineIcons.ttf */, + 6795FD5BBFBFBEBDCB00E4D12C74A582 /* Zocial.ttf */, + ); + name = Resources; sourceTree = ""; }; 68008486913108E9ECCFA21833329839 /* FirebaseCrashlytics */ = { @@ -13909,33 +14246,26 @@ path = FirebaseCrashlytics; sourceTree = ""; }; - 685277F7E011FB0DC3733EDAFA6E666B /* React */ = { + 6825BB76D1E40D312AE2C10BD04E3636 /* RNLocalize */ = { isa = PBXGroup; children = ( - 5D9BF44BA3D35DECED42A803CCE33F30 /* Pod */, - F3EEC48D2E9D1D8ED11CCC480FE0C893 /* Support Files */, + F0C6B5137991848A85D0CD16863BBE3A /* RNLocalize.h */, + 65AB7EAD209C9E6FD6BD7349132A42DC /* RNLocalize.m */, + 4D6AA98CD5EEE9D3310216B7B99EB3EB /* Pod */, + DE58C1419FF08444F815FEE154FCB04A /* Support Files */, ); - name = React; - path = "../../node_modules/react-native"; + name = RNLocalize; + path = "../../node_modules/react-native-localize"; sourceTree = ""; }; - 68939D77DFBF58631F305F3AAF443738 /* RNImageCropPicker */ = { + 68452F16C18216300873BC64932CEDB9 /* Pod */ = { isa = PBXGroup; children = ( - D20E2386F518E8E4CE98EF9C8F896925 /* Compression.h */, - 887614149377D43F39373680F4866684 /* Compression.m */, - 623CC8C222A5E75D8DA536F832D8C029 /* ImageCropPicker.h */, - EA98154EB72A5898BABD6144770CAFD6 /* ImageCropPicker.m */, - C436F1FFF2784DCB906FA3FDDE2BB48D /* UIImage+Extension.h */, - 15481B4DB7F185B8E4811FFCDA83CCBF /* UIImage+Extension.m */, - F069E5E3118E6E253A337FFAAEA2B091 /* UIImage+Resize.h */, - C54B454D6AAC14D6C0EE7A5D4235273A /* UIImage+Resize.m */, - 8A707788C01D4359B77C80D59F88304D /* Pod */, - 05B433B8D43BC4D387758804FC5589CF /* QBImagePickerController */, - 42C9FA7BFEE22110376983E144DA8059 /* Support Files */, + 475D1952589174397B080C68E3CD3B7D /* LICENSE */, + 054C83BBDAC376FE1B5AA8D3C86B099F /* react-native-appearance.podspec */, + AB3F9EB164E7333B1A3AA6012FF934DE /* README.md */, ); - name = RNImageCropPicker; - path = "../../node_modules/react-native-image-crop-picker"; + name = Pod; sourceTree = ""; }; 6907DA024691024FC3B7B89D06EE6269 /* Support Files */ = { @@ -13949,18 +14279,22 @@ path = "../Target Support Files/FirebaseInstallations"; sourceTree = ""; }; - 692E2B3EA223E5B7274F90176EBDD08A /* Pod */ = { + 691E68CE599C9050B7FDF2E14CEBDCC8 /* Support Files */ = { isa = PBXGroup; children = ( - B2345C6E92A99582DE012EFD3C6825CC /* React-RCTSettings.podspec */, + 75DA2030752E2A3166024CD23FB8778D /* React-RCTNetwork-dummy.m */, + F28AE2863E0C477B78DBCB3B1EAC1F69 /* React-RCTNetwork-prefix.pch */, + 77AAAF467AE8B022E1E214013CCF98A2 /* React-RCTNetwork.debug.xcconfig */, + 668F4E7B77D3B0FEBF7B23A3CFB03DDC /* React-RCTNetwork.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; sourceTree = ""; }; - 6A3049C7E8D41E5455E65CA8032E38D6 /* Pod */ = { + 698D538C19DBE6E25160D499BAAC6A56 /* Pod */ = { isa = PBXGroup; children = ( - 62F835C017D7F2661C18E80173697DFD /* UMTaskManagerInterface.podspec */, + 8EE8E5ADE000CA354915B00E07060792 /* Yoga.podspec */, ); name = Pod; sourceTree = ""; @@ -14123,22 +14457,26 @@ path = JitsiMeetSDK; sourceTree = ""; }; - 6B0E520C39E3403C4718DB025F7C019C /* Pod */ = { + 6AE874C54743D51FBB5EF2C8D199C9DC /* react-native-webview */ = { isa = PBXGroup; children = ( - 238CB2CACAC2ECF51F65A726E505C359 /* LICENSE */, - 0932E59627CCA66EB569C1163C2EADF1 /* README.md */, - AF3F9404B3BF466F59DA49FEFB4BDA61 /* RNCAsyncStorage.podspec */, + 25461BEBCFC3A2A402FE6B61D5718393 /* RNCWebView.h */, + 4D508ABC5E0AC0E825E1297A49E72D35 /* RNCWebView.m */, + 8B16EB86B3563046FD395E748D634BBF /* RNCWebViewManager.h */, + F3BC91850A97810B1DE5C9FA5E851A56 /* RNCWebViewManager.m */, + D808E42C2A968EFF27A62747678F92D1 /* RNCWKProcessPoolManager.h */, + 7A979BF7BF56746A069E2BC3516257E7 /* RNCWKProcessPoolManager.m */, + 5E8490EDC3F3BBB31FF0A37F346A43AB /* Pod */, + F1D309BF9FF89AB8D5A47D7777ECED2D /* Support Files */, ); - name = Pod; + name = "react-native-webview"; + path = "../../node_modules/react-native-webview"; sourceTree = ""; }; - 6B855C494DBBDF1AD7A8BAE290A60E33 /* Pod */ = { + 6BFECE4659CCC8F373106F4FBCEBBA8B /* Pod */ = { isa = PBXGroup; children = ( - EBCE65DCC6FB536115E3FC64D680516E /* LICENSE */, - 13CB8DD3AFBA8660A9439A3BB3AC528F /* README.md */, - 84861E1FFEE73585E77F8FFFE23E2CCC /* RNGestureHandler.podspec */, + 15E0B806513943CB1A3B40C2BD38FDD1 /* React.podspec */, ); name = Pod; sourceTree = ""; @@ -14154,24 +14492,16 @@ name = Frameworks; sourceTree = ""; }; - 6DA3B98B9AE3908A49CD0A216C0631AC /* EXSessionTasks */ = { + 6D203A631EAD9684B7256736DF9C2289 /* Support Files */ = { isa = PBXGroup; children = ( - CB7FAEBA9D689C73A940EBDAEC58B625 /* EXResumablesManager.h */, - 027A65AD9723F1BC0B73083CB0FD34B7 /* EXResumablesManager.m */, - 5BBEE77C5439F0C094A26988065D3F9F /* EXSessionDownloadTaskDelegate.h */, - FDC0B6F5E8578026BED7FD6E2AF10D84 /* EXSessionDownloadTaskDelegate.m */, - B946381FB2B4E28BB88F1ACEDEA452BB /* EXSessionResumableDownloadTaskDelegate.h */, - 218A7C1CB3F3F0EE38F365F9D0EF8FED /* EXSessionResumableDownloadTaskDelegate.m */, - FDED236A58C2D088DBFEC89983AF042F /* EXSessionTaskDelegate.h */, - 755824F8DDF2D469C459E8C9C7CB897C /* EXSessionTaskDelegate.m */, - 685846496BF0EC2906DA008F252304B0 /* EXSessionTaskDispatcher.h */, - D25ED1CD1ACB72C9EA7AAF0297417A5E /* EXSessionTaskDispatcher.m */, - E48698ECDAA84196E2680807D1F0071C /* EXSessionUploadTaskDelegate.h */, - FBD189F2249AEF5C6A23662E07C1B9CC /* EXSessionUploadTaskDelegate.m */, + 2041EDDEC54ED53007C0936B8D55DACA /* react-native-notifications-dummy.m */, + F03307F278BBC63A0A9444A3092558EB /* react-native-notifications-prefix.pch */, + BF1CE46C0D909DD9EFFE550B20C0B2B4 /* react-native-notifications.debug.xcconfig */, + 80A6035EC6BF580BA5DD5CBF902CE5AB /* react-native-notifications.release.xcconfig */, ); - name = EXSessionTasks; - path = EXFileSystem/EXSessionTasks; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-notifications"; sourceTree = ""; }; 6E0B2235695ACF3FDBF0FA60099CCEFE /* SKIOSNetworkPlugin */ = { @@ -14191,33 +14521,68 @@ name = SKIOSNetworkPlugin; sourceTree = ""; }; - 6FC3940998E055EAE81BFAAD4B33F98D /* Support Files */ = { + 6E337B39E082B352EC671C3D5A69951A /* Support Files */ = { isa = PBXGroup; children = ( - 639DCD59A293C7E3E947F9E703532426 /* RNFastImage-dummy.m */, - E9B6F3CFA57FC49F9367B4D6707236AC /* RNFastImage-prefix.pch */, - 9710E213DF582CC31939C04EE0D5A781 /* RNFastImage.debug.xcconfig */, - CA782B6CB8D0E07AD5544587498F4408 /* RNFastImage.release.xcconfig */, + AC6DEBA2FCF6E7F35C4B76020F58C198 /* EXKeepAwake-dummy.m */, + 2E22DFF7564A56CE0314A957EED3404E /* EXKeepAwake-prefix.pch */, + 45A2D7E7134F1154C2787C2F1DE89B9C /* EXKeepAwake.debug.xcconfig */, + 576F640416624F8A61CB9E2558337DD2 /* EXKeepAwake.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFastImage"; + path = "../../../ios/Pods/Target Support Files/EXKeepAwake"; sourceTree = ""; }; - 70ADE43FF7A18F9C00EF2DE4DF54598A /* Pod */ = { + 6E933DA8AF69D19E50023FD7BD85EF7E /* RNRootView */ = { isa = PBXGroup; children = ( - A8515FB5F1C12DB7D542564CB98954D2 /* UMPermissionsInterface.podspec */, + 938E0011BFC8D17952D67104D78B2D2D /* RootView.h */, + 49707F95FEA5E346F016F3C104FA56AF /* RootView.m */, + 54FBBFF303B69A5202AA45C4F4AB2CB1 /* Pod */, + 0256DA86107995D4F6CFE2ADD4DC5219 /* Support Files */, ); - name = Pod; + name = RNRootView; + path = "../../node_modules/rn-root-view"; + sourceTree = ""; + }; + 6ECC1FE38EDF25CC173F429FDDEB338F /* RNCMaskedView */ = { + isa = PBXGroup; + children = ( + D332923C4435CB0D9A4E240B3A9067F2 /* RNCMaskedView.h */, + 6E35D8FF6166A984B7EA7E038D1B0EBB /* RNCMaskedView.m */, + F863EADB4843D8385746B415F9E6850F /* RNCMaskedViewManager.h */, + AFF9DA7B4C4466F41A8425FC5E2A9C4A /* RNCMaskedViewManager.m */, + 32B5138BC6DBE984AAA14028CECB433F /* Pod */, + 7E512FFF4F6E27947BE52D53352A089C /* Support Files */, + ); + name = RNCMaskedView; + path = "../../node_modules/@react-native-community/masked-view"; + sourceTree = ""; + }; + 6FB5504D007F93A766EF762C4BBF2595 /* Support Files */ = { + isa = PBXGroup; + children = ( + 432AC71E049E339948D81B82AB73545A /* RNVectorIcons-dummy.m */, + BE9F320B5CB23ED87E6A858E223EC0CF /* RNVectorIcons-prefix.pch */, + 67D17B86D20BF654974C4FC7EB40228F /* RNVectorIcons.debug.xcconfig */, + 34196660B125935BD97FD8D8002203CF /* RNVectorIcons.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNVectorIcons"; sourceTree = ""; }; - 70BF40757E35BCEC130686803810BDFC /* Pod */ = { + 70955143795B9AD713B32F9417DD0635 /* Support Files */ = { isa = PBXGroup; children = ( - 0C1833C9E7F6B42D0E53D7EAFDF0375C /* README.md */, - 25C131015C99BF301C27398530106C9A /* RNCMaskedView.podspec */, + 5656D80A168DAF76D8EB514E658A70ED /* Yoga.modulemap */, + F71561FB046C748FB12835CE1E75925A /* Yoga-dummy.m */, + 5600FC67D52EC1330435708F5D533604 /* Yoga-prefix.pch */, + FFE18C84CD0014434D7A3335EA172451 /* Yoga-umbrella.h */, + 6C45D07153014333A7E477C92430F052 /* Yoga.debug.xcconfig */, + F2F45F82F3A93884760C8DB40FF71579 /* Yoga.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/Yoga"; sourceTree = ""; }; 70F1EE7C2304AE4A996838C17AAC1211 /* libwebp */ = { @@ -14232,59 +14597,108 @@ path = libwebp; sourceTree = ""; }; - 71494E336BE4372028FEB98F1216C51F /* Pod */ = { + 711215FF25418350C027CF6A5FF02298 /* Pod */ = { isa = PBXGroup; children = ( - 86B5F5B570A2CBD2663248ADEEE519F5 /* UMCameraInterface.podspec */, + 82B35C80912EEBECB266F8F45489A1C3 /* UMConstantsInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 7196CC4F2708ED8CDC8051ADF1CA3B23 /* Support Files */ = { + 723C299FAB4559A31E8990A0AA17E02D /* Support Files */ = { isa = PBXGroup; children = ( - 0F43706799D302C52DA8D5D9A93654C0 /* react-native-webview-dummy.m */, - 49C07F839DE7B2ACD1D3A50506E4440D /* react-native-webview-prefix.pch */, - 43B313C2EAFDE643A654012BE6963E02 /* react-native-webview.debug.xcconfig */, - 080FA1029D64D66B630C2230FAD56666 /* react-native-webview.release.xcconfig */, + 60F350C4BFD5AE0E56B234ABB6DE8094 /* GoogleUtilities-dummy.m */, + CC0CE5A3FFDD97552D725E57667A6C86 /* GoogleUtilities-prefix.pch */, + 64527AAA071B9A71DC7257F2B7125E06 /* GoogleUtilities.debug.xcconfig */, + DDA186F2D12CC245B1F0165BF1603DF1 /* GoogleUtilities.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-webview"; + path = "../Target Support Files/GoogleUtilities"; sourceTree = ""; }; - 71AE4D444F1CBA59A79A5F45D02850BD /* DevSupport */ = { + 72CE0C750FF08D8FC4C89F718899A51D /* DevSupport */ = { isa = PBXGroup; children = ( - 4B2D4B7F0D504FC434AE6F5DC3569292 /* DevSupport */, - DF60B72AE6064BC3E77FCBAC39680F1F /* Inspector */, + 95484398BD43F93D52448A2E0F064600 /* RCTDevLoadingViewProtocol.h */, + 7F723AFBD19313F95B81EE05A68BEE3E /* RCTDevLoadingViewSetEnabled.h */, + E02F2FE237FEBCD8B9EC4A739098217B /* RCTDevLoadingViewSetEnabled.m */, + 48C71DE6E533EFBD6429F8DAEA1922BA /* RCTInspectorDevServerHelper.h */, + A8B4894330B65A448011885A09AA345C /* RCTInspectorDevServerHelper.mm */, + 337145F316348576D066BD8895ADCEF7 /* RCTPackagerClient.h */, + 16619E407CBF9391E2C3884FDF4DF368 /* RCTPackagerClient.m */, + 85F2FD52AC5B5ECCD36AA0B1E47F0FD1 /* RCTPackagerConnection.h */, + 6623DE17D51849D5F24CAE56CB5AB658 /* RCTPackagerConnection.mm */, ); name = DevSupport; + path = React/DevSupport; sourceTree = ""; }; - 723C299FAB4559A31E8990A0AA17E02D /* Support Files */ = { + 732F2A963517BC8BF25227674D6E5DD0 /* Support Files */ = { isa = PBXGroup; children = ( - 60F350C4BFD5AE0E56B234ABB6DE8094 /* GoogleUtilities-dummy.m */, - CC0CE5A3FFDD97552D725E57667A6C86 /* GoogleUtilities-prefix.pch */, - 64527AAA071B9A71DC7257F2B7125E06 /* GoogleUtilities.debug.xcconfig */, - DDA186F2D12CC245B1F0165BF1603DF1 /* GoogleUtilities.release.xcconfig */, + A8CC09998BD35D6727E081D22D1EAED2 /* EXFileSystem-dummy.m */, + E63927E0C55D2881D7E158AC4378850A /* EXFileSystem-prefix.pch */, + 2E219A5EC5A88483D9A0CFF8771E52C9 /* EXFileSystem.debug.xcconfig */, + 9F823EB7BF3A2AE2CBA4A958D05EBA3D /* EXFileSystem.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/GoogleUtilities"; + path = "../../../ios/Pods/Target Support Files/EXFileSystem"; sourceTree = ""; }; - 7290BB1C5ED77A029A997A96E84DF050 /* KeyCommands */ = { + 7337C773469B4EAAD0D4B3F152A035E0 /* Pod */ = { isa = PBXGroup; children = ( - 855E19E00BCCC9D0E8F7010CD3AEC66F /* RCTKeyCommandConstants.h */, - C935479999A27089DE9E10F5AB6D6D62 /* RCTKeyCommandConstants.m */, - 21DBDBA437786C746351D2DFC78A97CE /* RCTKeyCommandsManager.h */, - 86057C2F677FB198EEF2098C4C42A644 /* RCTKeyCommandsManager.m */, - 982522C60AD919F213C4C33F46C60329 /* Pod */, - 87C18B28EC3FA2C09FB168C60CF085A6 /* Support Files */, + 7DDA158CE293AFF18B90420ABBB2ABB7 /* React-jsinspector.podspec */, ); - name = KeyCommands; - path = "../../node_modules/react-native-keycommands"; + name = Pod; + sourceTree = ""; + }; + 73C0F456C804D687F63EC41B693C547D /* RNUserDefaults */ = { + isa = PBXGroup; + children = ( + 6556667409649CC169DC9C110B0EAA23 /* RNUserDefaults.h */, + 5E1B043B7A4B96051403B77DAA682C9C /* RNUserDefaults.m */, + 53F9725D4C23A4F0C8412C1368C15941 /* Pod */, + D6AE73B3B3B631548EEC23C3C9B25AD2 /* Support Files */, + ); + name = RNUserDefaults; + path = "../../node_modules/rn-user-defaults"; + sourceTree = ""; + }; + 73F797454A24A72E614268802D23A680 /* EXAppleAuthentication */ = { + isa = PBXGroup; + children = ( + 7F1719491623B5D8449247E249A5F080 /* EXAppleAuthentication.h */, + A099E36DC8541FE37E87A54002BB71DB /* EXAppleAuthentication.m */, + C81CE05CBDBD3F1E22A33AEF3AF016D4 /* EXAppleAuthenticationButton.h */, + 27E4CF448FD5A82ED3DC0AE8AB4F9D03 /* EXAppleAuthenticationButton.m */, + B019429F3C6266D3C892317EF92021DE /* EXAppleAuthenticationButtonViewManagers.m */, + 429383AE358DC6BDAFB9DAB89318B2E8 /* EXAppleAuthenticationMappings.h */, + FD133AA16F00DE99E5ADE204783D7F6F /* EXAppleAuthenticationMappings.m */, + 7275174D80B124CE2B3009C59E8892EB /* EXAppleAuthenticationRequest.h */, + F1D5B74F92F3A9D550AA716C8BE6D124 /* EXAppleAuthenticationRequest.m */, + 0D9EA013ABB2CFE198CC8F61BF1AA2AB /* Pod */, + 3D1116BE9B2ECFA9DF2A41AB7F74B279 /* Support Files */, + ); + name = EXAppleAuthentication; + path = "../../node_modules/expo-apple-authentication/ios"; + sourceTree = ""; + }; + 745F9BABCC23F97158401A37B6DB0FD4 /* LNInterpolation */ = { + isa = PBXGroup; + children = ( + 7A10583685B73F98D9A09C95EF89DBF8 /* Color+Interpolation.h */, + B29AA0DE15639835847075E5952D1DC7 /* Color+Interpolation.m */, + F70FBE0D817010EDEECA851CC78579EE /* LNAnimator.h */, + E04E06FB3E393911F7F9520D61FEC016 /* LNAnimator.m */, + 41B6F22CBEBA8D3E24A8B4CFC50F2BA0 /* LNInterpolable.h */, + 3DE91BE6F72C1321CC40584D466B8BC7 /* LNInterpolable.m */, + 8A7EFF727BCBB89626C2C49DE6C79EB6 /* LNInterpolation.h */, + 8218E7443F4DE60378E3CE60A1C22432 /* NSValue+Interpolation.h */, + ); + name = LNInterpolation; + path = lib/ios/LNInterpolation; sourceTree = ""; }; 757D9FCA693638CEBD7909DADD8AAABA /* Support Files */ = { @@ -14297,26 +14711,14 @@ path = "../Target Support Files/JitsiMeetSDK"; sourceTree = ""; }; - 75FEC757905D0B0BBABB692C856D8F2A /* Pod */ = { + 7630FAB3B4893E72DC86EBCF66FCEF22 /* Pod */ = { isa = PBXGroup; children = ( - BEECD186DC6CEF2E410F959F5806EF44 /* UMImageLoaderInterface.podspec */, + 01F7D17CA3279C058FA7CDF1D4734FF4 /* EXVideoThumbnails.podspec */, ); name = Pod; sourceTree = ""; }; - 7661CDFCD9DEE88DCEE92AA0BEEB9938 /* React-RCTSettings */ = { - isa = PBXGroup; - children = ( - E12655902A04FDE52C97FBB64DCF99B2 /* RCTSettingsManager.mm */, - 9B3B1234649236B562BD6FCC80E8053C /* RCTSettingsPlugins.mm */, - 692E2B3EA223E5B7274F90176EBDD08A /* Pod */, - 9477E054A51EF62A5C90C5D3FE18C61E /* Support Files */, - ); - name = "React-RCTSettings"; - path = "../../node_modules/react-native/Libraries/Settings"; - sourceTree = ""; - }; 778A88F73B88A375526096F1FFB4C4B4 /* GoogleDataTransportCCTSupport */ = { isa = PBXGroup; children = ( @@ -14338,97 +14740,12 @@ path = GoogleDataTransportCCTSupport; sourceTree = ""; }; - 785AE6A0182278B30932095684656CF5 /* ReactNativeKeyboardInput */ = { - isa = PBXGroup; - children = ( - D012FC6E71C5BDC1B1FD0537D1FEF169 /* LNInterpolation */, - 5E61B90073CF930B27640928906F3829 /* Pod */, - 7E26C5CA8DA3071F1E915677761228F6 /* RCTCustomInputController */, - 654C290CE1E1127FA6F91BAE6BE6343C /* Support Files */, - ); - name = ReactNativeKeyboardInput; - path = "../../node_modules/react-native-keyboard-input"; - sourceTree = ""; - }; - 78C0216E48648813530C044AD73B16A2 /* react-native-notifications */ = { - isa = PBXGroup; - children = ( - 3B1E3359D6A9ED665FE278B75005E906 /* RCTConvert+RNNotifications.h */, - 6FD647A9C8CE45C38C48A0A02B147669 /* RCTConvert+RNNotifications.m */, - 0FBBF12B02AB7F3A6F627527627068DF /* RNBridgeModule.h */, - 0EF967F584911A689161739AB50AEC21 /* RNBridgeModule.m */, - 2A293917258C8AB05CB084772D82E4A8 /* RNCommandsHandler.h */, - BBD86E34AA76095B88203BCB3CDC5B60 /* RNCommandsHandler.m */, - 247ACF2034BDD4254D15486CC2D4D241 /* RNEventEmitter.h */, - CE374EBE8F0C05C51482CF61FFCFF753 /* RNEventEmitter.m */, - B2C807BFF82D083C7CDD29EB94C0E9BF /* RNNotificationCenter.h */, - 1D8B7A08D48B7DB41DC6F5B3CB3FA1EC /* RNNotificationCenter.m */, - B675A0ADBD0E25B3F1B3ED5CAB45A210 /* RNNotificationCenterListener.h */, - 2F1B5EB297DCF4C9E1F7CC1E3C2CDC94 /* RNNotificationCenterListener.m */, - 0127220FAD3022C756CD003E10A1F727 /* RNNotificationCenterMulticast.h */, - 556A221B3B32B998A9B0A794C7AF126B /* RNNotificationCenterMulticast.m */, - 1190B430C3B05FA583717372CFB1EBC0 /* RNNotificationEventHandler.h */, - 1627071E5B3E484507234F8D0A56DC9B /* RNNotificationEventHandler.m */, - D2930589CAE3B436E83097AA1ADE8724 /* RNNotificationParser.h */, - 92583E593A12717DA04A34625A26C660 /* RNNotificationParser.m */, - 89BD880E0A73881F2D829E47488EB8CE /* RNNotifications.h */, - B28281D8A3C5B7A81FD9068BBF81E78A /* RNNotifications.m */, - 15BD58F56C209807155B2D73D322F169 /* RNNotificationsStore.h */, - 7517F6785EAF523E0B35CF8D35F9506D /* RNNotificationsStore.m */, - 46543CB405085A92913316DF38EAEA14 /* RNNotificationUtils.h */, - 917436F04D28B8273DFF73770698D8CB /* RNNotificationUtils.m */, - 958878E7F5EB446B20B4070569600ED0 /* RNPushKit.h */, - 56EED4B1C4BE02DE793AC7A19190F8CB /* RNPushKit.m */, - A9F1828E00B05C11D6AA90198F9E15EF /* RNPushKitEventHandler.h */, - A86A32F345AF00A0B92C61CD6EC4683B /* RNPushKitEventHandler.m */, - 5ABD96C678115C6E3745285DA05515C0 /* RNPushKitEventListener.h */, - 4F4A7AE2D14F08F5D290D66C995D7AE3 /* RNPushKitEventListener.m */, - 2F46BC52A9B5CD71FA5710C2697715CE /* Pod */, - 43144EB1022E739AA849143176A5390F /* Support Files */, - ); - name = "react-native-notifications"; - path = "../../node_modules/react-native-notifications"; - sourceTree = ""; - }; - 79D60C94D7E15DA2E1870D398C0AE90A /* Support Files */ = { - isa = PBXGroup; - children = ( - 68BD45047DD94B81E29DA4BD4DC75835 /* EXConstants-dummy.m */, - 83C24E4A4FF02EA14E94E0ED7E2543A9 /* EXConstants-prefix.pch */, - 9C190D329DAF3108EFA7B75F70E14C21 /* EXConstants.debug.xcconfig */, - 2F9FBBEF4AC750C92B141F830E862FC3 /* EXConstants.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXConstants"; - sourceTree = ""; - }; - 79EE71B5295318175FD84A54CD7371FF /* Support Files */ = { - isa = PBXGroup; - children = ( - 27129A10F8357EB63C5D3F6A502B9587 /* RCTRequired.debug.xcconfig */, - 44E4B88B3C6C4AA9F2152965ED147C56 /* RCTRequired.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTRequired"; - sourceTree = ""; - }; - 79EF0233F2646DF59943395DE37EE27E /* EXAppleAuthentication */ = { + 78DBB33D0FD33B87CFDA15F589B959C3 /* Pod */ = { isa = PBXGroup; children = ( - 66BB2F39CD1DCD4CC40D56389D590E60 /* EXAppleAuthentication.h */, - D4D5A168DA5148C3BFE7AE35AF72D057 /* EXAppleAuthentication.m */, - 6F5405D459EA4CFE33A1E7CAE2888DDD /* EXAppleAuthenticationButton.h */, - 931A5BAE4E60413B254829DC0CF1E382 /* EXAppleAuthenticationButton.m */, - 52B7435ECEFCC1530A20C471774EC717 /* EXAppleAuthenticationButtonViewManagers.m */, - 74B9B3FD914CF346478602A5F5DA6E76 /* EXAppleAuthenticationMappings.h */, - 37B01AACC34E2DB6EC4108DAA06B25E7 /* EXAppleAuthenticationMappings.m */, - 3D1B98C7FBEFC26856314E228A00A4E5 /* EXAppleAuthenticationRequest.h */, - 5B7CA66794F8BDD0D8A7E2BBCC81722C /* EXAppleAuthenticationRequest.m */, - CAD5E5CC7E2357A6CE59E2C8EA0314CA /* Pod */, - 1887F8269500AA16A6D4C5127842BF96 /* Support Files */, + AA78C15CF890787E1AB3B6872A7F4764 /* UMTaskManagerInterface.podspec */, ); - name = EXAppleAuthentication; - path = "../../node_modules/expo-apple-authentication/ios"; + name = Pod; sourceTree = ""; }; 79FE725F6489D07A0C377DDB6DB7B22D /* Support Files */ = { @@ -14443,76 +14760,48 @@ path = "../Target Support Files/DoubleConversion"; sourceTree = ""; }; - 7C413B21D2F3DF35AB1CF5C31CBFC93B /* Default */ = { - isa = PBXGroup; - children = ( - B10F6A4BBFD7E5DB9C2D3F91DFA6947C /* Base */, - A59BC5F7045FB584A1A54A7257A327F2 /* CxxBridge */, - E54D73DF5CDDC336F465E809878F2E4E /* CxxModule */, - 4DEA5AEEA76775A09C8FC376F1F0BDE9 /* CxxUtils */, - 276654A5E1206D1E591EF1EFC4A0E7FC /* Modules */, - C07C9649A6A9BEB72564394A7D6F4C65 /* Profiler */, - 886332A6759459A4969FD8C195555BAD /* UIUtils */, - F76DDF89BCDBDD675DE17B654BFFB2B6 /* Views */, - ); - name = Default; - sourceTree = ""; - }; - 7CFB706C7DF17ACFACBFD73E8AE3E252 /* RCTSettingsHeaders */ = { - isa = PBXGroup; - children = ( - E3E18767D1E79CD9DAED40FE9871E929 /* RCTSettingsManager.h */, - 736943130C43F57CEFBCEB0556C7E82B /* RCTSettingsPlugins.h */, - ); - name = RCTSettingsHeaders; - sourceTree = ""; - }; - 7E0B6BB5D7FE30106AD865E366BA6FE6 /* Support Files */ = { + 7B86C6FD49CC461B1672E7D21BD0FF9D /* Support Files */ = { isa = PBXGroup; children = ( - A50FD284847D089996CE7B9D64B5E2BD /* RNDeviceInfo-dummy.m */, - 8A05FB46307785CD9F4F089431CA9E07 /* RNDeviceInfo-prefix.pch */, - ED60595149C4D4ECE391CD7E055A488B /* RNDeviceInfo.debug.xcconfig */, - 88C803B99AEC562FC0C0CCA0D1D2B59F /* RNDeviceInfo.release.xcconfig */, + 822913D585B3B4F552DE096E290F87F3 /* FBReactNativeSpec-dummy.m */, + 4B9FE76A89FFF8B6B5803CCF9AFDFAEC /* FBReactNativeSpec-prefix.pch */, + 3BBCBD38C38548864689869B2010688D /* FBReactNativeSpec.debug.xcconfig */, + 4BF3AFEDF5A02ABF3C51A1720758AF15 /* FBReactNativeSpec.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; + path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; sourceTree = ""; }; - 7E26C5CA8DA3071F1E915677761228F6 /* RCTCustomInputController */ = { + 7E512FFF4F6E27947BE52D53352A089C /* Support Files */ = { isa = PBXGroup; children = ( - D5328BB01B041DED6741C77026C1C3B9 /* RCTCustomInputController.h */, - A97E8279FC797BDCFA942FE1B190D5EF /* RCTCustomInputController.m */, - 74FEFD87D477DF451E6D724E3400FB8D /* RCTCustomKeyboardViewController.h */, - D674A3976574A3B46BAA6F260B8F4D55 /* RCTCustomKeyboardViewController.m */, + 3341E53317D371EFF9C478A858D32254 /* RNCMaskedView-dummy.m */, + 3212B8F001BA6493E85D6D0BC3C8E45F /* RNCMaskedView-prefix.pch */, + F715FF90281EF36EBA9AB5EB54853BC0 /* RNCMaskedView.debug.xcconfig */, + 9BFCE08E6AF80A47463D31DA35651250 /* RNCMaskedView.release.xcconfig */, ); - name = RCTCustomInputController; - path = lib/ios/RCTCustomInputController; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNCMaskedView"; sourceTree = ""; }; - 7F1E68D1DFF6A19EFA984BEF0805C996 /* UMFaceDetectorInterface */ = { + 7F707AB74F4EB0620B5143E00BD2C1FB /* Pod */ = { isa = PBXGroup; children = ( - 80E6E9F99DA8F071689A8C4804E01125 /* UMFaceDetectorManager.h */, - 19935BCEE559CD1CD7626EB40075A7FE /* UMFaceDetectorManagerProvider.h */, - 441561515AF3388B3C86393E56B1D3CF /* Pod */, - 279C8F59F403B33573E3E57A04B685A1 /* Support Files */, + 46DCDC4C11ED8C3E33E1385B483D1AF1 /* UMFaceDetectorInterface.podspec */, ); - name = UMFaceDetectorInterface; - path = "../../node_modules/unimodules-face-detector-interface/ios"; + name = Pod; sourceTree = ""; }; - 80A180803F5948FAEE2307B62D932B51 /* RNFBAnalytics */ = { + 809E6941D0A6A693DF070D80D77079B5 /* EXHaptics */ = { isa = PBXGroup; children = ( - 9E9417DB68C894934F552EDBEFEE30B4 /* RNFBAnalyticsModule.h */, - B650074EFC46B04DF230D7228E596A77 /* RNFBAnalyticsModule.m */, - 5B0BEA9A6C9DF6A707EDC5F2EEE5E328 /* Pod */, - 325523B32C582ACDA3C0EF8D11327567 /* Support Files */, + 9E3C2AA1E332C41F4597D3BE7D3DA30A /* EXHapticsModule.h */, + 42E8C6E9D80605B785ECE14577FC3FF6 /* EXHapticsModule.m */, + E61FCDAAB3D31394CE807B5C56ECD667 /* Pod */, + 4A9C7612F115AB9BA36E136147CEE2D2 /* Support Files */, ); - name = RNFBAnalytics; - path = "../../node_modules/@react-native-firebase/analytics"; + name = EXHaptics; + path = "../../node_modules/expo-haptics/ios"; sourceTree = ""; }; 80C07A158264006F7AD83BD0AC765D28 /* Support Files */ = { @@ -14569,108 +14858,29 @@ name = Frameworks; sourceTree = ""; }; - 8408B015D8FDF06D5CC8C52509F0F422 /* Products */ = { + 81BE8842D4943994D346DF1D8904F4F9 /* react-native-slider */ = { isa = PBXGroup; children = ( - FE6D792B6328AAF68E46924D7F466631 /* AccessibilityResources.bundle */, - 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 */, - 86375444C196BA272DDBB8165BF64A15 /* libFirebaseCrashlytics.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 */, - 34C842CD40D88AB4B2BF24FC77DA0009 /* libRNFBAnalytics.a */, - 18D0B1E13C69654196028DD6EDCC3452 /* libRNFBApp.a */, - EE4AEFEACE275DDCFB42B9400BF6B218 /* libRNFBCrashlytics.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 */, + 9C670B14A01FCE56532A07BE5D0B6417 /* RNCSlider.h */, + 1F9E5A985371BA508DB6646FB72E924C /* RNCSlider.m */, + A01E6B7A5A694C940D621C26BFE22735 /* RNCSliderManager.h */, + 5DCC39208CEAA002C1D502B8CE314B7A /* RNCSliderManager.m */, + B3D833FFDCD80B3A7057B85CE8E87321 /* Pod */, + DC0D73D62BC1461EDF9D0DF0289E2703 /* Support Files */, ); - name = Products; + name = "react-native-slider"; + path = "../../node_modules/@react-native-community/slider"; + sourceTree = ""; + }; + 83024692168C7F3E977B42739CDAE2A0 /* Singleline */ = { + isa = PBXGroup; + children = ( + 30C697929EFA6D57ACD221D75F86D7E5 /* RCTSinglelineTextInputView.m */, + 52E281CB0D4FFD210261EB1E2D66D8A7 /* RCTSinglelineTextInputViewManager.m */, + A17E4986EBB2FA4FF6BE179E2CB3852B /* RCTUITextField.m */, + ); + name = Singleline; + path = Singleline; sourceTree = ""; }; 8432727652B6CCCEE8756DA0755B5CE7 /* Support Files */ = { @@ -14684,71 +14894,12 @@ path = "../Target Support Files/FirebaseCore"; sourceTree = ""; }; - 84611CF279D5E04071C06E90CB2C8D54 /* Yoga */ = { - isa = PBXGroup; - children = ( - ACB931B616D9A99DDDC08850C664FAC0 /* BitUtils.h */, - 5F0CE731F9A363CD32CCCD6259E46EFC /* CompactValue.h */, - 6B55CD1F7C412AA7FC1492AEA4384D5A /* log.cpp */, - 075555AF8B96027BD2D478E62C5221C9 /* log.h */, - 45ED32362BBCC4FD140B005332FA0A98 /* Utils.cpp */, - BE6DCDB3EEEA0F4D656FB2354B1F3C84 /* Utils.h */, - 4B1968C239F35AB0B86D5854025FD9F0 /* YGConfig.cpp */, - 5D45BCFDFAE6F6EACAA99CCAB789EC43 /* YGConfig.h */, - D0E4142B407E6E4E9BDB00E3BF5FA229 /* YGEnums.cpp */, - 4450F9ADD5F49A659C51ECE5AAFA1B19 /* YGEnums.h */, - 70A7AA0CF634AA09014F3FB65CB56925 /* YGFloatOptional.h */, - CC4A8A5746AC02E50BDE6FF0B381FE14 /* YGLayout.cpp */, - 85E12D48404FDE5B55261A25F28CAC25 /* YGLayout.h */, - 7E82D8ED9A1193569F1625089D9DD22D /* YGMacros.h */, - A9BF6CF75337707C6C44E8C493666FDC /* YGNode.cpp */, - 3F3A80DB7CAD74E4D263691EBC611ED3 /* YGNode.h */, - C6473AD8D884C122D30D147CB2EEA634 /* YGNodePrint.cpp */, - 6DF59BCAE6579F8A1F4E41CD03719CE8 /* YGNodePrint.h */, - FF0F7F289DAB6779D1358BE55592F61D /* YGStyle.cpp */, - 31CA8F9B54CE322337A559BAEA1909EE /* YGStyle.h */, - 690521DE836EB14D6423498D8CB39650 /* YGValue.cpp */, - BB762257B51BEB7CCBEEC293A78F8878 /* YGValue.h */, - 55FAD051E2AA959A4D8541A40AB4DFEB /* Yoga.cpp */, - 3590FD2FFCCDF22D9CE8AE5ADF431BDE /* Yoga.h */, - 56EAC8CECCAD0935A9C17D90A8EF5A16 /* Yoga-internal.h */, - 5F1815CE30B31686FFBAC53FADB0EFBB /* event */, - 9B86FE35933CB0276B8485EEC9072B4F /* internal */, - 4C63F63163549F4789AA4527430D1530 /* Pod */, - 577BCA7B9847D75F5EAA3256E8A0C48F /* Support Files */, - ); - name = Yoga; - path = "../../node_modules/react-native/ReactCommon/yoga"; - sourceTree = ""; - }; - 84F4740E4BF5EF272501FC4FF3B6054D /* RNFBApp */ = { - isa = PBXGroup; - children = ( - 064D23FD317D7AFAF8A434A19B5751B1 /* RCTConvert+FIRApp.h */, - 0CEEB76485EFA0FF394C19C97B2B52FC /* RCTConvert+FIRApp.m */, - EF4B57E1481A7B4B821B68EF26FAEAFB /* RCTConvert+FIROptions.h */, - E83115FFE7ED69EAD06883FD58323459 /* RCTConvert+FIROptions.m */, - 30292170DF471817AFE23AD88C8A08CC /* RNFBAppModule.h */, - 8A461FB71F14FA8FC2FEA6C262341DDD /* RNFBAppModule.m */, - B9E4ECDEC4128C93752296ECB0EEE079 /* RNFBJSON.h */, - 9A19805C017832692074F5E607A22CA7 /* RNFBJSON.m */, - A253EF83DF55BCC8F110EFF0E561CB3E /* RNFBMeta.h */, - EACEDCF5538FC4FA4DC6AF4EA003A13D /* RNFBMeta.m */, - A3EA69EE11ADAF8D290E70524F9C32CD /* RNFBPreferences.h */, - AC5B50A9A39C315EBC6182D6DB59056E /* RNFBPreferences.m */, - F2B70451F292A11102014AA7D382DFDA /* RNFBRCTEventEmitter.h */, - 1BFE7B3C376934A3A5401972084A6F69 /* RNFBRCTEventEmitter.m */, - E62F4993A539C76D40D50EC63F184707 /* RNFBSharedUtils.h */, - ED8ECD8D922917999B335311111C1B7E /* RNFBSharedUtils.m */, - 83092417C55CE84CC47FE1C01B58E11E /* RNFBUtilsModule.h */, - 2ECF09EC3A960F7D1D2D7094E3CC47B6 /* RNFBUtilsModule.m */, - 26CD50B12450494507E950828B622558 /* RNFBVersion.h */, - C8D0607E6F1D8EEAB90007F6BB4D6239 /* RNFBVersion.m */, - A78905A4A443C97C19F5398EE9F2060B /* Pod */, - 2580FA943229888A77F50ADE6F65B89E /* Support Files */, + 84C9B530E40E37725926FA3E19A45835 /* Pod */ = { + isa = PBXGroup; + children = ( + 70256AF4307BF1AADCF0BE16ADB70616 /* UMCameraInterface.podspec */, ); - name = RNFBApp; - path = "../../node_modules/@react-native-firebase/app"; + name = Pod; sourceTree = ""; }; 85036FAFEB60A7A7F38257AB58E1EC8B /* Targets Support Files */ = { @@ -14760,107 +14911,88 @@ name = "Targets Support Files"; sourceTree = ""; }; - 85F1E76372AEF008F562EB210A26C8F7 /* SDWebImageWebPCoder */ = { + 852DE7B02AF6E0879F7E3270E5B0B33D /* Support Files */ = { isa = PBXGroup; children = ( - 49DBA2AEAB92CD95EA4FDD14B631F52B /* SDImageWebPCoder.h */, - 8A3C306919D7B3AD2C1EABA2E4ECAA80 /* SDImageWebPCoder.m */, - 1CEA90651A4405E53EF23D718B1CB556 /* SDWebImageWebPCoder.h */, - 34EBB387C060A930458C5C6E5081055B /* UIImage+WebP.h */, - 05B0307A15AD186CB2A696F28EADF3FA /* UIImage+WebP.m */, - 80C07A158264006F7AD83BD0AC765D28 /* Support Files */, + 179F4502B5494838D4DDFE443C1E31C5 /* React-jsinspector-dummy.m */, + 7CC9E381EF1E048DBAD72F45E5B336CA /* React-jsinspector-prefix.pch */, + 0524B1607ADF3E508B48634EC00BD81C /* React-jsinspector.debug.xcconfig */, + 14E554F53262272D3C91AC3826450D23 /* React-jsinspector.release.xcconfig */, ); - name = SDWebImageWebPCoder; - path = SDWebImageWebPCoder; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; sourceTree = ""; }; - 86057D036E3EC5316A6FA6202412B6FE /* RNDateTimePicker */ = { + 854AFE51DDF11C7E3532DC4B9978DD4E /* Pod */ = { isa = PBXGroup; children = ( - 0FB5D1E227C83FE844D22E47D2C21D0C /* RNDateTimePicker.h */, - 9B891790864D2327604E885A1BB1CE29 /* RNDateTimePicker.m */, - D53887821DF8B50E33EFD33CB134980B /* RNDateTimePickerManager.h */, - FC9F495B764591D370E8445BDDBFA9C5 /* RNDateTimePickerManager.m */, - 556FDE3012224A1834BC33D04F26D377 /* Pod */, - A1320D1316F587A1F5E89AFBD7EBC9BB /* Support Files */, + DFF491CB56E9E0B2ACA17F0CD982683E /* React-RCTText.podspec */, ); - name = RNDateTimePicker; - path = "../../node_modules/@react-native-community/datetimepicker"; + name = Pod; sourceTree = ""; }; - 86823FC030270B15B3A1CF9DFBD11247 /* Interfaces */ = { + 85F1E76372AEF008F562EB210A26C8F7 /* SDWebImageWebPCoder */ = { isa = PBXGroup; children = ( - 9EE033307D0F79534498A6083415BD28 /* UMAppLoaderInterface.h */, - 42C98BD451DB83FE983EB7711ADAEEF6 /* UMAppRecordInterface.h */, + 49DBA2AEAB92CD95EA4FDD14B631F52B /* SDImageWebPCoder.h */, + 8A3C306919D7B3AD2C1EABA2E4ECAA80 /* SDImageWebPCoder.m */, + 1CEA90651A4405E53EF23D718B1CB556 /* SDWebImageWebPCoder.h */, + 34EBB387C060A930458C5C6E5081055B /* UIImage+WebP.h */, + 05B0307A15AD186CB2A696F28EADF3FA /* UIImage+WebP.m */, + 80C07A158264006F7AD83BD0AC765D28 /* Support Files */, ); - name = Interfaces; - path = UMAppLoader/Interfaces; + name = SDWebImageWebPCoder; + path = SDWebImageWebPCoder; sourceTree = ""; }; - 86AFD7FA88CACE9D4CE5CF0CD9225A9F /* Support Files */ = { + 86180FFEEB5F9FFB316561382132D6BB /* Support Files */ = { isa = PBXGroup; children = ( - 424B5272FA663E6E06C5D1F1E5A726F4 /* UMFontInterface.debug.xcconfig */, - 702F2E714218881514A976B01F2C42CB /* UMFontInterface.release.xcconfig */, + B940B2BC2F80F750B2D3E98D7D49E910 /* React-RCTVibration-dummy.m */, + 145F78AE662BA1F703863C5492855886 /* React-RCTVibration-prefix.pch */, + 4B469E1368D928C3790E8389D8966E8F /* React-RCTVibration.debug.xcconfig */, + 754DF975C536E7E3964E4A1DD637028D /* React-RCTVibration.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFontInterface"; - sourceTree = ""; - }; - 86BDA136FE2A451B3DC69B5D8EE10D5F /* Pod */ = { - isa = PBXGroup; - children = ( - DBDCF9FF37FE3A1B39848A302A4A1ADE /* LICENSE */, - F3019DF95426F18BC3C20871E16B089D /* README.md */, - 59A962147145BB28D44005144DDB2EBD /* RNFBCrashlytics.podspec */, - ); - name = Pod; + path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; sourceTree = ""; }; - 873ACEFADF446CBED487B6F5EEF385B5 /* EXFileSystem */ = { + 8767DF0FC07705E326016DA6EA49D5C7 /* Support Files */ = { isa = PBXGroup; children = ( - 4B00F4D65453EEF2485354900ADF5356 /* EXFilePermissionModule.h */, - D9841E3FE0DF5557C4203AB7BCCB8B15 /* EXFilePermissionModule.m */, - 315567A644A3A4F6CDE0EC2444F28DF2 /* EXFileSystem.h */, - DE9D1DB0F7F8B888A942D173C1F8A3A7 /* EXFileSystem.m */, - 6302775582C8FB292F7C0CAB46A91BF9 /* EXFileSystemAssetLibraryHandler.h */, - 6C5D1D2FF323DF4DA9C60F1177C5DF84 /* EXFileSystemAssetLibraryHandler.m */, - A0D9D6A2339F0BA2D9379EC5E5A14AED /* EXFileSystemLocalFileHandler.h */, - 821B25DDA9010D1E8EB56C5C600E9BB0 /* EXFileSystemLocalFileHandler.m */, - E748DE4661210BD2F90711673DD75BEA /* NSData+EXFileSystem.h */, - 8B026627ED5702344586FA2080CA7233 /* NSData+EXFileSystem.m */, - 6DA3B98B9AE3908A49CD0A216C0631AC /* EXSessionTasks */, - A7C0BD2764A311581EF942D989EFA80A /* Pod */, - 583A8F59356910D8114CACD7BD588639 /* Support Files */, + 022C1549C53EE9F08BD471BAAA55305F /* react-native-document-picker-dummy.m */, + 9B6B6D6CC8D385E288AA757E1E8A5ED1 /* react-native-document-picker-prefix.pch */, + 15765270D5A73D79E74E1D5890B76E3D /* react-native-document-picker.debug.xcconfig */, + 63A82734214174AAF5DC005C4FAE784A /* react-native-document-picker.release.xcconfig */, ); - name = EXFileSystem; - path = "../../node_modules/expo-file-system/ios"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-document-picker"; sourceTree = ""; }; - 87C18B28EC3FA2C09FB168C60CF085A6 /* Support Files */ = { + 87EE5D94E44721938B0FF0F745709C5B /* RNFastImage */ = { isa = PBXGroup; children = ( - 9E647A63FBE8492458D2D3E07E006264 /* KeyCommands-dummy.m */, - D9E0446ED9B7395D9EC833AC41C8853F /* KeyCommands-prefix.pch */, - D9D443D8C8355E2C6FFE517B93508081 /* KeyCommands.debug.xcconfig */, - ED89FD6A33B5F43A9CBFA023D2080DB8 /* KeyCommands.release.xcconfig */, + 10B09D08131C7CCDC5B6C69A735884F4 /* FFFastImageSource.h */, + EF52CE6D58AF9AB112ECEA7526847AB9 /* FFFastImageSource.m */, + D61FD2194D31E36528E34EBD1F4DDD96 /* FFFastImageView.h */, + A9DA114D384F059FB99528E847EE2BCF /* FFFastImageView.m */, + 8B60382AE50DC24935A0B636721A9B5D /* FFFastImageViewManager.h */, + 22D68E4A3CC482FE1FAFB5220E879E04 /* FFFastImageViewManager.m */, + 34565FA4951F2E84CF439378B20E8891 /* RCTConvert+FFFastImage.h */, + EF8C8BBC959D54F7D4C8F67BA8C7F31F /* RCTConvert+FFFastImage.m */, + C7F4366B92290C547F519F4E58430081 /* Pod */, + 0CDDDF9DF102E5F1DECC51313C846306 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/KeyCommands"; + name = RNFastImage; + path = "../../node_modules/@rocket.chat/react-native-fast-image"; sourceTree = ""; }; - 87EE96C2FB3D56A9A9180C73575005EB /* FBReactNativeSpec */ = { + 87F6E6C3621F20460B25F446BCDFF52F /* Pod */ = { isa = PBXGroup; children = ( - 269BDE5F9150C53B58840D7F7942DB50 /* FBReactNativeSpec.h */, - 0523E97BB6B4DB22CB2C8CD1599C9E2C /* FBReactNativeSpec-generated.mm */, - 52AB36CCC94F01D053AB41AC6BD11ACF /* Pod */, - 9A3EFD7C276D9EE7C4EF3612B6346CAC /* Support Files */, + 127936FDB75BBD0206130E25308EF7DB /* UMImageLoaderInterface.podspec */, ); - name = FBReactNativeSpec; - path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; + name = Pod; sourceTree = ""; }; 87FDEA61BA179B1246744517AB92E4A8 /* Support Files */ = { @@ -14873,38 +15005,35 @@ path = "../Target Support Files/boost-for-react-native"; sourceTree = ""; }; - 886332A6759459A4969FD8C195555BAD /* UIUtils */ = { - isa = PBXGroup; - children = ( - 77240A36A56CFDF251E289D65885DA50 /* RCTUIUtils.h */, - CAF380BEAB1E336DF46EA3D02D047BDD /* RCTUIUtils.m */, - ); - name = UIUtils; - path = React/UIUtils; - sourceTree = ""; - }; - 89101D932C0D64001D44E2665731A3CB /* Support Files */ = { + 8838DBE2986B2EB9681E9B8CB6E7660F /* Support Files */ = { isa = PBXGroup; children = ( - 10978F432AF4EAAD7BC8D6CF923B2CCC /* react-native-slider-dummy.m */, - 305BEC16D0C2139163868EA257340703 /* react-native-slider-prefix.pch */, - BF78E5C625685E0CB6D4C8D77A19163B /* react-native-slider.debug.xcconfig */, - A629ACF8E06C13D5446917A9CEC51866 /* react-native-slider.release.xcconfig */, + FFA1BDEEFFDAB36D3A227C4A87473A2C /* EXImageLoader-dummy.m */, + B104C3A416E6EE68513971DB0E7779CC /* EXImageLoader-prefix.pch */, + A8C2ED9069F6157678C17034BD74A846 /* EXImageLoader.debug.xcconfig */, + 86C9A29DF70E0BDD75BEEE10DC8DA60F /* EXImageLoader.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-slider"; + path = "../../../ios/Pods/Target Support Files/EXImageLoader"; sourceTree = ""; }; - 8A05E962AF26D9D5B81193A187AD7B74 /* Support Files */ = { + 891BCD905A5B5EF2D390DAB8896AB81F /* jsi */ = { isa = PBXGroup; children = ( - A634CE8A6832A8210B2D1D5A4393D787 /* RNReanimated-dummy.m */, - 2E8CC085D230D84EB54AB5526DE13753 /* RNReanimated-prefix.pch */, - 6911ED31F697A5D978DD5DAF749ECE5E /* RNReanimated.debug.xcconfig */, - 624CA4F58AF5F67C4DA05345E67B1D23 /* RNReanimated.release.xcconfig */, + 2C2DC4E4CE6701125017794D4B0A19CF /* decorator.h */, + 024B065AFF143C2DEC1C1F855EE492C3 /* instrumentation.h */, + 1A9360FE76400E71E4D84075222B7385 /* jsi.cpp */, + EDF4AC5118A1AAB9BC42B53E0093620B /* jsi.h */, + DE0465438FA7DCC04C52FEE2F4C95ABC /* jsi-inl.h */, + 3F2BF95DCF13E2EC0A619715493ACC3F /* JSIDynamic.cpp */, + A0A4F9F2CBF92FD226A84C59FA7A1C64 /* JSIDynamic.h */, + 43900ACAD78F83BB0CDADD08532E882F /* jsilib.h */, + 7B92EEF6CBE58791AF9976F1C4C999F6 /* jsilib-posix.cpp */, + 657A92B3B871AEFD45AF9375E6A386F2 /* jsilib-windows.cpp */, + 1F85526DB5E381E554840E0E96CFC48C /* threadsafe.h */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNReanimated"; + name = jsi; + path = jsi; sourceTree = ""; }; 8A300367C3696807963A79297655F860 /* Support Files */ = { @@ -14919,76 +15048,73 @@ path = "../Target Support Files/Flipper"; sourceTree = ""; }; - 8A707788C01D4359B77C80D59F88304D /* Pod */ = { + 8A4F5D8FDD136432C3F53455464CA5EA /* Support Files */ = { isa = PBXGroup; children = ( - DB10A20CA7CBE0226FB6E9D676874892 /* LICENSE */, - 8F612F968B328ADB51FDD5E992A36613 /* README.md */, - 0D040BE0476179B2CDCCBC1DEF92065F /* RNImageCropPicker.podspec */, + EAA26860DEACDBF1B7D5FCC9AA8ECD27 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, + 182A5ABB471531A6365176D686E85516 /* RNImageCropPicker-dummy.m */, + 2EFD88DC535B179F97D75814FDA16BC4 /* RNImageCropPicker-prefix.pch */, + 18E749B7CF46B1C4F7D109E219EDAC77 /* RNImageCropPicker.debug.xcconfig */, + FCDDD2C6F783F69D3705B88CFE72A558 /* RNImageCropPicker.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; sourceTree = ""; }; - 8AF4F969301492DDAC217B28EB1CD4E5 /* UMViewManagerAdapter */ = { + 8A8DB443ACAC89346F5706460EA71AA7 /* React-jsiexecutor */ = { isa = PBXGroup; children = ( - 84847886F419F249D773888CB16E0F41 /* UMViewManagerAdapter.h */, - 0F98E0BA9F8877F7C6EECF6B2FBCB9C7 /* UMViewManagerAdapter.m */, + 0899A3D853FA1EF8BBDA50989ECD9FD7 /* JSIExecutor.cpp */, + E7DA4A3F4397C61B1F84861FD5D2D569 /* JSIExecutor.h */, + 9A88152DDF176713D7E5325BFE9C419E /* JSINativeModules.cpp */, + 0E52C40A128A4CAFA477921952CA2FBB /* JSINativeModules.h */, + AA429B36216058F208997A023C50E9ED /* Pod */, + 1F611240884DE3F99D10880E6F2D247D /* Support Files */, ); - name = UMViewManagerAdapter; - path = UMReactNativeAdapter/UMViewManagerAdapter; + name = "React-jsiexecutor"; + path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; sourceTree = ""; }; - 8B05DEDA14F9435BD6AC943B3F169740 /* Transitioning */ = { + 8BDB8A9D3DC38CD9D05CEC072F6F4288 /* Support Files */ = { isa = PBXGroup; children = ( - 11EC0920C764C6F281FB0398FDC30EA1 /* RCTConvert+REATransition.h */, - 0FC65D13DC96DB67F07AD0E65B962D45 /* RCTConvert+REATransition.m */, - 0EF336AABB60BAD1442193D8EFEDA28A /* REAAllTransitions.h */, - 8C437A0F8547D44B9402405CE5307176 /* REAAllTransitions.m */, - 2305823C299B252E60CC3F7381149FCA /* REATransition.h */, - 8DB62626329AD368164DC39477309A85 /* REATransition.m */, - F882B3364320828DE2D9610696FD6D1B /* REATransitionAnimation.h */, - C7BC7CDCAD9DB52E4C3A81FB92EFC4DC /* REATransitionAnimation.m */, - 8F4BE8947965BCF3EDBA67A36A42B66E /* REATransitionManager.h */, - 822B444D29B95EDFFB587206F722FBD8 /* REATransitionManager.m */, - E5E9053B90410FA05C6312690546624E /* REATransitionValues.h */, - 830661AA4394068076CF03A4EBEA3BA6 /* REATransitionValues.m */, + ED68D0F419727A0FBDC1E9B15E42AF2C /* OpenSSL-Universal.debug.xcconfig */, + 06ECB4DDBDF59300DB6473D41582222F /* OpenSSL-Universal.release.xcconfig */, ); - name = Transitioning; - path = ios/Transitioning; + name = "Support Files"; + path = "../Target Support Files/OpenSSL-Universal"; sourceTree = ""; }; - 8BBFD1D57490B447D7FFF30F43CB9A7C /* Support Files */ = { + 8CE5B9115EEFA189276FEEFB56981B64 /* Pod */ = { isa = PBXGroup; children = ( - 697DCB539AA056E30D7638BC59EBB1F6 /* EXImageLoader-dummy.m */, - 8F0ED77E17110CF0DCC62274268EE6F2 /* EXImageLoader-prefix.pch */, - DBEDCF660820BB528AC2D2BF39B73B8C /* EXImageLoader.debug.xcconfig */, - BD29C3393953D54B4142E70C530F56D4 /* EXImageLoader.release.xcconfig */, + 8DF201CA20DB3C2986766F022D7709FB /* UMCore.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXImageLoader"; + name = Pod; sourceTree = ""; }; - 8BDB8A9D3DC38CD9D05CEC072F6F4288 /* Support Files */ = { + 8D43F3BDD05A821E2E75862CF1678FFE /* UMModuleRegistryProvider */ = { isa = PBXGroup; children = ( - ED68D0F419727A0FBDC1E9B15E42AF2C /* OpenSSL-Universal.debug.xcconfig */, - 06ECB4DDBDF59300DB6473D41582222F /* OpenSSL-Universal.release.xcconfig */, + 696AD204CCEC68534F5D2FE82199681C /* UMModuleRegistryProvider.h */, + 09C41B50561711EA11B30745BC7B044F /* UMModuleRegistryProvider.m */, ); - name = "Support Files"; - path = "../Target Support Files/OpenSSL-Universal"; + name = UMModuleRegistryProvider; + path = UMCore/UMModuleRegistryProvider; sourceTree = ""; }; - 8DBABF438494E07D05332686E2AF689E /* Pod */ = { + 8DA937C3DC387680DAD019DF6B7C031B /* react-native-cameraroll */ = { isa = PBXGroup; children = ( - A37F4E18B49A65DB3186E273A9501F57 /* LICENSE */, - 7C4EEE048BD1ECA1022F5D1E73D37B99 /* react-native-jitsi-meet.podspec */, - EAC878F132F3D23BE3AA9E64454EE06B /* README.md */, + A073F0C7139D4139BEB8E29AF22F7236 /* RNCAssetsLibraryRequestHandler.h */, + 59A8F834074C144BF9F2A56BEA949D40 /* RNCAssetsLibraryRequestHandler.m */, + 0B5DD5279EBE4CC70B114FD66D3FC64B /* RNCCameraRollManager.h */, + C5DB9707A6C7523B1A10746722C4AA46 /* RNCCameraRollManager.m */, + 4A09FC59F32CDC7E20C2653DD09C8179 /* Pod */, + 3D10D80528D94CCF33C416966E72BB36 /* Support Files */, ); - name = Pod; + name = "react-native-cameraroll"; + path = "../../node_modules/@react-native-community/cameraroll"; sourceTree = ""; }; 8E0CB2FD13268FBC9469888EA08922F5 /* Firebase */ = { @@ -15001,6 +15127,18 @@ path = Firebase; sourceTree = ""; }; + 8E3848FE379796EF7D1D6404AE93F66C /* react-native-document-picker */ = { + isa = PBXGroup; + children = ( + 305CE17114C719D8BCBECD794E9CBE4B /* RNDocumentPicker.h */, + 43886A7261161D271BBFB24EB0EF91DC /* RNDocumentPicker.m */, + 9FD5EECF5593E28AF60890DAE368DF3C /* Pod */, + 8767DF0FC07705E326016DA6EA49D5C7 /* Support Files */, + ); + name = "react-native-document-picker"; + path = "../../node_modules/react-native-document-picker"; + sourceTree = ""; + }; 8E549864B8DB9CCA4548D6248C0EA06D /* Flipper-RSocket */ = { isa = PBXGroup; children = ( @@ -15170,65 +15308,61 @@ path = "Flipper-RSocket"; sourceTree = ""; }; - 8EED142D379A79DB746610367D04F832 /* boost-for-react-native */ = { + 8E8721A1E6E72D80450066BBE627B75A /* Support Files */ = { isa = PBXGroup; children = ( - 87FDEA61BA179B1246744517AB92E4A8 /* Support Files */, + 75C258D31AF8B779ECFAF362BF576F9D /* UMSensorsInterface.debug.xcconfig */, + E9654FF2F799926D75C52D94043F204F /* UMSensorsInterface.release.xcconfig */, ); - name = "boost-for-react-native"; - path = "boost-for-react-native"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; sourceTree = ""; }; - 8FB2BB756416D5422C7A5CBFC24CD256 /* VirtualText */ = { + 8EB953F3F443CD2803F59F4BFCBD19DA /* Pod */ = { isa = PBXGroup; children = ( - FA62BC0653157BD865D46127AEDAA0D3 /* RCTVirtualTextShadowView.m */, - 4F32EBB6E239720223E1514CBC0D59C2 /* RCTVirtualTextViewManager.m */, + 3F285BB9BDDC1AC5A20841870E2A6AD5 /* React-cxxreact.podspec */, ); - name = VirtualText; - path = VirtualText; + name = Pod; sourceTree = ""; }; - 8FDD4206368EBFDE23203A2F18F581DD /* RNCMaskedView */ = { + 8EED142D379A79DB746610367D04F832 /* boost-for-react-native */ = { isa = PBXGroup; children = ( - 67F24297D4F0F4568C0BC1B3F31ADE0A /* RNCMaskedView.h */, - 280BF1D653DBBF5EBEFBE99928C3D702 /* RNCMaskedView.m */, - 7ED06BF265443B3E425E82A48801B664 /* RNCMaskedViewManager.h */, - D81E7D8E09879708218A86BABEFFEE3E /* RNCMaskedViewManager.m */, - 70BF40757E35BCEC130686803810BDFC /* Pod */, - F4ED85E3729711744E5FF158BECDBD4B /* Support Files */, + 87FDEA61BA179B1246744517AB92E4A8 /* Support Files */, ); - name = RNCMaskedView; - path = "../../node_modules/@react-native-community/masked-view"; + name = "boost-for-react-native"; + path = "boost-for-react-native"; sourceTree = ""; }; - 9010A7105BC48189E294F1431A4E5B44 /* BaseText */ = { + 8F7227A72EE9E4FA1E550C154F66BF0E /* Support Files */ = { isa = PBXGroup; children = ( - 2314FCA6CF37C437CC193B6B2CDDDD70 /* RCTBaseTextShadowView.m */, - FEF1FBE718351B5FDEF0E05FCAF6F4C3 /* RCTBaseTextViewManager.m */, + 3B6FD050668829BB06823DFF34EE569C /* RNFBCrashlytics-dummy.m */, + 8DE5A344FC5D9F8D2661C956E875D832 /* RNFBCrashlytics-prefix.pch */, + D7DC0CE6921C622B13C7D6C00F957B81 /* RNFBCrashlytics.debug.xcconfig */, + 28205285B7F1625C04405C2DAA9DEACD /* RNFBCrashlytics.release.xcconfig */, ); - name = BaseText; - path = BaseText; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNFBCrashlytics"; sourceTree = ""; }; - 9081107DABCAB3B3A4CF56F5BF9D3CA3 /* Text */ = { + 8F8C42F3B967982142495ABFFDD1A4F6 /* Support Files */ = { isa = PBXGroup; children = ( - E81376F4DE90D4131392325330C4AE4B /* NSTextStorage+FontScaling.h */, - 01802F83F42FC8D13032035127C05A90 /* RCTTextShadowView.h */, - 3E54C641E5BC5AEA752031C4B73894FA /* RCTTextView.h */, - 62BA82B300122C937F6ECE9746E951BE /* RCTTextViewManager.h */, + 7417532204152691D7B83E14E9FD3E9C /* ReactCommon-dummy.m */, + 4A29F396105B8756B190AA3DF272D2C7 /* ReactCommon-prefix.pch */, + A8A036EF500B0CEDC902E32C84DE6FA4 /* ReactCommon.debug.xcconfig */, + E32D60A0C447BA220B8D000D338C2F6F /* ReactCommon.release.xcconfig */, ); - name = Text; - path = Libraries/Text/Text; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/ReactCommon"; sourceTree = ""; }; - 909A982B318F492E79A0B0080E7F62E0 /* Pod */ = { + 9080EB0570E0E22FCEB3C1F36474A54F /* Pod */ = { isa = PBXGroup; children = ( - 8ED9D7109547C0C03FC510B8D478482B /* EXImageLoader.podspec */, + 29C2B0DD8346F74B4D24025F10B0FC0A /* FBReactNativeSpec.podspec */, ); name = Pod; sourceTree = ""; @@ -15245,6 +15379,52 @@ path = "../Target Support Files/Flipper-Glog"; sourceTree = ""; }; + 915E6C0D637A10693317558602BF28C1 /* turbomodule */ = { + isa = PBXGroup; + children = ( + DFEF5E8278B4ADE9B3F54A2974B98392 /* core */, + ); + name = turbomodule; + sourceTree = ""; + }; + 91739E070F3075D6FEE510F0C5B5C8A9 /* UIUtils */ = { + isa = PBXGroup; + children = ( + 08D21D884B63561DBC7102020146FEF9 /* RCTUIUtils.h */, + D2F491348EF282ACF8546F4C85ADA1FB /* RCTUIUtils.m */, + ); + name = UIUtils; + path = React/UIUtils; + sourceTree = ""; + }; + 91CF0BBF6FB0940CD79824BE965E29D4 /* EXConstants */ = { + isa = PBXGroup; + children = ( + AF1ABD19F3566903B036E55A5ABCFFFE /* EXConstants.h */, + E3EF212C057AA95F9077AB0E0DF49834 /* EXConstants.m */, + A456557C80F42FDCDB18CF95272BD808 /* EXConstantsService.h */, + 94B016C7B1E321C82D0956ABBFC2C864 /* EXConstantsService.m */, + 17D3D82AB170D0288E41DA0DF0B62B79 /* Pod */, + 9E961CE71DC4CEE74331C06B9D244CAD /* Support Files */, + ); + name = EXConstants; + path = "../../node_modules/expo-constants/ios"; + sourceTree = ""; + }; + 91D9AFB5B563199C31F0A7B0AF5D83BC /* UMPermissionsInterface */ = { + isa = PBXGroup; + children = ( + 64BB163569A9DE0E7EE5AA910535ECEB /* UMPermissionsInterface.h */, + 48BC4ED24E1C7F5D8CFD909A3A1C711A /* UMPermissionsMethodsDelegate.h */, + CDA040136B3239A03E1407AF961730BC /* UMPermissionsMethodsDelegate.m */, + 7CF70E9F704F5F5ED8990A8B2666796C /* UMUserNotificationCenterProxyInterface.h */, + DEA4EF4B849E7AF144F51FEE851FF22F /* Pod */, + EAFDADEAC89BC6D0EC4F0E6A1B65675D /* Support Files */, + ); + name = UMPermissionsInterface; + path = "../../node_modules/unimodules-permissions-interface/ios"; + sourceTree = ""; + }; 92768BC813EB3D9C48B420369EF79293 /* Folly */ = { isa = PBXGroup; children = ( @@ -15274,6 +15454,27 @@ path = Folly; sourceTree = ""; }; + 929B9CB2C1ED2F8F0116F7C0B6D55BA1 /* Nodes */ = { + isa = PBXGroup; + children = ( + B8A153EE45C98CCF4EC042349241A9F9 /* RCTAdditionAnimatedNode.m */, + CD8DDCE7BBF1DEFB586A48D9DAC6398E /* RCTAnimatedNode.m */, + 6DC346ABA1F9C996919CAC7ACA936F12 /* RCTDiffClampAnimatedNode.m */, + 41DCD030056F0B4E4962EAE0BFDA0FCF /* RCTDivisionAnimatedNode.m */, + 24DEFC2A18442E593617403AA3472022 /* RCTInterpolationAnimatedNode.m */, + 7AD7C0CFB168B13813F11A44EFFA68E1 /* RCTModuloAnimatedNode.m */, + 3FB10BA8B0E009C32C141A6F684B853B /* RCTMultiplicationAnimatedNode.m */, + 1C0415283019F59973C90F952E40600C /* RCTPropsAnimatedNode.m */, + E8B0C81BB4C75CE9C39A581A3B07E1A9 /* RCTStyleAnimatedNode.m */, + 8BF305FE2C8820749C8D808B72932E5C /* RCTSubtractionAnimatedNode.m */, + DE070B6264DE12F56C38399BE0BBAB6F /* RCTTrackingAnimatedNode.m */, + 4575E8ADCAB73393BA894FC19D5EC4DB /* RCTTransformAnimatedNode.m */, + EDC7EF660E1D08246E8E390ACA367349 /* RCTValueAnimatedNode.m */, + ); + name = Nodes; + path = Nodes; + sourceTree = ""; + }; 92FB83E05473ABFB8D95F7B11A9585B2 /* Support Files */ = { isa = PBXGroup; children = ( @@ -15285,26 +15486,14 @@ path = "../Target Support Files/PromisesObjC"; sourceTree = ""; }; - 9326782CA2A43FCCA6BAE8D8DE4437B5 /* Pod */ = { - isa = PBXGroup; - children = ( - B3AF4A5988E442DE2537BB056BD7988D /* LICENSE */, - 65B7979E28360EBAF78D14F90E71835B /* README.md */, - 1DCCCA25041A7B0E8CA2EB586B8A0F9D /* rn-extensions-share.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 9349E9949AEF880C821F966FD23DE4E0 /* Support Files */ = { + 940457F6278079AAE70348989BE7577A /* VirtualText */ = { isa = PBXGroup; children = ( - 76981AACEB548E5E3DC1D3FA48FB609C /* React-RCTText-dummy.m */, - BD796413BB5238298EC57D3914A8D2A3 /* React-RCTText-prefix.pch */, - A5BDC94EBC9ED964369495694B7D1365 /* React-RCTText.debug.xcconfig */, - C7D772435F16A21FE7465CF7022B14B4 /* React-RCTText.release.xcconfig */, + 7A5530412E3FA9F84FA25D1628F52DC6 /* RCTVirtualTextShadowView.m */, + 26A7CF1227E14CB122B549C8DD1F0BDE /* RCTVirtualTextViewManager.m */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTText"; + name = VirtualText; + path = VirtualText; sourceTree = ""; }; 944A3EA7BC03DEC4D2EBE2047DD69710 /* FirebaseCoreDiagnostics */ = { @@ -15321,50 +15510,6 @@ path = FirebaseCoreDiagnostics; sourceTree = ""; }; - 9477E054A51EF62A5C90C5D3FE18C61E /* Support Files */ = { - isa = PBXGroup; - children = ( - 7FA8F148446D44D3CB43C8ACC3EB6CD8 /* React-RCTSettings-dummy.m */, - F526891B950D9445B1A66AC87FCC3B19 /* React-RCTSettings-prefix.pch */, - 7A18EAC16952FC4052FA013FDD0AFCB0 /* React-RCTSettings.debug.xcconfig */, - 22D0530DC611FB94204BC1BFE55083B0 /* React-RCTSettings.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; - sourceTree = ""; - }; - 949D8DCDBAFC84A36F48523E01344EEE /* CoreModulesHeaders */ = { - isa = PBXGroup; - children = ( - 68A029C7434B3D942CDE455778F3D42B /* CoreModulesPlugins.h */, - 9997637E9AE122E96AD545C106C528AF /* RCTAccessibilityManager.h */, - F9EE93BB82B6922ED3469317BC8CA049 /* RCTActionSheetManager.h */, - 378531966EA58592939B9F691E0C01C5 /* RCTAlertManager.h */, - 6A1264192ECFA0EAF9524A1ABA3BD358 /* RCTAppearance.h */, - 63863C629C26593668F4CFC664DEE81A /* RCTAppState.h */, - B6D6086CE45490722A87835E3EA7DCCF /* RCTAsyncLocalStorage.h */, - 1425C298EBEED777F22F0A6803A54F10 /* RCTClipboard.h */, - B87FF275E154F63E37A966F7B77A1290 /* RCTDeviceInfo.h */, - 2A951AFF7D34237793354A27AC143677 /* RCTDevLoadingView.h */, - AE5EA27B9331ED54A9B03E4A673E572A /* RCTDevMenu.h */, - 6847486C0C662C309142F88C8089C6D9 /* RCTDevSettings.h */, - A57BA32A859BD99754F04A2532EAA4D5 /* RCTExceptionsManager.h */, - 018AFBB0C9E2D3C964535C8E1095F798 /* RCTFPSGraph.h */, - 831E0F7840A1FA12AA8A1AB27CCBFEB6 /* RCTI18nManager.h */, - 0B9706CFF0FD41D5E952E02D40AFE565 /* RCTKeyboardObserver.h */, - F1652A4C1A9C832A0FE94E037EB052BB /* RCTLogBox.h */, - 451E64AE86B1D5322878D5995CA0C90E /* RCTPlatform.h */, - E53093268FF499F2B034BAC7A6B2AAE1 /* RCTRedBox.h */, - 84FBC11852FEEAEF26DA993D029DFB39 /* RCTSourceCode.h */, - F64C32F9FE444089179FD89427121D4C /* RCTStatusBarManager.h */, - B8EFD70AC1C4217D2B1CC3633458352D /* RCTTiming.h */, - 843E1C4D0C5A0C443F0C222256DADA01 /* RCTTVNavigationEventEmitter.h */, - CF54BA97F1204F092610662BFBA7BD89 /* RCTWebSocketExecutor.h */, - 46AEA57300F51DC99600F17FE2478B4A /* RCTWebSocketModule.h */, - ); - name = CoreModulesHeaders; - sourceTree = ""; - }; 9516305A050610BCB98072A18519B699 /* YogaKit */ = { isa = PBXGroup; children = ( @@ -15380,72 +15525,110 @@ path = YogaKit; sourceTree = ""; }; - 959F92708DEAA259DF712239FB2DD9AB /* Brushes */ = { + 954931D3E1AA642CB69CD50351A22106 /* Resources */ = { isa = PBXGroup; children = ( - 1B26BF56E17832BB85F9CDF6E8A66F4E /* ARTBrush.h */, - 08636E40C895F9DC5CDC13D4A065C2AE /* ARTBrush.m */, - EC4ACC94BB5B178BC3E38993C613921C /* ARTLinearGradient.h */, - 2714CA9B90D36DAD7985EB61005E21FB /* ARTLinearGradient.m */, - 761585823AE2D9E8A5545EEAA132C969 /* ARTPattern.h */, - 8D8F25EC98F541974A440A80EE558A8B /* ARTPattern.m */, - 3DACB159C9A8E31A5E1E3F9B4BB13AD5 /* ARTRadialGradient.h */, - 3B712273B8E31704568EC931E05D26EF /* ARTRadialGradient.m */, - F398B91E8838747B7ECA29A66CD5B25B /* ARTSolidColor.h */, - 460684CFA5E232B38397373233C08E45 /* ARTSolidColor.m */, + 4FFB767C78CA361AF1454143355E9706 /* de.lproj */, + F6D5B8E056EF2E9D8F21A8FCA1109E38 /* en.lproj */, + B6D43BAB35E3C1B95E670EBFABF597CD /* es.lproj */, + B5DF450B1873A50E2500B3CE41192C97 /* fr.lproj */, + B9DCC1D2F1F5D7DFD5DCFEA22404AB74 /* ja.lproj */, + 630F85A3FD67636EF9F6323F0EE15C1F /* pl.lproj */, + 6E3B31F988C11F24A8A63514D5E4F17D /* QBImagePicker.storyboard */, + 1C12E6A24DC694C539DD57AADBCF1E36 /* zh-Hans.lproj */, ); - name = Brushes; - path = ios/Brushes; + name = Resources; sourceTree = ""; }; - 95E272222D8FA271F86B38AE1AEE9210 /* RefreshControl */ = { + 95BBA9405E5F1CCA328994226B2F783A /* Pod */ = { isa = PBXGroup; children = ( - E6596709E7981E42D7BDC163690719BD /* RCTRefreshableProtocol.h */, - 387A35BC7B174684B13A536007827FAA /* RCTRefreshControl.h */, - 1EB9562B8DAD145A461D51B83CAE03BC /* RCTRefreshControl.m */, - 0CEC75A185FA32E94A5D53D66CB4BCDE /* RCTRefreshControlManager.h */, - CA23B711DE0852EF3E1C3E50898D485A /* RCTRefreshControlManager.m */, + 6A60B45F53EC59523FD44D3AAC9F0997 /* RCTTypeSafety.podspec */, ); - name = RefreshControl; - path = RefreshControl; + name = Pod; sourceTree = ""; }; - 968A84E5244930373D40FDB5F5D2CDEC /* Pod */ = { + 95D7F06839FEE6B91B00C7C39FD72AD6 /* Source */ = { isa = PBXGroup; children = ( - 8365EBC3F2ED55F494DA175785433D93 /* UMFontInterface.podspec */, + D94B631ADF28FCA499F8A33F378CC112 /* KSCrash */, ); - name = Pod; + name = Source; + path = Source; sourceTree = ""; }; - 982522C60AD919F213C4C33F46C60329 /* Pod */ = { + 95EE8C93F6DA96E8DFEAC51A56950BB9 /* UMCameraInterface */ = { isa = PBXGroup; children = ( - E7376132DEF1C7589ED29059F7CAB86E /* KeyCommands.podspec */, - FA8C55648EBE21309FC8B1FFFF5C1C9C /* README.md */, + C3D79763F775C30D1F51390A1AD489B9 /* UMCameraInterface.h */, + 84C9B530E40E37725926FA3E19A45835 /* Pod */, + B5D397C52C1ECE8B84C94FCBB0186A85 /* Support Files */, ); - name = Pod; + name = UMCameraInterface; + path = "../../node_modules/unimodules-camera-interface/ios"; sourceTree = ""; }; - 982F2E02769AFCE8F0F7E60FFE924BF4 /* Pod */ = { + 9892D29CF875FC85CB691C3B6895E3F1 /* RCTBlobHeaders */ = { isa = PBXGroup; children = ( - 12AD9CBBF4783D81370DEE4B75783822 /* React-RCTAnimation.podspec */, + 69F829D7381FF8CB71451C3064EC65D4 /* RCTBlobManager.h */, + 649809A30EFC2F2080AFC533AA062C9A /* RCTFileReaderModule.h */, ); - name = Pod; + name = RCTBlobHeaders; + sourceTree = ""; + }; + 9926F96DCA4A85A5BFD82384C0894147 /* platform */ = { + isa = PBXGroup; + children = ( + 4D3891FA9F4EE6E262B512108ADD0653 /* ios */, + ); + name = platform; + path = turbomodule/core/platform; sourceTree = ""; }; - 9A3EFD7C276D9EE7C4EF3612B6346CAC /* Support Files */ = { + 99639D428D79683F019E281AA2F79E95 /* Support Files */ = { isa = PBXGroup; children = ( - 55E6EC3ADF1B24F4C96F71609B0A1E0C /* FBReactNativeSpec-dummy.m */, - A39528DE36943718B9A4D993F4D079A7 /* FBReactNativeSpec-prefix.pch */, - 4EA1502303E174DE40C90730967EAB4B /* FBReactNativeSpec.debug.xcconfig */, - F546B7E8168F1EFA6B4FC83BFBAF4F8D /* FBReactNativeSpec.release.xcconfig */, + 56E6DDBBD0C0945DE88A69138B0E6F56 /* EXWebBrowser-dummy.m */, + 7D0E0F3814C34E0AFFDFFF3F62C76605 /* EXWebBrowser-prefix.pch */, + DA9F5896B85B721297FC4071DB29C726 /* EXWebBrowser.debug.xcconfig */, + CEE49B8D45F187E30A1C692531935198 /* EXWebBrowser.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; + path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + sourceTree = ""; + }; + 9A7B13CEDCCE0ED38CCBEB6CF775A9C5 /* ViewManagers */ = { + isa = PBXGroup; + children = ( + D036560680007EB641CBF9B43E8DCDC0 /* ARTGroupManager.h */, + 1E34E6709F16036BC6BB45D0C02128B2 /* ARTGroupManager.m */, + 91F02B239575217740A7E0E7D99F556B /* ARTNodeManager.h */, + 7A965C0B320EEDF0EC441150E7F6EC65 /* ARTNodeManager.m */, + A7B837210F912CC59FC3951EA9CA2A6A /* ARTRenderableManager.h */, + ACB63E1500DC44BE2A144965045C6FCE /* ARTRenderableManager.m */, + DF1DFE57EBF276337DA2AF560F70D8AD /* ARTShapeManager.h */, + 91AB230F03D20F87F1EC190F45D1EFC1 /* ARTShapeManager.m */, + EE7296D21287EDF379BC27C915C5035A /* ARTSurfaceViewManager.h */, + 0868B380CE54D1C4F66E55A55FDD252A /* ARTSurfaceViewManager.m */, + 276FA44E619114C54F1132F66837AE74 /* ARTTextManager.h */, + 42175A98A9D908B51C8970DAACE17DB3 /* ARTTextManager.m */, + ); + name = ViewManagers; + path = ios/ViewManagers; + sourceTree = ""; + }; + 9AA9A89C108CE6C865C5F24103CB3B2D /* React-jsi */ = { + isa = PBXGroup; + children = ( + 9B019BB6A9EEF24D3F907B21B9A35AD1 /* JSCRuntime.cpp */, + F29BBFA8D317C643C8EFF279CD642EFD /* JSCRuntime.h */, + 891BCD905A5B5EF2D390DAB8896AB81F /* jsi */, + 0A0642AEF1ADB6C1D73B96B44F93B3BD /* Pod */, + A7774D9DB6429BA0129374F23AE804BB /* Support Files */, + ); + name = "React-jsi"; + path = "../../node_modules/react-native/ReactCommon/jsi"; sourceTree = ""; }; 9AD7A131F0CB831447EC96A3EC8520F9 /* Network */ = { @@ -15465,105 +15648,127 @@ name = Network; sourceTree = ""; }; - 9B1542630C4BA2B6027738F310D0C6F0 /* Support Files */ = { + 9B9638C39E0CA3DB2DE4563C2666D95C /* Nodes */ = { isa = PBXGroup; children = ( - 9DDBF86AF93CBB926DC4E4BAF0BCB169 /* EXPermissions-dummy.m */, - 24C041EC06DA2C2C4CE7701F6B92CFC0 /* EXPermissions-prefix.pch */, - 74A969158B582707C7077C19C4D34DA8 /* EXPermissions.debug.xcconfig */, - 3EDCE04080CFB56239F3DD49B3A44CAC /* EXPermissions.release.xcconfig */, + C20AED945E57E23DDAB69E9A7FBDBF52 /* RCTAdditionAnimatedNode.h */, + 6A9D056CE32C2E1AE2E69D81788AE3F1 /* RCTAnimatedNode.h */, + A65B79DE925E9D20F359B16D4E5E20E2 /* RCTDiffClampAnimatedNode.h */, + C374A285EA196B85F5BD56ADC2C73015 /* RCTDivisionAnimatedNode.h */, + F5DFC2582D2F19C91B8D6CB6559C174E /* RCTInterpolationAnimatedNode.h */, + 4543F7584A378A4DAD2B8C5F8B74DD88 /* RCTModuloAnimatedNode.h */, + 871E82D05EB9AB9FCBAE6FC42C893819 /* RCTMultiplicationAnimatedNode.h */, + 81FAFDED367C8C2C7CEBB5421B0E80E1 /* RCTPropsAnimatedNode.h */, + 69512F8050BEBBA05E7E5767FDF4B099 /* RCTStyleAnimatedNode.h */, + 1CBD3620C5B220F156AFF3553B144A2C /* RCTSubtractionAnimatedNode.h */, + C50FDEDD56937FA38E03475D2A44C3F2 /* RCTTrackingAnimatedNode.h */, + 114E251558AAB5DC306FC26F847DB211 /* RCTTransformAnimatedNode.h */, + D5429BBA9D90375789702E87959B59EE /* RCTValueAnimatedNode.h */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXPermissions"; + name = Nodes; + path = Libraries/NativeAnimation/Nodes; sourceTree = ""; }; - 9B2D511B0DEEC838BFEC0BED4DA39EC7 /* react-native-orientation-locker */ = { + 9BA8DAD7E312DB6891D59C65BB3A754C /* RCTNetworkHeaders */ = { isa = PBXGroup; children = ( - C83E27AA1E995B00AC0C874EC4F88520 /* Orientation.h */, - DF503594CA1DAEF07071E64383DE076E /* Orientation.m */, - C28FB472B451597758F5058764728186 /* Pod */, - BC445818D148C2FE248DC6A4F34D8BF7 /* Support Files */, + F947C5849117174417F03B10F031A7BE /* RCTDataRequestHandler.h */, + 97AA77101C4F58F411C23FBECA88553B /* RCTFileRequestHandler.h */, + 4EAC88C0343FE27B9605390D5EBC3040 /* RCTHTTPRequestHandler.h */, + 73DBA0BB33214909632B6FDCE0B4377E /* RCTNetworking.h */, + EDDF23E79B93E331FC5A7DFAB18199D5 /* RCTNetworkPlugins.h */, + 252E9DED0CA8A4615E639613EA157E1C /* RCTNetworkTask.h */, ); - name = "react-native-orientation-locker"; - path = "../../node_modules/react-native-orientation-locker"; + name = RCTNetworkHeaders; sourceTree = ""; }; - 9B637638FA2E4690C0D96DCE77F2265D /* React-Core */ = { + 9CFD676F26A02D7305208D860337E7F2 /* React-RCTBlob */ = { isa = PBXGroup; children = ( - 949D8DCDBAFC84A36F48523E01344EEE /* CoreModulesHeaders */, - 7C413B21D2F3DF35AB1CF5C31CBFC93B /* Default */, - 71AE4D444F1CBA59A79A5F45D02850BD /* DevSupport */, - C682F1B9BD00DBD4B6AB719FD7D57BDE /* Pod */, - BE580812E1F02E4BA35A979F1D6ACE60 /* RCTAnimationHeaders */, - 507F3588EFB011987711F322A2753B4D /* RCTBlobHeaders */, - B1DE021731590D365AF378E57DC47720 /* RCTImageHeaders */, - 020FCC8A2D08F6E2944C080352B4F9CD /* RCTLinkingHeaders */, - 1BAB352DD59812C7A38695712309A98B /* RCTNetworkHeaders */, - 7CFB706C7DF17ACFACBFD73E8AE3E252 /* RCTSettingsHeaders */, - 4171BB3A0C9A3BC938CCCD0155AE4F6C /* RCTTextHeaders */, - 1D2C396C05A727041C7C3702ED0822CC /* RCTVibrationHeaders */, - 49AFB18E9EBCECAA0EAE9031DBF6EF7A /* RCTWebSocket */, - 067261FEA7E09A98BD0B844DF260779B /* Resources */, - 02439B99DD007337C9941347BBCEE561 /* Support Files */, + B8BEFEA43B969B5272884B286965FA5B /* RCTBlobCollector.mm */, + 8AE67E34798D3F25FCE88549D2D4077E /* RCTBlobManager.mm */, + 63DFDD6752C2CE772D1C13A8ECB3FA57 /* RCTBlobPlugins.mm */, + C140589B4A887B18B65333867E77DFE9 /* RCTFileReaderModule.mm */, + AB74D182BF0EBA59FACD76229D66533E /* Pod */, + F65C233E71442C9F0171164CD8A512FA /* Support Files */, ); - name = "React-Core"; - path = "../../node_modules/react-native"; + name = "React-RCTBlob"; + path = "../../node_modules/react-native/Libraries/Blob"; sourceTree = ""; }; - 9B86FE35933CB0276B8485EEC9072B4F /* internal */ = { + 9D861A6CAFF63340E3050C9558E957CC /* rn-fetch-blob */ = { isa = PBXGroup; children = ( - 62A0B2B2E8640538334C1517D268C700 /* experiments.cpp */, - 6A25E36E490CD83CB4BD70F0BEB9BC28 /* experiments.h */, - 58BE9A060DAC9EBDE39709D5DCC17757 /* experiments-inl.h */, + 3D39ED875E1AF7CBE2525DF832377314 /* IOS7Polyfill.h */, + 4C343E1A5BEF3EE692BCE343B6E72393 /* RNFetchBlobConst.h */, + 10065B3D689090BAE561FD87B9FC6933 /* RNFetchBlobConst.m */, + B08D9D6DCA80E660BFD13F2884E03F9D /* RNFetchBlobFS.h */, + EEB60FA72529E43882D9ED3F8EDC5D9C /* RNFetchBlobFS.m */, + 6B84B6919E9D920E72D77CAD2EF33D7D /* RNFetchBlobNetwork.h */, + D836881817502EA9E41F0AE96F5D8067 /* RNFetchBlobNetwork.m */, + 81EBB5D94D81326E4413AF3185FF9958 /* RNFetchBlobProgress.h */, + 325E5423BF9109BCD0A9DFDF0A25EDB2 /* RNFetchBlobProgress.m */, + 77238246202367125DCDCD3F148C31AA /* RNFetchBlobReqBuilder.h */, + 7EF3B5C32854719229B0367D99637801 /* RNFetchBlobReqBuilder.m */, + AABD01C3DC1B63D6EF185B60AB75079D /* RNFetchBlobRequest.h */, + 3BB40BA4CFB17E9E163ED6603E659ECE /* RNFetchBlobRequest.m */, + 02A4650B3ECFEC23F6B6EE3B46F77670 /* Pod */, + 2BD5AC2F5E741514BE2C96AB79C79AD0 /* RNFetchBlob */, + C0275EB383E24F7DE7D90110221381CF /* Support Files */, ); - name = internal; - path = yoga/internal; + name = "rn-fetch-blob"; + path = "../../node_modules/rn-fetch-blob"; sourceTree = ""; }; - 9C3AE56AAC820BA8EB907F4E36080A4C /* Multiline */ = { + 9E961CE71DC4CEE74331C06B9D244CAD /* Support Files */ = { isa = PBXGroup; children = ( - C435C76EADB943EB9C2B899EDB65C8E0 /* RCTMultilineTextInputView.h */, - A5A72C91B95BBE1B5764C5113D1042ED /* RCTMultilineTextInputViewManager.h */, - A489583354216CBFC03DB851B4556CD9 /* RCTUITextView.h */, + 66A2860468708F978E6D8A1D0D6B9752 /* EXConstants-dummy.m */, + B1E99A8D51AD3A77673B7F55F65C20F8 /* EXConstants-prefix.pch */, + A49DF31BFA977D6648A29C2C6C537B98 /* EXConstants.debug.xcconfig */, + 04E5BF0CF306F649BFC051351E84ADA6 /* EXConstants.release.xcconfig */, ); - name = Multiline; - path = Multiline; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXConstants"; sourceTree = ""; }; - 9CEDA481FEF632D8ECDB04693E5A10B8 /* ViewManagers */ = { + 9EA46974B907001A9826EBC1085DC3F1 /* Support Files */ = { isa = PBXGroup; children = ( - 444ADE0820302CE12830DEDD7CD99829 /* ARTGroupManager.h */, - 3C920BEF72370EA52077556BBECF365C /* ARTGroupManager.m */, - 58A532A0F849CA6B9DA27106CB7E4B5A /* ARTNodeManager.h */, - 1AEF010B56948D32AC87B7D5072EEDBD /* ARTNodeManager.m */, - D94A437EF4F7977CA04A4E2006530910 /* ARTRenderableManager.h */, - 4E6477CE2E42F17BE04FC037C7CD3E2D /* ARTRenderableManager.m */, - 05C7AD61F7C506555C124F03088B71D7 /* ARTShapeManager.h */, - 3060D0C9BF2D4F9E4590827BE968DF0B /* ARTShapeManager.m */, - A4683F683ADF5793EB03A32071C78EE7 /* ARTSurfaceViewManager.h */, - 2115296140C2CF8C416CDC7EE5BDD3EC /* ARTSurfaceViewManager.m */, - DBF672D1EE1DA63957AA594369559645 /* ARTTextManager.h */, - 0717FE9C7AE2E934863F3D36F111C1A7 /* ARTTextManager.m */, + 00F8AAD81A6EDF2F94C5F5952A52975D /* BugsnagReactNative-dummy.m */, + 4C053EB1FD90B4D900EBD3BD90C0A18D /* BugsnagReactNative-prefix.pch */, + 214534118C1813DAE7745017DB1462AF /* BugsnagReactNative.debug.xcconfig */, + 65934FC3E490AB23D33A06129B83283A /* BugsnagReactNative.release.xcconfig */, ); - name = ViewManagers; - path = ios/ViewManagers; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; sourceTree = ""; }; - 9F41AED7E43DF2335EE37C01608E4FCF /* Support Files */ = { + 9EDA3DD0EC605A719EE67B40731E808E /* RNReanimated */ = { isa = PBXGroup; children = ( - 8B13F1C3103B20C02469449ABBE5E29E /* ReactNativeKeyboardTrackingView-dummy.m */, - 4CF69286C68B98BA85A30E1E84B4AF0F /* ReactNativeKeyboardTrackingView-prefix.pch */, - B256DD186535793D13DC257337B65783 /* ReactNativeKeyboardTrackingView.debug.xcconfig */, - E2A92ADD71C97A1A9852491D032AC73D /* ReactNativeKeyboardTrackingView.release.xcconfig */, + 633AC6F0B825488021681FD9A4E8E2C4 /* REAModule.h */, + 767C0956A29AA9D780CE509E60F2B123 /* REAModule.m */, + 974179F395B152EAE8203AD985C85A84 /* REANodesManager.h */, + 3D8DB1B0E3BA76D77497B9405A403C17 /* REANodesManager.m */, + 07172DEFA5E87694B043C4E704976BD9 /* REAUtils.h */, + 3AE053915A0FEE1B8232CFC7ED39E54C /* Nodes */, + 39C5C4924104179573A0A96E3739945E /* Pod */, + 0678ED63219C0AE9FAD353B7CD69D9C8 /* Support Files */, + 1899799F66FB9B24298DE6350EB3E8D6 /* Transitioning */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardTrackingView"; + name = RNReanimated; + path = "../../node_modules/react-native-reanimated"; + sourceTree = ""; + }; + 9EF20BD72BED40DCE8825657F59CCCFE /* RawText */ = { + isa = PBXGroup; + children = ( + 0770546DDF91BB7E8A9B95B915902A8E /* RCTRawTextShadowView.h */, + 726CBA205A1B09241B259A246F18F45A /* RCTRawTextViewManager.h */, + ); + name = RawText; + path = Libraries/Text/RawText; sourceTree = ""; }; 9F74FFA163ED9ECE165868136EC2A3F6 /* PromisesObjC */ = { @@ -15615,79 +15820,58 @@ path = PromisesObjC; sourceTree = ""; }; - A036DDF146589EDA5411590D5D9E5786 /* Pod */ = { + 9FD5EECF5593E28AF60890DAE368DF3C /* Pod */ = { isa = PBXGroup; children = ( - FC43AD7D7D6D6449F2AD11B47130069A /* EXKeepAwake.podspec */, + 041C8B180F45CD8A1D1A44A4CBEFE0C2 /* LICENSE.md */, + 0EF68C8F5D88E358FC4CAE6B9255ABB1 /* react-native-document-picker.podspec */, + C6B68FB989D9B38049C471869BDA1B0D /* README.md */, ); name = Pod; sourceTree = ""; }; - A0D7E04562CC594FCFC3E199998861B9 /* React-callinvoker */ = { + A0188FF9B77D8716C892971B88116607 /* Filters */ = { isa = PBXGroup; children = ( - CD364142AD14D67CB621A7AEAF189416 /* CallInvoker.h */, - AB57F06B2415E6A0FABC1BF04B4638D6 /* Pod */, - 48EB6C98A2AB4C23DF39FF0C925095AD /* Support Files */, + ECE028A1909F2FC4B6FCA7DC3DC4CF7E /* BSG_KSCrashReportFilter.h */, + 3D3180725D06C7E408D800810FC70B18 /* BSG_KSCrashReportFilterCompletion.h */, ); - name = "React-callinvoker"; - path = "../../node_modules/react-native/ReactCommon/callinvoker"; + name = Filters; + path = Filters; sourceTree = ""; }; - A0D9FEDB06BCA8C774CDE2FF4783E8C2 /* rn-fetch-blob */ = { + A053F66D53C6D19646EF3716E71DF59B /* Support Files */ = { isa = PBXGroup; children = ( - 3E07A9D647C61E63FBD2A63EBC6014AA /* IOS7Polyfill.h */, - DB17E355B3E4389A35A31109CD1D8CBC /* RNFetchBlobConst.h */, - 425AE49378C747D12D929F44D2569316 /* RNFetchBlobConst.m */, - 392FCA00F23CFD5EF3D84B3894DB3A6C /* RNFetchBlobFS.h */, - 99F03C1665761FA81336C8E67D423DAC /* RNFetchBlobFS.m */, - 83B8D068780A2181919555AC04ACF809 /* RNFetchBlobNetwork.h */, - 85C0C0551B9D3D505C413182E46450AC /* RNFetchBlobNetwork.m */, - 4D944C63EDA3A10FC4407E6B58B9488E /* RNFetchBlobProgress.h */, - C306B80865CC3E63B75556571E0A7DAD /* RNFetchBlobProgress.m */, - 4932753FB4A8E5CD7E3FC990BF46A42C /* RNFetchBlobReqBuilder.h */, - 4431452D083134140ADC1225D6AFFA93 /* RNFetchBlobReqBuilder.m */, - 1279C8052D57FC19BBEC11214D1F9AD5 /* RNFetchBlobRequest.h */, - B398DEE73A5C9C348689DB92A7688F1A /* RNFetchBlobRequest.m */, - 18359D1111542D66AA1CB21E6D2E2F97 /* Pod */, - 22549ECE3D00D588E87D786DB3C7CFAB /* RNFetchBlob */, - 16448E64E5DDA987F164C322DD32FFA4 /* Support Files */, + 448C2A3D180524770EBDF29BF3885EF2 /* EXVideoThumbnails-dummy.m */, + 1CC298FEAF01D3E23CD170FCBDDC059B /* EXVideoThumbnails-prefix.pch */, + 28EE73CF5F00704768457F2E2CF48E3E /* EXVideoThumbnails.debug.xcconfig */, + 04F6EDCBB1BEAB601C3026AEA1CCEB0A /* EXVideoThumbnails.release.xcconfig */, ); - name = "rn-fetch-blob"; - path = "../../node_modules/rn-fetch-blob"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXVideoThumbnails"; sourceTree = ""; }; - A0E6E54603E8C77E85CDD5F77A9BD29C /* EXAV */ = { + A0AB9CA88789B94B91895F850B524B05 /* Support Files */ = { isa = PBXGroup; children = ( - AB53E5D98E91A696B994A91DA3E4DAE8 /* EXAudioRecordingPermissionRequester.h */, - 1CB25A0ABD582C1CDEA373D7FD0BC7EB /* EXAudioRecordingPermissionRequester.m */, - F5C32CA22F602B73CDF7D859D50B67DC /* EXAudioSessionManager.h */, - 8C84418838D4A68539AEA9EC71B2E83F /* EXAudioSessionManager.m */, - E8DB1088C338DF6C8A63B8203A7FA8A2 /* EXAV.h */, - 2A1E2BD8F5FCEA7CB8E082DF3FA93768 /* EXAV.m */, - D91BB1ECE44DA6D5D6FC3E2B8B084F56 /* EXAVObject.h */, - 49CDD44FBE5BBE66C8B9F36351A3EB72 /* EXAVPlayerData.h */, - D1E113F1A3AAF6788086A286702821B8 /* EXAVPlayerData.m */, - A950BAC0BE5E2DB895FE6D3B7BDA6CDE /* Pod */, - BE1D92621BE8EB57F13CCEA7DA6F1B3E /* Support Files */, - 1B9E0DF4E627A0DE58E5C07A1B1F36D0 /* Video */, + 05272CDDE037E09ADAAFE901F6974A42 /* RNGestureHandler-dummy.m */, + 2F93B0C6AA105C05670A6BC7CC29AC06 /* RNGestureHandler-prefix.pch */, + AB28A62947B978F0CD549D37C69CD20F /* RNGestureHandler.debug.xcconfig */, + 0979BC80C8BAC831C58805766F4541A2 /* RNGestureHandler.release.xcconfig */, ); - name = EXAV; - path = "../../node_modules/expo-av/ios"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNGestureHandler"; sourceTree = ""; }; - A1320D1316F587A1F5E89AFBD7EBC9BB /* Support Files */ = { + A0D5C828C22A238AC1EE098FF7EF0765 /* Pod */ = { isa = PBXGroup; children = ( - 9119D4D3ACD814C75D13B064DC3B83ED /* RNDateTimePicker-dummy.m */, - 6F2DAE885442CD9229B8BC34D91D8704 /* RNDateTimePicker-prefix.pch */, - 919C50A6D079D487FD6A921C0145CE02 /* RNDateTimePicker.debug.xcconfig */, - 75FC24EF233E089CBF441BC19974A593 /* RNDateTimePicker.release.xcconfig */, + 7AD0ED0C5E099A5E73F58873B13820DC /* LICENSE */, + 152AE6F31624A54A9112FCE2D987819B /* README.md */, + 34A47F4039C7962D0D1551C22DB06ED9 /* RNFBApp.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; + name = Pod; sourceTree = ""; }; A14DFEA67C2E49049968EFB63A736832 /* GoogleDataTransport */ = { @@ -15740,198 +15924,353 @@ path = GoogleDataTransport; sourceTree = ""; }; - A1CE2FF922646168FE332E99EA5AD7DF /* RNUserDefaults */ = { + A1911897D354C39E6C1CE910D3B10D02 /* RCTAnimationHeaders */ = { isa = PBXGroup; children = ( - 1EB676B22F56CCB0D457EC82AA6FE69B /* RNUserDefaults.h */, - 2BDCF410F639F54DE6F17426012EF49F /* RNUserDefaults.m */, - 2FB2F2F902D2CA7A9EB82B36542887FF /* Pod */, - 04647071581DEFB44B352B1C83743FAF /* Support Files */, + FC928C56993ACE4B58301329A03FBF07 /* RCTAnimationPlugins.h */, + 771B6878D37E14371F603D5D07EC7C2B /* RCTAnimationUtils.h */, + 12DAAD5397F12E86BFCE83845DCC75FA /* RCTNativeAnimatedModule.h */, + 414440D847BC21E45F9C08FFD1770221 /* RCTNativeAnimatedNodesManager.h */, + E634ABFE715D9909B620E47C612920E1 /* Drivers */, + 9B9638C39E0CA3DB2DE4563C2666D95C /* Nodes */, ); - name = RNUserDefaults; - path = "../../node_modules/rn-user-defaults"; + name = RCTAnimationHeaders; sourceTree = ""; }; - A40D17686A9FB20201F00509D451BCB9 /* CppBridge */ = { + A1CE5D430E74645EBEDFD85785B65B09 /* React-RCTText */ = { isa = PBXGroup; children = ( + 0A672EE4E79E7D06E2F2CEA3A984E2E0 /* RCTConvert+Text.m */, + D737FFC2EA2D54C77E6E0FC44975B21A /* RCTTextAttributes.m */, + 061D520D492821331AC24D7B948E938D /* BaseText */, + 854AFE51DDF11C7E3532DC4B9978DD4E /* Pod */, + C713314839B9ED81EAEBE1FC92B4D99D /* RawText */, + 241C5CF37CACDF79DEEB6BCE85D9A889 /* Support Files */, + EE9AA276073DF95781E93737EBFA3189 /* Text */, + 20DB54C8397C7D9507AEFF3B24F5848A /* TextInput */, + 940457F6278079AAE70348989BE7577A /* VirtualText */, ); - name = CppBridge; + name = "React-RCTText"; + path = "../../node_modules/react-native/Libraries/Text"; sourceTree = ""; }; - A4B44B674A8C7C5DF7486DDB41F6CE30 /* Source */ = { + A2D1EE55C954512EF462FD761C7FF982 /* Support Files */ = { isa = PBXGroup; children = ( - 598789CFA99F28829DE52A075E2E9FB5 /* KSCrash */, + 59F990578E21B93B43E878545F4657B7 /* RNBootSplash-dummy.m */, + 72EF23FCDCCEFAF756C6C89FB6C55051 /* RNBootSplash-prefix.pch */, + A799BE99ACA2C06A7320F5B1B7FF51DA /* RNBootSplash.debug.xcconfig */, + A8AEF77C3E2AF534A8C594FE32E647CF /* RNBootSplash.release.xcconfig */, ); - name = Source; - path = Source; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNBootSplash"; sourceTree = ""; }; - A5601ECAE9AE35C0368831F2CB8A805F /* Pod */ = { + A3436A3D1CD75F3944BF50983B8ADB54 /* react-native-appearance */ = { isa = PBXGroup; children = ( - 2213F14E2806B28A678FB43F81102959 /* LICENSE */, - D818E222B950B079F25A51D8DA47BD82 /* README.md */, - 53996DA236C87857F9832F3DE05921EA /* RNBootSplash.podspec */, + 03BF0A90CF65FA59B2E90198B802CD0A /* RNCAppearance.h */, + 69F6DD84D7EC2CD23AA2CEFADCB9D58B /* RNCAppearance.m */, + 5729A166620637014576B78FF6E4FA6A /* RNCAppearanceProvider.h */, + BCA6F506BF538A9611B5FBE267CFC39D /* RNCAppearanceProvider.m */, + 0A2B3DD88B83F53B6319585273130C76 /* RNCAppearanceProviderManager.h */, + 3E362F6B7A1279B34FDC55502D0908A7 /* RNCAppearanceProviderManager.m */, + 68452F16C18216300873BC64932CEDB9 /* Pod */, + 5D066D45B531AD7BA2BCE70BF4587CC7 /* Support Files */, ); - name = Pod; + name = "react-native-appearance"; + path = "../../node_modules/react-native-appearance"; sourceTree = ""; }; - A579D14974BBA2B5D7B78282023D5927 /* Support Files */ = { + A3D3C918C2964DA86E58B203A6C7B509 /* Pod */ = { isa = PBXGroup; children = ( - BA9DD9271924E5AE5D47A6F04A32A493 /* RNLocalize-dummy.m */, - FF17147295969C9ACC4288A586DDBA56 /* RNLocalize-prefix.pch */, - D45569970FC2C3DFC09F7E5C85BDE7A5 /* RNLocalize.debug.xcconfig */, - 75E83D4C0AB95E87395D9FCB968D6D2B /* RNLocalize.release.xcconfig */, + C9DCB9FF8CD05F5086304842F517F8E6 /* LICENSE */, + 76C04F11A22CAE055841837DB49E8F84 /* README.md */, + 1DA6FF1D96FB471F6C2FF29F81E30551 /* rn-extensions-share.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNLocalize"; + name = Pod; sourceTree = ""; }; - A59BC5F7045FB584A1A54A7257A327F2 /* CxxBridge */ = { + A40D17686A9FB20201F00509D451BCB9 /* CppBridge */ = { isa = PBXGroup; children = ( - 9252D601BCD628BAFD6AC64ED3C4FB52 /* JSCExecutorFactory.h */, - 2B686218AF1DC7440CE73B6A21173CDF /* JSCExecutorFactory.mm */, - 926C3209CE2195F08D664BA0AE61D907 /* NSDataBigString.h */, - D9F797ADABEA1D975F651342F0747B47 /* NSDataBigString.mm */, - F66929CD5E95ED8EB0C1C5EEA4DCE5FE /* RCTCxxBridge.mm */, - D0E4678A27EB9FBA6FD50EA9E4E835CA /* RCTCxxBridgeDelegate.h */, - 3685AFCA46B96B97799850717F28EBAF /* RCTMessageThread.h */, - 192683E949AF1D2610DC723ABB0A0228 /* RCTMessageThread.mm */, - 650F439A1D0EBA6D5D8E2A5830DBF735 /* RCTObjcExecutor.h */, - 06E0DE5F679D0A42FD36AB254B21D6CD /* RCTObjcExecutor.mm */, ); - name = CxxBridge; - path = React/CxxBridge; + name = CppBridge; sourceTree = ""; }; - A60CDE737F526D7425B011B2DC527755 /* Services */ = { + A59AACFC2C49B2D42707557457589E5E /* SafeAreaView */ = { isa = PBXGroup; children = ( - 1E0A8C8C5BAA2197F6188BDC16E5620B /* UMLogManager.h */, - D3B83B7B2B70F1BEE028F4BF4D66027B /* UMLogManager.m */, + BE138A9C0A3EE212138214A13874FF9D /* RCTSafeAreaShadowView.h */, + 7BAD8B4225215297B30BF455AB6179E4 /* RCTSafeAreaShadowView.m */, + F5D1A7FB15477A7DC76FD9805285F811 /* RCTSafeAreaView.h */, + C9D6A897D4B77DD75D7A72E3A0E3A922 /* RCTSafeAreaView.m */, + 5B653C96A63A83B15BC3EB954CA64D38 /* RCTSafeAreaViewLocalData.h */, + 56CEF874C6B480498C26365C608423C9 /* RCTSafeAreaViewLocalData.m */, + 281796CF58FC51481141FBB53E083A88 /* RCTSafeAreaViewManager.h */, + D5AA969F9254FB32855E8FC189FEF20C /* RCTSafeAreaViewManager.m */, ); - name = Services; - path = UMCore/Services; + name = SafeAreaView; + path = SafeAreaView; sourceTree = ""; }; - A735CC162BE0CCD9DA358DF5B8EA6C63 /* EXPermissions */ = { + A661E5136886028D0BD6DA9B41AFBD83 /* UMModuleRegistry */ = { isa = PBXGroup; children = ( - 537444014B9A092333AA1CCB125F9544 /* EXPermissions.h */, - 59250CFC953F23E038DFE20F0BE11B49 /* EXPermissions.m */, - BC18E8E54381F3A9539D5849A9EA0441 /* EXReactNativeUserNotificationCenterProxy.h */, - 7FE57DEA174169B58FEDB52B80D89BAD /* EXReactNativeUserNotificationCenterProxy.m */, - B1240B722150BB716E0DCDFF70290AE4 /* Pod */, - 9B1542630C4BA2B6027738F310D0C6F0 /* Support Files */, + 7EE4FA2596A13834A9C25B4ABA37300E /* UMModuleRegistry.h */, + 4696E9A3AA52DB397671057F5139CC64 /* UMModuleRegistry.m */, + 16834D1C57B198D6CD9CF014A3562FE3 /* UMModuleRegistryDelegate.h */, ); - name = EXPermissions; - path = "../../node_modules/expo-permissions/ios"; + name = UMModuleRegistry; + path = UMCore/UMModuleRegistry; sourceTree = ""; }; - A7740720AF3A9B14EB02006F0C3ECBC3 /* React-RCTLinking */ = { + A6774CB37784CF9233855739047D01BA /* Services */ = { isa = PBXGroup; children = ( - 6875E6D2FF2B70DB6F431C32C18DD305 /* RCTLinkingManager.mm */, - D4751B6CBCADBEBB84043585F1E2CB43 /* RCTLinkingPlugins.mm */, - A8632B6387DA9F93AA4E9241AB7425F4 /* Pod */, - 2695A8A599265E7AE6C1465AD18FF2EC /* Support Files */, + E03C3A5945F7860E729ED3B3C1E40D3E /* UMLogManager.h */, + A3151DD7D723C608DACC7F041A26C855 /* UMLogManager.m */, ); - name = "React-RCTLinking"; - path = "../../node_modules/react-native/Libraries/LinkingIOS"; + name = Services; + path = UMCore/Services; sourceTree = ""; }; - A78905A4A443C97C19F5398EE9F2060B /* Pod */ = { + A6E4C8EC7F236A6249FD3BD4185B5583 /* React-RCTVibration */ = { isa = PBXGroup; children = ( - D64DC0E7882C3037340B07ABBDB1D7DE /* LICENSE */, - 61FD4828BA8003D8E9FEEC1C7C05FCF3 /* README.md */, - 6C8ABACD7054023050244A600466F01B /* RNFBApp.podspec */, + 7B879908DE7E002B65D24820FCA916E2 /* RCTVibration.mm */, + 5BE499D66934F89AFCED0881CA61AB05 /* RCTVibrationPlugins.mm */, + 106A226CFB45862E4FC60F84CFDE75C9 /* Pod */, + 86180FFEEB5F9FFB316561382132D6BB /* Support Files */, ); - name = Pod; + name = "React-RCTVibration"; + path = "../../node_modules/react-native/Libraries/Vibration"; sourceTree = ""; }; - A7C0BD2764A311581EF942D989EFA80A /* Pod */ = { + A6F26DB79DE7B3EE5E7EA4C2B02C7FE0 /* FBLazyVector */ = { isa = PBXGroup; children = ( - EAA25E5AC43A7561BD5B6E4BD9251714 /* EXFileSystem.podspec */, + 824FA62404E74448A3121246F4CD815D /* FBLazyIterator.h */, + 684B013994759A91445B33C4D064976A /* FBLazyVector.h */, + FB851D36D2AFD63090ED2C82FCE5E526 /* Pod */, + 031177B186BE8B9277C645E37AE504F4 /* Support Files */, ); - name = Pod; + name = FBLazyVector; + path = "../../node_modules/react-native/Libraries/FBLazyVector"; sourceTree = ""; }; - A815F8A48FAD2A72BFF4F25399E5DB06 /* Pod */ = { + A73D555E4B33EAF24D7E8444DA4E9916 /* EXAV */ = { isa = PBXGroup; children = ( - F61A2F1091346B98B1DD25282EE1DA55 /* LICENSE */, - 1CC01034FED2C59FEB9900F1E81035F9 /* react-native-safe-area-context.podspec */, - E66CA2AAD01AD30B3866634835213CE9 /* README.md */, + 831946879AD54FC1043B75760434B1D6 /* EXAudioRecordingPermissionRequester.h */, + 746DFB85150363B465CDEA82C3B8A554 /* EXAudioRecordingPermissionRequester.m */, + EC27CC3982DB33D267F480616A240660 /* EXAudioSessionManager.h */, + BC8204E8DF0FAED7A38AAA344E26E16A /* EXAudioSessionManager.m */, + 754892148A018AB9BDD8F209565D32B7 /* EXAV.h */, + 919838236667A64B9CB82BC946C38E90 /* EXAV.m */, + 850F8D7D69D1910927471A1CAD63CED0 /* EXAVObject.h */, + C032B7EB532DAA8F547EB8860076C0C6 /* EXAVPlayerData.h */, + 9C689CCE45F014929C9A2B69B9A6FF60 /* EXAVPlayerData.m */, + CDC55641E6BDF0ABAAA0C49462EFF334 /* Pod */, + C0E9EFF56035FC6318EFFC2707310548 /* Support Files */, + 3F2C6DD602E85B72ADBF205302152D41 /* Video */, ); - name = Pod; + name = EXAV; + path = "../../node_modules/expo-av/ios"; sourceTree = ""; }; - A84CEF9AA966A6C0AE4C5F029342633D /* Support Files */ = { + A7774D9DB6429BA0129374F23AE804BB /* Support Files */ = { isa = PBXGroup; children = ( - 7543B089861D93B3849F41A8E88DABA4 /* React-RCTNetwork-dummy.m */, - 910B716DEA6D359A8E55A8013FEB9C60 /* React-RCTNetwork-prefix.pch */, - 25B96F41AA6F97B2B6FDE39595CCD41D /* React-RCTNetwork.debug.xcconfig */, - 755527DE84ABFB721EB0C04171F825B4 /* React-RCTNetwork.release.xcconfig */, + 143748CA56E79CF5803DF5AC43438349 /* React-jsi-dummy.m */, + B5795E4037BB528418C5A85C10327278 /* React-jsi-prefix.pch */, + 1DB49B3AC8B4AAFAEF609B638134B3C4 /* React-jsi.debug.xcconfig */, + 3E3CBC770D5701724EC508F10C737C78 /* React-jsi.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; + path = "../../../../ios/Pods/Target Support Files/React-jsi"; sourceTree = ""; }; - A8632B6387DA9F93AA4E9241AB7425F4 /* Pod */ = { - isa = PBXGroup; - children = ( - B34E333AA829AB810A209CE9465344B5 /* React-RCTLinking.podspec */, + A7AB409C41648AA7F047469806C9CD6C /* QBImagePickerController */ = { + isa = PBXGroup; + children = ( + D45CAE684DBA14D5D214A49F27E3C009 /* QBAlbumCell.h */, + BFB1DA4419E8C7CF47F6509CD375F2BC /* QBAlbumCell.m */, + 77A03CE1066CA7A89FDDDCC38366ED05 /* QBAlbumsViewController.h */, + A42796C02B772B696F575A4480587B6D /* QBAlbumsViewController.m */, + 71B875BCA1E7C46307B9EA1C89051FD2 /* QBAssetCell.h */, + 97277C5DAD93FA668839E3B22ECC3F4E /* QBAssetCell.m */, + 9F200047510DDD9139206D22E894C7E1 /* QBAssetsViewController.h */, + 56EE46EBACB498E3EC9A96624351FE98 /* QBAssetsViewController.m */, + 95DE7649994A89BB12E5BC74C4BBBBF1 /* QBCheckmarkView.h */, + 9CB144DB24C9E77FE8CFE6E51E4BA56B /* QBCheckmarkView.m */, + BCEB53D067D418E580BACB61B25B3C3A /* QBImagePickerController.h */, + 17EA42165432348C13C9AF03B235A72D /* QBImagePickerController.m */, + E223C9DB5D8627C45A4D4FE74E9003A4 /* QBSlomoIconView.h */, + 3EF7DF81791B20047AA76E6D61BECD2F /* QBSlomoIconView.m */, + 37DC45FF408CE4CBC601BCD6B63EA5C6 /* QBVideoIconView.h */, + E5A6AE0135A349D0684FF2E03A7955E9 /* QBVideoIconView.m */, + 62675C9005432D19954712B52CDE4E0B /* QBVideoIndicatorView.h */, + D99400D4DC6E0AD110A8A92A8577A89E /* QBVideoIndicatorView.m */, + 954931D3E1AA642CB69CD50351A22106 /* Resources */, ); - name = Pod; + name = QBImagePickerController; sourceTree = ""; }; - A8FE4AFDDB9531D2465F1E67D5823680 /* Support Files */ = { + A8B5D57D0FB4D5A6E5BAFD6667C4B74C /* RNDateTimePicker */ = { isa = PBXGroup; children = ( - 44B5DD5E561C62DA5296684A42CFC823 /* BugsnagReactNative-dummy.m */, - EA1ABE27DF5CB286C03F53D42C5FD6C2 /* BugsnagReactNative-prefix.pch */, - 6AAD87784BDE217662E6BDCDE05C68A0 /* BugsnagReactNative.debug.xcconfig */, - 17A83FE56EE5719F8B34D3A654E8B081 /* BugsnagReactNative.release.xcconfig */, + 80963E85D3C5C51EF1799E0A6172EFBE /* RNDateTimePicker.h */, + 851E02DCDAA1E364BD099CE1FF998D28 /* RNDateTimePicker.m */, + 92F1950224E717B54A556C01B41BCEBC /* RNDateTimePickerManager.h */, + C5F909970166EA401334159FA97CD541 /* RNDateTimePickerManager.m */, + F4736A2CD786CD33DA98BE07C738C7A0 /* Pod */, + 19E9E832F7FA35D03B6EA64D45C46FE3 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; + name = RNDateTimePicker; + path = "../../node_modules/@react-native-community/datetimepicker"; sourceTree = ""; }; - A90CAFB5D029228E6F94A9FE0DE8A641 /* UMModuleRegistryProvider */ = { + A90F0A189C5FD1CF7574972F4955696C /* Products */ = { isa = PBXGroup; children = ( - C5C7412F9ECAF3FE9730283FF495B766 /* UMModuleRegistryProvider.h */, - 2B0181B4C8866EF8D216F2B0EE1C881F /* UMModuleRegistryProvider.m */, + FE6D792B6328AAF68E46924D7F466631 /* AccessibilityResources.bundle */, + 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 */, + 86375444C196BA272DDBB8165BF64A15 /* libFirebaseCrashlytics.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 */, + BF1F456334C248BD77BE65C60F42FF67 /* libreact-native-simple-crypto.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 */, + 34C842CD40D88AB4B2BF24FC77DA0009 /* libRNFBAnalytics.a */, + 18D0B1E13C69654196028DD6EDCC3452 /* libRNFBApp.a */, + EE4AEFEACE275DDCFB42B9400BF6B218 /* libRNFBCrashlytics.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 = UMModuleRegistryProvider; - path = UMCore/UMModuleRegistryProvider; + name = Products; sourceTree = ""; }; - A950BAC0BE5E2DB895FE6D3B7BDA6CDE /* Pod */ = { - isa = PBXGroup; - children = ( - 9708539E7BF99FA329197A49573F80C1 /* EXAV.podspec */, + A9112965ADB0136B213342A72BA8E1E8 /* RCTImageHeaders */ = { + isa = PBXGroup; + children = ( + 2991290E6EEB04FC713CA273A601DA2F /* RCTAnimatedImage.h */, + 27663F17D3997F6B29978B0A0FD5FCDD /* RCTDisplayWeakRefreshable.h */, + 3B9858D94C9EF6246EA618C0FB8377F8 /* RCTGIFImageDecoder.h */, + E627698DA595C4CF5C9B66C208968ECF /* RCTImageBlurUtils.h */, + 2FD6CBD9C1341D715218896FCF7E1F44 /* RCTImageCache.h */, + C09B0FA159AA5DE352504C0F23838725 /* RCTImageDataDecoder.h */, + 2737BFFE5E4D7FDC1C3559888BCBB08E /* RCTImageEditingManager.h */, + 102AF1F2A1D24527D1B507699C3AEED1 /* RCTImageLoader.h */, + F5BD86CC0F2A82DBE73D8A6D62F8CE36 /* RCTImageLoaderProtocol.h */, + 17A7E4141D241F34A893B3212CA13495 /* RCTImageLoaderWithAttributionProtocol.h */, + 8238243FE41CD3AFB391954187012675 /* RCTImagePlugins.h */, + 4ADB1CA634AA749517729870C462ADA7 /* RCTImageShadowView.h */, + A9782627E4C2BC9AE88667E53322A0CE /* RCTImageStoreManager.h */, + 2CBFF854FB0878878C529C9F2FE1427D /* RCTImageURLLoader.h */, + 3BC3B4C116644462101BFC91306B5F3C /* RCTImageURLLoaderWithAttribution.h */, + 8F56120C000075994417F54F24B7F02B /* RCTImageUtils.h */, + B448C98F442FC63AE1823BD6158C16C1 /* RCTImageView.h */, + 52E6F773E5FF6B24B71680A77047740A /* RCTImageViewManager.h */, + F992E01ED5F77EEAD29CF84E8A7C40E1 /* RCTLocalAssetImageLoader.h */, + B969DFDB250DDED871D90AEDACDA763E /* RCTResizeMode.h */, + A99D233D751AFB80375F9B7D69233B74 /* RCTUIImageViewAnimated.h */, ); - name = Pod; + name = RCTImageHeaders; sourceTree = ""; }; - A971D6BBBE4397DDC0D17D80C7908A1D /* Support Files */ = { + AA429B36216058F208997A023C50E9ED /* Pod */ = { isa = PBXGroup; children = ( - 264FEA32D7D792CD6C15D804EDFF7F90 /* react-native-appearance-dummy.m */, - B83C5E5327019875A74DCDBFF4D491CE /* react-native-appearance-prefix.pch */, - 025A5E331BE82AF2D4C6B7DAED1E6FFD /* react-native-appearance.debug.xcconfig */, - 069A369A40EF5B5F2056CA1660079BA9 /* react-native-appearance.release.xcconfig */, + E115A6C05E43000549E55C70DAB71644 /* React-jsiexecutor.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-appearance"; + name = Pod; sourceTree = ""; }; AA845D7D6AC61A8F0CCD87C343E0ABB7 /* FirebaseInstallations */ = { @@ -15999,78 +16338,81 @@ path = FirebaseInstallations; sourceTree = ""; }; - AA8E57F4B15A5FFF741FC743134B442C /* React-RCTVibration */ = { + AAFD676EAB908E2F2AC404859379E6F7 /* Multiline */ = { isa = PBXGroup; children = ( - 14FBB765A596B8A45051A528308AA63D /* RCTVibration.mm */, - EA94FC016FD45F960D93DB70FBF796FA /* RCTVibrationPlugins.mm */, - F5BA7758FA6D8A5F1210478FC322F5EC /* Pod */, - 2AF259375C0992621F88F5492F086AC8 /* Support Files */, + CD3F1AFD73DFC9EEE504983BE9768173 /* RCTMultilineTextInputView.m */, + A320A3911341C5140ABE961520BBE0BA /* RCTMultilineTextInputViewManager.m */, + 6B0E8D13DA86F71A359F22C11CA4030A /* RCTUITextView.m */, ); - name = "React-RCTVibration"; - path = "../../node_modules/react-native/Libraries/Vibration"; + name = Multiline; + path = Multiline; sourceTree = ""; }; - AA9D5A861DB8A9D3E45E2D9DF4350BBB /* React-RCTActionSheet */ = { + AB74D182BF0EBA59FACD76229D66533E /* Pod */ = { isa = PBXGroup; children = ( - 31CEF9FC61EAAFE7E60708B31D74E2E8 /* Pod */, - C1EDBE201BAE326EC12DB4A872E0936A /* Support Files */, + B4C04AFBC40ECD13A31F81AC8829F216 /* React-RCTBlob.podspec */, ); - name = "React-RCTActionSheet"; - path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; + name = Pod; + sourceTree = ""; + }; + ABEC7B9326DA2E0FA53EAAD27FF3A64B /* Interfaces */ = { + isa = PBXGroup; + children = ( + 77EE2C8977116B1CF19D408F12C3FAFD /* UMAppLoaderInterface.h */, + BC68D012D9B82C10D2104ADEE0351D39 /* UMAppRecordInterface.h */, + ); + name = Interfaces; + path = UMAppLoader/Interfaces; sourceTree = ""; }; - AAEC9674CC882DB67244DB546B9C9E85 /* Pod */ = { + ABFCF3DBE8B631D27CDFE5EA7992DB93 /* Pod */ = { isa = PBXGroup; children = ( - F8F89B08880AD931DD451E00C6CC6078 /* React-RCTBlob.podspec */, + 58A48551E0BCA2539192C1347B6A7D3F /* EXPermissions.podspec */, ); name = Pod; sourceTree = ""; }; - AB20F49EC4C379C7F4BADE53ED4BA2EC /* Support Files */ = { + ACD976F1CAB97AD12487A3B52BD09EC7 /* ReactCommon */ = { isa = PBXGroup; children = ( - E47B26D53B784AB45DBB639ECACA652E /* RNFBCrashlytics-dummy.m */, - E98C6E9B46332F1D042DAD93494DF3FE /* RNFBCrashlytics-prefix.pch */, - E4638D71A21504E40ADA3A5D86F07629 /* RNFBCrashlytics.debug.xcconfig */, - EAE9ABD23596C05FD899E938A7BF91FF /* RNFBCrashlytics.release.xcconfig */, + 8F8C42F3B967982142495ABFFDD1A4F6 /* Support Files */, + 915E6C0D637A10693317558602BF28C1 /* turbomodule */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFBCrashlytics"; + name = ReactCommon; + path = "../../node_modules/react-native/ReactCommon"; sourceTree = ""; }; - AB57F06B2415E6A0FABC1BF04B4638D6 /* Pod */ = { + AD2B76864718ACF32DC5FC75F53584B3 /* Pod */ = { isa = PBXGroup; children = ( - E04CFA5C85E9E6F7127B37458F68CD6E /* React-callinvoker.podspec */, + 75953248769057ABA47226B484D7D8B5 /* LICENSE */, + 5C51CD19609754332142A04144EE9D21 /* README.md */, + D1F477634C1A9B974575AFFDF69B5340 /* RNGestureHandler.podspec */, ); name = Pod; sourceTree = ""; }; - ACE81EF8E07E05B6BCF9752FACC0CB9D /* Support Files */ = { + AE519D9B3F8CDC1537342417BA2AF038 /* Support Files */ = { isa = PBXGroup; children = ( - E658C8E86F0F319FC47B3D827AAD68FE /* rn-extensions-share-dummy.m */, - F2E8099A78C485E2ED5C976F24BAB22C /* rn-extensions-share-prefix.pch */, - 5F2298F3D34C9A9DD8E280DACFD6459F /* rn-extensions-share.debug.xcconfig */, - 688A4E56F54BF55026DB0D0255F0B696 /* rn-extensions-share.release.xcconfig */, + 2E32A66191936464E27CA08EF71A5A57 /* UMTaskManagerInterface.debug.xcconfig */, + 3784393F5D9459F008D5B5085A85C685 /* UMTaskManagerInterface.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-extensions-share"; + path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; sourceTree = ""; }; - ADC19C713DB403A5A18FEC31E006E46D /* Support Files */ = { + AE969655F2E395E3A742F653A04FA2B7 /* BaseText */ = { isa = PBXGroup; children = ( - 0ABFD45C8872042392419CF2BB70BC22 /* RNBootSplash-dummy.m */, - 18145E23ED551FF77E54D13ED85C75F9 /* RNBootSplash-prefix.pch */, - 26EA42C45E63258B96C6B447BC269D23 /* RNBootSplash.debug.xcconfig */, - B8D5F0575AAA7CBC7BACD04B7BAD538F /* RNBootSplash.release.xcconfig */, + 306516B544C9ABE4B2531CA415CA8825 /* RCTBaseTextShadowView.h */, + 2003529F2EBF7A6007EB4E11A4ADA032 /* RCTBaseTextViewManager.h */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNBootSplash"; + name = BaseText; + path = Libraries/Text/BaseText; sourceTree = ""; }; AEE9BEC540625CCFDBFC54072DD01D04 /* DoubleConversion */ = { @@ -16100,14 +16442,12 @@ path = DoubleConversion; sourceTree = ""; }; - AF62EFE1CA11C259AB282459299AEFA7 /* RawText */ = { + AF6ACCF8321D76BC51775CC33C2F797A /* Pod */ = { isa = PBXGroup; children = ( - F7782572C39EF264BF13CB967491D0E7 /* RCTRawTextShadowView.m */, - A796CF694DD3645B4FD6E6C681D161A6 /* RCTRawTextViewManager.m */, + 01C80D00491A01DFE989B7CD6EE7CA47 /* UMAppLoader.podspec */, ); - name = RawText; - path = RawText; + name = Pod; sourceTree = ""; }; AF7B8B3D8E4C3BBDC94494041EB50A5F /* FlipperKit */ = { @@ -16131,120 +16471,30 @@ path = FlipperKit; sourceTree = ""; }; - AF8FA3743EF2F00A64CF6271B1CA0CCA /* Protocols */ = { - isa = PBXGroup; - children = ( - 77B9A05CFE5541F8C23026310A33F4BB /* UMAppLifecycleListener.h */, - DC8EA8D5C7FA0BE6031770E36D366558 /* UMAppLifecycleService.h */, - 91C16FDAC603B24260D05A1CA37F4280 /* UMEventEmitter.h */, - 15EE26E0603A3A2E13F5067294868CEC /* UMEventEmitterService.h */, - 72A4F4396A35DB25A19C21260B0D44FD /* UMInternalModule.h */, - 079800DA2EACF334AF35597194FAF376 /* UMJavaScriptContextProvider.h */, - 46418A223A7F5D933F71DBEF9675FC32 /* UMKernelService.h */, - CC2D7C55CBCC6D6AD79421C5F0AAB192 /* UMLogHandler.h */, - 9D0A00D1A88171A2D8A975BE1ABBBDF3 /* UMModuleRegistryConsumer.h */, - 4FE57148A0395552AFD22E84C224709A /* UMUIManager.h */, - B38E7428E0296176DEC476D2C96AB5E5 /* UMUtilitiesInterface.h */, - ); - name = Protocols; - path = UMCore/Protocols; - sourceTree = ""; - }; - B10F6A4BBFD7E5DB9C2D3F91DFA6947C /* Base */ = { - isa = PBXGroup; - children = ( - B1B7C35B671F31D96B7568B4B60D3148 /* RCTAssert.h */, - 3D4069E4CCE86326A76AEB5A6E4E5F35 /* RCTAssert.m */, - 3DDC8CC06B0A403ABBE1F567B10E4560 /* RCTBridge.h */, - 9D1E5807E6B2E750827BEC4F53052268 /* RCTBridge.m */, - BA7090045FE2DBEAB8C5F7109BC42117 /* RCTBridge+Private.h */, - D77E88B8F92CD747787766712C35CEB1 /* RCTBridgeDelegate.h */, - 4A9BE97D7ACD440D1FA2201199D19EA8 /* RCTBridgeMethod.h */, - 79957C9CDBF18E658BF88BD2F1A219E5 /* RCTBridgeModule.h */, - E3795CFDACA4AF8219C8A17A0710D969 /* RCTBundleURLProvider.h */, - C6AAB4B2FE1673E707CA8A15E36967EF /* RCTBundleURLProvider.m */, - 621B45CF8AEA5E510285EF99F0721936 /* RCTComponentEvent.h */, - 2E9FBDC2494E35C34C1B001EEC2BACA5 /* RCTComponentEvent.m */, - 4DEC9ABAA7A49F2D6981F9E09C9D2095 /* RCTConstants.h */, - F5C8131118E345A6D6CD17A8A3CEDF19 /* RCTConstants.m */, - F66CF81B10C7E56E280D4BA65272BB3D /* RCTConvert.h */, - 8CAD5E6F474AF1FF7AAE8DF1FA61FCA8 /* RCTConvert.m */, - F219018012DA45015DCF19EAB4E7C1C3 /* RCTCxxConvert.h */, - CB500AB949632FBC3E40BC286DEB19CB /* RCTCxxConvert.m */, - F783C63D8BF62C97A2110023560BF067 /* RCTDefines.h */, - F03FCA6747A9850EB34084EDF68C1750 /* RCTDisplayLink.h */, - 2A627A4904D393225F4D863ED996C06F /* RCTDisplayLink.m */, - 3ACAEC752BC8A591D8EE6618F42F4205 /* RCTErrorCustomizer.h */, - 3937A2B1330E98D2F2045F13004CE916 /* RCTErrorInfo.h */, - C48ABC73C98EA778E99870657E1F63BA /* RCTErrorInfo.m */, - 80EF70DCCE7665BE25CF10B6C2C26C27 /* RCTEventDispatcher.h */, - A56BC009F9F3D20ACF799DED02654DB1 /* RCTEventDispatcher.m */, - 327C7A08C522C7C67B2A82ED9E74242C /* RCTFrameUpdate.h */, - B2031454B79FE34BF059E24DFBED2A2C /* RCTFrameUpdate.m */, - 1435E1CDA29F93A8F1AF232E9F886424 /* RCTImageSource.h */, - DE3A2B83E6FA608B0054E0684CD1B314 /* RCTImageSource.m */, - 1AE7685E86C58BAF7371266E3720E407 /* RCTInvalidating.h */, - E0B57A32DBD7A4669B2470B7260E80B4 /* RCTJavaScriptExecutor.h */, - AA7D49DE36A032F79C8774BCE239F7D4 /* RCTJavaScriptLoader.h */, - C154BE5A4B2852054012AB53B149493B /* RCTJavaScriptLoader.mm */, - 3E661AC9A93AFA9392D5964B5E59E738 /* RCTJSInvokerModule.h */, - F2087689D10D13039100FAEEB8160DDA /* RCTJSStackFrame.h */, - 327B3E3F0F1ACFE40B8869E00817299D /* RCTJSStackFrame.m */, - BDCA37D27080B97E0CBCD46A2CEF9D5C /* RCTKeyCommands.h */, - 66F09C8328C84F2DD207A1CFFDAA9980 /* RCTKeyCommands.m */, - 98901934FA5E1814FDAB823CAFD4F9D0 /* RCTLog.h */, - B9EDAB230A22538F001EA2540A377270 /* RCTLog.mm */, - 2514C82C07D8F8357A30EF31C34F9E65 /* RCTManagedPointer.h */, - DF2F531A169E8D893DFBE626E2C1E7F3 /* RCTManagedPointer.mm */, - E4F78EF9B22CB4410D26717C4AD41513 /* RCTModuleData.h */, - 423DBE3582E06AD2EBC9DB27C89EC5F6 /* RCTModuleData.mm */, - 480390D428F4E32DE30B133D02909A91 /* RCTModuleMethod.h */, - A020774C760BA3ADBB770E3ECC848753 /* RCTModuleMethod.mm */, - 6CD9D731B39517C220C0D4478A442157 /* RCTMultipartDataTask.h */, - 4D52D7698DEE3105A56D0B1EE095DAD3 /* RCTMultipartDataTask.m */, - F05BD8943320E7B1D726C43EAB73622A /* RCTMultipartStreamReader.h */, - F31B8E1CFFC76235A0DA3FEAAD5CBE1A /* RCTMultipartStreamReader.m */, - 68886C5B6310D63496717C1D4DEF1461 /* RCTNullability.h */, - DA699A133FD5F3E9FD88AF5DA3E43439 /* RCTParserUtils.h */, - FB110F52027B8DE7CA9A8F0740578D92 /* RCTParserUtils.m */, - 309CEA6A66463DF65D634545A38DCD2A /* RCTPerformanceLogger.h */, - 6DA161D3357BDFE36F245A36964724A8 /* RCTPerformanceLogger.m */, - 3BF6E8C711CE563EBE5CC40843A49430 /* RCTRedBoxSetEnabled.h */, - C213DF80BD8103AF65A5D4187A9119B3 /* RCTRedBoxSetEnabled.m */, - C3F78613C365C6584A4A55392589118F /* RCTReloadCommand.h */, - 3640FB051E362D82BD9F47648FCBEF3C /* RCTReloadCommand.m */, - B2C87D6A57E3DC54C8AC21CEC5488A9A /* RCTRootContentView.h */, - 2F1D96967D55034526525434039ABB78 /* RCTRootContentView.m */, - D52B18ADDB0220AC45266D155DBBCD63 /* RCTRootView.h */, - 6F84567AE78063F266547B4E7899B9E8 /* RCTRootView.m */, - B2AF1EF698BB35A59A2F874D9664CE3C /* RCTRootViewDelegate.h */, - 2103DD4CFFBE30E3B847E50B74EE0097 /* RCTRootViewInternal.h */, - 110BCBF80CD5F7D0C4E5457C524724D0 /* RCTTouchEvent.h */, - A76AAED13C095EE24F5B78C280BA7E7D /* RCTTouchEvent.m */, - DDBF72E6FCD984F43D2C99C7E38D7A06 /* RCTTouchHandler.h */, - D911854E283D5A3D29D6E9364AF97229 /* RCTTouchHandler.m */, - F45C86671E626431A5D11FB234D8DFBA /* RCTURLRequestDelegate.h */, - 93B15EBA61520B294F2806D2491F89B9 /* RCTURLRequestHandler.h */, - ABC9927896ABF0D4AD242A9A8AABBCDF /* RCTUtils.h */, - 41F1B69AA73443ED11F3BC5832374325 /* RCTUtils.m */, - B72CCF12206A1914948949B3950AC81B /* RCTUtilsUIOverride.h */, - 1D4C738D2BE9F8D9C41665204E496825 /* RCTUtilsUIOverride.m */, - FB391EAC7181CC3C2481AA66C998D311 /* RCTVersion.h */, - 3111A9EF6ED1EF6F2F9DD405E92DE74F /* RCTVersion.m */, - 6B45163D72B165020310A4D25B24CC83 /* RCTWeakProxy.h */, - 5331154F29985EA161AE29ECE787862E /* RCTWeakProxy.m */, - F719735FEE8252EA7D95413A77FAE2DD /* Surface */, - ); - name = Base; - path = React/Base; - sourceTree = ""; - }; - B1240B722150BB716E0DCDFF70290AE4 /* Pod */ = { - isa = PBXGroup; - children = ( - A5F5D00C3B1B9044219B9557875AC433 /* EXPermissions.podspec */, + B087052F9D7FE118B024DD3C8C6AC56D /* Modules */ = { + isa = PBXGroup; + children = ( + 3F86796576A56F3B23C0661CE8378050 /* RCTEventEmitter.h */, + 927DFF859129888C3409A02CB33B9E13 /* RCTEventEmitter.m */, + 81107AC60A7F64AEA4C517784351C515 /* RCTI18nUtil.h */, + 9F1C30E13C60F490B8A7F2FC458DE848 /* RCTI18nUtil.m */, + 1D54680817B81F20ED759702DD883BCD /* RCTLayoutAnimation.h */, + A4B3A69AC62C974C063165EF7246FC11 /* RCTLayoutAnimation.m */, + 319500F8B8551FAE8E84E3DB8A58398A /* RCTLayoutAnimationGroup.h */, + D0D829E35FB56A68F2CAA7B3C9832583 /* RCTLayoutAnimationGroup.m */, + B4AC8B6BBAA665574832CF9CDB57A7E4 /* RCTRedBoxExtraDataViewController.h */, + FEEBE15411CABFB180D186ACC9671BB9 /* RCTRedBoxExtraDataViewController.m */, + F676FDFAD617AEB73318BA8B1CE8DEEA /* RCTSurfacePresenterStub.h */, + 749944A65AD1C604ECBB76249C77FFC2 /* RCTSurfacePresenterStub.m */, + A0BAD312062B71CFECD4ADFD31EEDCF7 /* RCTUIManager.h */, + 395CFECDFA54CF26F261A1D99757DB06 /* RCTUIManager.m */, + FBD3C6F381C857748120249C25C9FEEF /* RCTUIManagerObserverCoordinator.h */, + EB3B14FE9CB7128A28A56F851854B63C /* RCTUIManagerObserverCoordinator.mm */, + 0DC9477D200929DB5E4865A3B16DCD78 /* RCTUIManagerUtils.h */, + 9E5506C6B5BB0E34728B18BE119D9031 /* RCTUIManagerUtils.m */, ); - name = Pod; + name = Modules; + path = React/Modules; sourceTree = ""; }; B162ADD6EF5276D67715F815322DF8D1 /* Logger */ = { @@ -16257,44 +16507,16 @@ name = Logger; sourceTree = ""; }; - B1DE021731590D365AF378E57DC47720 /* RCTImageHeaders */ = { - isa = PBXGroup; - children = ( - 1404501382CB386C5320152A48D6EC44 /* RCTAnimatedImage.h */, - 2CC707DC0C2F0654DDF4CF3799D398F1 /* RCTDisplayWeakRefreshable.h */, - EE227767ADC64FA2F8A043A5AACB0A1D /* RCTGIFImageDecoder.h */, - 8DA4C0665A79F02E040D94E17AE674D4 /* RCTImageBlurUtils.h */, - 33063D49319D5C88CE6FDEC6E9FF9F0F /* RCTImageCache.h */, - 1F4FA2E7FCA0D243EFF56F3270F2EEFA /* RCTImageDataDecoder.h */, - 25A912E977BE574C3FDEF0C947FC58D3 /* RCTImageEditingManager.h */, - CB51A939D391539943E41BC790E64512 /* RCTImageLoader.h */, - 4101A167FEED7D4C959CEB06F6AF4DEF /* RCTImageLoaderProtocol.h */, - ECCBE82CD98E03581599C650EBCE07CE /* RCTImageLoaderWithAttributionProtocol.h */, - 91BE08716D9890E5E995E3D75EA07C0B /* RCTImagePlugins.h */, - 916445C5D0D965FAFDCB5F3E2024B88C /* RCTImageShadowView.h */, - 721327DA84E79E7B7C72A0CBF1687A80 /* RCTImageStoreManager.h */, - B069EE34B326027D9F9DB0253BBE2F76 /* RCTImageURLLoader.h */, - 715AB6366FF7ADDEF6ED8B5C95C95B57 /* RCTImageURLLoaderWithAttribution.h */, - 8F577B189DA552F53EFA7A813B03E107 /* RCTImageUtils.h */, - A28A3F5095CAA1FC8CAE9C7B5F5E0028 /* RCTImageView.h */, - F564B224DD26082298C97D6A1A1FE620 /* RCTImageViewManager.h */, - FD30FC48D149F5E26DCD521E8D4FEDAF /* RCTLocalAssetImageLoader.h */, - 3EE8DEBA3B976EA391E5FE4DE1E391B6 /* RCTResizeMode.h */, - C52F6244DBE87444847755B2FBA95A2D /* RCTUIImageViewAnimated.h */, - ); - name = RCTImageHeaders; - sourceTree = ""; - }; - B1F9171927A22EFEE1E2501473F3CB26 /* react-native-background-timer */ = { + B2179D7F72B61C74CBAC5A0853E297C4 /* React-RCTSettings */ = { isa = PBXGroup; children = ( - 92100BE1C38D96A1A7AE0F9E0D1D53C8 /* RNBackgroundTimer.h */, - 2BD0A0DA49CF85CCFD14B1B3654E4F4E /* RNBackgroundTimer.m */, - 5DE7CE119EEC801DDFA62EE05CEE6A1D /* Pod */, - FCA06563D749F1264745D7DF46CDEC12 /* Support Files */, + 8B756C0A9A4F81198C19841EEB554379 /* RCTSettingsManager.mm */, + 3B36126F5B8FD783C5CFF29BD94F0998 /* RCTSettingsPlugins.mm */, + E28446788BF6E9788E3C7C6D22153252 /* Pod */, + 278F0D501FD19A689AA4F938C3967397 /* Support Files */, ); - name = "react-native-background-timer"; - path = "../../node_modules/react-native-background-timer"; + name = "React-RCTSettings"; + path = "../../node_modules/react-native/Libraries/Settings"; sourceTree = ""; }; B26F0706F825D0575A167F130F9BC6FB /* Support Files */ = { @@ -16310,79 +16532,90 @@ path = "../Target Support Files/TOCropViewController"; sourceTree = ""; }; - B2BA11969FFB481D34AD305FC52E5556 /* Recording */ = { - isa = PBXGroup; - children = ( - 805CC1444E8DAA8B74AC46DBBFBCD0C1 /* BSG_KSCrash.h */, - 7090AC5C80B9FEB27EDB0F07FA244F1F /* BSG_KSCrash.m */, - 5F2FDDB18843EFA08C47EE7B5D201DA8 /* BSG_KSCrashAdvanced.h */, - 69C0A8F9E2B9388FCF54A5CB9B7F41B0 /* BSG_KSCrashC.c */, - 5DB356BA7F34588BEC110B7A48353C7B /* BSG_KSCrashC.h */, - 39AB154790624A0B5AFB87DED987FF0A /* BSG_KSCrashContext.h */, - FFB72840C115C96E91485EB841DF6373 /* BSG_KSCrashDoctor.h */, - 7A84CFA91626CB3C0D1F92AEBC9536A6 /* BSG_KSCrashDoctor.m */, - 246FAF3FB45F34BDF2AEE8D8C4AB302A /* BSG_KSCrashIdentifier.h */, - 92C245C6F25D618B4BDD6F457C28A9EF /* BSG_KSCrashIdentifier.m */, - 78C7D70E7D8DD39EBCE005E4522082A8 /* BSG_KSCrashReport.c */, - 1B07305F5B13ABC3DF13817C3AD7C9FD /* BSG_KSCrashReport.h */, - 3985EAA3DEA3A2B786F3C61F42951698 /* BSG_KSCrashReportFields.h */, - 3E838049A8A55A72E34E8DD160D4DAFD /* BSG_KSCrashReportStore.h */, - AA1B111B2E6AD4B9C43B10BE64552485 /* BSG_KSCrashReportStore.m */, - ABC6D7742F151F1F3D3B9795F920CBE7 /* BSG_KSCrashReportVersion.h */, - B98A890925D554B7EDDC37D6D880FCF7 /* BSG_KSCrashState.h */, - CDA22CF0190708367475F1C9DF73DD55 /* BSG_KSCrashState.m */, - F8E3E041B86D708D61869B837ACC9A61 /* BSG_KSCrashType.c */, - C345AE8BD2B7BBA4879C79348156B798 /* BSG_KSCrashType.h */, - BA0ABA8E745BB4558F5FAEF68134356C /* BSG_KSSystemCapabilities.h */, - 4E677535392AA415F7AE2BAA17436873 /* BSG_KSSystemInfo.h */, - 21C0530CD41205567B26D3166D29E34B /* BSG_KSSystemInfo.m */, - EE56C46D9D35877C0761AAFB28FF7AAA /* BSG_KSSystemInfoC.h */, - DDA7508A190BA11F1DC792B7370F1072 /* Sentry */, - 34003A6238C72DE598524230293B3FB6 /* Tools */, + B3D833FFDCD80B3A7057B85CE8E87321 /* Pod */ = { + isa = PBXGroup; + children = ( + 349C03803E507F869FE96C11F114D2CA /* react-native-slider.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + B4D0EF22143D7A0913572EC18A3B3DF3 /* Recording */ = { + isa = PBXGroup; + children = ( + B33A2BB3EABCAD841A6CB01F8CEEE633 /* BSG_KSCrash.h */, + BE341F17C723BC55110B4ED51AEDF689 /* BSG_KSCrash.m */, + 876523F4E547D2A85EF38C20BDB92CB6 /* BSG_KSCrashAdvanced.h */, + 5A552206A525124387BA9CFBF67871A7 /* BSG_KSCrashC.c */, + A33661B6BA1AE837B7D500B9B7BAC3E1 /* BSG_KSCrashC.h */, + 7A2CB50F4226EB5EE8CEB3FD2CADC73A /* BSG_KSCrashContext.h */, + E0F250B32A26B77DC1FE95A397D6F3A7 /* BSG_KSCrashDoctor.h */, + 14015E1552535ACDD964A56534C309F2 /* BSG_KSCrashDoctor.m */, + 7430D5E2504529B94051ED26BED1D257 /* BSG_KSCrashIdentifier.h */, + 438BF6D2BD2CD678DD00CA531DF3A033 /* BSG_KSCrashIdentifier.m */, + AAD17C6707DFCD86F47E8BCBC98E05B6 /* BSG_KSCrashReport.c */, + AD089AD9926351A99E8454AC7E9E3FC0 /* BSG_KSCrashReport.h */, + 9563E977201559A0134033EC35B2CFAF /* BSG_KSCrashReportFields.h */, + BE11A5529D1AB89EBEE94F3553006904 /* BSG_KSCrashReportStore.h */, + 444B7CA4B8D54CA3B5B147A5DDA41D48 /* BSG_KSCrashReportStore.m */, + FA441F279168B5B3A406958506986428 /* BSG_KSCrashReportVersion.h */, + E824417A235EA0452352E6844625B4F7 /* BSG_KSCrashState.h */, + 3B7A2D74467292B04CD08177147C9B80 /* BSG_KSCrashState.m */, + 5FFAE82666F21B7462CA0538142D1449 /* BSG_KSCrashType.c */, + 21112FE6CC3ABA7BAE34829195B581C4 /* BSG_KSCrashType.h */, + 827BE2553CC1A1A51AE23A61CD5CDF7B /* BSG_KSSystemCapabilities.h */, + C624970691D41EB2D3544108C4E76286 /* BSG_KSSystemInfo.h */, + 5E66DBD0980F12A5BA8375066A5B4685 /* BSG_KSSystemInfo.m */, + 9D65ACE4894B7C6D19401FC9D7F79DF0 /* BSG_KSSystemInfoC.h */, + DAD9AA0E3DE32970375289FF1B4542A8 /* Sentry */, + D694D357FC3A007078D12A8F13858EB1 /* Tools */, ); name = Recording; path = Recording; sourceTree = ""; }; - B34FBD1B460804386117F4B2909A7B93 /* Pod */ = { + B52588E879004FCD449705976A8F061C /* Support Files */ = { isa = PBXGroup; children = ( - DDA05A84E44F3960778A2AEF32D007EC /* React-jsinspector.podspec */, + 08C6D333BA0B63D7C98E9D0C82FE4F19 /* libwebp-dummy.m */, + 5A80C8864A3D842456CC5722D7D2A092 /* libwebp-prefix.pch */, + 5775D4B653A8BC92D744C412ABAAF2CD /* libwebp.debug.xcconfig */, + 0F0024A02EBE1A777389C2B9B631E9AD /* libwebp.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../Target Support Files/libwebp"; sourceTree = ""; }; - B3CC1B0755367A1B3DEE2BA042399D9C /* Pod */ = { + B5D397C52C1ECE8B84C94FCBB0186A85 /* Support Files */ = { isa = PBXGroup; children = ( - F4F2CB6239F8738A653B3A5ED87558B2 /* api.md */, - 87D275F3587EBC8800BBB84AB24C0913 /* LICENSE */, - FA88DA0FD1C1E2BE0463D1675A97D882 /* ReactNativeART.podspec */, - 33D690AD715585D06C9C452441BC4F70 /* README.md */, + BEC770B8F5C2CDCD16EA05F38DD4ACFD /* UMCameraInterface.debug.xcconfig */, + BC7339B8473F04B0785014553A717B78 /* UMCameraInterface.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; sourceTree = ""; }; - B4BDA464A9D885762DAF8E2F162C0699 /* Support Files */ = { + B5E1BC173BEEAF3C4A9655F1E51D7F1A /* UMFileSystemInterface */ = { isa = PBXGroup; children = ( - 0EA62232CBEF8FF811E72EC3CC3709A3 /* UMCameraInterface.debug.xcconfig */, - 936320A64EDEEA8877AC905B74B766CB /* UMCameraInterface.release.xcconfig */, + 6D772E4C6D376AC844BF09E74EE6FF6A /* UMFilePermissionModuleInterface.h */, + 9C358D353DD141BD21895040795E55AC /* UMFileSystemInterface.h */, + 3270F04CB0045641349810E12C6EFD0F /* Pod */, + D271D47D533C7395A960A2672DDD87A1 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; + name = UMFileSystemInterface; + path = "../../node_modules/unimodules-file-system-interface/ios"; sourceTree = ""; }; - B52588E879004FCD449705976A8F061C /* Support Files */ = { + B6469477D6E89D70829C32EC296BF1CB /* Pod */ = { isa = PBXGroup; children = ( - 08C6D333BA0B63D7C98E9D0C82FE4F19 /* libwebp-dummy.m */, - 5A80C8864A3D842456CC5722D7D2A092 /* libwebp-prefix.pch */, - 5775D4B653A8BC92D744C412ABAAF2CD /* libwebp.debug.xcconfig */, - 0F0024A02EBE1A777389C2B9B631E9AD /* libwebp.release.xcconfig */, + 3526E45476F9A3827C6E7B3533000B71 /* LICENSE */, + 0057CC6B5ABECFC4228B53971E0D15C9 /* react-native-safe-area-context.podspec */, + E004C75BE9D78B752470454D07B05144 /* README.md */, ); - name = "Support Files"; - path = "../Target Support Files/libwebp"; + name = Pod; sourceTree = ""; }; B64FEE9457EAE89509576C0277D51349 /* nanopb */ = { @@ -16414,6 +16647,18 @@ name = Reachability; sourceTree = ""; }; + B73EE5D4FBFEAD036E01A68B6F21CDF7 /* Support Files */ = { + isa = PBXGroup; + children = ( + 5FE25F3788337BD0ECDF73F9057DC8EB /* ReactNativeKeyboardTrackingView-dummy.m */, + AF9161DDC9E4048EA41FCC4316A1C8AD /* ReactNativeKeyboardTrackingView-prefix.pch */, + 6BDDE93DD97D9FE1EE2C556CB54E4541 /* ReactNativeKeyboardTrackingView.debug.xcconfig */, + 6ABC573A6E7BEA31FA390BBF774C07C0 /* ReactNativeKeyboardTrackingView.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardTrackingView"; + sourceTree = ""; + }; B769BF77F668BB51D020A63960E880D6 /* Support Files */ = { isa = PBXGroup; children = ( @@ -16426,44 +16671,106 @@ path = "../Target Support Files/Flipper-DoubleConversion"; sourceTree = ""; }; - B7F77BE4CAD46EF61D49D207E1318D06 /* UMFileSystemInterface */ = { - isa = PBXGroup; - children = ( - 0D4043A57A9E632E018C7A16AC001F75 /* UMFilePermissionModuleInterface.h */, - C1E37BD24B44979ADFB937576E6081AF /* UMFileSystemInterface.h */, - B8B859CABC42B7747C8C98F9BB6148D8 /* Pod */, - CC2D413B47C52049A954E21454E0C8C1 /* Support Files */, - ); - name = UMFileSystemInterface; - path = "../../node_modules/unimodules-file-system-interface/ios"; - sourceTree = ""; - }; - B7FFF3B4F9254EF5E7352886F7D0BA2E /* RNBootSplash */ = { + B7C63BE97961E994059B506A157DAF55 /* Pod */ = { isa = PBXGroup; children = ( - 01B7927B110DD11DA2C776EBC611BD10 /* RNBootSplash.h */, - 0B2107F7A60AF8F1873A63704E11AA4B /* RNBootSplash.m */, - A5601ECAE9AE35C0368831F2CB8A805F /* Pod */, - ADC19C713DB403A5A18FEC31E006E46D /* Support Files */, + 41CE3B5A7151D8BAFF0F4FB640AF3F9D /* React-RCTLinking.podspec */, ); - name = RNBootSplash; - path = "../../node_modules/react-native-bootsplash"; + name = Pod; sourceTree = ""; }; - B8752DF6DCDA468C593D41997EC45C01 /* Pod */ = { + B7EE9D45488BF6977EAA95E36131B84A /* Support Files */ = { isa = PBXGroup; children = ( - E9645E347B0F8DCE319C9E869845AF93 /* RCTTypeSafety.podspec */, + 30EFCF131A9EBE0519B24BC24E00FED4 /* EXPermissions-dummy.m */, + 2263121D8CEBB2CB500536C91E321C39 /* EXPermissions-prefix.pch */, + DBBDC1D1B7A881F1010AC3D8852888E6 /* EXPermissions.debug.xcconfig */, + 743836857F32F8AB1DDAE440AFBE4F64 /* EXPermissions.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXPermissions"; sourceTree = ""; }; - B8B859CABC42B7747C8C98F9BB6148D8 /* Pod */ = { - isa = PBXGroup; - children = ( - 175AC05D9681FE725917E96854A600C1 /* UMFileSystemInterface.podspec */, + B8DA92A341CDDFB4C1E3CB2D925DC55E /* Views */ = { + isa = PBXGroup; + children = ( + 7ECB3B85921004F5E5A9BCFE039DD0D6 /* RCTActivityIndicatorView.h */, + 9C68548D6C785F1993C49879BED5F4C2 /* RCTActivityIndicatorView.m */, + CB307A9B47688D70F2FA2F49AFF27A8F /* RCTActivityIndicatorViewManager.h */, + F61D4966DA96A7492131D289921544A5 /* RCTActivityIndicatorViewManager.m */, + 0DA080DAA2C68E3C259114C2BE131A47 /* RCTAnimationType.h */, + CACA43D7BF27B12F7FE692E8B266B622 /* RCTAutoInsetsProtocol.h */, + 394CF5F22A0D4948739FE868F3D2D9F0 /* RCTBorderDrawing.h */, + 94390EE11EEEF33FF287B2AD01387C28 /* RCTBorderDrawing.m */, + 7672D5C1927628EE8AEDC9FFE0CC19A4 /* RCTBorderStyle.h */, + 4CCB00F23A94A8603E8F611811E34C4F /* RCTComponent.h */, + 92C3D71AF53455A575541F6D79EA6900 /* RCTComponentData.h */, + 83CB04FA8B4108F024460B69F9F578D8 /* RCTComponentData.m */, + E5944082310598AFF7F7C3336AFE168D /* RCTConvert+CoreLocation.h */, + E4B7017935992937C1AFF371780F6D1D /* RCTConvert+CoreLocation.m */, + 09A154745DC9BB7A971187ABE70612D3 /* RCTConvert+Transform.h */, + 879A58F8DBB2D066AD0E0CCC6BCD4B9B /* RCTConvert+Transform.m */, + E14F2452B68E058A43444DF88AF3572C /* RCTDatePicker.h */, + 1CF82584EDEE9AF01438A19F1644F2F7 /* RCTDatePicker.m */, + C68F6027AAD94B607FCEA0DF5649BA7F /* RCTDatePickerManager.h */, + BBF56D8C089A97520810E25603915E50 /* RCTDatePickerManager.m */, + 805CB6D040E6E709E9E9F126DDD53037 /* RCTFont.h */, + 7EA7BFCF4F056871F2589013D5F47C70 /* RCTFont.mm */, + 9A8A50C0FE61109864D0DE6C1C2728A4 /* RCTLayout.h */, + B268560C9B6855ECA16713BBE8C56D8F /* RCTLayout.m */, + BB357A151D6B225C1A8128543A09AD98 /* RCTMaskedView.h */, + 5912BC63F951FEBDB4632962841E5925 /* RCTMaskedView.m */, + 5E10972E4F712DC9AC689B88595A621D /* RCTMaskedViewManager.h */, + 19AE8A77D2ECBCEDF312264CB5105325 /* RCTMaskedViewManager.m */, + BC9FDD88B9204303D70026F7C404AD1D /* RCTModalHostView.h */, + 5B1D56ADFD1059B3E709CCD732DB57B7 /* RCTModalHostView.m */, + 19C19916A2B91787DAAD4E5413ABC256 /* RCTModalHostViewController.h */, + CAD4D7F6011F574FBA32ECD96D646F38 /* RCTModalHostViewController.m */, + B162F812689F10D4EE205CC660DCEE07 /* RCTModalHostViewManager.h */, + 7EBAE94D498C12976D44660A24F324ED /* RCTModalHostViewManager.m */, + E733CF97A9466B399964081BEB37674B /* RCTPicker.h */, + 00313826D7407AEF8938304DA08ED092 /* RCTPicker.m */, + 08674C1D6F6ED7C696591D4E6BC050A1 /* RCTPickerManager.h */, + C71220D0ED345A50FB432737110D26A1 /* RCTPickerManager.m */, + 91DE9659A9F5DF223DAF15667A44EF39 /* RCTPointerEvents.h */, + 07194359E2ECCC9D04469524E4457B16 /* RCTProgressViewManager.h */, + 2CE0218ED5D6AFD5A68F4E54242C4678 /* RCTProgressViewManager.m */, + FD5605970FEFFB23ABCCA413FA4E45B2 /* RCTRootShadowView.h */, + BD71B0B722E9D677AFBDA9BEF7449EB2 /* RCTRootShadowView.m */, + 7D46DA8EF5A43BB3EB6FBED2BE067861 /* RCTSegmentedControl.h */, + B2CE1922FF9EF9AA7022846CC5699365 /* RCTSegmentedControl.m */, + B0575D2AF8AA7F6CA50A8B39A9F1B828 /* RCTSegmentedControlManager.h */, + D552968CCDD5E2ACCBD64C900FFD157C /* RCTSegmentedControlManager.m */, + 045371D5FFA1E6C6AAB6BD1B3FC5033B /* RCTShadowView.h */, + B908E56D81A49B17826F2EC8ACE1CCC3 /* RCTShadowView.m */, + 7F3ED5FEEBA746FC88B23257F44CF5D3 /* RCTShadowView+Internal.h */, + 26E7C4F4E7454C0629994BC0E90F6C31 /* RCTShadowView+Internal.m */, + A72C6F12B355BDC28AEA9A51A506EC03 /* RCTShadowView+Layout.h */, + F0429179DA86B043A3B1DEF698FFAFA1 /* RCTShadowView+Layout.m */, + EC4BB61B670DA1E424388EA029520072 /* RCTSlider.h */, + CE54E17C4D5E975049EEE8EF60B1CD07 /* RCTSlider.m */, + 9F92CE6F80CBFB4B11ADD6D6AC0D0586 /* RCTSliderManager.h */, + 54E4135E88CC7F2132C4687292887A8A /* RCTSliderManager.m */, + F4E916E16887711C8AD4EE979ADB6D7D /* RCTSwitch.h */, + 8B6694E32E38F412D3C5C6B9F1AE7ED2 /* RCTSwitch.m */, + 28C0F345255694EE5B845BAC11D2F9BB /* RCTSwitchManager.h */, + 35050769E414C13E73B0E3ADB47482AA /* RCTSwitchManager.m */, + 5AD7952A70C692300EC7AFB4D7971FF7 /* RCTTextDecorationLineType.h */, + F83ECD37D111523C25BA951DBE815297 /* RCTView.h */, + 06AA6F0C5F0864240C9A960BD34E2F3C /* RCTView.m */, + 6ADAD52576EE9CBE6504D65A100308C1 /* RCTViewManager.h */, + 663A55CF92E9480D8EB76947EB9DB479 /* RCTViewManager.m */, + 57E59EDB17E56B1BB7FAABF94FC5D7F5 /* RCTWrapperViewController.h */, + 1829BBE2C72F292275D403CC36D1F870 /* RCTWrapperViewController.m */, + 0967A5BF0AB0DE6DDB18BB351F740F38 /* UIView+Private.h */, + 2B054E6F12AECCB3D6DC93C4596190FE /* UIView+React.h */, + 31E68723753BB698800F91415F0E9881 /* UIView+React.m */, + 0D19000DF4A7B92A2F2469AAE2DE5E96 /* RefreshControl */, + A59AACFC2C49B2D42707557457589E5E /* SafeAreaView */, + 60C9CA12845E921C7FC37FE1EED84B4A /* ScrollView */, ); - name = Pod; + name = Views; + path = React/Views; sourceTree = ""; }; B955AD3BF9345E06CE1B6E3B5377DCFA /* Pods */ = { @@ -16505,16 +16812,6 @@ name = Pods; sourceTree = ""; }; - B99F631CCBC14D70BAF6687F9EEA5AAD /* Pod */ = { - isa = PBXGroup; - children = ( - E8CD41D5A7348C3BC9D3A709330AB089 /* LICENSE */, - C92C68AEBB9197C1FBF155507CCBC0E0 /* react-native-webview.podspec */, - D925E6E218E5DCE4AF401CE2A0E47E29 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; BA6FC1153F63D3BF5CE7B6976C4F5E9D /* webp */ = { isa = PBXGroup; children = ( @@ -16670,38 +16967,44 @@ name = webp; sourceTree = ""; }; - BC04A9B65C4A4DF493F20E77F79B726A /* Pod */ = { - isa = PBXGroup; - children = ( - A65BEF8F4688F80EC26978291C60CFE3 /* LICENSE */, - 6B3700E2F7D0859FBF8A84E8F3BE01FE /* README.md */, - 8BE3EA169CDDD47FA3A16D8B029D2644 /* RNVectorIcons.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - BC445818D148C2FE248DC6A4F34D8BF7 /* Support Files */ = { - isa = PBXGroup; - children = ( - E66AD50035D0D62A5D0159E4493D8B2B /* react-native-orientation-locker-dummy.m */, - 876200FACA564D249B78E989F8012391 /* react-native-orientation-locker-prefix.pch */, - 94218B8FFE4CD853DBA47FA9D80434AD /* react-native-orientation-locker.debug.xcconfig */, - B30EA90EB1269BBEFA1BBAF96A86C2B5 /* react-native-orientation-locker.release.xcconfig */, + BB84585D8580872687939D507F8AEA16 /* CoreModulesHeaders */ = { + isa = PBXGroup; + children = ( + 0FFB657F2DA1DD822881BC78B3DBD881 /* CoreModulesPlugins.h */, + D2998CFECD9FB872258F99DE7224F85C /* RCTAccessibilityManager.h */, + C208216896601E60980FEE68919E480E /* RCTActionSheetManager.h */, + 9411ACCE57314AFC3CBEF643BA9D06B0 /* RCTAlertManager.h */, + 54ADC050BC81D562EE7FAAAFE4095C09 /* RCTAppearance.h */, + 5A58AA1B828A3AFCC95B17EA5F9930D9 /* RCTAppState.h */, + 5D6345020C64C16A655129FE1132DCDB /* RCTAsyncLocalStorage.h */, + 4BD97DD90A26C50D18E7FAF907BC1DA4 /* RCTClipboard.h */, + 2996A59C885B15061352C2FD272B559B /* RCTDeviceInfo.h */, + 60640518039110ECA62D49D4C54753E8 /* RCTDevLoadingView.h */, + AC2E8AEC2D0EBEB57417B0D43F82BC8B /* RCTDevMenu.h */, + 493119CB6376A4ACB7401AB4D3AAC5EB /* RCTDevSettings.h */, + 67A03002EBFC6AC6C6B62A11A8A188FB /* RCTExceptionsManager.h */, + 65970A1B28524528AE90831181C5EE9D /* RCTFPSGraph.h */, + 35EAFFAB54227BC4A05DF6DC2C40E631 /* RCTI18nManager.h */, + 31B7579B8EC1A7AE35CA76444EB64945 /* RCTKeyboardObserver.h */, + 55BA7916B742AC8CEC530CC91B169759 /* RCTLogBox.h */, + F76A324B95B15C2ABD32A48C3D7A77F5 /* RCTPlatform.h */, + 920A4A1D7E30CF2F6A466C6DE5927C0F /* RCTRedBox.h */, + EB668FE765F74D0F9E34CF5423CE9B67 /* RCTSourceCode.h */, + 4786EBB44FB9D3485AD206761FE1B774 /* RCTStatusBarManager.h */, + 943F85E38AACA47C1407F8324CD900A3 /* RCTTiming.h */, + 504E3A912F55EEE2FCF2CBA9770156AD /* RCTTVNavigationEventEmitter.h */, + B0F716DAEC7A089F45EF0F96E91DCB58 /* RCTWebSocketExecutor.h */, + A096C271D4C402AE27DDDBFB48CAFCBB /* RCTWebSocketModule.h */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; + name = CoreModulesHeaders; sourceTree = ""; }; - BC7229D478D2FB42DC448BA47CC0F019 /* EXWebBrowser */ = { + BBDA5E8FE97FEA5D5DC0034DE6AE9ABD /* Pod */ = { isa = PBXGroup; children = ( - A5ED4395691E2745D117436EC74A630D /* EXWebBrowser.h */, - C4F7E4CFCBDB2C5DA6CAE16C755C4FE1 /* EXWebBrowser.m */, - 53616B3E68CD01186CDAA9A5E058D4B2 /* Pod */, - 2777ADA4E455AE0B0164A464EC2511F6 /* Support Files */, + 4689BFFE5FD65112172FB757769F5852 /* React-RCTActionSheet.podspec */, ); - name = EXWebBrowser; - path = "../../node_modules/expo-web-browser/ios"; + name = Pod; sourceTree = ""; }; BC894ADE8D8C7858C1900CEF7F35B027 /* FlipperKitLayoutPlugin */ = { @@ -16752,78 +17055,83 @@ name = FlipperKitLayoutPlugin; sourceTree = ""; }; - BE028EC925F4E11441FEC1EA1E331684 /* Support Files */ = { + BCD121339CCADFCBF547CC93DAA5ED1A /* Support Files */ = { + isa = PBXGroup; + children = ( + B8AF713EA42BD2EB9135B888DFB4D80C /* React.debug.xcconfig */, + D9E5644F0AF4686846C4BB49CDB3BD59 /* React.release.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React"; + sourceTree = ""; + }; + BD851FD21F57F0A54F4C4F711308F366 /* RNVectorIcons */ = { isa = PBXGroup; children = ( - 5C66073D693CFBA4207919CC6D1F26B5 /* React-CoreModules-dummy.m */, - 548F7A0FF0D3CD928ED78732500938E3 /* React-CoreModules-prefix.pch */, - EF4B97470003B61AE2879931D9748DE3 /* React-CoreModules.debug.xcconfig */, - 8D93BD1146A4C0A236F966A6F6838A6E /* React-CoreModules.release.xcconfig */, + 057240011425C7EB3291A95BD518EAEC /* RNVectorIconsManager.h */, + 3D28FF780ADD086B1CE3A16CF70E819A /* RNVectorIconsManager.m */, + CA42A1EFA51D8D855AD1DD7CFDDF618B /* Pod */, + 672FD3FD78C225E330E340933DF14373 /* Resources */, + 6FB5504D007F93A766EF762C4BBF2595 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; + name = RNVectorIcons; + path = "../../node_modules/react-native-vector-icons"; sourceTree = ""; }; - BE1D92621BE8EB57F13CCEA7DA6F1B3E /* Support Files */ = { + BEE23086B2917A28C4E378505D157114 /* FKPortForwarding */ = { isa = PBXGroup; children = ( - B70F1DF507D00E00B3FFC520389E46D5 /* EXAV-dummy.m */, - 815220269EF7FD141B2588B1748D87C1 /* EXAV-prefix.pch */, - 51E38420E3F75E55A5454CA007333CC5 /* EXAV.debug.xcconfig */, - A84270B47B32FFB2AE5802D6A3A49C0B /* EXAV.release.xcconfig */, + 1500567893A0F2F90FDCE8E6DF98AF9C /* FKPortForwardingCommon.h */, + 856042B73E1C8C0F0942229F352F2ADF /* FKPortForwardingServer.h */, + C39027DDFFC8785415DE36B4302732A2 /* FKPortForwardingServer.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAV"; + name = FKPortForwarding; sourceTree = ""; }; - BE580812E1F02E4BA35A979F1D6ACE60 /* RCTAnimationHeaders */ = { + C0275EB383E24F7DE7D90110221381CF /* Support Files */ = { isa = PBXGroup; children = ( - 21E1C04B0338AFDCE0204374F5D1BE4F /* RCTAnimationPlugins.h */, - 7E4DD71BD854DF6DF64F53A99C186A8D /* RCTAnimationUtils.h */, - 9D0511FB3538261E00C6038C99BC7901 /* RCTNativeAnimatedModule.h */, - 60DA3C24BED923D7021F7D952E18692C /* RCTNativeAnimatedNodesManager.h */, - CA94E7F65BE994673CD9B74747C3E14F /* Drivers */, - 28640BFBCAB291E1DBAE2CC7AE5C7134 /* Nodes */, + AC53EB8AECF7D69E4E3497C1D8161B43 /* rn-fetch-blob-dummy.m */, + 119BC32F2D510943DEA545850424E3DD /* rn-fetch-blob-prefix.pch */, + B9CB3F838B51DEBDA2AD9DB3A5AC5069 /* rn-fetch-blob.debug.xcconfig */, + BBEA8CAFF75CDEE68027BDE08DD47A10 /* rn-fetch-blob.release.xcconfig */, ); - name = RCTAnimationHeaders; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; sourceTree = ""; }; - BEBA3B74BC5BAA9E0F95DCA2577816CC /* Support Files */ = { + C0E9EFF56035FC6318EFFC2707310548 /* Support Files */ = { isa = PBXGroup; children = ( - 74EA5D0C3FEEEB8B6B40DDE3DC2CE46B /* ReactCommon-dummy.m */, - AEB8FAC197F567664C62C5115C5F764E /* ReactCommon-prefix.pch */, - 62D0EB1335EE43AFD5FFBF3BA7A06204 /* ReactCommon.debug.xcconfig */, - 0D44DABF4F80A19E0763F9D6055B2732 /* ReactCommon.release.xcconfig */, + 75FB3FEFE478D2DD23AB936C020D3D37 /* EXAV-dummy.m */, + 11AC51D6144A94FE959AB85942786141 /* EXAV-prefix.pch */, + 694EBAE41EA9114295A09D41E9CF41ED /* EXAV.debug.xcconfig */, + 48B3A64C1EA37997575979F85218D1E1 /* EXAV.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactCommon"; + path = "../../../ios/Pods/Target Support Files/EXAV"; sourceTree = ""; }; - BEE23086B2917A28C4E378505D157114 /* FKPortForwarding */ = { + C178366101C578179E0A01B0E8DB0239 /* Pod */ = { isa = PBXGroup; children = ( - 1500567893A0F2F90FDCE8E6DF98AF9C /* FKPortForwardingCommon.h */, - 856042B73E1C8C0F0942229F352F2ADF /* FKPortForwardingServer.h */, - C39027DDFFC8785415DE36B4302732A2 /* FKPortForwardingServer.m */, + 57D9E49DA33C4EEBC1561AAD53B1E0B9 /* EXKeepAwake.podspec */, ); - name = FKPortForwarding; + name = Pod; sourceTree = ""; }; - C07C9649A6A9BEB72564394A7D6F4C65 /* Profiler */ = { + C1A1D67407089A250F74A8546C208B81 /* KeyCommands */ = { isa = PBXGroup; children = ( - FE7E2ACF770FA1F5C61451F18B01DB2F /* RCTMacros.h */, - 8E503EDDBD1DB36A1BD8F4FC767CA336 /* RCTProfile.h */, - AABA6F6EAEBDBF0B0AF9C297500403B6 /* RCTProfile.m */, - 5FEF2352D2144A3C571293429FCDA8FE /* RCTProfileTrampoline-arm.S */, - 7F6CA3F7F77927A829F95350D1F8092C /* RCTProfileTrampoline-arm64.S */, - A10E8C4738B541B45BEF58011E47A174 /* RCTProfileTrampoline-i386.S */, - 61F73002F5357C4765AF70BDB41AD9B9 /* RCTProfileTrampoline-x86_64.S */, + 07BB5E1BB5C9BD52761C0A9FCDADA805 /* RCTKeyCommandConstants.h */, + 40BCD2F2249194DFFBA16A3D51351384 /* RCTKeyCommandConstants.m */, + DB1B8CC10B42DC93855CD660E107727A /* RCTKeyCommandsManager.h */, + 361C739FBDF40F8B1E5A8C7D00A8AF45 /* RCTKeyCommandsManager.m */, + 5AF496081D85B29D0041217A3D37E49B /* Pod */, + 1C017B73F94C8453800B0116CA2124D1 /* Support Files */, ); - name = Profiler; - path = React/Profiler; + name = KeyCommands; + path = "../../node_modules/react-native-keycommands"; sourceTree = ""; }; C1C3AFE2F8AACA4964C98538E2C06423 /* demux */ = { @@ -16836,26 +17144,16 @@ name = demux; sourceTree = ""; }; - C1EDBE201BAE326EC12DB4A872E0936A /* Support Files */ = { - isa = PBXGroup; - children = ( - 6EAFD5B087B08C5857B765EF3CBFB157 /* React-RCTActionSheet.debug.xcconfig */, - AF2990C86ED4A958996CB1EEC73A61C4 /* React-RCTActionSheet.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; - sourceTree = ""; - }; - C204653660C6D5A725DD7DDAD36A380E /* Support Files */ = { + C1C3FF894DBE00DF32BABE37FC542321 /* UMBarCodeScannerInterface */ = { isa = PBXGroup; children = ( - 61F8730EE64FD2CD71890FC719173F81 /* react-native-document-picker-dummy.m */, - DF3F910F68A48F3A9ED31BF8FE2B6142 /* react-native-document-picker-prefix.pch */, - 69023791643DD50D7580B1673D35676B /* react-native-document-picker.debug.xcconfig */, - 80AF3550A306A8563FDB94F8C035175B /* react-native-document-picker.release.xcconfig */, + A7454DFA3416991FD8CF47A1A8407586 /* UMBarCodeScannerInterface.h */, + 8404F25C1C6CC0F7A04D6D9EEE02E542 /* UMBarCodeScannerProviderInterface.h */, + 081EDB5D48027559C84DE6F37E4C00CD /* Pod */, + 453750D936676CFF74E725433B558A0D /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-document-picker"; + name = UMBarCodeScannerInterface; + path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; sourceTree = ""; }; C23203AD76206D7F3F47426997EBB577 /* FirebaseCore */ = { @@ -16919,16 +17217,6 @@ name = Frameworks; sourceTree = ""; }; - C28FB472B451597758F5058764728186 /* Pod */ = { - isa = PBXGroup; - children = ( - 10C46C0FE28F1504D4778FB38C253C76 /* LICENSE */, - F14F4BD545400FE45AF406E921C39D75 /* react-native-orientation-locker.podspec */, - 9F406DC9FC0FBA22BDD27D58E004442A /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; C297D5D7D24ADCDB948651E545F210EE /* Support Files */ = { isa = PBXGroup; children = ( @@ -16939,180 +17227,175 @@ path = "../Target Support Files/FirebaseAnalytics"; sourceTree = ""; }; - C37A4181B6117F200231B1A89DCDD835 /* UMReactNativeAdapter */ = { + C2A050BE2CE81656719116DD8D2C0DAE /* React-jsinspector */ = { isa = PBXGroup; children = ( - 222ACFC2898807F8C99792B2618B2515 /* UMBridgeModule.h */, - DAF5522B96D3BB752AD457737902F1FB /* Pod */, - 1FBF978C00A0C3B39C2CF68CA5FA1CDF /* Services */, - 4853F06247866052A85429B2F48CB2DC /* Support Files */, - D344071B79F81660A3620E2CB084C9CA /* UMModuleRegistryAdapter */, - 4B0D1D5E237F48C2584EB729A6071706 /* UMNativeModulesProxy */, - 8AF4F969301492DDAC217B28EB1CD4E5 /* UMViewManagerAdapter */, + F795504F2D7DDEC908D2F55201ED70A4 /* InspectorInterfaces.cpp */, + C53C15122D0E87369DA8ECFF045FD3D5 /* InspectorInterfaces.h */, + 7337C773469B4EAAD0D4B3F152A035E0 /* Pod */, + 852DE7B02AF6E0879F7E3270E5B0B33D /* Support Files */, ); - name = UMReactNativeAdapter; - path = "../../node_modules/@unimodules/react-native-adapter/ios"; + name = "React-jsinspector"; + path = "../../node_modules/react-native/ReactCommon/jsinspector"; sourceTree = ""; }; - C4918E48E03A558165BF14088B0BBFC0 /* Pod */ = { + C2EA7450A665DF21977DACA8A45ECDA8 /* Pod */ = { isa = PBXGroup; children = ( - 44ACC6C58B35B03765DA77A5D21DC479 /* UMBarCodeScannerInterface.podspec */, + 4727EE10972D1353EC46F88522CF06F1 /* LICENSE */, + 7FB0BE56645AF33757105DD8CF0C459D /* ReactNativeKeyboardTrackingView.podspec */, + 74490C729085514EE14CDAB2559E4FD8 /* README.md */, ); name = Pod; sourceTree = ""; }; - C610E38D1B5E9E89D61019E959B25EFD /* turbomodule */ = { + C53D125DF01C96E2D822876245F00985 /* Support Files */ = { isa = PBXGroup; children = ( - F3A42399F38E644EC2F82FB379419106 /* core */, + 5695F3830A5F1AFE41DF9B5BD0A30DCE /* RNScreens-dummy.m */, + 83EE3409CBA849617F35119D37287D36 /* RNScreens-prefix.pch */, + BC5A3FC8AFDC6481A9ACF677E1C92C2F /* RNScreens.debug.xcconfig */, + 471DA02DD0438A9A6E28756AAFF43295 /* RNScreens.release.xcconfig */, ); - name = turbomodule; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNScreens"; sourceTree = ""; }; - C682F1B9BD00DBD4B6AB719FD7D57BDE /* Pod */ = { + C5A98DEB88EFC0157ABD083B0DA1FFD0 /* Pod */ = { isa = PBXGroup; children = ( - 0F5226DB09675C82F5CAEFA4F0FC5AE2 /* React-Core.podspec */, + 9F4E9AAA9497C7411F9336045624D9F2 /* LICENSE */, + 3AC048A93B3F92AC5ACCC952753528DE /* README.md */, + CFFB4991418144058ABB0032A92BD9B1 /* RNScreens.podspec */, ); name = Pod; sourceTree = ""; }; - C6E2EE18E0DD134B76105DF7F82C613E /* RNVectorIcons */ = { - isa = PBXGroup; - children = ( - 2794F82035D1AF4A75088D8FC513A3EA /* RNVectorIconsManager.h */, - 7EF240967AAD7D875A2FAB0A143E7B0E /* RNVectorIconsManager.m */, - BC04A9B65C4A4DF493F20E77F79B726A /* Pod */, - C700B5349B0198B202A98E543CFDCAAD /* Resources */, - E964B4FB179CB1B6095FAA65352C6A29 /* Support Files */, - ); - name = RNVectorIcons; - path = "../../node_modules/react-native-vector-icons"; - sourceTree = ""; - }; - C700B5349B0198B202A98E543CFDCAAD /* Resources */ = { - isa = PBXGroup; - children = ( - 5802691D85AFE68FA659FC7CE0412CDC /* AntDesign.ttf */, - 51A9ABF54BE34010CE8E1C1E2023E767 /* Entypo.ttf */, - ACEE99CB5C80E1F18512833C8A0D7555 /* EvilIcons.ttf */, - D4C5C2F2A590847A20066D8E55D6A600 /* Feather.ttf */, - 174AC2EE7FD07728F107A5BEACBA0DB2 /* FontAwesome.ttf */, - 7143CB555F71FD2DB2213865598BCDA9 /* FontAwesome5_Brands.ttf */, - 2300CA2DFAD3F4AE40894DA4FD87EB4D /* FontAwesome5_Regular.ttf */, - 96C0B3299F989768C3E116301D81EA57 /* FontAwesome5_Solid.ttf */, - 33C024B491E1A7E75ADB5640F5EBCB98 /* Fontisto.ttf */, - 0ED760CC218627AD2EE5670E00945E43 /* Foundation.ttf */, - 7355C9B67071D1CB24238556FE279002 /* Ionicons.ttf */, - 5004D5C574204E002279B15A02600096 /* MaterialCommunityIcons.ttf */, - 9CE1A9CF7F02C3FA486D29963BBAED13 /* MaterialIcons.ttf */, - 4A6D1FC9C1F1D0CA0541468E3D6BFA21 /* Octicons.ttf */, - 68D2DE0F257E12E136653EFF88F8F703 /* SimpleLineIcons.ttf */, - 30E1A0AE83FE4F77512A3898E18D4E44 /* Zocial.ttf */, - ); - name = Resources; - sourceTree = ""; - }; - C97F9EA681F95A0F545B97EEFDA6EE34 /* Pod */ = { + C5FD39AE22525A25A409D0CB90C509CA /* Support Files */ = { isa = PBXGroup; children = ( - 6CBF83DF453EF2EB5AB93915A907DDD4 /* React-RCTNetwork.podspec */, + CD5488500C4C25AA8510B878FBAB25AE /* UMAppLoader-dummy.m */, + 468CD477653FEC656E77ED86CDE2C917 /* UMAppLoader-prefix.pch */, + 8F0058703FECE1F2AF98235947677D3D /* UMAppLoader.debug.xcconfig */, + 4384EDAAEAB8CBFDE1346C9C90A7B4F1 /* UMAppLoader.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMAppLoader"; sourceTree = ""; }; - C9CA355C3E953A1C493B5F14198BDD5F /* RawText */ = { + C713314839B9ED81EAEBE1FC92B4D99D /* RawText */ = { isa = PBXGroup; children = ( - 2611F44C748F67F18320B0D162C156DA /* RCTRawTextShadowView.h */, - C5ECDE1C5CBBFC663F87AF1A6B5B3E32 /* RCTRawTextViewManager.h */, + AB97DA50708919C7437E5968B9D0B3E3 /* RCTRawTextShadowView.m */, + 15D7F316A15C295DBAC73122E3A9F3F5 /* RCTRawTextViewManager.m */, ); name = RawText; - path = Libraries/Text/RawText; + path = RawText; sourceTree = ""; }; - CA41D916C39699306AD64D7261FE5B3D /* Support Files */ = { + C751C72AFB56BC0E8809FDDEEDD57F5F /* UMSensorsInterface */ = { isa = PBXGroup; children = ( - A8CE00DD3674D4D80825B09A7432548E /* UMBarCodeScannerInterface.debug.xcconfig */, - 2D292F848C371759568A2C2ABCD1A7B9 /* UMBarCodeScannerInterface.release.xcconfig */, + 0BEE281862504E5435398F18762DCC42 /* UMAccelerometerInterface.h */, + 91B2DE28E9A692B96A4835AEF15D02EE /* UMBarometerInterface.h */, + C08CACE9EE348C2AFB780A00CDFA2888 /* UMDeviceMotionInterface.h */, + A470B2520D2D0A66F6F244292E0463E9 /* UMGyroscopeInterface.h */, + 5AC2AF099C8C9C03F4B3A58878738DC1 /* UMMagnetometerInterface.h */, + 24A71BD0B871FF7C31B8C21B17C7261D /* UMMagnetometerUncalibratedInterface.h */, + 42BB24FEE3559907AB36CF6434F05A17 /* Pod */, + 8E8721A1E6E72D80450066BBE627B75A /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; + name = UMSensorsInterface; + path = "../../node_modules/unimodules-sensors-interface/ios"; sourceTree = ""; }; - CA74596382299DB85CE91A6CF25D6C46 /* Pod */ = { + C7F4366B92290C547F519F4E58430081 /* Pod */ = { isa = PBXGroup; children = ( - 79ADCA71264049B708A4E913F657D0F6 /* BugsnagReactNative.podspec */, - 0C9C64B1816CC80187B120AE408CE557 /* LICENSE.txt */, - 60F98A1A2812A595598EDCD0BC00225E /* README.md */, + 5272ABDDD32966AE21EE4D9A10678B9D /* LICENSE */, + F83101CF0701B271A6F672BA8903994E /* README.md */, + 2864634C52B08EC4066DF6E05EAAF2CC /* RNFastImage.podspec */, ); name = Pod; sourceTree = ""; }; - CA94E7F65BE994673CD9B74747C3E14F /* Drivers */ = { + C93B45B6A61FB4DF946AFD369879E45D /* Support Files */ = { isa = PBXGroup; children = ( - 63249EFA834A01C81278670CAB350563 /* RCTAnimationDriver.h */, - E61C02CFB51138AA232A555B11F0FB5D /* RCTDecayAnimation.h */, - AED243402FC7D1A09ECAA4180D3C1E1D /* RCTEventAnimation.h */, - 242BE4CF47E227CB5879E37AD9571D0F /* RCTFrameAnimation.h */, - FED99EC61698F83EBBB40358492DBF66 /* RCTSpringAnimation.h */, + 26DBA3571B5E7A02BABF74B0F5072B6B /* React-RCTAnimation-dummy.m */, + F6722367AF9C13EF903BBFCA1CC58AEE /* React-RCTAnimation-prefix.pch */, + 850762DB3807EDBFADDC68F8928B08DF /* React-RCTAnimation.debug.xcconfig */, + 017DB0362BA3E36A5524AD9BDAD36451 /* React-RCTAnimation.release.xcconfig */, ); - name = Drivers; - path = Libraries/NativeAnimation/Drivers; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; sourceTree = ""; }; - CAD5E5CC7E2357A6CE59E2C8EA0314CA /* Pod */ = { + C93C5B52ED12C5260DE4D6861807DA6A /* internal */ = { isa = PBXGroup; children = ( - 3E1E82F75A3AD91B98D300A18F417BDF /* EXAppleAuthentication.podspec */, + FA45DCB66A546613091AB4B5E18C0C9C /* experiments.cpp */, + 4AFA044CB86D89CBD59381D025FB0FE0 /* experiments.h */, + 7B619E995571D38B8DE3E9A0CA6F6E7C /* experiments-inl.h */, ); - name = Pod; + name = internal; + path = yoga/internal; sourceTree = ""; }; - CB91F0E1CAB1CC25A85F7543E8054948 /* rn-extensions-share */ = { + CA42A1EFA51D8D855AD1DD7CFDDF618B /* Pod */ = { isa = PBXGroup; children = ( - 8E79929D60E5EB0B3B9D5F4B634822E1 /* ReactNativeShareExtension.h */, - DE1772011CF6FE788CF9D3707F3C2198 /* ReactNativeShareExtension.m */, - 9326782CA2A43FCCA6BAE8D8DE4437B5 /* Pod */, - ACE81EF8E07E05B6BCF9752FACC0CB9D /* Support Files */, + D5B615889697D5B7F6101292528E8805 /* LICENSE */, + 19A23491256E86666F8F10F39EB3499A /* README.md */, + DF7B4D0AEFF442CA20A3E8F4E66E9FF4 /* RNVectorIcons.podspec */, ); - name = "rn-extensions-share"; - path = "../../node_modules/rn-extensions-share"; + name = Pod; sourceTree = ""; }; - CC2D413B47C52049A954E21454E0C8C1 /* Support Files */ = { + CB89AEB62A4C6F5488ECC1398FDF635C /* Support Files */ = { isa = PBXGroup; children = ( - 972DD2AA0947D1FCE181610CF7DD8ADD /* UMFileSystemInterface.debug.xcconfig */, - 905DF53B9D7EB2C9D2DFF66ED4A59C55 /* UMFileSystemInterface.release.xcconfig */, + D9CC10D2F25AC43156165F68C141E9D9 /* React-CoreModules-dummy.m */, + B9232883679A433EDC3F31B9F8DB0EA3 /* React-CoreModules-prefix.pch */, + 60B85E4E8D160A075EFF3F6B3D9DB0F3 /* React-CoreModules.debug.xcconfig */, + 7BC78FC76B9EEACD75A3FCA6393FB96C /* React-CoreModules.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; + path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; sourceTree = ""; }; - CC3629E657F2FC30028C328D0E97475C /* Support Files */ = { + CBFB388E07B9715D028C2212E277994D /* Singleline */ = { isa = PBXGroup; children = ( - E3EA3A933063BA7551894E6DBD2131D1 /* React-RCTImage-dummy.m */, - FEE079432481F88B93B0B7AF4234558E /* React-RCTImage-prefix.pch */, - 4A706FB427D8B0B810C195000A76DD26 /* React-RCTImage.debug.xcconfig */, - D3749DB4BC9E9ED52FC1398435CC5789 /* React-RCTImage.release.xcconfig */, + 6F5B8FEFE396F23EAE59B676C2241DB9 /* RCTSinglelineTextInputView.h */, + 34425C1B564D8C3C5C9745CB556FBC18 /* RCTSinglelineTextInputViewManager.h */, + 3B7BDC6327BEDD3E0C74DA3F7C78BC26 /* RCTUITextField.h */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; + name = Singleline; + path = Singleline; sourceTree = ""; }; - CD861BF28B44335182A8E10219267D57 /* Pod */ = { + CD790CBB6CDD6990CFCA46BC70D0ACCB /* react-native-simple-crypto */ = { isa = PBXGroup; children = ( - 1CC33E4864E66CEB8AA97E71CE23EF2C /* React-jsiexecutor.podspec */, + E7FE1AF035593CE875A5CA47B864A2DE /* RCTAes.h */, + 34E471FBBF2F79127FB56BB2EFC0500E /* RCTAes.m */, + F740FDA458ED8EAF667CD596D3DF718A /* RCTHmac.h */, + 9FBB57C4E86E8DBF43BB7E6E576B6FCB /* RCTHmac.m */, + DD919EBD2111F4C801F3A37826681F55 /* RCTPbkdf2.h */, + F31AB722F6F19E9C9CC18FA2362BD99E /* RCTPbkdf2.m */, + DDFCDE2BC0DC8EEFC73CE00582A4794C /* RCTRsa.h */, + 1845809A7204E7E07207F949F508AF28 /* RCTRsa.m */, + 973566A0731048F981CB918094BACFB0 /* RCTSha.h */, + 940966263C1A8EAA81AB593C8883D9F1 /* RCTSha.m */, + EEF0D8619BE0D72C2C28450FE40A9E7F /* RNRandomBytes.h */, + 109BEC51DAB4CE3C672C328A560E26C3 /* RNRandomBytes.m */, + 1A9ED1A88E7EC50CC2D3D04635931E6D /* lib */, + D436ADB788B1D5E70F9C6AB889D32023 /* Pod */, + F767A0C433A2ECA039BF84FF3E334761 /* Support Files */, ); - name = Pod; + name = "react-native-simple-crypto"; + path = "../../node_modules/react-native-simple-crypto"; sourceTree = ""; }; CD8E968FA3EC1AE6058F901A823FA352 /* TOCropViewController */ = { @@ -17144,32 +17427,31 @@ path = TOCropViewController; sourceTree = ""; }; - CE26F5950632D604446ECE7CAC892573 /* RCTTypeSafety */ = { + CDC55641E6BDF0ABAAA0C49462EFF334 /* Pod */ = { isa = PBXGroup; children = ( - DB0CA032F37B433F854D45C37919050B /* RCTConvertHelpers.h */, - 1CE9F79360135BFB24018614C7FE9734 /* RCTConvertHelpers.mm */, - E1BB99A20197EB8D91245B3A931DE941 /* RCTTypedModuleConstants.h */, - F18FEE533414EF0E933A14E3B8FC23DC /* RCTTypedModuleConstants.mm */, - B8752DF6DCDA468C593D41997EC45C01 /* Pod */, - E9E7CA47FCA8BA43E50726AD1AD9D3F5 /* Support Files */, + 171FA80AACA2FF9107CE6C3BC17BD1CE /* EXAV.podspec */, ); - name = RCTTypeSafety; - path = "../../node_modules/react-native/Libraries/TypeSafety"; + name = Pod; sourceTree = ""; }; - CEB9FB8489E5850B59B9E129EF579722 /* react-native-jitsi-meet */ = { + CDFA71CB9A3E0FBDA600479FFCCAD928 /* Protocols */ = { isa = PBXGroup; children = ( - 33B95CD4BE4D984D1A2A902045B901ED /* RNJitsiMeetView.h */, - 5DCDF199F3B656D34D7B505E4544C402 /* RNJitsiMeetView.m */, - E1537FA4C8F695610A6B4B8391496604 /* RNJitsiMeetViewManager.h */, - 4112D184DABABEA2C5B0B61168F06C67 /* RNJitsiMeetViewManager.m */, - 8DBABF438494E07D05332686E2AF689E /* Pod */, - 131E2D36D95DFD87D98274780ED9F3D3 /* Support Files */, + 9E002D3D0835B9BAD650C25C5FD482FB /* UMAppLifecycleListener.h */, + 2024DFF18893141E456C008E609D0CB0 /* UMAppLifecycleService.h */, + 5E3A7ACD4FFD1398BAF99CDD584A376E /* UMEventEmitter.h */, + DB35CC62936B6D2F3D2550C225EE6372 /* UMEventEmitterService.h */, + 04E3BA4D4D06A24143451980FF4427D8 /* UMInternalModule.h */, + 6F31F3905848F213112403D0CDBFB144 /* UMJavaScriptContextProvider.h */, + E5A23D41EDB3D9DE4AF0258871C03FE3 /* UMKernelService.h */, + 440458A67D3530565BD9C90B273402C6 /* UMLogHandler.h */, + 67219E0D7F63DEEE2310B244119D57BA /* UMModuleRegistryConsumer.h */, + C40547CF9A97052A9AD762F0CAC782C5 /* UMUIManager.h */, + 7193DD8F996D5092A94E118B8BB844F4 /* UMUtilitiesInterface.h */, ); - name = "react-native-jitsi-meet"; - path = "../../node_modules/react-native-jitsi-meet"; + name = Protocols; + path = UMCore/Protocols; sourceTree = ""; }; CF0AB1F91B0C139F051F2B8F4B9C13EF /* CoreOnly */ = { @@ -17184,51 +17466,24 @@ isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - DF6D2A9049D8ABC98C3BF22AE41A0E21 /* Development Pods */, + DB8364632D046A62D1C34DF54E1B53CF /* Development Pods */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, B955AD3BF9345E06CE1B6E3B5377DCFA /* Pods */, - 8408B015D8FDF06D5CC8C52509F0F422 /* Products */, + A90F0A189C5FD1CF7574972F4955696C /* Products */, 85036FAFEB60A7A7F38257AB58E1EC8B /* Targets Support Files */, ); sourceTree = ""; }; - CFAECE327F0D4E2D47A0BEEC982C187E /* vendor */ = { + D023A0A55D27FCEDD50287F29B0559D7 /* FBReactNativeSpec */ = { isa = PBXGroup; children = ( - E7E0F776BC39A2556482ED88B07EA9DE /* bugsnag-cocoa */, + 739165E5A629E500D4E4DFFCB02D4A87 /* FBReactNativeSpec.h */, + DFA933E4F93ADD51BA644F751181E114 /* FBReactNativeSpec-generated.mm */, + 9080EB0570E0E22FCEB3C1F36474A54F /* Pod */, + 7B86C6FD49CC461B1672E7D21BD0FF9D /* Support Files */, ); - name = vendor; - path = cocoa/vendor; - sourceTree = ""; - }; - D012FC6E71C5BDC1B1FD0537D1FEF169 /* LNInterpolation */ = { - isa = PBXGroup; - children = ( - CC311E2E0AA72D79FAEB72F6127AA157 /* Color+Interpolation.h */, - 551AC92263E7C5F08A10F56E19A73E4C /* Color+Interpolation.m */, - 6AB2AF92F3E60B500AA80BA127793DEE /* LNAnimator.h */, - 63E3089E4F4C81A686B0D80B91BF6DAD /* LNAnimator.m */, - 3A8A4CAF7647BA607557E4EBE2019B78 /* LNInterpolable.h */, - 390FD09B4E6120DC6BD20D73D7DC841B /* LNInterpolable.m */, - 9D5252337079F8CE162493DD6B908CB9 /* LNInterpolation.h */, - D5C69347EB7CD708F1AA61F95ED3F7ED /* NSValue+Interpolation.h */, - ); - name = LNInterpolation; - path = lib/ios/LNInterpolation; - sourceTree = ""; - }; - D043F845B07ACDA1337E5ACDD5D40EE8 /* UMPermissionsInterface */ = { - isa = PBXGroup; - children = ( - 994EA60A4463CD206016C425E8C8D2E6 /* UMPermissionsInterface.h */, - 6F4E4022F9A5F03E58A5199AAD4127FE /* UMPermissionsMethodsDelegate.h */, - 76D29060929ABEDA73D38B62C2FFAD56 /* UMPermissionsMethodsDelegate.m */, - 9BFE97469F8EBB187FAE310F59862C63 /* UMUserNotificationCenterProxyInterface.h */, - 70ADE43FF7A18F9C00EF2DE4DF54598A /* Pod */, - 14384A404F6A82EE191D0ABD4CE5EA2E /* Support Files */, - ); - name = UMPermissionsInterface; - path = "../../node_modules/unimodules-permissions-interface/ios"; + name = FBReactNativeSpec; + path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; sourceTree = ""; }; D0BA83EEEB4653FCD1FC36489973A9C7 /* NSData+zlib */ = { @@ -17251,16 +17506,6 @@ path = "../Target Support Files/CocoaLibEvent"; sourceTree = ""; }; - D1A3CE46773F000142DD93CD653B7140 /* Pod */ = { - isa = PBXGroup; - children = ( - FB9E12BEAEED9961476A04B776B5FFA2 /* LICENSE */, - 45D39F4D8637239EBCC5A2A40D9C1B68 /* README.md */, - 87E77CF31339DA6A1101CE4ADD0F7E0E /* RNFastImage.podspec */, - ); - name = Pod; - sourceTree = ""; - }; D1F73907FBDAB1DA6E534F286B6015F6 /* Support Files */ = { isa = PBXGroup; children = ( @@ -17275,80 +17520,122 @@ path = "../Target Support Files/FlipperKit"; sourceTree = ""; }; - D28205F4D052F6DFED609E76D144048F /* TextInput */ = { + D271D47D533C7395A960A2672DDD87A1 /* Support Files */ = { isa = PBXGroup; children = ( - A9E00A34A5703FE4ABE079A37420A613 /* RCTBackedTextInputDelegateAdapter.m */, - 8E0F7EEE9DDCDFA5D9EB9C5B049E7FB6 /* RCTBaseTextInputShadowView.m */, - 0D0653104BA4E9F8485AB6596BE5678C /* RCTBaseTextInputView.m */, - 4B5950713E47F66BC2696784B9937E39 /* RCTBaseTextInputViewManager.m */, - 690A05F90832961D7FE749FC31F1FD13 /* RCTInputAccessoryShadowView.m */, - 0BB9E60E9BCA30ED5A99A8F344EDB053 /* RCTInputAccessoryView.m */, - CF2873E4B2CEBD2FC34DA56588176ED4 /* RCTInputAccessoryViewContent.m */, - C476AD4F5CA61B74AC357631AA1F446F /* RCTInputAccessoryViewManager.m */, - 155D0F1E2BEFB2E49EF38730DD15B083 /* RCTTextSelection.m */, - 5C35D3A96CF857E50B4CED608D92F2A3 /* Multiline */, - E58716EBE7E6F6648EE57DD4CC3ECC86 /* Singleline */, + 475B3A1FEA03D7BF8245495E3756A5FD /* UMFileSystemInterface.debug.xcconfig */, + 5751B2BE13BC02558FB90B2C3DD04E30 /* UMFileSystemInterface.release.xcconfig */, ); - name = TextInput; - path = TextInput; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; sourceTree = ""; }; - D29FCF52C76C7588C235F68A2E31513E /* BugsnagReactNative */ = { + D436ADB788B1D5E70F9C6AB889D32023 /* Pod */ = { isa = PBXGroup; children = ( - 456C860CA3A2DD25E2F9F4A9FE56B7BE /* BugsnagReactNative.h */, - 910D50CD85DE5BAB15CFB3344F112A9B /* BugsnagReactNative.m */, - 3CD7A67ADEAB47B0809C59A0E735FEB3 /* Core */, - CA74596382299DB85CE91A6CF25D6C46 /* Pod */, - A8FE4AFDDB9531D2465F1E67D5823680 /* Support Files */, - CFAECE327F0D4E2D47A0BEEC982C187E /* vendor */, + CB2F96E3A191018568BACAAC52D89428 /* LICENSE */, + B58AC5C8CABAE9B472A076AEC3464D92 /* react-native-simple-crypto.podspec */, + 3C3CA9FFBD2A1454C9729D1917B849CC /* README.md */, ); - name = BugsnagReactNative; - path = "../../node_modules/bugsnag-react-native"; + name = Pod; sourceTree = ""; }; - D3421E87D2A7F72C681014425DB6A635 /* Reporting */ = { + D457AFBD273050C0A91AB0F7E57FC599 /* BugsnagReactNative */ = { isa = PBXGroup; children = ( - D61C94B77F820E765C5600366E43EA37 /* Filters */, + 4EB7BCA8F3060BC0BF81E980A3F6C384 /* BugsnagReactNative.h */, + BD8C712E7588F5E8C98B731E57DA0E69 /* BugsnagReactNative.m */, + E0DC7090AB256800EBCB024B6DC5C08E /* Core */, + 00AB36D8F8E688351BDEE345396FB480 /* Pod */, + 9EA46974B907001A9826EBC1085DC3F1 /* Support Files */, + 16892D053FF6FA83D367F27B11CA8A87 /* vendor */, ); - name = Reporting; - path = Reporting; + name = BugsnagReactNative; + path = "../../node_modules/bugsnag-react-native"; sourceTree = ""; }; - D344071B79F81660A3620E2CB084C9CA /* UMModuleRegistryAdapter */ = { + D5876C90DC3850AF5EF080C5ABA39CFE /* Default */ = { isa = PBXGroup; children = ( - F8F98C8E4883CD18E543279129575A7E /* UMModuleRegistryAdapter.h */, - 1F6C994069BF6D4C75770D79959F358B /* UMModuleRegistryAdapter.m */, - 78AFA083E8B7DDE95CE123E50480292F /* UMModuleRegistryHolderReactModule.h */, - 840B29DEE6C6EF5676519A689862FCD6 /* UMModuleRegistryHolderReactModule.m */, - B436D3F2B9217D9F332F061EC2502208 /* UMViewManagerAdapterClassesRegistry.h */, - 218A1C80D6C077B19A0053260F8ABD4E /* UMViewManagerAdapterClassesRegistry.m */, + 3C6C8AFA1030473E4CBE74C0DDA086B3 /* Base */, + 0E7505F79546191433B206B035610A31 /* CxxBridge */, + 4C19A57870C6DE2ECB988BDAF89B8BE0 /* CxxModule */, + 46D02ECCC70AA969B8718E03D3F2B4EC /* CxxUtils */, + B087052F9D7FE118B024DD3C8C6AC56D /* Modules */, + DA16D1E73C30CBE26B33CB4771C57406 /* Profiler */, + 91739E070F3075D6FEE510F0C5B5C8A9 /* UIUtils */, + B8DA92A341CDDFB4C1E3CB2D925DC55E /* Views */, ); - name = UMModuleRegistryAdapter; - path = UMReactNativeAdapter/UMModuleRegistryAdapter; + name = Default; sourceTree = ""; }; - D61C94B77F820E765C5600366E43EA37 /* Filters */ = { + D61E137F0C90128868B549E72D132FC7 /* UMNativeModulesProxy */ = { isa = PBXGroup; children = ( - 8EA2935DD483DD04CFF48AC2B8CA813B /* BSG_KSCrashReportFilter.h */, - 6DAAB122DF97957BCB44009CEEB1517B /* BSG_KSCrashReportFilterCompletion.h */, + DECA8018A1EEF2C4E9956EED27FA621F /* UMNativeModulesProxy.h */, + E830AC92262755C2F75DD42AEAF8F67F /* UMNativeModulesProxy.m */, ); - name = Filters; - path = Filters; + name = UMNativeModulesProxy; + path = UMReactNativeAdapter/UMNativeModulesProxy; + sourceTree = ""; + }; + D694D357FC3A007078D12A8F13858EB1 /* Tools */ = { + isa = PBXGroup; + children = ( + 2B6286FA09BB89F9A4F85C914C369FCB /* BSG_KSArchSpecific.h */, + 26DD56000724162A576C71F91BAAC7B9 /* BSG_KSBacktrace.c */, + 34C825A7E905352925835722B8C8C8A7 /* BSG_KSBacktrace.h */, + 7A184EC5672DB3B74B18D0B4883781A3 /* BSG_KSBacktrace_Private.h */, + 08B48104F77E77D12036C4DCF2FC5488 /* BSG_KSCrashCallCompletion.h */, + E538AB8635E4C63CF851AEDF51F804E0 /* BSG_KSCrashCallCompletion.m */, + C529C5A09E9C8618BF94AB88CE9F75D5 /* BSG_KSDynamicLinker.c */, + FAD4E29FEA233592C30A08BA83A8CFD7 /* BSG_KSDynamicLinker.h */, + 34F97EFB67AC70F7EBD4A36D84479A74 /* BSG_KSFileUtils.c */, + 3B45BDBC8E99B1E5BC5D196041031AAF /* BSG_KSFileUtils.h */, + E87EF6A68E1F2C36411D64DD0B9F38AE /* BSG_KSJSONCodec.c */, + 50F5CAA70BB1BA26998D5B713D91C06E /* BSG_KSJSONCodec.h */, + 6B7DDC3BF1CEB94EB0FC69ED3007F890 /* BSG_KSJSONCodecObjC.h */, + 878099AB4D046C6309958F1198C70B2F /* BSG_KSJSONCodecObjC.m */, + A5C6250905443356CFCF031CD00D61A5 /* BSG_KSLogger.h */, + 60DDBC030BF5D5BB45502D31CB5FD10C /* BSG_KSLogger.m */, + CC7862F62BACC115156A6724857486F5 /* BSG_KSMach.c */, + 4FBEB1ECEFEADA407C749A1E1ADCFE23 /* BSG_KSMach.h */, + 55AE436B644671AB91F9EE75FFF4AB01 /* BSG_KSMach_Arm.c */, + A4DA2B1B3289D8AEB084D56AD99B69F8 /* BSG_KSMach_Arm64.c */, + FD5FF97F665F9994663022299DF5B74E /* BSG_KSMach_x86_32.c */, + 87F14A7850EAF0A98EED0890AEFAE40B /* BSG_KSMach_x86_64.c */, + 193CED2DCA340288D30908C0802C05D5 /* BSG_KSMachApple.h */, + 8E656994523FD0B6EB65AC4EB81BC602 /* BSG_KSMachHeaders.h */, + F1A524568ECC5352902538AB8E44E8BA /* BSG_KSMachHeaders.m */, + 01B89DB928C2C8DE27EFE0F02E24BA81 /* BSG_KSObjC.c */, + C2E5D1F1E35AC184AC035DF596842089 /* BSG_KSObjC.h */, + BC9FDED44C7F4E87F1D096925E259F14 /* BSG_KSObjCApple.h */, + 8D9D1E2BED34E1EEA324F2AFA3C64956 /* BSG_KSSignalInfo.c */, + 9B2422CF70802E4E1E01EA9DB34DC77D /* BSG_KSSignalInfo.h */, + A38CEF72E84E4D8CCB3AF1580184553D /* BSG_KSSingleton.h */, + 85152428D8B21481787B9DE6A47B1B73 /* BSG_KSString.c */, + B523AB0AC4577A94C44BDEA527DBF0A9 /* BSG_KSString.h */, + 813EAEADC43DCFDDDE87F93384A514B0 /* BSG_KSSysCtl.c */, + 6B3E2F40E27B6FA2B0B0CDE3696A9F5B /* BSG_KSSysCtl.h */, + 5F1A4CA596C01CB76C880148E4242FC8 /* BSG_RFC3339DateTool.h */, + F602CDFC93CCB1F192C77B5FCF12362F /* BSG_RFC3339DateTool.m */, + 30322B00C1EF0C1502C263CDA08BC608 /* NSError+BSG_SimpleConstructor.h */, + 5EF20424331FE280ADEFAF6BB933172F /* NSError+BSG_SimpleConstructor.m */, + ); + name = Tools; + path = Tools; sourceTree = ""; }; - D6C2991C4C40CD41197596951C05E876 /* Support Files */ = { + D6AE73B3B3B631548EEC23C3C9B25AD2 /* Support Files */ = { isa = PBXGroup; children = ( - B8CE15BD4D857D963E523DDE4C02D111 /* UMTaskManagerInterface.debug.xcconfig */, - 7D5CD9BE92AB43A4215458B3794E4A4C /* UMTaskManagerInterface.release.xcconfig */, + C10C816D6B7FC6107D6C3908F781567C /* RNUserDefaults-dummy.m */, + 4F5FFD69044DE0CF964CE982ED4997A1 /* RNUserDefaults-prefix.pch */, + 92E7FD88520F0381C8BE02EA2E4EC923 /* RNUserDefaults.debug.xcconfig */, + 2D48EBF73418FDE34E4A6685BF019E63 /* RNUserDefaults.release.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; + path = "../../ios/Pods/Target Support Files/RNUserDefaults"; sourceTree = ""; }; D6CB6128173E8739370C9997341B0BD8 /* Static */ = { @@ -17440,28 +17727,28 @@ name = Static; sourceTree = ""; }; - D703C8F90064668D5CD5D24A07A866E5 /* Handlers */ = { + D70C3AF5E2C38D08253FA1D391BDE3E2 /* Support Files */ = { isa = PBXGroup; children = ( - D1ED42C56DC5FCC815A8BA2BCC5A8831 /* RNFlingHandler.h */, - 4641991E27A03A8E9B6D0E13A294E45C /* RNFlingHandler.m */, - 07EAEE7C3D00A06D5AE79813CBB1DDBA /* RNForceTouchHandler.h */, - 89604576AB251799A65DBAD5F05D1A56 /* RNForceTouchHandler.m */, - 3984A382171C5FDA575BD1C38060BE33 /* RNLongPressHandler.h */, - 3142D127674EAD61004C36F95108BE59 /* RNLongPressHandler.m */, - 07ADC75B821AF8F5D4B5327F2BF23598 /* RNNativeViewHandler.h */, - AF89F539CC356A48B11301CD40D2556D /* RNNativeViewHandler.m */, - BCA00DCC0F009D822BBD751887B83A58 /* RNPanHandler.h */, - 1E5E991D603126D65E3986BD551B20C5 /* RNPanHandler.m */, - CD2A07A92E6452F93F0F544982C468EB /* RNPinchHandler.h */, - C8E7806004C4DC8DFF006B2AAB08738D /* RNPinchHandler.m */, - 6CC77545A49BFB3DE12C88A4FC1FD542 /* RNRotationHandler.h */, - 9733E3EA059013A66F730CC18D6F7888 /* RNRotationHandler.m */, - 6AF7E1B8658037DF7DA7D129968BA1BD /* RNTapHandler.h */, - F350944EA40CEADDF0F4C7171F813B59 /* RNTapHandler.m */, + 38D49146D8902182769A1E71B69CE2DF /* rn-extensions-share-dummy.m */, + 14481E3A6FFF120E3C0E7AA64F7063BA /* rn-extensions-share-prefix.pch */, + 06A56230C14E41E096A9923585B75D48 /* rn-extensions-share.debug.xcconfig */, + BD86530E213F2225C67A4E11C51FDE43 /* rn-extensions-share.release.xcconfig */, ); - name = Handlers; - path = ios/Handlers; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/rn-extensions-share"; + sourceTree = ""; + }; + D7A57B67EB97FB1E3BB4153738EED852 /* Inspector */ = { + isa = PBXGroup; + children = ( + 0B63C1DED4922145836AA2E642AFEA97 /* RCTInspector.h */, + B38E9B3F31570A56DE84B43E72D581D1 /* RCTInspector.mm */, + CB178F8CC178C95C40F8D661E4ADE424 /* RCTInspectorPackagerConnection.h */, + 3D0E0CE65EB4278FDD03DA431F7980D3 /* RCTInspectorPackagerConnection.m */, + ); + name = Inspector; + path = React/Inspector; sourceTree = ""; }; D7B94100BE82F5720C3F0527B25C1046 /* Support Files */ = { @@ -17475,24 +17762,6 @@ path = "../Target Support Files/FirebaseCoreDiagnostics"; sourceTree = ""; }; - D815DDA3B843DAA1FADD64CF3ECB588D /* RNFastImage */ = { - isa = PBXGroup; - children = ( - AF3755175A28C62308EFFEF2C0372793 /* FFFastImageSource.h */, - 55F7906B5DB172E533F92E707FD54E71 /* FFFastImageSource.m */, - 940F2ED5D095A85104318D927C91282C /* FFFastImageView.h */, - 41CA5F14136BC00F49E8CA3D81983512 /* FFFastImageView.m */, - DA09DA19BA1F08B4FC77F346077C3D82 /* FFFastImageViewManager.h */, - B69AB15F6C5804973CC3C68F8F721F3E /* FFFastImageViewManager.m */, - 6EB5007C5F60CA9B86B49F973FAE04CE /* RCTConvert+FFFastImage.h */, - 339AA39474F875601CA8E4F14E88800A /* RCTConvert+FFFastImage.m */, - D1A3CE46773F000142DD93CD653B7140 /* Pod */, - 6FC3940998E055EAE81BFAAD4B33F98D /* Support Files */, - ); - name = RNFastImage; - path = "../../node_modules/@rocket.chat/react-native-fast-image"; - sourceTree = ""; - }; D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -17511,14 +17780,29 @@ path = "../Target Support Files/GoogleDataTransportCCTSupport"; sourceTree = ""; }; - DA5C0C93837245DA777160F9882BD360 /* VirtualText */ = { + D94B631ADF28FCA499F8A33F378CC112 /* KSCrash */ = { isa = PBXGroup; children = ( - 68B7A8740879F89A2CBFE41C610B990B /* RCTVirtualTextShadowView.h */, - 0AC02BB4AFC6EDDADFA0D8EAD2E9985E /* RCTVirtualTextViewManager.h */, + B4D0EF22143D7A0913572EC18A3B3DF3 /* Recording */, + 4F54348D6CC360C4AF373F2927F722DE /* Reporting */, ); - name = VirtualText; - path = Libraries/Text/VirtualText; + name = KSCrash; + path = KSCrash; + sourceTree = ""; + }; + DA16D1E73C30CBE26B33CB4771C57406 /* Profiler */ = { + isa = PBXGroup; + children = ( + 3365F37DC5C13BE00AEE78F612B23BE6 /* RCTMacros.h */, + 2152B1EDCA505F6259FF7FA653A834F7 /* RCTProfile.h */, + D0CF17BEBECBE98BA81D8120D72E9DD2 /* RCTProfile.m */, + D17D4F57B1C655FAAEC659AD35B8F9B8 /* RCTProfileTrampoline-arm.S */, + 0FDA53B97CEB9EECD2A1966D94C897A9 /* RCTProfileTrampoline-arm64.S */, + A9AA456219BF44242E56EDA9F74B95B3 /* RCTProfileTrampoline-i386.S */, + B22B7605941D7A7BF4C6A92B469BD746 /* RCTProfileTrampoline-x86_64.S */, + ); + name = Profiler; + path = React/Profiler; sourceTree = ""; }; DA64161C6FC52D25F77AB7C5D05B2828 /* Flipper */ = { @@ -17556,41 +17840,152 @@ path = Flipper; sourceTree = ""; }; - DAF5522B96D3BB752AD457737902F1FB /* Pod */ = { + DAD9AA0E3DE32970375289FF1B4542A8 /* Sentry */ = { isa = PBXGroup; children = ( - CD9B8971F619BA4C22DFA45EDBC286AA /* UMReactNativeAdapter.podspec */, + 8B4979F5348E68CD6231849E89CDFEBA /* BSG_KSCrashSentry.c */, + F15B0373069C0B581AFDD9B519DC58B7 /* BSG_KSCrashSentry.h */, + D65994D8884E9332444C83613BCEDA44 /* BSG_KSCrashSentry_CPPException.h */, + 64D4DC98154B5D64F7D7D60191BB0944 /* BSG_KSCrashSentry_CPPException.mm */, + 431C7930A878F6F267F385C5F0415118 /* BSG_KSCrashSentry_MachException.c */, + F1880F6B6DF200415BF221FB9A8293A5 /* BSG_KSCrashSentry_MachException.h */, + F5C09A77B6AC72BC2EAFBE0698BE504D /* BSG_KSCrashSentry_NSException.h */, + D2917C637ECC06C1DEC86BEC5BFCF434 /* BSG_KSCrashSentry_NSException.m */, + C9C9BB902DE7317043E3439C2FFD3E24 /* BSG_KSCrashSentry_Private.h */, + 2B5EC5BB829C668D3B8DBCFEDB728052 /* BSG_KSCrashSentry_Signal.c */, + 3C28AC9DFD721742AEA0E86C58BFC73C /* BSG_KSCrashSentry_Signal.h */, + D480A731B9A6D6FEB9ABBD7BD3FDFD0F /* BSG_KSCrashSentry_User.c */, + 9A7CD66AC4A0E175359962C75D0CAEA5 /* BSG_KSCrashSentry_User.h */, ); - name = Pod; + name = Sentry; + path = Sentry; + sourceTree = ""; + }; + DB8364632D046A62D1C34DF54E1B53CF /* Development Pods */ = { + isa = PBXGroup; + children = ( + D457AFBD273050C0A91AB0F7E57FC599 /* BugsnagReactNative */, + 73F797454A24A72E614268802D23A680 /* EXAppleAuthentication */, + A73D555E4B33EAF24D7E8444DA4E9916 /* EXAV */, + 91CF0BBF6FB0940CD79824BE965E29D4 /* EXConstants */, + E7B0F64184F065D7C4C4C948E08DFC0C /* EXFileSystem */, + 809E6941D0A6A693DF070D80D77079B5 /* EXHaptics */, + 568F2A4708C1558ED8797DECD1794252 /* EXImageLoader */, + 11B72E7F191C747C8F137B2CB2C811B1 /* EXKeepAwake */, + FDCFAE3800794DD0B221DBBE16E5D772 /* EXLocalAuthentication */, + 204645C13FDD16B99741AD59951660EA /* EXPermissions */, + 6372A3987C47659FA544E22C4857D790 /* EXVideoThumbnails */, + 44DB969611520B554B5CABA81B42D7CE /* EXWebBrowser */, + A6F26DB79DE7B3EE5E7EA4C2B02C7FE0 /* FBLazyVector */, + D023A0A55D27FCEDD50287F29B0559D7 /* FBReactNativeSpec */, + C1A1D67407089A250F74A8546C208B81 /* KeyCommands */, + 6692D5A9201A35555F4DC3D1B3B64AC9 /* RCTRequired */, + 5256889A12FA698C407B07BF15326741 /* RCTTypeSafety */, + 31D2CDC167C12EA7D78D6F5DC2D2BD97 /* React */, + 064F2AD3BFAB9A35A1D7B601A69540E0 /* React-callinvoker */, + F1E806CDF26CD96115CF0A1155EAEE5E /* React-Core */, + 3913D9DF7B6ED30BED25B99E35382EB9 /* React-CoreModules */, + 4F3C3053AA5B72982B3C20A1A6B0F967 /* React-cxxreact */, + 9AA9A89C108CE6C865C5F24103CB3B2D /* React-jsi */, + 8A8DB443ACAC89346F5706460EA71AA7 /* React-jsiexecutor */, + C2A050BE2CE81656719116DD8D2C0DAE /* React-jsinspector */, + A3436A3D1CD75F3944BF50983B8ADB54 /* react-native-appearance */, + 155A016203AD2BE722BC59673366A7B3 /* react-native-background-timer */, + 8DA937C3DC387680DAD019DF6B7C031B /* react-native-cameraroll */, + 8E3848FE379796EF7D1D6404AE93F66C /* react-native-document-picker */, + E5DD579485965A794D2BF74B7BB335EC /* react-native-jitsi-meet */, + 03E9B522AAF719FA2E04BD4A04819D42 /* react-native-notifications */, + 2AA65F28684F7DCCC22DE8D6A44BE523 /* react-native-orientation-locker */, + 25CC51A36A61744B3FE2CC6FFB44EB0E /* react-native-safe-area-context */, + CD790CBB6CDD6990CFCA46BC70D0ACCB /* react-native-simple-crypto */, + 81BE8842D4943994D346DF1D8904F4F9 /* react-native-slider */, + 6AE874C54743D51FBB5EF2C8D199C9DC /* react-native-webview */, + 0ADAFBAA71233146DFCEC47D0A470F22 /* React-RCTActionSheet */, + 09880E9385A862D423A5BBC74AB27DEB /* React-RCTAnimation */, + 9CFD676F26A02D7305208D860337E7F2 /* React-RCTBlob */, + EB452FF09D998BC210FA17F8AF65E44C /* React-RCTImage */, + 4195990F0FAFD7FB04FF4546F270A9C6 /* React-RCTLinking */, + 5A7B75161964A6AB28696947253E1C25 /* React-RCTNetwork */, + B2179D7F72B61C74CBAC5A0853E297C4 /* React-RCTSettings */, + A1CE5D430E74645EBEDFD85785B65B09 /* React-RCTText */, + A6E4C8EC7F236A6249FD3BD4185B5583 /* React-RCTVibration */, + ACD976F1CAB97AD12487A3B52BD09EC7 /* ReactCommon */, + 5853506C2B2F4F655A98363F54AF7F68 /* ReactNativeART */, + 5F4CC357BB8C728DC3B490B62A3D561C /* ReactNativeKeyboardInput */, + 5D52FF5E6B94A3E8EAD24BEAA8F640C9 /* ReactNativeKeyboardTrackingView */, + 16E7E525916182F514459FF0C06D78A0 /* rn-extensions-share */, + 9D861A6CAFF63340E3050C9558E957CC /* rn-fetch-blob */, + 4CFE37264523F531FC5B3BEAF64584B1 /* RNBootSplash */, + 0E24A58163C0747F619838AF67195B37 /* RNCAsyncStorage */, + 6ECC1FE38EDF25CC173F429FDDEB338F /* RNCMaskedView */, + A8B5D57D0FB4D5A6E5BAFD6667C4B74C /* RNDateTimePicker */, + 256C339FDBCC5E8CA3E3B3E9BC6F023D /* RNDeviceInfo */, + 87EE5D94E44721938B0FF0F745709C5B /* RNFastImage */, + 1996B8333FE30A311A73487010F01A52 /* RNFBAnalytics */, + ED19F6F1F91C32BEBB1019BAF0449EE9 /* RNFBApp */, + DBFB5ACDCE0C9176A0C9A31E99144C6A /* RNFBCrashlytics */, + 243E8B1E9A5BBC783F5D7C278248A1B6 /* RNGestureHandler */, + 0996A9E9776F7E9B1025CF61277B83DD /* RNImageCropPicker */, + 6825BB76D1E40D312AE2C10BD04E3636 /* RNLocalize */, + 9EDA3DD0EC605A719EE67B40731E808E /* RNReanimated */, + 6E933DA8AF69D19E50023FD7BD85EF7E /* RNRootView */, + F12AE86A1EFE0093B96EDCF41673BD78 /* RNScreens */, + 73C0F456C804D687F63EC41B693C547D /* RNUserDefaults */, + BD851FD21F57F0A54F4C4F711308F366 /* RNVectorIcons */, + 08108013DA1D6977475E2A7774802A9E /* UMAppLoader */, + C1C3FF894DBE00DF32BABE37FC542321 /* UMBarCodeScannerInterface */, + 95EE8C93F6DA96E8DFEAC51A56950BB9 /* UMCameraInterface */, + E7FCE42E49528383B422787807B0CE20 /* UMConstantsInterface */, + 5ACB716C9D63C8B2D99960703F2550F2 /* UMCore */, + DBB8204FBC07B6DB575BEE62FEAEF6B8 /* UMFaceDetectorInterface */, + B5E1BC173BEEAF3C4A9655F1E51D7F1A /* UMFileSystemInterface */, + F358F0C335FEF9D92014876ED6D8488F /* UMFontInterface */, + 0366A0E3D7904A29B83F80BB4ED9D851 /* UMImageLoaderInterface */, + 91D9AFB5B563199C31F0A7B0AF5D83BC /* UMPermissionsInterface */, + 4144A71C19AC98A393E8C72C4AFBFE64 /* UMReactNativeAdapter */, + C751C72AFB56BC0E8809FDDEEDD57F5F /* UMSensorsInterface */, + 19C53D749B2A50E4E5A240E0EDE258FA /* UMTaskManagerInterface */, + 1A6221E9EC5690E560E82986DD239BFB /* Yoga */, + ); + name = "Development Pods"; sourceTree = ""; }; - DB7CD353454FE2B4DEE248AAB3017BF6 /* UMSensorsInterface */ = { + DBB8204FBC07B6DB575BEE62FEAEF6B8 /* UMFaceDetectorInterface */ = { isa = PBXGroup; children = ( - 17DDE8D157980AA5BD8116757FB092A0 /* UMAccelerometerInterface.h */, - 49C8690A84109BB36B0446BC86CE12C1 /* UMBarometerInterface.h */, - 0E184FB3F9DA4686C1A80BDBABCA3196 /* UMDeviceMotionInterface.h */, - 14409C4F8F0301E0B456906CDC361D78 /* UMGyroscopeInterface.h */, - 9E440C343714FE4959B71309ABB82D0D /* UMMagnetometerInterface.h */, - 009D87202DE07E1EBBE31DE747F8A305 /* UMMagnetometerUncalibratedInterface.h */, - 1451A97A0001C25D77E8240BF1027FEE /* Pod */, - 4FE0F4EF5C4983C402C48CD928F64E6C /* Support Files */, + B62375929EF36FB848926680CC411838 /* UMFaceDetectorManager.h */, + 6E762C4F6F2EC40C4D0F701194BEDF67 /* UMFaceDetectorManagerProvider.h */, + 7F707AB74F4EB0620B5143E00BD2C1FB /* Pod */, + DCBEEA747FFF1335E315193C21BFB8CA /* Support Files */, ); - name = UMSensorsInterface; - path = "../../node_modules/unimodules-sensors-interface/ios"; + name = UMFaceDetectorInterface; + path = "../../node_modules/unimodules-face-detector-interface/ios"; sourceTree = ""; }; - DB803ADC5E2E7105A5736C7261E42791 /* React-jsi */ = { + DBFB5ACDCE0C9176A0C9A31E99144C6A /* RNFBCrashlytics */ = { isa = PBXGroup; children = ( - AC1E412F15D9043B12CE835BB2ECBD5A /* JSCRuntime.cpp */, - 2E71DA2D60FC56604BFCB521A774C92D /* JSCRuntime.h */, - 49640788344D20B32CFE837D7BBCF130 /* jsi */, - 2670145818F8C132EC82F7751F4FD798 /* Pod */, - 64B47B1FD3C9B34FDC881BCFF71F68D7 /* Support Files */, + 1FC8B11F6FE6438E0FEF56E176E425CA /* RNFBCrashlyticsInitProvider.h */, + 1DCBCAAA1C5B8CFBA388A0B189CA71E0 /* RNFBCrashlyticsInitProvider.m */, + 0C8C2376C50727E4678CBBB2EE348844 /* RNFBCrashlyticsModule.h */, + 29B51DC11275B6010DEF513501C70644 /* RNFBCrashlyticsModule.m */, + 2CF847AB467C8F75540E95B68B367648 /* Pod */, + 8F7227A72EE9E4FA1E550C154F66BF0E /* Support Files */, ); - name = "React-jsi"; - path = "../../node_modules/react-native/ReactCommon/jsi"; + name = RNFBCrashlytics; + path = "../../node_modules/@react-native-firebase/crashlytics"; + sourceTree = ""; + }; + DC0D73D62BC1461EDF9D0DF0289E2703 /* Support Files */ = { + isa = PBXGroup; + children = ( + B41FBD7F6CF25150FA96D491254ABD65 /* react-native-slider-dummy.m */, + 0BC23B08FD01D223E72E30615999752A /* react-native-slider-prefix.pch */, + 0890F5DD4054F3B7A83F4ED726F53EF5 /* react-native-slider.debug.xcconfig */, + 0C7C52EEFCA52424F8740FCA770F370E /* react-native-slider.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-slider"; sourceTree = ""; }; DC2C6F5DD7947620238605984310042F /* OpenSSL-Universal */ = { @@ -17617,58 +18012,50 @@ path = "../Target Support Files/YogaKit"; sourceTree = ""; }; - DCD18CB302246D76745C1D378DF83ECF /* RNGestureHandler */ = { - isa = PBXGroup; - children = ( - FDF70BEB12C406F322F9EE7573864BE1 /* RNGestureHandler.h */, - 85920769A67980742E26BD6D5DD20327 /* RNGestureHandler.m */, - 60E892288018FA0EB431FBD7CA1C5AC8 /* RNGestureHandlerButton.h */, - B66CA779567DA05361DA46F034BBF906 /* RNGestureHandlerButton.m */, - 38162BEE9799790624835DCD1750F769 /* RNGestureHandlerDirection.h */, - 68FA058DF60DBB40B30C7B2C1285DB17 /* RNGestureHandlerEvents.h */, - 4A2DFEB156864F57DBEF42F4071B1EBA /* RNGestureHandlerEvents.m */, - 2C374255E35FB55E75A6438EEA6E61BB /* RNGestureHandlerManager.h */, - 3CB484617B32D8C2ABEEEB0DAF1CF6BF /* RNGestureHandlerManager.m */, - 870B3102B3CD8E9D89FAAA197875B50A /* RNGestureHandlerModule.h */, - 65E81EA296BD259AB8E0BEE3EF4529ED /* RNGestureHandlerModule.m */, - AC5BB9D02C5CCBA69F7401F894B9152A /* RNGestureHandlerRegistry.h */, - D06903DA43987F38A89CFD31562F611C /* RNGestureHandlerRegistry.m */, - 0C854B881FA802C14ADE0FF649C666E6 /* RNGestureHandlerState.h */, - C821CE4EDCA77EAB61D4C95468B99CE1 /* RNRootViewGestureRecognizer.h */, - 7F8D89D78A2EB910E71744416993BF15 /* RNRootViewGestureRecognizer.m */, - D703C8F90064668D5CD5D24A07A866E5 /* Handlers */, - 6B855C494DBBDF1AD7A8BAE290A60E33 /* Pod */, - 587054A51D364FF13FE685F4560DAAE0 /* Support Files */, + DCBEEA747FFF1335E315193C21BFB8CA /* Support Files */ = { + isa = PBXGroup; + children = ( + 1A9EFA626A102B4250C205E2D94A8D72 /* UMFaceDetectorInterface.debug.xcconfig */, + 90093221BAE0DBF1DA1E4AD409AF4D68 /* UMFaceDetectorInterface.release.xcconfig */, ); - name = RNGestureHandler; - path = "../../node_modules/react-native-gesture-handler"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; sourceTree = ""; }; - DD84773C2168C816D5D5621604894FFF /* React-RCTImage */ = { - isa = PBXGroup; - children = ( - 6EDC5E5307CBE6D8B85172A4F9D1FFE0 /* RCTAnimatedImage.m */, - 7AE77E1DCDC659303A03C783F929EA4F /* RCTDisplayWeakRefreshable.m */, - 67CF0C6D3EDE363E59393AE8805F6799 /* RCTGIFImageDecoder.mm */, - 590F73C41740BBC036546D26E389842A /* RCTImageBlurUtils.m */, - C41599671F15C864ADB088C60B32DE20 /* RCTImageCache.m */, - D340B4EDA1C2D6952B90A2FDD2CE52BA /* RCTImageEditingManager.mm */, - 9D8B89C272CF86B251E03058FD3D8ACA /* RCTImageLoader.mm */, - 1C45981E5757F0143DC0935F319FEA91 /* RCTImagePlugins.mm */, - 69F1B083C96093F9C005C9C0F18BE5F6 /* RCTImageShadowView.m */, - 3938AE2C818BBA7CE57F743188B3118A /* RCTImageStoreManager.mm */, - 6D57017CE6DC5FED451665110F822998 /* RCTImageURLLoaderWithAttribution.mm */, - DD090DEFEE78CA5F9A5C0824C58F138E /* RCTImageUtils.m */, - 149BE74E831F9AA2914960A5C632B764 /* RCTImageView.mm */, - 5637B77A3213C2C807B20486728CC434 /* RCTImageViewManager.mm */, - 856F519FB7E58FD7B2108F74EF0A1A1B /* RCTLocalAssetImageLoader.mm */, - AAD5E595AF2F03838EEC047E74643F8E /* RCTResizeMode.m */, - 52C0FFC9EEA2DA32AD3BD306C03BF09D /* RCTUIImageViewAnimated.m */, - 2583B775845F0F0D31F4B23DFAA14608 /* Pod */, - CC3629E657F2FC30028C328D0E97475C /* Support Files */, + DCEE291802627ADFB9796E66166FA26C /* Pod */ = { + isa = PBXGroup; + children = ( + FB89E6B361004EEF9AC9A6B8C0C8AE12 /* LICENSE */, + DCF94CBADA035B27DFD28E45D2763719 /* react-native-jitsi-meet.podspec */, + ACD1D731388E27A1289D03009CC8EBE1 /* README.md */, ); - name = "React-RCTImage"; - path = "../../node_modules/react-native/Libraries/Image"; + name = Pod; + sourceTree = ""; + }; + DCF3B8CF29C53C6379CFFE360027C8B5 /* UMModuleRegistryAdapter */ = { + isa = PBXGroup; + children = ( + 72F56F33BFE2BCC4CF4DE02128789CD9 /* UMModuleRegistryAdapter.h */, + 714B2429B32C0084EE361B57F2300C67 /* UMModuleRegistryAdapter.m */, + 246FC8FE7F1893E54E265DE637E63CD2 /* UMModuleRegistryHolderReactModule.h */, + 58CDCF71B71608DB5507D1FBF65EAA9E /* UMModuleRegistryHolderReactModule.m */, + 4CD9E58F8C2B24176916FB6CD2862D14 /* UMViewManagerAdapterClassesRegistry.h */, + 6313B94F7597342A262B9DE88C8E3AE5 /* UMViewManagerAdapterClassesRegistry.m */, + ); + name = UMModuleRegistryAdapter; + path = UMReactNativeAdapter/UMModuleRegistryAdapter; + sourceTree = ""; + }; + DD88E986A3B6EDD7EA97CFD477A20A59 /* Text */ = { + isa = PBXGroup; + children = ( + BBA166BE67A84D2F441EF657DC27E453 /* NSTextStorage+FontScaling.h */, + 4F0CA991D1B308FA5DE4E5F6F48509F2 /* RCTTextShadowView.h */, + 6AEF4E8A7EA21150463BC8A9837C4490 /* RCTTextView.h */, + 940B22BA9A4EB605FC1C5AABA249EDEC /* RCTTextViewManager.h */, + ); + name = Text; + path = Libraries/Text/Text; sourceTree = ""; }; DD8BE39581B027039CA45CB5DB5F5DEB /* Pods-ShareRocketChatRN */ = { @@ -17687,25 +18074,16 @@ path = "Target Support Files/Pods-ShareRocketChatRN"; sourceTree = ""; }; - DDA7508A190BA11F1DC792B7370F1072 /* Sentry */ = { + DE58C1419FF08444F815FEE154FCB04A /* Support Files */ = { isa = PBXGroup; children = ( - 012E91A98522B764E7DF1BE713D5044A /* BSG_KSCrashSentry.c */, - 4C83A4ADC35286164B5F8599DEBC1A36 /* BSG_KSCrashSentry.h */, - 446908C47C306A48B98B01AA87A5B873 /* BSG_KSCrashSentry_CPPException.h */, - 2BA31F4E951C3CA9392E5BA152BFAEC8 /* BSG_KSCrashSentry_CPPException.mm */, - 44749FF42F1EF6CC82546827D4A38E9F /* BSG_KSCrashSentry_MachException.c */, - 7F4E8E646FD0BA4E06F6668A41C92D5B /* BSG_KSCrashSentry_MachException.h */, - 154A009D0FEFB4A1819BAB2A85FBC78A /* BSG_KSCrashSentry_NSException.h */, - A06771E1FA15F21EA27C833B19E56899 /* BSG_KSCrashSentry_NSException.m */, - 0FEDE1E936A9E05A61E9523DEBE69ACF /* BSG_KSCrashSentry_Private.h */, - 9D363A821FA6441C0415E5D82EAFC999 /* BSG_KSCrashSentry_Signal.c */, - 3EAD0882665BC023557F77A1296A4F54 /* BSG_KSCrashSentry_Signal.h */, - 6DC73D7830AD0849F776EE7B654C78CF /* BSG_KSCrashSentry_User.c */, - 2C91429E12ACB86DA5CBA12CEA72B630 /* BSG_KSCrashSentry_User.h */, + 45BB0DA6DB6D0FDFD34D146B35C23579 /* RNLocalize-dummy.m */, + DA6199AE33BE0BA85B5C974A74F9A5A4 /* RNLocalize-prefix.pch */, + 41BEE2AA923F06A02EC3BF029070EFA0 /* RNLocalize.debug.xcconfig */, + 5271BB91ADBC9FCF274C4F336E52D3E5 /* RNLocalize.release.xcconfig */, ); - name = Sentry; - path = Sentry; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNLocalize"; sourceTree = ""; }; DE5EC9CA7DC4792DB54E880EBB2C4AFD /* Support Files */ = { @@ -17720,115 +18098,55 @@ path = "../Target Support Files/CocoaAsyncSocket"; sourceTree = ""; }; - DED22F350E43D6594180BA9764FDCF52 /* UMModuleRegistry */ = { + DEA4EF4B849E7AF144F51FEE851FF22F /* Pod */ = { isa = PBXGroup; children = ( - 2A1F125175A5F67B88C8B4BC77473475 /* UMModuleRegistry.h */, - 26BDD6260EF1FCC4C3C43EB3A19C7DC0 /* UMModuleRegistry.m */, - B0EB7CB6752B86283C260B92DC6A4963 /* UMModuleRegistryDelegate.h */, + B49923FF554A640004BD5D0741C2CEEE /* UMPermissionsInterface.podspec */, ); - name = UMModuleRegistry; - path = UMCore/UMModuleRegistry; + name = Pod; sourceTree = ""; }; - DF60B72AE6064BC3E77FCBAC39680F1F /* Inspector */ = { + DF5B1065C71CA6EEE3B8A7D61DE598B4 /* Brushes */ = { isa = PBXGroup; children = ( - 8DD4C456AC60D79C47047A17DC8B9BF2 /* RCTInspector.h */, - 557837D72D0D4D620A0A412D3F2C84CF /* RCTInspector.mm */, - 94F02BA5410D8CBECFD4EF39436ED427 /* RCTInspectorPackagerConnection.h */, - 41F7EDB221C6D8E6528242972B85E19D /* RCTInspectorPackagerConnection.m */, + EE369D136D84453E1A3A02C5104D67F1 /* ARTBrush.h */, + 97D492645A87D04D738F814A6F684B5F /* ARTBrush.m */, + B7F87683167423E18918050232C0F9F5 /* ARTLinearGradient.h */, + 06F6A312CAE9E8C00B3ADA6FEABD433D /* ARTLinearGradient.m */, + 0295B51E8CEA0461CC65504BB687DCF5 /* ARTPattern.h */, + 9F79487D60FD7EA8B246E90D3BF4B209 /* ARTPattern.m */, + F244FA41509E882BAFEE150660326CE2 /* ARTRadialGradient.h */, + 88D07320CD70DE4FAF6B2B22BCD24E90 /* ARTRadialGradient.m */, + 895142227D5E1DCFE5188DA32DFEE118 /* ARTSolidColor.h */, + 2528BE37602E228D2E89406E50886958 /* ARTSolidColor.m */, ); - name = Inspector; - path = React/Inspector; + name = Brushes; + path = ios/Brushes; sourceTree = ""; }; - DF6D2A9049D8ABC98C3BF22AE41A0E21 /* Development Pods */ = { - isa = PBXGroup; - children = ( - D29FCF52C76C7588C235F68A2E31513E /* BugsnagReactNative */, - 79EF0233F2646DF59943395DE37EE27E /* EXAppleAuthentication */, - A0E6E54603E8C77E85CDD5F77A9BD29C /* EXAV */, - 020990EB89C25BA58231AD3AC41CE5B0 /* EXConstants */, - 873ACEFADF446CBED487B6F5EEF385B5 /* EXFileSystem */, - 2F224C0F074AF242A9928E738E770F5B /* EXHaptics */, - 1D960554F77201415EAE9651353B2CE0 /* EXImageLoader */, - FD4264CCFBFA7DEFC518D4E5515E9239 /* EXKeepAwake */, - 6797AC2B6A2C539EE54A5CFA08B7B85F /* EXLocalAuthentication */, - A735CC162BE0CCD9DA358DF5B8EA6C63 /* EXPermissions */, - 5E8DF45D053F568D5842804099ABFED0 /* EXVideoThumbnails */, - BC7229D478D2FB42DC448BA47CC0F019 /* EXWebBrowser */, - 08682B9BA15D62C558A160E35616C1FF /* FBLazyVector */, - 87EE96C2FB3D56A9A9180C73575005EB /* FBReactNativeSpec */, - 7290BB1C5ED77A029A997A96E84DF050 /* KeyCommands */, - 1132634C493EEAAD85ABB986608F2B98 /* RCTRequired */, - CE26F5950632D604446ECE7CAC892573 /* RCTTypeSafety */, - 685277F7E011FB0DC3733EDAFA6E666B /* React */, - A0D7E04562CC594FCFC3E199998861B9 /* React-callinvoker */, - 9B637638FA2E4690C0D96DCE77F2265D /* React-Core */, - 36EFF12934B4BC4E0F28DDDBF71C0357 /* React-CoreModules */, - 24D8DE1E4562FAA738CA0E576FAF96D2 /* React-cxxreact */, - DB803ADC5E2E7105A5736C7261E42791 /* React-jsi */, - 48DF91A2E2B7B514FBC4D67675A2CB73 /* React-jsiexecutor */, - 1B0A308C600B2BD4046EBEE75BFCACC4 /* React-jsinspector */, - 0B8020C2C440930142E6FAF69A94AEAA /* react-native-appearance */, - B1F9171927A22EFEE1E2501473F3CB26 /* react-native-background-timer */, - EE5FBA78E81D47F6E70757FCC2BD777C /* react-native-cameraroll */, - FA2A97CF51DA0EED399874F8378F2E11 /* react-native-document-picker */, - CEB9FB8489E5850B59B9E129EF579722 /* react-native-jitsi-meet */, - 78C0216E48648813530C044AD73B16A2 /* react-native-notifications */, - 9B2D511B0DEEC838BFEC0BED4DA39EC7 /* react-native-orientation-locker */, - EA64D4D992D829365FCFA21870C3BDF3 /* react-native-safe-area-context */, - E8F7D1070E29EBC498903BAB93F64A52 /* react-native-slider */, - FA25E67F724E7C844716CD9551E0A48D /* react-native-webview */, - AA9D5A861DB8A9D3E45E2D9DF4350BBB /* React-RCTActionSheet */, - 0C57CE8FD5DC879AE192FD0131573BA5 /* React-RCTAnimation */, - 543033DA6F7C436D4FEFF1AE35AFE1B8 /* React-RCTBlob */, - DD84773C2168C816D5D5621604894FFF /* React-RCTImage */, - A7740720AF3A9B14EB02006F0C3ECBC3 /* React-RCTLinking */, - E664E5CE1E7B64A2EC005089E0EC7643 /* React-RCTNetwork */, - 7661CDFCD9DEE88DCEE92AA0BEEB9938 /* React-RCTSettings */, - 1A5DF7367F074772C94D37C6F61C8E1B /* React-RCTText */, - AA8E57F4B15A5FFF741FC743134B442C /* React-RCTVibration */, - 1173600D3DE88233614795BB1EF16817 /* ReactCommon */, - E1C4F8A81CDF30ACE9F8B3D5878EFD24 /* ReactNativeART */, - 785AE6A0182278B30932095684656CF5 /* ReactNativeKeyboardInput */, - 346D910AFBC139F615347025D7968AE5 /* ReactNativeKeyboardTrackingView */, - CB91F0E1CAB1CC25A85F7543E8054948 /* rn-extensions-share */, - A0D9FEDB06BCA8C774CDE2FF4783E8C2 /* rn-fetch-blob */, - B7FFF3B4F9254EF5E7352886F7D0BA2E /* RNBootSplash */, - 621B1E96F4068DE96A0C73DE2BA6E3A8 /* RNCAsyncStorage */, - 8FDD4206368EBFDE23203A2F18F581DD /* RNCMaskedView */, - 86057D036E3EC5316A6FA6202412B6FE /* RNDateTimePicker */, - E5A29E06826D0278928ABD5316796EB2 /* RNDeviceInfo */, - D815DDA3B843DAA1FADD64CF3ECB588D /* RNFastImage */, - 80A180803F5948FAEE2307B62D932B51 /* RNFBAnalytics */, - 84F4740E4BF5EF272501FC4FF3B6054D /* RNFBApp */, - FD81C4DAA5ECF23E7F1F7A5B395E4E58 /* RNFBCrashlytics */, - DCD18CB302246D76745C1D378DF83ECF /* RNGestureHandler */, - 68939D77DFBF58631F305F3AAF443738 /* RNImageCropPicker */, - 3B96DAD66E4248E1673D835017EDCE10 /* RNLocalize */, - 30C9ADAB56762AAA3E6BDAC0821E66D7 /* RNReanimated */, - 325535D5D4CDDC93F2A01268E8F38396 /* RNRootView */, - E49819BA11537122EEA93ED0FF07D21D /* RNScreens */, - A1CE2FF922646168FE332E99EA5AD7DF /* RNUserDefaults */, - C6E2EE18E0DD134B76105DF7F82C613E /* RNVectorIcons */, - 4A5A0673B8B45C06F8AD24B8BD17EDA3 /* UMAppLoader */, - 5F045128F608451B0D1BD06CFA0C5E86 /* UMBarCodeScannerInterface */, - 4FDBA7480894C6E814049E6BD868686E /* UMCameraInterface */, - E1ECE8021D37E963DC855463BE9DE165 /* UMConstantsInterface */, - 208DA16BBE6D847A0E155DAA172E6AA8 /* UMCore */, - 7F1E68D1DFF6A19EFA984BEF0805C996 /* UMFaceDetectorInterface */, - B7F77BE4CAD46EF61D49D207E1318D06 /* UMFileSystemInterface */, - 4910DC168C07CEA5BFACF51F1C7E6662 /* UMFontInterface */, - E9D805AB685D99DFFD777B79C83E209A /* UMImageLoaderInterface */, - D043F845B07ACDA1337E5ACDD5D40EE8 /* UMPermissionsInterface */, - C37A4181B6117F200231B1A89DCDD835 /* UMReactNativeAdapter */, - DB7CD353454FE2B4DEE248AAB3017BF6 /* UMSensorsInterface */, - 2667D906D41BC0B1430ADEBD42377934 /* UMTaskManagerInterface */, - 84611CF279D5E04071C06E90CB2C8D54 /* Yoga */, + DFEF5E8278B4ADE9B3F54A2974B98392 /* core */ = { + isa = PBXGroup; + children = ( + 2B8078DA261F8C1EF77F9DDD4E1CA3C3 /* LongLivedObject.cpp */, + 1A746830C36F524041D35A9875F9BC87 /* LongLivedObject.h */, + 19F3B1E85DEDE443A4D691204846420A /* TurboCxxModule.cpp */, + D34ED1E59A8C518300CB6CAAD73BDF70 /* TurboCxxModule.h */, + A767A2F23DF3F32017F033FA84A00D28 /* TurboModule.cpp */, + F555A239F2130526E0F1260B37E1DDD3 /* TurboModule.h */, + FCC2B1503D651ADC9F6F0161F199446A /* TurboModuleBinding.cpp */, + BBD4361A03B64E5742D4F88DE5A2A478 /* TurboModuleBinding.h */, + BB73684B1FFD013D5BD82C59D3872573 /* TurboModuleUtils.cpp */, + 16DC1CB0294D2F0F40D23395F18527FB /* TurboModuleUtils.h */, + 9926F96DCA4A85A5BFD82384C0894147 /* platform */, ); - name = "Development Pods"; + name = core; + sourceTree = ""; + }; + E0DC7090AB256800EBCB024B6DC5C08E /* Core */ = { + isa = PBXGroup; + children = ( + ); + name = Core; sourceTree = ""; }; E0F77B312F1704D072AF60F482023F45 /* Support Files */ = { @@ -17843,408 +18161,397 @@ path = "../Target Support Files/SDWebImage"; sourceTree = ""; }; - E1C4F8A81CDF30ACE9F8B3D5878EFD24 /* ReactNativeART */ = { - isa = PBXGroup; - children = ( - D7944E5A513971BF665F70699EAA88B3 /* ARTCGFloatArray.h */, - B87583B1A79ADB92AA6A3BDEBB40FB2B /* ARTContainer.h */, - EC577564B4218D22378D25F459407B2D /* ARTGroup.h */, - B2231AA2A6C89D8C24B89FE88890ADF3 /* ARTGroup.m */, - E03751AD54F23657B6F74EA4C08F74A1 /* ARTNode.h */, - FC0F5A02284FAE4453FF9203B1B09CF6 /* ARTNode.m */, - 267FE598D55784C0942CD9A34A6B4128 /* ARTRenderable.h */, - C8DA6D312263F96893BF291F3AA57FE2 /* ARTRenderable.m */, - 77005B4B7CCC89A73D1CAFD488100EA6 /* ARTShadow.h */, - CB3368D04A2DD89077159C210647FB7B /* ARTShape.h */, - 66BB210CBCA5F4AD9251055C78E34EB5 /* ARTShape.m */, - FA868C8AEFC363B7DCA6560CD8CB2C08 /* ARTSurfaceView.h */, - C3C050640767572917109B49EED829C0 /* ARTSurfaceView.m */, - 0FCDB3D5FD7684FE9738D1D5DA00CCD7 /* ARTText.h */, - BA5519A71D70FC7E93734EBAAF1B53F8 /* ARTText.m */, - 6CD23DC17E5F3C34F1EAD553FC4B1368 /* ARTTextFrame.h */, - 90DF2E522D992D90A49BEBD74E5284A1 /* RCTConvert+ART.h */, - 6DDD234F1688A99CCF798FC92C3AA46D /* RCTConvert+ART.m */, - 959F92708DEAA259DF712239FB2DD9AB /* Brushes */, - B3CC1B0755367A1B3DEE2BA042399D9C /* Pod */, - 620DCC7D5E23C7287BE81C01E9032188 /* Support Files */, - 9CEDA481FEF632D8ECDB04693E5A10B8 /* ViewManagers */, - ); - name = ReactNativeART; - path = "../../node_modules/@react-native-community/art"; - sourceTree = ""; - }; - E1E421BBB7286321C148B488D08B6AD7 /* Support Files */ = { - isa = PBXGroup; - children = ( - 3847A7169F54643DC41F1A70EA0C9D8A /* EXVideoThumbnails-dummy.m */, - 7028FB50E7C540E83D2A4CF7D6996F02 /* EXVideoThumbnails-prefix.pch */, - AD84635EE517890E530B9D01221D50D9 /* EXVideoThumbnails.debug.xcconfig */, - 5FAEB2AE280C89F3B2E4C883DDB5519F /* EXVideoThumbnails.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXVideoThumbnails"; - sourceTree = ""; - }; - E1ECE8021D37E963DC855463BE9DE165 /* UMConstantsInterface */ = { + E28446788BF6E9788E3C7C6D22153252 /* Pod */ = { isa = PBXGroup; children = ( - 41CE4DDEE3F74FEB4ECC75F743A0E5E8 /* UMConstantsInterface.h */, - 4E82CBDDFC88C93AFFDEC63D7F77AAFD /* Pod */, - 4E7A42514D1A76EC347B3C7C4A15D16E /* Support Files */, + F340895AE3DDDDF83861D0AEB2754E7F /* React-RCTSettings.podspec */, ); - name = UMConstantsInterface; - path = "../../node_modules/unimodules-constants-interface/ios"; + name = Pod; sourceTree = ""; }; - E3439D30DC54F3B49C6C0139E44F596E /* Support Files */ = { + E44B1983FF0988786CB6D31C19A122A2 /* Support Files */ = { isa = PBXGroup; children = ( - 817FC9D5233E9F4DA79E63E574244283 /* React-RCTAnimation-dummy.m */, - 9892AC57B2D11F83B974FADF819E7B3D /* React-RCTAnimation-prefix.pch */, - 3F6A8412203B8EBE749B35D196F12915 /* React-RCTAnimation.debug.xcconfig */, - 87990953DE6B7AE787098538E6ADE5C9 /* React-RCTAnimation.release.xcconfig */, + 69D1E21A94B6CD5E5F6603B43885AD34 /* ReactNativeART-dummy.m */, + 858D2A524F08EFB1CA0999CC5D4C55F2 /* ReactNativeART-prefix.pch */, + 0D7DEAC6D70FF15A93E3EB7002B3F4EA /* ReactNativeART.debug.xcconfig */, + C5CA0A7B52FE174A212C2B1468843BD5 /* ReactNativeART.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; + path = "../../../ios/Pods/Target Support Files/ReactNativeART"; sourceTree = ""; }; - E367E3551FAC1C1AA58BBA9A24730874 /* Pod */ = { + E5AC3C688F5A7D30AFC84D4F740D3F33 /* Pod */ = { isa = PBXGroup; children = ( - 3DE4DFD747194E1C890D16D91A9AC4A8 /* LICENSE */, - D877DE4156A4D3B475AFDF2C5963C8D4 /* README.md */, - 3ECB76D32C84A2F5405D408FA85A9362 /* RNScreens.podspec */, + F92493B05E192084869BB32DF794B09D /* LICENSE */, + 05C2BC89802FD8B5C48D932C9C843808 /* README.md */, + 47E0D3894A13E58CC691204B73160DAB /* RNFBAnalytics.podspec */, ); name = Pod; sourceTree = ""; }; - E49819BA11537122EEA93ED0FF07D21D /* RNScreens */ = { + E5DD579485965A794D2BF74B7BB335EC /* react-native-jitsi-meet */ = { isa = PBXGroup; children = ( - AFE821B9CF33BCFA69769E00511A4CAC /* RNSScreen.h */, - D5C4C528C5F7D7C8CD0F56A9349E9D6B /* RNSScreen.m */, - 64C4C29F3B314A8C3784A2022026B0E8 /* RNSScreenContainer.h */, - 6C8862E12496E7697A9DF92FC7A5131B /* RNSScreenContainer.m */, - 8EF94749AF7D5A568E7346572B5D31C9 /* RNSScreenStack.h */, - 4830CD7A5CDD2F1723ABF2AB5D3C7FC0 /* RNSScreenStack.m */, - 54A6E487DB2F1751784F728350946322 /* RNSScreenStackHeaderConfig.h */, - 4CD30803AFB9824BBE50FCA3F6145D07 /* RNSScreenStackHeaderConfig.m */, - E367E3551FAC1C1AA58BBA9A24730874 /* Pod */, - FF2FD334C4DDBD3DC2498777BB33362B /* Support Files */, + 76EF30C29804FE3F28BB88D88F79DCB0 /* RNJitsiMeetView.h */, + C601EF69E33157791DF6996BBD80C7EB /* RNJitsiMeetView.m */, + BC63C1CF2DB0D3038568B54B1DC909E0 /* RNJitsiMeetViewManager.h */, + BB95C3E1D0D3F79114987E36C0717C9E /* RNJitsiMeetViewManager.m */, + DCEE291802627ADFB9796E66166FA26C /* Pod */, + 237C75EEE68D83B7788F288220977C63 /* Support Files */, ); - name = RNScreens; - path = "../../node_modules/react-native-screens"; + name = "react-native-jitsi-meet"; + path = "../../node_modules/react-native-jitsi-meet"; sourceTree = ""; }; - E54D73DF5CDDC336F465E809878F2E4E /* CxxModule */ = { + E6140063764FD6382E737EFCDB69902E /* FirebaseAnalytics */ = { isa = PBXGroup; children = ( - FB7079DFC1E58A5E1B5B89081640875B /* DispatchMessageQueueThread.h */, - 8CB4AA67BD2B213132F628BADBB74527 /* RCTCxxMethod.h */, - 0F1C722F4B456CC98E1A59E169555EDC /* RCTCxxMethod.mm */, - 44F927D14C6D58D69095C4C2C62298ED /* RCTCxxModule.h */, - 1EA3646E7747349B4D4B73F91D688BE4 /* RCTCxxModule.mm */, - FC5EE999FCA5EFB1DDAF60710B912F64 /* RCTCxxUtils.h */, - C5D47C7F1E0D3601E4E12DE1B2D42CEE /* RCTCxxUtils.mm */, - A6BD875B4BAD5FF60A223E6B55FE2A2E /* RCTNativeModule.h */, - BDCDEFE731D4FE20F8FC6E23D341D96F /* RCTNativeModule.mm */, + C24E4790744A3D72305911413E38EEFB /* Frameworks */, + C297D5D7D24ADCDB948651E545F210EE /* Support Files */, ); - name = CxxModule; - path = React/CxxModule; + name = FirebaseAnalytics; + path = FirebaseAnalytics; sourceTree = ""; }; - E58716EBE7E6F6648EE57DD4CC3ECC86 /* Singleline */ = { + E61FCDAAB3D31394CE807B5C56ECD667 /* Pod */ = { isa = PBXGroup; children = ( - E28B15566EBCC817DE30ABB0DCF62A23 /* RCTSinglelineTextInputView.m */, - F5784CDDB261C02F14394FDD99A97BE1 /* RCTSinglelineTextInputViewManager.m */, - 0E978435C655BDABC0F5AFB1ED385A0A /* RCTUITextField.m */, + 7DF5B9A95AE02B2D81ED25BAB0BC35D0 /* EXHaptics.podspec */, ); - name = Singleline; - path = Singleline; + name = Pod; sourceTree = ""; }; - E5A29E06826D0278928ABD5316796EB2 /* RNDeviceInfo */ = { + E634ABFE715D9909B620E47C612920E1 /* Drivers */ = { isa = PBXGroup; children = ( - BE0D50CFB583D551B6FBB45D768E65C3 /* DeviceUID.h */, - F301CC3E64C9B2DBFB07459A48F17278 /* DeviceUID.m */, - 0751174B904E14A29B7B50EAB6E68FDA /* RNDeviceInfo.h */, - 3459D0CA80524267C487FC13D3D0273C /* RNDeviceInfo.m */, - 5AD91CC93F714D389F380BD5CF20AE22 /* Pod */, - 7E0B6BB5D7FE30106AD865E366BA6FE6 /* Support Files */, + E9F123D2417805F1C3E1944AECF2A1EC /* RCTAnimationDriver.h */, + 2D4FBBF7DA4DCC10DD6963DC7E3BD3BF /* RCTDecayAnimation.h */, + 6319316CA64C4570DC9A7F20969D5611 /* RCTEventAnimation.h */, + 3B3C1DF5ABA7372F060CC5660C2585EF /* RCTFrameAnimation.h */, + 0A888E9ECDA27BCE6E59F066501E3369 /* RCTSpringAnimation.h */, ); - name = RNDeviceInfo; - path = "../../node_modules/react-native-device-info"; + name = Drivers; + path = Libraries/NativeAnimation/Drivers; sourceTree = ""; }; - E5DB7F9BF5E604DBC9D136ABB0ABD318 /* SurfaceHostingView */ = { + E7B0F64184F065D7C4C4C948E08DFC0C /* EXFileSystem */ = { isa = PBXGroup; children = ( - B9EB4B1BD9B256964FD8E9469D4FDF22 /* RCTSurfaceHostingProxyRootView.h */, - DC57C423A33C42B2A298B13DC5A42409 /* RCTSurfaceHostingProxyRootView.mm */, - 4E73B6575FC3AF98515FF40E588E5FA9 /* RCTSurfaceHostingView.h */, - 73982524566A50B6384946B2530C2512 /* RCTSurfaceHostingView.mm */, - 904B62DA18A599479B46FB4C7413D88B /* RCTSurfaceSizeMeasureMode.h */, - BF30C043E2C8978989FE992779AC8646 /* RCTSurfaceSizeMeasureMode.mm */, + 4C063A41160D5988A3E603368F4A2FCB /* EXFilePermissionModule.h */, + 13305603B4E9384976E15EA40ED1C553 /* EXFilePermissionModule.m */, + 6C5EB1CBCB95CE8B9479AC3F3A4533AB /* EXFileSystem.h */, + B8A73154CBC41CC0533A283D89499792 /* EXFileSystem.m */, + 21E5E236FCC7BC21371A316603D36011 /* EXFileSystemAssetLibraryHandler.h */, + 2E9D1D019F0429D5D1BAD9EA873DFE4C /* EXFileSystemAssetLibraryHandler.m */, + 033EE9EB15CDD23019C85455C0841D27 /* EXFileSystemLocalFileHandler.h */, + EB58BDF64BB6F9F2544EA82EC0150681 /* EXFileSystemLocalFileHandler.m */, + 9B6AEAFA772885546685732B096CE7CB /* NSData+EXFileSystem.h */, + 63F23866805B8C50212036B280BF56AF /* NSData+EXFileSystem.m */, + 660B989FC214C336A24B546BF03A2003 /* EXSessionTasks */, + E9256C88B38090AE99901C51BF2522F6 /* Pod */, + 732F2A963517BC8BF25227674D6E5DD0 /* Support Files */, ); - name = SurfaceHostingView; - path = SurfaceHostingView; + name = EXFileSystem; + path = "../../node_modules/expo-file-system/ios"; sourceTree = ""; }; - E6140063764FD6382E737EFCDB69902E /* FirebaseAnalytics */ = { + E7FCE42E49528383B422787807B0CE20 /* UMConstantsInterface */ = { isa = PBXGroup; children = ( - C24E4790744A3D72305911413E38EEFB /* Frameworks */, - C297D5D7D24ADCDB948651E545F210EE /* Support Files */, + 810EDD5AB3492C2857472B362267C781 /* UMConstantsInterface.h */, + 711215FF25418350C027CF6A5FF02298 /* Pod */, + F69150001A79E9784A4EFB0FC0C4BAC6 /* Support Files */, ); - name = FirebaseAnalytics; - path = FirebaseAnalytics; + name = UMConstantsInterface; + path = "../../node_modules/unimodules-constants-interface/ios"; sourceTree = ""; }; - E664E5CE1E7B64A2EC005089E0EC7643 /* React-RCTNetwork */ = { + E9256C88B38090AE99901C51BF2522F6 /* Pod */ = { isa = PBXGroup; children = ( - 601B19978D6FC3C1B2E492D925A475B8 /* RCTDataRequestHandler.mm */, - 916D2ECCE2AA53071AB94C6DB377C034 /* RCTFileRequestHandler.mm */, - EADB5F86FFC4069DCA86C791DF6CCC10 /* RCTHTTPRequestHandler.mm */, - 3BF4433763B521DCABF1AB38B9942418 /* RCTNetworking.mm */, - 04E49807A13249B8A4C0055848558507 /* RCTNetworkPlugins.mm */, - 92E97F9B6E3CC7373BF22EF7FC1F4E9A /* RCTNetworkTask.mm */, - C97F9EA681F95A0F545B97EEFDA6EE34 /* Pod */, - A84CEF9AA966A6C0AE4C5F029342633D /* Support Files */, + E0F86D9E36B0E1FFE48EDFF6780A3D64 /* EXFileSystem.podspec */, ); - name = "React-RCTNetwork"; - path = "../../node_modules/react-native/Libraries/Network"; + name = Pod; sourceTree = ""; }; - E7E0F776BC39A2556482ED88B07EA9DE /* bugsnag-cocoa */ = { + EA32FD200A813AD9FE2AA492066571C1 /* Support Files */ = { isa = PBXGroup; children = ( - F822D448B1C6A6226201147641592DC1 /* Source */, + B8F9AC230A36F8BF2E5009E18DA179BF /* RNFBApp-dummy.m */, + 1ECF2906499CE3F915D8A6FBF7ABAD94 /* RNFBApp-prefix.pch */, + 3D40AC05EFB8E109C49D2C550C5645FF /* RNFBApp.debug.xcconfig */, + 6D683DFA4ECEFBF658B0C0799839546F /* RNFBApp.release.xcconfig */, ); - name = "bugsnag-cocoa"; - path = "bugsnag-cocoa"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNFBApp"; sourceTree = ""; }; - E8F7D1070E29EBC498903BAB93F64A52 /* react-native-slider */ = { + EACA4A395F38779AA97BD5952129FC57 /* GoogleAppMeasurement */ = { isa = PBXGroup; children = ( - A9C8CC6B552AAACE526AF0F60CEE4E15 /* RNCSlider.h */, - 4BF7335D662E1B5989E697B974C716A6 /* RNCSlider.m */, - 6AEBC9B461B27869FC66D1A19270CB4F /* RNCSliderManager.h */, - AF3B089ECAF786E274B31B13DFDB50C7 /* RNCSliderManager.m */, - FDCADDF3D82BD691D17229A662E90DD0 /* Pod */, - 89101D932C0D64001D44E2665731A3CB /* Support Files */, + 1733B28C33F4DD608639D5BC1749EC61 /* Frameworks */, + 0DFC34218C4D7364D7F6E022B9D192C4 /* Support Files */, ); - name = "react-native-slider"; - path = "../../node_modules/@react-native-community/slider"; + name = GoogleAppMeasurement; + path = GoogleAppMeasurement; sourceTree = ""; }; - E964B4FB179CB1B6095FAA65352C6A29 /* Support Files */ = { + EAFDADEAC89BC6D0EC4F0E6A1B65675D /* Support Files */ = { isa = PBXGroup; children = ( - DA57CF4D7EFB4835344739C41D24C9B3 /* RNVectorIcons-dummy.m */, - 6FBEC4976656CAEE8736A5F613B18132 /* RNVectorIcons-prefix.pch */, - 108BE75BC3ADA9FB3802BBA633080FE9 /* RNVectorIcons.debug.xcconfig */, - 31A37F2B604486E89B7D21532DECA5B5 /* RNVectorIcons.release.xcconfig */, + B99B36C5DD3E7F3D880AF5BEA7CE12FC /* UMPermissionsInterface-dummy.m */, + C93F2056C98F2C6691B1851396673025 /* UMPermissionsInterface-prefix.pch */, + 58203A38AFFE86B2CEEBFE7378DC805B /* UMPermissionsInterface.debug.xcconfig */, + D5BEDE36755A77D49123F02AA99D65B1 /* UMPermissionsInterface.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNVectorIcons"; + path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; sourceTree = ""; }; - E9D805AB685D99DFFD777B79C83E209A /* UMImageLoaderInterface */ = { - isa = PBXGroup; - children = ( - 5F2D99F147D82E6B74E08EFA990482AF /* UMImageLoaderInterface.h */, - 75FEC757905D0B0BBABB692C856D8F2A /* Pod */, - 645516F425987F0AAC80CC0D863A6989 /* Support Files */, + EB452FF09D998BC210FA17F8AF65E44C /* React-RCTImage */ = { + isa = PBXGroup; + children = ( + 4285F7B6AFA30D47C6E9A01C3E45ACED /* RCTAnimatedImage.m */, + 5170D6901BDF6DA1D507CE64989EEE5A /* RCTDisplayWeakRefreshable.m */, + 2AB031C0FB522A7A9178F961782D5199 /* RCTGIFImageDecoder.mm */, + 0540070B85E2112E8C63589D4A4E3F83 /* RCTImageBlurUtils.m */, + E6AD8080DC24730D6492B61B6925A174 /* RCTImageCache.m */, + E78E20A2A789BB4B273DD8B871B47B95 /* RCTImageEditingManager.mm */, + 059B393E7122823110C12BF2E2B38B02 /* RCTImageLoader.mm */, + 819CACF06048F7AE075942C888161DE3 /* RCTImagePlugins.mm */, + 6EC6671FF0111A395C21368B8A86AD70 /* RCTImageShadowView.m */, + BC4FCD4A12128CE6BCC7B7AD065B5005 /* RCTImageStoreManager.mm */, + 0C173D036F23E5FA4077710D239481BD /* RCTImageURLLoaderWithAttribution.mm */, + 21A89669C3E92A0B7CDA713593450BC3 /* RCTImageUtils.m */, + C8AF807DD85E6C844346669B3AD47A84 /* RCTImageView.mm */, + D3196CB88A2AFE340401C26838AFF849 /* RCTImageViewManager.mm */, + F1223FFA5A218A24BA119E796EB96043 /* RCTLocalAssetImageLoader.mm */, + 2EA010D4718C61DB673DBF4FB80811FD /* RCTResizeMode.m */, + E273F0F5940CD5884765AB3CA96E2366 /* RCTUIImageViewAnimated.m */, + 32FE94A32E87F1B703DA7D76E7894295 /* Pod */, + 669EBC53B5E69F19EC9E78FE50422B2B /* Support Files */, ); - name = UMImageLoaderInterface; - path = "../../node_modules/unimodules-image-loader-interface/ios"; + name = "React-RCTImage"; + path = "../../node_modules/react-native/Libraries/Image"; sourceTree = ""; }; - E9E7CA47FCA8BA43E50726AD1AD9D3F5 /* Support Files */ = { + EBEA9A0F06BB1C12D59D8F23B72EF270 /* Support Files */ = { isa = PBXGroup; children = ( - 74D9DA584C674BBCE6CF4D110D3282B5 /* RCTTypeSafety-dummy.m */, - B4BC8D466330FF04E668ADEE095ED817 /* RCTTypeSafety-prefix.pch */, - C2EDD1CADC43293D0D1DAD6D57DD9A1C /* RCTTypeSafety.debug.xcconfig */, - 1CB04892C02252BF34E735E98877B7B4 /* RCTTypeSafety.release.xcconfig */, + 81B448B0F1842A660FC92E0600A6D4CF /* react-native-orientation-locker-dummy.m */, + B8A1125AEA40DE35466D53C546D297C5 /* react-native-orientation-locker-prefix.pch */, + 3256EA822DC6CCF919DBDC3B27FCF8A1 /* react-native-orientation-locker.debug.xcconfig */, + CE75A10165E4CD14C11C9FCDB62C2699 /* react-native-orientation-locker.release.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; + path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; sourceTree = ""; }; - EA64D4D992D829365FCFA21870C3BDF3 /* react-native-safe-area-context */ = { - isa = PBXGroup; - children = ( - B0818E2D4045BB155ECBA3279D032FC3 /* RCTView+SafeAreaCompat.h */, - 7255CFBD32F15F95EA3846EDAFAAF751 /* RCTView+SafeAreaCompat.m */, - 99345556668772A8DF17604C052E7052 /* RNCSafeAreaProvider.h */, - 75706C5E4F6CE9461F99121825D7D8BD /* RNCSafeAreaProvider.m */, - 4D6E869CA081208808CD5B105FAA975B /* RNCSafeAreaProviderManager.h */, - 83BA9ED803CF7A51968401924C6E499A /* RNCSafeAreaProviderManager.m */, - 8518359C15379D9FCE0CEA568A8F36FC /* RNCSafeAreaShadowView.h */, - 21FFE36BB40CFE4C77A4AEA8B81DB950 /* RNCSafeAreaShadowView.m */, - BC40F8216DC8525D701B380F73B2CBF4 /* RNCSafeAreaView.h */, - A69AE08F95980E663E0F174E842E8833 /* RNCSafeAreaView.m */, - C9DDD577ED5F2CD90CA550AECAC8C1FF /* RNCSafeAreaViewEdges.h */, - 0559E634C3FE475DD1C584491F360ACC /* RNCSafeAreaViewEdges.m */, - A35EF79CAC3FCBBDDF05214E4A93FDF8 /* RNCSafeAreaViewLocalData.h */, - 5BFA5B5582A9240EE0A688FBF51845D9 /* RNCSafeAreaViewLocalData.m */, - 80227D8A42D28C003E66266081075B52 /* RNCSafeAreaViewManager.h */, - AB2925D8C2603401461F149542B5552F /* RNCSafeAreaViewManager.m */, - 065C72E5ED957EA669215A314CBC0BCA /* RNCSafeAreaViewMode.h */, - F2A694C98D0E4AE6F9BABDC3DE3C2C1E /* RNCSafeAreaViewMode.m */, - A815F8A48FAD2A72BFF4F25399E5DB06 /* Pod */, - EAB69819B63C9F55336DA2283EFB16A9 /* Support Files */, + ED19F6F1F91C32BEBB1019BAF0449EE9 /* RNFBApp */ = { + isa = PBXGroup; + children = ( + 0969170CB4B2E02C6CEAE078FDAD9C9C /* RCTConvert+FIRApp.h */, + 6CE844664CA0170C48CDBC7E930C17E9 /* RCTConvert+FIRApp.m */, + A601AB634FFB37458BEBDCD55A86F8EA /* RCTConvert+FIROptions.h */, + E82C8D2F96BBE650C34592E435155A63 /* RCTConvert+FIROptions.m */, + AB0C95038AC70E05623DDED58EF89C6A /* RNFBAppModule.h */, + CF450C48FD34F318523681D898F16533 /* RNFBAppModule.m */, + 2546C9E7A86304B7609DAEE2B8B4740A /* RNFBJSON.h */, + D79D1FDACF2B5637B25C0F9BB0277937 /* RNFBJSON.m */, + 56A7C3E5A074BF59D305AC0D39A4B421 /* RNFBMeta.h */, + B46538D0F117CDC900C3D745B78997AE /* RNFBMeta.m */, + 47282231E058257493EA6E4655AF1882 /* RNFBPreferences.h */, + 1605C9EAE0DEE3CBE60D46E9928104E6 /* RNFBPreferences.m */, + 0BDAA74A9CE491A835DFA5E5C9F96667 /* RNFBRCTEventEmitter.h */, + 0AAC03DAE0C1EF683F54700951622B71 /* RNFBRCTEventEmitter.m */, + 885DA116CE9D078A43342E34C643CAE1 /* RNFBSharedUtils.h */, + E5A81481F6D223A9BA1AE3C708EF9241 /* RNFBSharedUtils.m */, + B1AD6C3D5951F7E1D5789BBDBF57C4A9 /* RNFBUtilsModule.h */, + 2BC928985913E403ED554432C47B9749 /* RNFBUtilsModule.m */, + 8A00EE5B081426E430409D0FA4B68F81 /* RNFBVersion.h */, + 710992E8F69D60BFE88E365BBC455E10 /* RNFBVersion.m */, + A0D5C828C22A238AC1EE098FF7EF0765 /* Pod */, + EA32FD200A813AD9FE2AA492066571C1 /* Support Files */, ); - name = "react-native-safe-area-context"; - path = "../../node_modules/react-native-safe-area-context"; + name = RNFBApp; + path = "../../node_modules/@react-native-firebase/app"; + sourceTree = ""; + }; + EE9AA276073DF95781E93737EBFA3189 /* Text */ = { + isa = PBXGroup; + children = ( + BE12A1B72479404179FF9DB5E449E114 /* NSTextStorage+FontScaling.m */, + 2D44DA9AFD0F10A48D85901FE0B7D8FA /* RCTTextShadowView.m */, + 2EDE8648D5FF43569B68A465EBBF93DE /* RCTTextView.m */, + 459121712E05BD42324D52244EC8BDF7 /* RCTTextViewManager.m */, + ); + name = Text; + path = Text; sourceTree = ""; }; - EAB69819B63C9F55336DA2283EFB16A9 /* Support Files */ = { + EF3A96D537417B2B7B9795B7FACCD61B /* Support Files */ = { isa = PBXGroup; children = ( - 90296E1E32178391C6AB06323D26E6CE /* react-native-safe-area-context-dummy.m */, - 4A609B0A87FF665F19CFA12F2A6514BF /* react-native-safe-area-context-prefix.pch */, - FB5636F03310523B5AB4AC1A89223497 /* react-native-safe-area-context.debug.xcconfig */, - F390A4ADFE5065ED118026F7A8CC5920 /* react-native-safe-area-context.release.xcconfig */, + B9C967B671EC8DCD6F78AA20CF0CECE4 /* RNCAsyncStorage-dummy.m */, + 148E3496572E08653AB99729315EE488 /* RNCAsyncStorage-prefix.pch */, + 687AF7A5C2C866DD4C8607C40C22EC6B /* RNCAsyncStorage.debug.xcconfig */, + 85A119EF008044BD6DD681CF1E205D2D /* RNCAsyncStorage.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-safe-area-context"; + path = "../../../ios/Pods/Target Support Files/RNCAsyncStorage"; sourceTree = ""; }; - EACA4A395F38779AA97BD5952129FC57 /* GoogleAppMeasurement */ = { + F12AE86A1EFE0093B96EDCF41673BD78 /* RNScreens */ = { isa = PBXGroup; children = ( - 1733B28C33F4DD608639D5BC1749EC61 /* Frameworks */, - 0DFC34218C4D7364D7F6E022B9D192C4 /* Support Files */, + 67425D423806DF907689D84089B7E781 /* RNSScreen.h */, + 5A67E6E6D6E01DA69AB431B0D72A50CC /* RNSScreen.m */, + 148ADCEAD1C5049EB6E80C37B5C55E8A /* RNSScreenContainer.h */, + B1DF77105E249E71434137526EB413B4 /* RNSScreenContainer.m */, + ACE7245AA924EB78235512EC827D2CB7 /* RNSScreenStack.h */, + D347B19BB32B3E0FC907A2D97CE1A567 /* RNSScreenStack.m */, + 870619E9BD4D6E766AEEF6AF3B407256 /* RNSScreenStackHeaderConfig.h */, + 90EAB669E72009D3CE8E989050ABF0E5 /* RNSScreenStackHeaderConfig.m */, + C5A98DEB88EFC0157ABD083B0DA1FFD0 /* Pod */, + C53D125DF01C96E2D822876245F00985 /* Support Files */, ); - name = GoogleAppMeasurement; - path = GoogleAppMeasurement; + name = RNScreens; + path = "../../node_modules/react-native-screens"; sourceTree = ""; }; - EB4903D80CDFD473B9783C6F8D9046A5 /* Pod */ = { + F1312A15D26CB8D148F116D7142EAF16 /* Pod */ = { isa = PBXGroup; children = ( - 80FCBF51C204A5BF6EA8B12049D35583 /* LICENSE */, - 20BE05392BEE989225A1BB9A9D9AC30E /* README.md */, - C6CF8F4840B8CB15ABAC8F1308ED3C52 /* RNLocalize.podspec */, + CB91C117B7376C95521D5E7FD96C9F30 /* api.md */, + FFF6B8FD983FC58BE98F99549184A81F /* LICENSE */, + A662F68F07725FE4F23E951AA2ACCCD9 /* ReactNativeART.podspec */, + 336AE8648B576F71B07AE2AF3B2C9AB6 /* README.md */, ); name = Pod; sourceTree = ""; }; - EE5FBA78E81D47F6E70757FCC2BD777C /* react-native-cameraroll */ = { + F1A3AE196DAEAEB5A557D6ED404E1975 /* Pod */ = { isa = PBXGroup; children = ( - 1CA0C4C5E442706D220F564B47B7E1B0 /* RNCAssetsLibraryRequestHandler.h */, - C243495974C4509A2870B16FFD36C84E /* RNCAssetsLibraryRequestHandler.m */, - 64916A4D0599660624FEB23006CE054E /* RNCCameraRollManager.h */, - CE66643F5FC639D8B673507543236734 /* RNCCameraRollManager.m */, - 09BC231BC33642E4F1EF9D729A3DB32B /* Pod */, - 19408177D9DC1BB97679E92263D03552 /* Support Files */, + 43761A7ED0EDCF20E23EC9A9A07E1EBB /* LICENSE */, + 0ACA9D1B7472E5142A557761E8647F90 /* README.md */, + 101DF49E8CB002A3D3D333B6B9EA08E7 /* RNBootSplash.podspec */, ); - name = "react-native-cameraroll"; - path = "../../node_modules/@react-native-community/cameraroll"; + name = Pod; sourceTree = ""; }; - EE720B04417ED7A6A843DD8CC033D63E /* Pod */ = { + F1D309BF9FF89AB8D5A47D7777ECED2D /* Support Files */ = { isa = PBXGroup; children = ( - 93286CC5CF180ABA659F3A0B996FAA7C /* EXConstants.podspec */, + 877D5D9C11F99DAB97885055DB0552B1 /* react-native-webview-dummy.m */, + A22290B542A251F93A04F312C7D04FA9 /* react-native-webview-prefix.pch */, + F39A3A428F911B4669E69AE5169C7A17 /* react-native-webview.debug.xcconfig */, + 5B4DCB9F0A88A8B83DDD5F46A61F0B33 /* react-native-webview.release.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-webview"; sourceTree = ""; }; - F02435DEF2721CFAB42C5ED14DB4EC73 /* Pod */ = { + F1E806CDF26CD96115CF0A1155EAEE5E /* React-Core */ = { isa = PBXGroup; children = ( - 4DDB2A968A8960CBCC7C2BEF3F459F2C /* EXLocalAuthentication.podspec */, + BB84585D8580872687939D507F8AEA16 /* CoreModulesHeaders */, + D5876C90DC3850AF5EF080C5ABA39CFE /* Default */, + 2DB4E11DAB0A7DC00EE55CC91A98BD1B /* DevSupport */, + 198C9B3305EE84E5BD605CDD4A440F0C /* Pod */, + A1911897D354C39E6C1CE910D3B10D02 /* RCTAnimationHeaders */, + 9892D29CF875FC85CB691C3B6895E3F1 /* RCTBlobHeaders */, + A9112965ADB0136B213342A72BA8E1E8 /* RCTImageHeaders */, + F52A4E62CBFD4747C68A8BC603D01555 /* RCTLinkingHeaders */, + 9BA8DAD7E312DB6891D59C65BB3A754C /* RCTNetworkHeaders */, + 3AD7074B8B9EB1A80D4A355456E413AE /* RCTSettingsHeaders */, + 03DCF2B5EC9BAB67BF1794EEC733D623 /* RCTTextHeaders */, + F3F61A01E51A394780FFEBC802FC79C5 /* RCTVibrationHeaders */, + 4E68AA36AFF9F0CBDE69EBE388ADDE95 /* RCTWebSocket */, + 2DDC0B17D11A432FB18689C644E22927 /* Resources */, + F480EA0A6DE469F62AF5DB5C887C7071 /* Support Files */, ); - name = Pod; + name = "React-Core"; + path = "../../node_modules/react-native"; sourceTree = ""; }; - F0F84E0523E30E70FFA299C43AE81570 /* Support Files */ = { + F358F0C335FEF9D92014876ED6D8488F /* UMFontInterface */ = { isa = PBXGroup; children = ( - 744BA262E9E8A85813C1DDE1DC59612B /* UMAppLoader-dummy.m */, - 3D6A2B0B844845B9E7BB8632CEB0198D /* UMAppLoader-prefix.pch */, - 0016CB757D356FEFC24C3CBF2180C813 /* UMAppLoader.debug.xcconfig */, - BBD78CAA6416E3C6C0E9A765BADB047F /* UMAppLoader.release.xcconfig */, + FF4D6EDFEB4CE144E01E91AC6C91E5C9 /* UMFontManagerInterface.h */, + 3D0096C6C1575A4063B7887C2A68BA49 /* UMFontProcessorInterface.h */, + CEA088956AC567543765699D52C9C1F2 /* UMFontScalerInterface.h */, + 8668E3CAF69BE16789679B2D955374BA /* UMFontScalersManagerInterface.h */, + 24CDB287BBA3799FDF41FAB58F616723 /* Pod */, + 220BDBE0F45144A3C32E00D2408C6E87 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMAppLoader"; + name = UMFontInterface; + path = "../../node_modules/unimodules-font-interface/ios"; sourceTree = ""; }; - F3A42399F38E644EC2F82FB379419106 /* core */ = { + F3F61A01E51A394780FFEBC802FC79C5 /* RCTVibrationHeaders */ = { isa = PBXGroup; children = ( - 86F26F35353333A6BB22CEF6AE743C17 /* LongLivedObject.cpp */, - E2C1C9DDD2E9FE2340E0EA49FFE6D2FA /* LongLivedObject.h */, - 6168F38FB52EC736551766D6E3C60096 /* TurboCxxModule.cpp */, - C3509D7E6E6FF57DEB0BB98F4D9970A1 /* TurboCxxModule.h */, - D372B58B07D58281BA62F9165AF037AC /* TurboModule.cpp */, - 59A4506E32CFEC69B2D169214E3C7835 /* TurboModule.h */, - 2EAEF4D211A04A58ED96E38766C5D1E3 /* TurboModuleBinding.cpp */, - BB9408A97352ED127BA999C50F5DAF2F /* TurboModuleBinding.h */, - 32CD83D7735A14A5075286726B969B1D /* TurboModuleUtils.cpp */, - FA31742AD2A94D363D05E51A34ED87AF /* TurboModuleUtils.h */, - 47776E789C6476DEE35F82BEF31F61C0 /* platform */, + 706A33141C8A982055ADD86AD090CF94 /* RCTVibration.h */, + FC757556A994BE7779C4C9AC36E38587 /* RCTVibrationPlugins.h */, ); - name = core; + name = RCTVibrationHeaders; sourceTree = ""; }; - F3EEC48D2E9D1D8ED11CCC480FE0C893 /* Support Files */ = { + F4736A2CD786CD33DA98BE07C738C7A0 /* Pod */ = { isa = PBXGroup; children = ( - 0871C8795234C3431222032EA497AA83 /* React.debug.xcconfig */, - BA812CA4C38920369FDD5B8C7831688D /* React.release.xcconfig */, + B2FFFFCC814F685D375F33C41B0509C3 /* LICENSE.md */, + DDCA516DB035E1A1EB939C5F5A4FCE24 /* README.md */, + 3AC0B48D8AAFF523605C16C2293BDB14 /* RNDateTimePicker.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React"; + name = Pod; sourceTree = ""; }; - F4ED85E3729711744E5FF158BECDBD4B /* Support Files */ = { + F480EA0A6DE469F62AF5DB5C887C7071 /* Support Files */ = { isa = PBXGroup; children = ( - 492401E928E2AEEB4D6BAED954287543 /* RNCMaskedView-dummy.m */, - 5BD22C8044A75D23BDA8192B19B8DA8D /* RNCMaskedView-prefix.pch */, - 9FE33FEB54FCCD540B5C8AF66F5BA1B1 /* RNCMaskedView.debug.xcconfig */, - A5D95122CFB7FE65048C4E038BAF4AE5 /* RNCMaskedView.release.xcconfig */, + 6F75B35840330DD2E84036FF5DB3CACD /* React-Core-dummy.m */, + 4EF13443E01D480FE1F6A009078A3373 /* React-Core-prefix.pch */, + 4FC5015413CFC22C82916293D25C96C1 /* React-Core.debug.xcconfig */, + B22FB9D497AD7D63DC4CDAC56A4F44AF /* React-Core.release.xcconfig */, + CAB8C72BFF7FFFC6A220F53B5559BD87 /* ResourceBundle-AccessibilityResources-React-Core-Info.plist */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNCMaskedView"; + path = "../../ios/Pods/Target Support Files/React-Core"; sourceTree = ""; }; - F5BA7758FA6D8A5F1210478FC322F5EC /* Pod */ = { + F52A4E62CBFD4747C68A8BC603D01555 /* RCTLinkingHeaders */ = { isa = PBXGroup; children = ( - E72DD20E2480B30D2EA7F59F9E9071D7 /* React-RCTVibration.podspec */, + D13D79C58B287031D4AC4C1DE850ED5C /* RCTLinkingManager.h */, + 9112E2FAF4D576BAE202B4F4281B5FF5 /* RCTLinkingPlugins.h */, ); - name = Pod; + name = RCTLinkingHeaders; sourceTree = ""; }; - F62CE8987234BB643A431E433D0FE848 /* ScrollView */ = { + F65C233E71442C9F0171164CD8A512FA /* Support Files */ = { isa = PBXGroup; children = ( - 0798EAB5ECE84B8786E46E1DDC74EBC9 /* RCTScrollableProtocol.h */, - DEEBF6EFFA56877246B99740642125E4 /* RCTScrollContentShadowView.h */, - 0802964F223D7584D2261C2F5A90277B /* RCTScrollContentShadowView.m */, - AC753904BAFFB1A9511FF9C52E65141B /* RCTScrollContentView.h */, - FD29547C2C3A1FA49DF682A9262506E4 /* RCTScrollContentView.m */, - E4171CF7DCF4F5146DEE052A9D54BB84 /* RCTScrollContentViewManager.h */, - 42CD5F5B3B3358A771678186FF2FFF58 /* RCTScrollContentViewManager.m */, - CDEA08C7FF025D3288B25D1B49D63EC7 /* RCTScrollEvent.h */, - 81113F643E1CF81D879597FC06BB4375 /* RCTScrollEvent.m */, - D8948141E9C8C2805ECCEDEAE42FF5DA /* RCTScrollView.h */, - 7351C181A122A049B7118B464F58456E /* RCTScrollView.m */, - 406361C35BAA62FF97AEAE4B1F895035 /* RCTScrollViewManager.h */, - 48646B3B495315C0F32EC39A20A7CADA /* RCTScrollViewManager.m */, + 9F40E7C1DA00B7438765C6875D8A5E83 /* React-RCTBlob-dummy.m */, + 5EF108B4590BD03A6A1B010222991C24 /* React-RCTBlob-prefix.pch */, + 6D2A2285C66190A34C9DD22A59E572D3 /* React-RCTBlob.debug.xcconfig */, + 5F42FF119EA09E00C09CF21FDFC9AAD1 /* React-RCTBlob.release.xcconfig */, ); - name = ScrollView; - path = ScrollView; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; + sourceTree = ""; + }; + F69150001A79E9784A4EFB0FC0C4BAC6 /* Support Files */ = { + isa = PBXGroup; + children = ( + F079017069DAB45979E46D9C53B7B171 /* UMConstantsInterface.debug.xcconfig */, + 344EA3DC384C4688B5A035B4BDFFADFD /* UMConstantsInterface.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; sourceTree = ""; }; F6E248F439658C3F0881773A572D652B /* mux */ = { @@ -18261,168 +18568,38 @@ name = mux; sourceTree = ""; }; - F719735FEE8252EA7D95413A77FAE2DD /* Surface */ = { + F74DD1309F0548E63DAD7928FD4CEAC6 /* Surface */ = { isa = PBXGroup; children = ( - 981C51D036ED8F8BACDAAE65B23E5F15 /* RCTSurface.h */, - BEF495DA086741CFF80D572578A0875B /* RCTSurface.mm */, - 3902EFC847FC1378429D51930F83EFB7 /* RCTSurfaceDelegate.h */, - B0662D051DF42D8150D5F4B6B50190F0 /* RCTSurfaceRootShadowView.h */, - 422A8203166A04153210DF34506CCCD9 /* RCTSurfaceRootShadowView.m */, - 8B7D7FE6AC4A9EF21678B0F718C686D8 /* RCTSurfaceRootShadowViewDelegate.h */, - 7C8A95117B845CD2BA5EFD37E70F1995 /* RCTSurfaceRootView.h */, - B1C1C8D3CA86CC9AC6F90B5BA2E2D4D0 /* RCTSurfaceRootView.mm */, - B4735C3818F5505C46AA5FB0839CD0B3 /* RCTSurfaceStage.h */, - 907E4E7E56EA71EF2252C76C4385A7CD /* RCTSurfaceStage.m */, - 9ECE254E55D820019E2A31F099741180 /* RCTSurfaceView.h */, - 06B86DCEBCB5BF2A5B783A9A7CFE66FF /* RCTSurfaceView.mm */, - C168E75C2CE01B7AA6795B1E1B62A1AC /* RCTSurfaceView+Internal.h */, - E5DB7F9BF5E604DBC9D136ABB0ABD318 /* SurfaceHostingView */, + 1180534E30771AFEE6F4BA72B827159E /* RCTSurface.h */, + D4AC9585D0485AA14FF197F4554FD25E /* RCTSurface.mm */, + 33B028E63E78F42E0CDC1FECBD40532F /* RCTSurfaceDelegate.h */, + F473C7CE1C1DA812CF0A2E795664C494 /* RCTSurfaceRootShadowView.h */, + 4A1C4C76FE42AB23DD8D5822A1CE0205 /* RCTSurfaceRootShadowView.m */, + 913C710CC0D2498D2B52DF900DDC9CBA /* RCTSurfaceRootShadowViewDelegate.h */, + D1156480B64AAEEFD35C61D87FA4B096 /* RCTSurfaceRootView.h */, + C9DFAE1CED3AF75F343225DB3D0C244D /* RCTSurfaceRootView.mm */, + 491274E34D9FF018C5F4BB99ADC78DD9 /* RCTSurfaceStage.h */, + 366C6B4224D1E6BB4CE3877949DB387F /* RCTSurfaceStage.m */, + 7963576B0C09EBB4B8472DB1FEFC462C /* RCTSurfaceView.h */, + 90FB941DD33F09DDEA39C157FCAF1264 /* RCTSurfaceView.mm */, + DCCC0FBA80759C3891F44BEEA84ADD1B /* RCTSurfaceView+Internal.h */, + 28296796A98276A7353B2D870D4B0155 /* SurfaceHostingView */, ); name = Surface; path = Surface; sourceTree = ""; }; - F76DDF89BCDBDD675DE17B654BFFB2B6 /* Views */ = { - isa = PBXGroup; - children = ( - A65989EEFCE0BEEE7CC1C7B5746AD31F /* RCTActivityIndicatorView.h */, - 13B054FC7DEC6BD83B187A655CA0FD9F /* RCTActivityIndicatorView.m */, - 9C6B6BA9573A3D5114944B9DD5890D74 /* RCTActivityIndicatorViewManager.h */, - F69CD72B379C98BD9A1332AC77336174 /* RCTActivityIndicatorViewManager.m */, - EEAA543205F01FF09C3A376B7CB9223B /* RCTAnimationType.h */, - C77C9FBBCB438359DBDE6B871BF7983B /* RCTAutoInsetsProtocol.h */, - 26DD998660B2BE1816A93D531E0EC82F /* RCTBorderDrawing.h */, - EA2B0F90A51030C59CAEEC3CC7211247 /* RCTBorderDrawing.m */, - A92A23DF1C627F65E62E5CF16694F9C9 /* RCTBorderStyle.h */, - 934ADB02D0E720443CAF0F8B49A48D6B /* RCTComponent.h */, - D2B8B6E373698F862883B51B8AC67F17 /* RCTComponentData.h */, - BFE395D21FBE6AD8B8B5C5EBD078B42E /* RCTComponentData.m */, - 41CFD4D3D242650FEC3BF8CFEA88C08D /* RCTConvert+CoreLocation.h */, - E6817B75E1798AAF6EA997F690C91093 /* RCTConvert+CoreLocation.m */, - 52426FD74F4821670D4C474FABF0D44C /* RCTConvert+Transform.h */, - 84B59BDF0D00E749F794DCFFEBB1EE34 /* RCTConvert+Transform.m */, - 27ABF28F90A20FAD70E62816ED19F5AA /* RCTDatePicker.h */, - BF0C4AC8BB6062280C356E9369DE4721 /* RCTDatePicker.m */, - 16B068281A89BEDE84D6131F2BAE8745 /* RCTDatePickerManager.h */, - 1210CB324AD0392318D3F271FBBD1ACC /* RCTDatePickerManager.m */, - DBC7570A5DEE14CEF9E6716AEC679116 /* RCTFont.h */, - 721ECE4F55125F8D2B06F7E50B19A1AF /* RCTFont.mm */, - 741DA7B4648C7D20B1C86F960E6350AC /* RCTLayout.h */, - 67BAFEDB32FDB1D0AD1D217DCCF26CC1 /* RCTLayout.m */, - 23DC14BC30212C2A74E396EA2DD51B91 /* RCTMaskedView.h */, - 92DF677A3DDE76EC4D1B71DDBA4FAD29 /* RCTMaskedView.m */, - 96C86D44150486D099DDB2694E5E7BCA /* RCTMaskedViewManager.h */, - 8B051D85376D40D49CC0BE842A3DA5FC /* RCTMaskedViewManager.m */, - D1C4FC5E1F23F942780D21CCBD9CA28C /* RCTModalHostView.h */, - 25BF77E2F0F25E7216E606048EE1180A /* RCTModalHostView.m */, - 9D7F3EAAC32341136ACA4C5AB471EAB1 /* RCTModalHostViewController.h */, - 1B7C9A370CB377C5A345342C366E6ABA /* RCTModalHostViewController.m */, - 62CDA9DDEE1D960A214DA51C83DC3E91 /* RCTModalHostViewManager.h */, - 501B1F9E038601FBD2E2DD684A90B5D6 /* RCTModalHostViewManager.m */, - D50932CCC095608F0E80DE688979F74D /* RCTPicker.h */, - EF1CB6936684CFF23AB137B5F8CFB337 /* RCTPicker.m */, - 351AF5B5F9D569C80DA853CDD90CCE3E /* RCTPickerManager.h */, - 1DD45046AF7C0A8AA356137129876F2B /* RCTPickerManager.m */, - 67A4E867544E2A9BB3B241F404B585B6 /* RCTPointerEvents.h */, - B45A6A9F70AE4BEC97C0B6F5F9EB6FCE /* RCTProgressViewManager.h */, - FA9BAD987A0B88DCA3C7E6B9381F0B5C /* RCTProgressViewManager.m */, - 3D70ABA751AFDCA0FB499B0AB9D797BB /* RCTRootShadowView.h */, - 2ECB3C343296C4A64472C1905259DFCC /* RCTRootShadowView.m */, - E231195686DAA93C6215F5A37596789A /* RCTSegmentedControl.h */, - 05FCB29EA8A0ECF40CDEC1CDB7D91201 /* RCTSegmentedControl.m */, - 3C4DD4D8A2E599E933F49CABCD377CB9 /* RCTSegmentedControlManager.h */, - FFB599276F9A96E8C162F8A8B6E02C89 /* RCTSegmentedControlManager.m */, - 59AB26443058AFBD0EDED1A33FFCB835 /* RCTShadowView.h */, - C974638B279A70C7F30601F69AD7781F /* RCTShadowView.m */, - 31F5620E7618564781F88264E1F9ED35 /* RCTShadowView+Internal.h */, - 403BA7C6CED5DD2F2CDE32266DD115A4 /* RCTShadowView+Internal.m */, - 0F225C151C807E9E80F2E6CE030C4205 /* RCTShadowView+Layout.h */, - 1A7F9488B83BAB2F51C7DEC46E172F72 /* RCTShadowView+Layout.m */, - 820D918138C8817D6905702A9CB94BDE /* RCTSlider.h */, - B50FCEF319BE9602824CD526D0A8139A /* RCTSlider.m */, - 9F5C0D3412115B1C70F87A175BFA94DB /* RCTSliderManager.h */, - B69E358DE1B052453E9808EA9EE10AF8 /* RCTSliderManager.m */, - 8A40BD840EC14017F3F9E2A0DF9385FC /* RCTSwitch.h */, - A48A8718E4BB3BBAF4546E0B15307BFC /* RCTSwitch.m */, - 39E83F686D7D84C65FA7EAA7041144F1 /* RCTSwitchManager.h */, - D4D60BF37DC772598986B63B234539A3 /* RCTSwitchManager.m */, - 7F57BABCBA0174D900BA54401B43790B /* RCTTextDecorationLineType.h */, - 09144F81FBC14583C5005E6DA47792BF /* RCTView.h */, - 90E1207CAC8C95AB1F458E75F09B7813 /* RCTView.m */, - 745454FCA2F5FFD4F63F8780BEF4C6FD /* RCTViewManager.h */, - 4EC93AFD7667ECD2F429D3E8AB07E47C /* RCTViewManager.m */, - 85A1FEF2C4E89DE861256ED8BE1A4F41 /* RCTWrapperViewController.h */, - FFAAC1AA0F94ACABCDF845F4DFEFE204 /* RCTWrapperViewController.m */, - F8AB7578113C306217F64EF0CBBA6A86 /* UIView+Private.h */, - D8E38E17D242F20046B5C18296FF4036 /* UIView+React.h */, - D079176E8C813D460512DB84FB1E2175 /* UIView+React.m */, - 95E272222D8FA271F86B38AE1AEE9210 /* RefreshControl */, - 5171A468E3C010C7A84A4AC6DEB7EB4A /* SafeAreaView */, - F62CE8987234BB643A431E433D0FE848 /* ScrollView */, - ); - name = Views; - path = React/Views; - sourceTree = ""; - }; - F822D448B1C6A6226201147641592DC1 /* Source */ = { - isa = PBXGroup; - children = ( - F07AF17231352FAC86958B11B262268C /* BSG_KSCrashReportWriter.h */, - 43D03DB726B410AA256A8B1E3AF0100B /* BSGConnectivity.h */, - D42777CA461B620478E3E2108813C937 /* BSGConnectivity.m */, - 2881FEC8284A5EA823672B48E20930AB /* BSGOutOfMemoryWatchdog.h */, - B88CF7572FC59624D214D535B06891AC /* BSGOutOfMemoryWatchdog.m */, - 03C1D3D0CD542E6B9E4B92D290C1864D /* BSGSerialization.h */, - 730AB123B6CD2630D5F088205F830F04 /* BSGSerialization.m */, - BFBC79B1D54204585867BE47A6E185D9 /* Bugsnag.h */, - 77E599B73A807CC9CE2D7D9A1F26BC1E /* Bugsnag.m */, - BDD86810C1FC0229CB481AEE4EE39FE2 /* BugsnagApiClient.h */, - 55ECCD1BC7B705FEA3AC46F0330DDEED /* BugsnagApiClient.m */, - A6AB8A3C286ADBC0DD45803999A7441D /* BugsnagBreadcrumb.h */, - 9597CFEC9BA8376B97C82F1836CC6245 /* BugsnagBreadcrumb.m */, - BE266C9B8E76939FE5C71EF566479AE5 /* BugsnagCollections.h */, - C6F9203A9A10EE2E9608F5D0DCA8B05F /* BugsnagCollections.m */, - 4670FE6F06F10FE56754009184A08F78 /* BugsnagConfiguration.h */, - B441C3BD1F1173B64ED0BAFB195C8A84 /* BugsnagConfiguration.m */, - D7270FFD70B21B464B3F297F9DFD1418 /* BugsnagCrashReport.h */, - 2F43E8505637F4CCFCEFDD22C49B9A8A /* BugsnagCrashReport.m */, - 0792CFE33BB76561F77A5FA76A3C3D85 /* BugsnagCrashSentry.h */, - B7D366120B6EF65E206BE928F596207D /* BugsnagCrashSentry.m */, - 5ACD9FA7D9220BD86AE0DA31FF978724 /* BugsnagErrorReportApiClient.h */, - 428159FCF65A3E3D131720C6E1909CDF /* BugsnagErrorReportApiClient.m */, - 2C0AC5526C17F630002EFD6125097719 /* BugsnagFileStore.h */, - E235B8279246B8AADAC03EC3906A030C /* BugsnagFileStore.m */, - AAF07727CB6168579B8C1875EBD0CDE9 /* BugsnagHandledState.h */, - 82E3CD02E7FCC02B224A1D7C02174917 /* BugsnagHandledState.m */, - 75034DF620B40951906965C9E730EA7E /* BugsnagKeys.h */, - FD2022CE8709BF25A95565699B9E4EED /* BugsnagKSCrashSysInfoParser.h */, - 2289CBE7210E7EE7FD37438C92987E2B /* BugsnagKSCrashSysInfoParser.m */, - D6C5597DE25F8E7626314E989E46E869 /* BugsnagLogger.h */, - 8D17D989E39AD42EE658569F64DB5B63 /* BugsnagMetaData.h */, - E2D3E6FA97B829798D4EF39F9006B80C /* BugsnagMetaData.m */, - 90FC737285D1D3969BDF19BE4863D4C5 /* BugsnagNotifier.h */, - 199D344BD30539CC32CE6928D5A216D4 /* BugsnagNotifier.m */, - 5D685286ED38572BBEC117022A11DAA7 /* BugsnagPlugin.h */, - B9618AF8600308521930317617B79BAE /* BugsnagSession.h */, - 9DC6AB712F618A1FAB640E85CC25EE6D /* BugsnagSession.m */, - 4ECE9899478060F40994317A4CC05626 /* BugsnagSessionFileStore.h */, - 157A433195BF742EE998DC049AC4D061 /* BugsnagSessionFileStore.m */, - 911C0005841625987C56A533CC2ACB78 /* BugsnagSessionTracker.h */, - D0D2CD5DF7CEA11922512B699BFB6E5D /* BugsnagSessionTracker.m */, - A1E5D39742A35A37A4E784EA66C1B093 /* BugsnagSessionTrackingApiClient.h */, - 417F80CE73198E7BDE01F7699AEA8F51 /* BugsnagSessionTrackingApiClient.m */, - 7AE384BD8CC030B3564768A94B678F46 /* BugsnagSessionTrackingPayload.h */, - 5D9BA3D711C337D4CDA290FD2AC421CE /* BugsnagSessionTrackingPayload.m */, - 45B0358B27388CF8F7F76CE99E8D541C /* BugsnagSink.h */, - CAD71D94ADEA26A24434DEE519D7FAA9 /* BugsnagSink.m */, - EBBF9B782F3C738D752793BB84FEB010 /* BugsnagUser.h */, - 81A7A475278E4385E2732BFB8197676B /* BugsnagUser.m */, - 0C2FC874EFFA88394F6FA20FB65171BC /* Private.h */, - 3848B00E2D732A8D0E9A8AFDA5FFD66B /* KSCrash */, + F767A0C433A2ECA039BF84FF3E334761 /* Support Files */ = { + isa = PBXGroup; + children = ( + AED89FC23A74912C86B1E2359357F009 /* react-native-simple-crypto-dummy.m */, + B400C9F52EDC4E8EF296F1AEBD2C6722 /* react-native-simple-crypto-prefix.pch */, + F3C274A19A6E55D76BFB119B2B8D0FC9 /* react-native-simple-crypto.debug.xcconfig */, + 10EFDA1322B3AA90E37B90A900AFF443 /* react-native-simple-crypto.release.xcconfig */, ); - name = Source; - path = Source; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-simple-crypto"; sourceTree = ""; }; F9165C0588228CBBE13E3CEC818154A4 /* SDWebImage */ = { @@ -18435,125 +18612,106 @@ path = SDWebImage; sourceTree = ""; }; - FA25E67F724E7C844716CD9551E0A48D /* react-native-webview */ = { - isa = PBXGroup; - children = ( - EF18428DD6B5C6031E6AF8D7ED927FA1 /* RNCWebView.h */, - 4651C6A79F9C61CE6247A62232BD6BC8 /* RNCWebView.m */, - C4067232583C4304F137FCD4C6779D75 /* RNCWebViewManager.h */, - ECCD8EC24A8C2697035E0A8D25F0765D /* RNCWebViewManager.m */, - EFCF0B535AAD9257740ED9380BF724AA /* RNCWKProcessPoolManager.h */, - 3BEA0C29C88EAFB371FCBCBAFA61492A /* RNCWKProcessPoolManager.m */, - B99F631CCBC14D70BAF6687F9EEA5AAD /* Pod */, - 7196CC4F2708ED8CDC8051ADF1CA3B23 /* Support Files */, - ); - name = "react-native-webview"; - path = "../../node_modules/react-native-webview"; - sourceTree = ""; - }; - FA2A97CF51DA0EED399874F8378F2E11 /* react-native-document-picker */ = { - isa = PBXGroup; - children = ( - E1AFA9A20D495499386B13F3D69DB8D4 /* RNDocumentPicker.h */, - 0F598D0ADE971EA742FFA1C679F9DAE1 /* RNDocumentPicker.m */, - 5F4D03543DFFFF577C4E7B8AFD70E32A /* Pod */, - C204653660C6D5A725DD7DDAD36A380E /* Support Files */, - ); - name = "react-native-document-picker"; - path = "../../node_modules/react-native-document-picker"; - sourceTree = ""; - }; - FA5292E0134B05A244356DE383F55389 /* TextInput */ = { - isa = PBXGroup; - children = ( - 335EFF7D5A6AECA87296187A5FF2D12A /* RCTBackedTextInputDelegate.h */, - EE510ECFE9740A1362829E8B15A7D768 /* RCTBackedTextInputDelegateAdapter.h */, - C4D25F70DC8B45BD854D50AB634AD856 /* RCTBackedTextInputViewProtocol.h */, - 79773EA522BCA7FDA74A1232B1F5FB93 /* RCTBaseTextInputShadowView.h */, - B448A70A3DB1231697957139D2E35D54 /* RCTBaseTextInputView.h */, - 64E504ED3E430BD7B4CC63B2CE0D2632 /* RCTBaseTextInputViewManager.h */, - 7C39690C18200C48305B76C89E2EDE45 /* RCTInputAccessoryShadowView.h */, - D8C9AD6C661265BB283DB275371E5729 /* RCTInputAccessoryView.h */, - 638D22B036121DEA40AC69DF1D69F969 /* RCTInputAccessoryViewContent.h */, - 5175740F17A5CC2C16CEC2CBD1CEF513 /* RCTInputAccessoryViewManager.h */, - EFF80CE80112452C15F49D7B990F9ECA /* RCTTextSelection.h */, - 9C3AE56AAC820BA8EB907F4E36080A4C /* Multiline */, - 3E0F4F26042B7F359109D7E7E257472B /* Singleline */, - ); - name = TextInput; - path = Libraries/Text/TextInput; - sourceTree = ""; - }; - FC98867B7FFD6C45EBD30A130648523B /* Support Files */ = { + FB851D36D2AFD63090ED2C82FCE5E526 /* Pod */ = { isa = PBXGroup; children = ( - 38E528A2F0C70D984284B0B23350D234 /* React-cxxreact-dummy.m */, - B504F18D9932B776255E075028541B1F /* React-cxxreact-prefix.pch */, - 3625BBE65B73F157169A12C751C26995 /* React-cxxreact.debug.xcconfig */, - 300627D0E908150F097AE8D79B83B1C9 /* React-cxxreact.release.xcconfig */, + F61D3C3B536505732A69FFC1C74CD491 /* FBLazyVector.podspec */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; + name = Pod; sourceTree = ""; }; - FCA06563D749F1264745D7DF46CDEC12 /* Support Files */ = { + FC9BAB118AD0926B4A1E937FC0C288B9 /* Support Files */ = { isa = PBXGroup; children = ( - C51284D778271F65A086135D3DCEBCEE /* react-native-background-timer-dummy.m */, - E989498F1102449860FE4A1396344802 /* react-native-background-timer-prefix.pch */, - CCEA52403CD4611FB40B7A447982030E /* react-native-background-timer.debug.xcconfig */, - 82EDAE27007B076E21FB53B2FB275D41 /* react-native-background-timer.release.xcconfig */, + 591E617616FC2BB73F72F1F8958C59B2 /* RCTTypeSafety-dummy.m */, + 9462B04FF146D96412FE84421F32838B /* RCTTypeSafety-prefix.pch */, + 451F93EADDC4F35AE18B140295DBE80B /* RCTTypeSafety.debug.xcconfig */, + F886F5A6DAFBF94189D7B993953D5F22 /* RCTTypeSafety.release.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-background-timer"; + path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; sourceTree = ""; }; - FD4264CCFBFA7DEFC518D4E5515E9239 /* EXKeepAwake */ = { + FDCFAE3800794DD0B221DBBE16E5D772 /* EXLocalAuthentication */ = { isa = PBXGroup; children = ( - 711E72102910619FB4A37824DCBDF47C /* EXKeepAwake.h */, - ACF96AD73B645DC5180BCEF311D6C93E /* EXKeepAwake.m */, - A036DDF146589EDA5411590D5D9E5786 /* Pod */, - 4294BB064AC395EDD48C4A9D00A7A784 /* Support Files */, + 0F3225617BB79E4F9D614C140A307E07 /* EXLocalAuthentication.h */, + DD1873B8D345D785644EF681C883BF15 /* EXLocalAuthentication.m */, + FF2E0C50BF0E0624DA6CD4F8E21670F7 /* Pod */, + 0870E473CB28BF6F12C943E7180472B2 /* Support Files */, ); - name = EXKeepAwake; - path = "../../node_modules/expo-keep-awake/ios"; + name = EXLocalAuthentication; + path = "../../node_modules/expo-local-authentication/ios"; sourceTree = ""; }; - FD81C4DAA5ECF23E7F1F7A5B395E4E58 /* RNFBCrashlytics */ = { - isa = PBXGroup; - children = ( - 58A97643CC731C7626CF8D324A13E90A /* RNFBCrashlyticsInitProvider.h */, - 31D0D18B5D9D3B7F294402FC5289F1FE /* RNFBCrashlyticsInitProvider.m */, - D956D2806D0F529E17960D261C2D725E /* RNFBCrashlyticsModule.h */, - 9454578DD2DBF791A1854C6669918622 /* RNFBCrashlyticsModule.m */, - 86BDA136FE2A451B3DC69B5D8EE10D5F /* Pod */, - AB20F49EC4C379C7F4BADE53ED4BA2EC /* Support Files */, + FF29C39DA2801102F0E31568BB9257D8 /* Source */ = { + isa = PBXGroup; + children = ( + 974D27C6BB7FA744CAF29AFB084679CD /* BSG_KSCrashReportWriter.h */, + EE035A1EBB3E64A8A9FC3DB0AD169EFA /* BSGConnectivity.h */, + 921838622BDFEB12CE507B8D55A32497 /* BSGConnectivity.m */, + 1B00F220BB250E5BE21D432F2DB9D3AC /* BSGOutOfMemoryWatchdog.h */, + EAE79DFBFBFC79287C9F2B59BCE461FE /* BSGOutOfMemoryWatchdog.m */, + 03770F5DFA6E69008D6F336601625A9B /* BSGSerialization.h */, + 9BA95D42F40D31629F11CA7A8071D173 /* BSGSerialization.m */, + 69BE147DBF1C89F7EB3F9F2F497D091B /* Bugsnag.h */, + 11D08622124B7D25AB05E3AACA15FA8B /* Bugsnag.m */, + 6B746F94F26FC597741614A3D155D6D7 /* BugsnagApiClient.h */, + AAF6DFD1680B4843D7869192BAFB762C /* BugsnagApiClient.m */, + 09F30ECACC804C987E88BEA748DC15EB /* BugsnagBreadcrumb.h */, + D597CA5A46DDE523098E80808CA77D5E /* BugsnagBreadcrumb.m */, + 9EA7B638DE3BA0082760D9A915C72D46 /* BugsnagCollections.h */, + 28D8E017C6DB25E77E69884551476E01 /* BugsnagCollections.m */, + 94FD73B8023F68344113833DE2CAC507 /* BugsnagConfiguration.h */, + F1E1361C4992B431E48CAD0CC738A4BB /* BugsnagConfiguration.m */, + F00E8C61BDB02F994FBC09F5A222BB0E /* BugsnagCrashReport.h */, + CF226AAE0BDB6B804BA947C361D94F0D /* BugsnagCrashReport.m */, + 4D3473E2A2D435AD8B445914AFAC346C /* BugsnagCrashSentry.h */, + 87C0745C2B00E26851984475A2EC1F6C /* BugsnagCrashSentry.m */, + A407E803874A512180988E07B0E2ED4D /* BugsnagErrorReportApiClient.h */, + 40C7E4169C54113C2FCBB8C9EF0D0985 /* BugsnagErrorReportApiClient.m */, + 0C1D2430316CBD16AB89639D699E474E /* BugsnagFileStore.h */, + 35FFEB9CD4AA29208CB12E309DB7B2C5 /* BugsnagFileStore.m */, + BC4804B36143588010725865A3FF6163 /* BugsnagHandledState.h */, + AE3654370AF6B4CA21D4A8AFC49DA6F9 /* BugsnagHandledState.m */, + 49AADD6BD5E0B32B16B8CC3831EE45D6 /* BugsnagKeys.h */, + 5592D9102B1946F1E2951AE96ECFD981 /* BugsnagKSCrashSysInfoParser.h */, + 19E2B4C7FA04C7A3F069EE6BCFB3C136 /* BugsnagKSCrashSysInfoParser.m */, + 68BCB8E2DFD66A5A7CD65A2DAA4A220C /* BugsnagLogger.h */, + E7B00542CEB17F446EE6CAD048129DB2 /* BugsnagMetaData.h */, + 691BC6D687CAE256809AFE66D8CD554A /* BugsnagMetaData.m */, + 71D9B4C6AB6A39AF8B56EBD72B0576BF /* BugsnagNotifier.h */, + 0B668095E55E618B71B62C3C8BC8A958 /* BugsnagNotifier.m */, + 8515A97E19679DDB5C9AA3A05AEB397F /* BugsnagPlugin.h */, + E8942F0326870A19E19396FF8D4C8AC8 /* BugsnagSession.h */, + 1513AE7CADFE33E4EFA8F55AF595DA06 /* BugsnagSession.m */, + F39576908275793365CCF545589D1BC7 /* BugsnagSessionFileStore.h */, + 53B7B87D245938972CE9032911CC1F1B /* BugsnagSessionFileStore.m */, + 5577C6E47900305704D227741EB417D4 /* BugsnagSessionTracker.h */, + A5A38ECA87AFCF18D64753DDF96D020A /* BugsnagSessionTracker.m */, + D7CBB395D27136A57AB09F85AB4FD00B /* BugsnagSessionTrackingApiClient.h */, + 6085826FF5A89F9CCD32272052050F3C /* BugsnagSessionTrackingApiClient.m */, + 402F9A4B1BC19CD55734D78F114BA4D6 /* BugsnagSessionTrackingPayload.h */, + 12A48549908AB9B411AED5D6AB919602 /* BugsnagSessionTrackingPayload.m */, + 71157C05BECA87687AFE8D501C5ADF97 /* BugsnagSink.h */, + FB6E0AB584422C218E5E04B4224C15B2 /* BugsnagSink.m */, + 1102DA8401DC0663A676D1593BFDCA63 /* BugsnagUser.h */, + EA0AD6C1E6118025A3DE02DD12F1AAAC /* BugsnagUser.m */, + 05B0E1D9D63EB27E1BF20F304EB190E8 /* Private.h */, + 3BA06E93989808F789FEB1C70AFF44C8 /* KSCrash */, ); - name = RNFBCrashlytics; - path = "../../node_modules/@react-native-firebase/crashlytics"; + name = Source; + path = Source; sourceTree = ""; }; - FDCADDF3D82BD691D17229A662E90DD0 /* Pod */ = { + FF2E0C50BF0E0624DA6CD4F8E21670F7 /* Pod */ = { isa = PBXGroup; children = ( - 316C4B479F4BD6A96108B7628E50750F /* react-native-slider.podspec */, + 01A33E62AF1208C6BAC76B2487E693F9 /* EXLocalAuthentication.podspec */, ); name = Pod; sourceTree = ""; }; - FF2FD334C4DDBD3DC2498777BB33362B /* Support Files */ = { - isa = PBXGroup; - children = ( - FC1D83CACEF7424175AA61B3864FD586 /* RNScreens-dummy.m */, - 8FCDC781E38756A04A3732BA0422E7B5 /* RNScreens-prefix.pch */, - 41FED78D9D58D4FDF3AD5E281760AD9E /* RNScreens.debug.xcconfig */, - CC3B029D80BE1096B22E0C92D046BD78 /* RNScreens.release.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNScreens"; - sourceTree = ""; - }; FFF5EB8C737C1F902EF2282EB03A520E /* FBDefines */ = { isa = PBXGroup; children = ( @@ -18565,6 +18723,14 @@ /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ + 0110F2CEFD0C1B0307FC0C8E9FA53278 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + C346D05831C7C31A058EA2D7DEFFF89C /* Pods-RocketChatRN-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 011E737F34AE6D63FE429759BE18ABEE /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -18745,14 +18911,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 1D03EB8387A634828BF3DC557B58FA86 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 25AF1AEFA866EDC6A96A6DF9F10B16F0 /* Pods-ShareRocketChatRN-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 1E4ACAD149C74B00A7AA9EB780AAD1D6 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -19205,6 +19363,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 7F056B380F74B3314C7A3ECEB5BA74EB /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 51FAD417EA4FD4E827E97A94D5E306C7 /* Pods-ShareRocketChatRN-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 7FC75376C860CD254E644EB7D22F598B /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -19580,14 +19746,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A65342FDD4CC203020C200922AF5ACF9 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - B2902F1E7248FFA4EEE31834F4F6D8BD /* Pods-RocketChatRN-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; A7E0E8586D91B30169B8D45DF7B71114 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -20266,6 +20424,26 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + C6EB7A4610C2DBDB42E0BDC1F8A6BE96 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 4251D386D806C990C2769DCD9724E509 /* Aes.h in Headers */, + 38A0CA9FBEA31F048D2140A01BFCA799 /* Hmac.h in Headers */, + DDE41C0E363F22BFF971DBF95C46D05C /* Pbkdf2.h in Headers */, + F86EC2AE204708776025E99A560BD464 /* RCTAes.h in Headers */, + 4E5B70B003F832BD10759DF14BEAA06A /* RCTHmac.h in Headers */, + 53C03D42096A37D4FE9104C745EDF977 /* RCTPbkdf2.h in Headers */, + 3DA41B210317B4BC54A71854FD33A978 /* RCTRsa.h in Headers */, + 938F01948CE052FFD89E82C8B4C9F0E0 /* RCTSha.h in Headers */, + CDFBD4DE841B0F2AFDAE7737D5508E6E /* RNRandomBytes.h in Headers */, + 3ECB1C0FAD5E775BF7783DDFB6335FDE /* Rsa.h in Headers */, + 1EB323088211727F865CA3775B4D98CC /* RsaFormatter.h in Headers */, + 0BBB8E4D44E07EA8C4295F1724F56886 /* Sha.h in Headers */, + 7F30F169AD96C88B5D4E3518E16E58AA /* Shared.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; C75611004B6B96FBFFF031097B74E7A4 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -22173,128 +22351,129 @@ }; 9C801345ED2C78BD1674053E7BE5D6ED /* Pods-ShareRocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = A9FDC4BD6357D1474D9AA0988E9DD337 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; + buildConfigurationList = FDA3793208D6B89FE379E0EBF5D90AE1 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; buildPhases = ( - 1D03EB8387A634828BF3DC557B58FA86 /* Headers */, - EE16AF4846CEB073B769F3023DDD1F17 /* Sources */, - C72C08D1200886957BFEC33E236F1014 /* Frameworks */, + 7F056B380F74B3314C7A3ECEB5BA74EB /* Headers */, + D878186A21DAEDC9ECD6D84E3334B32D /* Sources */, + 9FF07200459CBF6400AE6012D62B9AAC /* Frameworks */, ); buildRules = ( ); dependencies = ( - 459A3D1A21634B589B2F43B855A61B7E /* PBXTargetDependency */, - 78DB55D0824B5ECB255F897151DA48C3 /* PBXTargetDependency */, - F6845044C9D1F85963240D40A8CF66CE /* PBXTargetDependency */, - D56ABD25564E4D543838DDF2E31F21AB /* PBXTargetDependency */, - A4932993120A302C7E09AB985581BA4A /* PBXTargetDependency */, - 73B1C592BF6ABE5F2CDFE1510620F7A4 /* PBXTargetDependency */, - 604415B1C79F63B80EF02DA1DA340190 /* PBXTargetDependency */, - E59BCF8EFCBD9C5476FDABA90C5814E8 /* PBXTargetDependency */, - B8FF2A0A932FB07095790741EB3D9396 /* PBXTargetDependency */, - 4673914ED7B26882960E71D09BD6EA17 /* PBXTargetDependency */, - BD8E217B2619F102FA8F1F7847A33546 /* PBXTargetDependency */, - 6FF17E32988C5C942056038551B75B43 /* PBXTargetDependency */, - D5A9B3FC93AB212ACD1E74DD16D724F1 /* PBXTargetDependency */, - 367F85DB46C38CBB261ECB998D8C4054 /* PBXTargetDependency */, - ADB901FB82F34F3628E56095469FA945 /* PBXTargetDependency */, - F1FC8BAE0A96C66B6EB4358258DFACCA /* PBXTargetDependency */, - 8DFEC5A7BE6A963B6A0F2B359E913B5F /* PBXTargetDependency */, - 29A1DCE4E1087487D901530BBE40CB12 /* PBXTargetDependency */, - 68730AD08828F3D223E2828A88A73AB8 /* PBXTargetDependency */, - 8AA00DB9A342B3A29034377D4AC15958 /* PBXTargetDependency */, - E0F6CAE2B0912436706447EBFA8936DB /* PBXTargetDependency */, - 976FA7E0E567B7EF4588D15FAC2E5810 /* PBXTargetDependency */, - E10AFAC3057FD964C466F26D527BA92B /* PBXTargetDependency */, - 69A6CD57C318DE19B72D06B8EC0F5FD3 /* PBXTargetDependency */, - 88FBEE29C4CD193B0FC2438716A7C259 /* PBXTargetDependency */, - F6F02601B64F7A899C53147731C94B7A /* PBXTargetDependency */, - BC00F0B1F90087E0576DCC395F487B2E /* PBXTargetDependency */, - AF9AB8A52A013C2B6F6126B2878D2166 /* PBXTargetDependency */, - 235F54D738ACEA3FDA20B2DC23A548EF /* PBXTargetDependency */, - 17159EA60C9A940FFF97001977494C48 /* PBXTargetDependency */, - D5EC79833E7F34FE5D2AE073E2EF4EE3 /* PBXTargetDependency */, - D9850D7E1EFCC45C877A53342826541B /* PBXTargetDependency */, - C47CEA905059B69507559936B9EBAB14 /* PBXTargetDependency */, - 8A246944BD9BF1510426A60B4B79C8D9 /* PBXTargetDependency */, - DE4600EEF1BF80E488532B4A9347AB91 /* PBXTargetDependency */, - 1F7450AA2C34398418EAF86971ABFBFF /* PBXTargetDependency */, - F2F4B54483C4E024FEDD562422BF8649 /* PBXTargetDependency */, - BD1A0F5FD33DCC5A74FDB51B9515DF06 /* PBXTargetDependency */, - B6CB5E7F75EFE8C915A966B47D2ACB92 /* PBXTargetDependency */, - 193975774603B34073DE52A7E26ABC3D /* PBXTargetDependency */, - 166E9428C7133CFA4E7BA14D4EB26ABD /* PBXTargetDependency */, - 51BE449E5D84691EDD9B7CC200927165 /* PBXTargetDependency */, - 111CCCDBA82F6CDF807DCBA5A8B0EBD3 /* PBXTargetDependency */, - 479DFA0EF2B7EF31CD72A0C2AC75AA1E /* PBXTargetDependency */, - 2A60B80F85B5532086718BF530B74B4B /* PBXTargetDependency */, - 70581F56E1509B8235D0C83DE44F2E71 /* PBXTargetDependency */, - 38C246704326A70EBFD0446BBA40966C /* PBXTargetDependency */, - 5E2CAD3B8BCB85FA42EB477FC2E3BF4D /* PBXTargetDependency */, - C8575F8BB7FBE181EB7066A740CD601F /* PBXTargetDependency */, - 4FB16A911EE09FD164AD7BDAB97FADC5 /* PBXTargetDependency */, - 6D6C661E7B9AF6EE1C064CCB01AB4205 /* PBXTargetDependency */, - C57D10C69B26DCC3917100EE0D8CEB3C /* PBXTargetDependency */, - 87F0CDD69C50A2818BC320DECEB03BA4 /* PBXTargetDependency */, - 2F97A56358544A977A42C12226F1EDD4 /* PBXTargetDependency */, - 557BD761E36519134C15EAD97C2F7051 /* PBXTargetDependency */, - 3D0DB87ED72C0A73262A96084165DF4F /* PBXTargetDependency */, - DD496B3802798311DA3BE2A056C0B8CF /* PBXTargetDependency */, - 414F8BF8B71D025F6E39A2BDA8D40230 /* PBXTargetDependency */, - 9D12EC0FCD0AC6519783B1E934B0FD1B /* PBXTargetDependency */, - 2ED4221DEA77F8BF7B900544AFA154CC /* PBXTargetDependency */, - D0DAA51893D7D01013EF6D17CD01E5E2 /* PBXTargetDependency */, - DE06F05CB467E64B5594ECE50618EC61 /* PBXTargetDependency */, - 4CDADBF1DFD5E4D1351AB82863A6A9AB /* PBXTargetDependency */, - 9A213DCD1A88E7255871EAC4CC1E564E /* PBXTargetDependency */, - 17A28054C7140C25295F7A51C1F7B3F2 /* PBXTargetDependency */, - D1B80D5E1FFCEB90075B5FB9857752F9 /* PBXTargetDependency */, - 9C34EE49FD661A5331345C5F44727947 /* PBXTargetDependency */, - 85D856D696027CC5428DA932D390A1EB /* PBXTargetDependency */, - 6BF2862C0F2520279E871BEC3DD5CDCD /* PBXTargetDependency */, - 726C07E3BB7D4F0100E3884A938286EE /* PBXTargetDependency */, - 31EC5A4FD273DC63CC415151E5618CC1 /* PBXTargetDependency */, - E819E4CD2FD53FDFEA6E63D553ACA054 /* PBXTargetDependency */, - A07714E330CB35CCACE3AE6428147009 /* PBXTargetDependency */, - 05B743FC5739FE427B4E3B6DC15498DA /* PBXTargetDependency */, - 3FA2CE24F233C074190F51B9EE0524CC /* PBXTargetDependency */, - C73A558938E341FCDC078B40F5F019EE /* PBXTargetDependency */, - 83AF158865197240427282E3C32FF1D8 /* PBXTargetDependency */, - 574166C6BC2CD1949243DF9103CAF7CD /* PBXTargetDependency */, - BA6B6122BAD82D5CB0BFFCA9912246F5 /* PBXTargetDependency */, - 89FDEFB52A2A359D8FB0E6ACEA1EA8EC /* PBXTargetDependency */, - 5E0B122BC644AD91887C1789BA06F886 /* PBXTargetDependency */, - 8AC17A577FCACE746BDD0FA888FF0DAC /* PBXTargetDependency */, - 37507218DB4CE6C01C248376DD6BF077 /* PBXTargetDependency */, - DF48B763E8928213E008106D1BFA6973 /* PBXTargetDependency */, - 0D1CE17F1F435466D1BD1E758D82BF88 /* PBXTargetDependency */, - 264499A42BC4BE7C900DD44D18437ACD /* PBXTargetDependency */, - A0B5F04B2384C409F112C368294004BC /* PBXTargetDependency */, - 91EF5D2035FA2EF911537A453EBF2562 /* PBXTargetDependency */, - 24B15474698659F4B9B0FC13F02A85BC /* PBXTargetDependency */, - 8DB8FAFD92C168FBF0A0005DAAB1A4FE /* PBXTargetDependency */, - 9056B537D823911604932E2E10B1570C /* PBXTargetDependency */, - A5480FBAB696D18491B23A15ADF84A7C /* PBXTargetDependency */, - 1DAD25BAFBF74D4B3A49D61F745FBF8F /* PBXTargetDependency */, - F8B6F8DB25AB325478B75C3A9A29EBC0 /* PBXTargetDependency */, - 5293CA9D11E6894D549634E7D8C041E0 /* PBXTargetDependency */, - CDBE6654F13DC9C7A24D00145F56DF01 /* PBXTargetDependency */, - 625BCFA4FBF235FBC1A1092A558965E3 /* PBXTargetDependency */, - 91C0F6C083E7AE0F01544A4880F201BA /* PBXTargetDependency */, - 6A2E9FA1C9D212793ECA0622E31CDDC8 /* PBXTargetDependency */, - FD6B24836F3DAB432256885603F29AE6 /* PBXTargetDependency */, - 47E752A1B3ECE371DD8D036AFE151538 /* PBXTargetDependency */, - 251104A6B10403A5A6CD490A257808F7 /* PBXTargetDependency */, - B3CE52E42076A48F38EF624DD8171212 /* PBXTargetDependency */, - 092789A25C7C8E9335722B6AC8D6FCFD /* PBXTargetDependency */, - E93512688EB7F5AC5080541457992B37 /* PBXTargetDependency */, - CD20DB0CDFCEE83349A17C394DFF57AD /* PBXTargetDependency */, - 821BD7D041828CA8EEEE50CB33D45168 /* PBXTargetDependency */, - AF7D063DE16FD795063C5E0BD9BB35F1 /* PBXTargetDependency */, - F4394E6D140855F13C7E085D52017FC3 /* PBXTargetDependency */, - 6FE0F63578F810BC6E78CD8746F6733A /* PBXTargetDependency */, - CA4FDFA5DB013DE7C4D05C63463591A3 /* PBXTargetDependency */, - 566C3E86107E0E0DD1D7F9BA63555CD5 /* PBXTargetDependency */, - 9B43CFD67EAD8AB9E098EC2DC3258B2A /* PBXTargetDependency */, + F777DAEC84F07192E8CCB9414974276A /* PBXTargetDependency */, + 325511427E153C35D07389E6A0DA1EA6 /* PBXTargetDependency */, + B12773451AD535DEC17BDA464ED2404B /* PBXTargetDependency */, + 4C733CEC6C0D9A517657A8265D2337C1 /* PBXTargetDependency */, + 0B6E2E12D368C8B6CAD1ADF448B65DF3 /* PBXTargetDependency */, + 225D5C93D080F26AF41077DE8828F56E /* PBXTargetDependency */, + 6F154F9E3F9A4B102EBE12F75D1E2C62 /* PBXTargetDependency */, + 518647849A979626E7E0E3B8C82CFFA8 /* PBXTargetDependency */, + C7E148418BDC1EE12585CF2ECBD2A068 /* PBXTargetDependency */, + D2C5880FF4EC91EE05FBBC5F7ACC48E5 /* PBXTargetDependency */, + 303511DFD464D4426990F7C480FA2F80 /* PBXTargetDependency */, + 243B7E99B88D2F49A630CB6E62985E6E /* PBXTargetDependency */, + 9A54C25C4D656A9BDE58672021762566 /* PBXTargetDependency */, + 3E7197A54CC7EFD01FA5C516FA16EA41 /* PBXTargetDependency */, + A48DAD4BD965C9810FE15DDA4A472702 /* PBXTargetDependency */, + 621FCC1357EE53AA6DE3DFDFDD9A28CB /* PBXTargetDependency */, + E80781B4303B82DC7DDA3C8DB90A119B /* PBXTargetDependency */, + 4249957C84BF5D2D58944FA1A62F180D /* PBXTargetDependency */, + B4E1B64957057A684071F49D940BA955 /* PBXTargetDependency */, + 7CD6107CAD163F0C632153CA5B3F3C9C /* PBXTargetDependency */, + 90CD8583DB4201EB0F9476819F204B22 /* PBXTargetDependency */, + CC4498CB8FA35C1FD5F4024850B7C347 /* PBXTargetDependency */, + 26F86247E9761835F910DE3BBC6A1EB2 /* PBXTargetDependency */, + 7A6627C14ECA18D0E5D1460CCB32608E /* PBXTargetDependency */, + EDE4B3B642FEF439BDFD00E237BEFDF6 /* PBXTargetDependency */, + 1F17A37AB630AD595370AC1D7BEEA5F8 /* PBXTargetDependency */, + DEFBA5571A74870B3969F38E90BB927E /* PBXTargetDependency */, + 71173C3DB63B210C93F681046C06A1E2 /* PBXTargetDependency */, + 2CBFA791AB12AFD81FB6CFA94D64D1F3 /* PBXTargetDependency */, + 6F46A931DC4EFE7E110A0C170656512F /* PBXTargetDependency */, + F992A69349DB8ED5D62558269EA9D966 /* PBXTargetDependency */, + 4E23C6C761CE36972A5A35F98D676BC4 /* PBXTargetDependency */, + B3AA3B6C88543739EB55ECB98EE1F8E8 /* PBXTargetDependency */, + 7B4090BCEE16C4520DF09546C6BCDC5E /* PBXTargetDependency */, + 337433C5ECFBE19529AEF6A6833B7D5C /* PBXTargetDependency */, + C2A0D5E84C1B0EC349EDC8D49D1E5B01 /* PBXTargetDependency */, + B5B732C02A9EFC3A177C22065D967ACC /* PBXTargetDependency */, + A7CDE345143DA4B4033E635C973C6E80 /* PBXTargetDependency */, + 189A2F323662275B74C5D292FD93DDA4 /* PBXTargetDependency */, + 86521DF2C8E2D379C2BD0471AAC9E657 /* PBXTargetDependency */, + B1E8645A56B83FFCE6BFD9E60AEFF219 /* PBXTargetDependency */, + E639C2719680F1C841848E6515436917 /* PBXTargetDependency */, + 80AD8A6771597B4EF338FA8F945CC789 /* PBXTargetDependency */, + 8E56562A8D2C03726648B92C08EF0E4A /* PBXTargetDependency */, + A7E80D2CDD218D50F7E8CCC9E4EC39CC /* PBXTargetDependency */, + 4ADFD9BBE653D45147ACD33A808FA18F /* PBXTargetDependency */, + 871019C9FD8BF017DADED71E0B49739F /* PBXTargetDependency */, + 65C014E22A004953268CC1CC51B83F82 /* PBXTargetDependency */, + 20896F1F53C3BEB8FA198BCC8E9C09EC /* PBXTargetDependency */, + D78159152E651C8B28D6E662AB668728 /* PBXTargetDependency */, + 7B44FDDA61B1C950C71CD47226C8CA42 /* PBXTargetDependency */, + E7562746CE69C0AC5B62568B326CF522 /* PBXTargetDependency */, + 7ADFC0716841A46E99D87E79199D0938 /* PBXTargetDependency */, + EE4C42A593E71810E5E81614C489B1E1 /* PBXTargetDependency */, + 161217D7E1070387CBFA21645BA12DFD /* PBXTargetDependency */, + 4067CBB61596C97F02F1DE88AE2EB757 /* PBXTargetDependency */, + 628EBD222A38BED6F631A0033AA1E510 /* PBXTargetDependency */, + 4DE840F46938853B68EB44B51D9F9EBE /* PBXTargetDependency */, + CDC7BC4784E8ED0193BA3BC19E90FB0C /* PBXTargetDependency */, + FA4EAA02E3BAF8913C0B39F0D12FBDA4 /* PBXTargetDependency */, + 5563597A20719EACA3BE41A29EBCEBA0 /* PBXTargetDependency */, + 6DB7FF6F1FDF3C2E96429277C6F1875F /* PBXTargetDependency */, + E74D907D8499F3CFBBF8762545B4CFA5 /* PBXTargetDependency */, + EC0D16E1177B611EDEF3361C6B50BC0B /* PBXTargetDependency */, + 1D450BC46105E55059B5291F2E43EDC2 /* PBXTargetDependency */, + 3EDE0C3EB27B566FF858AD0D4359B711 /* PBXTargetDependency */, + 41C22F957A9FF1F001B9A9B85161342F /* PBXTargetDependency */, + 1B89728C4F33029CE0991D65D9990D2A /* PBXTargetDependency */, + 3F8ABE5940A3A54737D6BAD5FF155ABC /* PBXTargetDependency */, + 72C566E689E40A4D46C1EEC24C34C25E /* PBXTargetDependency */, + AE9AE34D488788408C6D8E003E553AB6 /* PBXTargetDependency */, + 92DD31BE1EE2AAA12190756A3E682766 /* PBXTargetDependency */, + 2D5636AAA74FB1BEECA6EEBE8A0F2517 /* PBXTargetDependency */, + 1BAA00278D8783BB6F276D2A355297DF /* PBXTargetDependency */, + 8477E2D683E36004894B29DE97029254 /* PBXTargetDependency */, + 859C05C37B75B7CDC8AB008139375F52 /* PBXTargetDependency */, + 815DF33A2274AA48583248B3F45B494C /* PBXTargetDependency */, + A94C555F94B1C3011C1167BBC1CE7964 /* PBXTargetDependency */, + 0D8338207FF26956FACDAE3B6E66733C /* PBXTargetDependency */, + 773C4C9372AA308457FCACAD24E2593F /* PBXTargetDependency */, + 1D5248F4062E62E823CFB305EB007EA1 /* PBXTargetDependency */, + 84629EB8DDB4A8B0D58835FC3E8F845E /* PBXTargetDependency */, + C54FEE278B90C9FB227D8CCCB50ED3DB /* PBXTargetDependency */, + 6AA3A57B69D3E380A7B2ABFEF87052AA /* PBXTargetDependency */, + 35DBA93F1C0E2B3AF8E02A6347BACAC6 /* PBXTargetDependency */, + F3175487AA93023705C5A8C8C9960A64 /* PBXTargetDependency */, + 5F36FBEE96BC576111141547D8F6147C /* PBXTargetDependency */, + 420121698C703BD3D3F10C90DA764ED1 /* PBXTargetDependency */, + A31B3D1B80B8A4A6B49790F332C375C4 /* PBXTargetDependency */, + 86015C20509D7F3C46528FC1CABA1D86 /* PBXTargetDependency */, + 0155EF287B95D54E6E7726BB73F1C15C /* PBXTargetDependency */, + 9DC39EF7E8C9742DDA7A90F0A8DB90FF /* PBXTargetDependency */, + 618A7F51DCF8FF125446823AE897D95A /* PBXTargetDependency */, + 68EEE8B3068D0AA6BE9684CE65B8060F /* PBXTargetDependency */, + 43DB2B9B75A308BF29DE4F819927F45C /* PBXTargetDependency */, + ED1118FD4F9F8734CED3AAC9456B1DC3 /* PBXTargetDependency */, + 19B9D03C216B36E4FBB2875B8D461911 /* PBXTargetDependency */, + C50FA462E95BBF52EDCBDC809F2A54F6 /* PBXTargetDependency */, + F2B1D738EC334FD7CB3279D5893D0B1C /* PBXTargetDependency */, + ACFA046877CE7A9517634BE2E207621A /* PBXTargetDependency */, + 241596CB190E965CF29F0C5B0AEE5CF3 /* PBXTargetDependency */, + 013C90FFE9CEB958C55A075B30D42E9C /* PBXTargetDependency */, + 9FAE489BBA0A01A86489C936A5A3989A /* PBXTargetDependency */, + D9A1380EAA8190A0C5C4A60813B059CD /* PBXTargetDependency */, + 88952FC3161058774A80A6F75696247D /* PBXTargetDependency */, + 9C9FDC7A9C8F73410D3AED0B0F171945 /* PBXTargetDependency */, + 8258646A838E0C5AB97738028A3720D1 /* PBXTargetDependency */, + 170839ABB6FC8CBE7C5F9CB90A7295E5 /* PBXTargetDependency */, + BA70064101E6D086314B256AF19330CC /* PBXTargetDependency */, + A11FA30F50DC85E1F08D95F3FA594D14 /* PBXTargetDependency */, + BD7DB2C15A285C19E19D6DE4FA874A68 /* PBXTargetDependency */, + 2D99E4F5796B9DD859959AB17785F0FE /* PBXTargetDependency */, + 43EF123F196EDCC7D86AAA1F3F6153CE /* PBXTargetDependency */, + 4D3193B14B70785B482196063BA0C0E0 /* PBXTargetDependency */, ); name = "Pods-ShareRocketChatRN"; productName = "Pods-ShareRocketChatRN"; @@ -22377,128 +22556,129 @@ }; B37ECF22F1589E28F59BC9990B4DC476 /* Pods-RocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = F8E74138128FFB01CAC85D542269B22B /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; + buildConfigurationList = EF2000D2E749B8A2E3D374F3B77AAD2D /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; buildPhases = ( - A65342FDD4CC203020C200922AF5ACF9 /* Headers */, - E82A84204F1BDE502CB3FA94D052C9DB /* Sources */, - C760E470A50E195F142F42E64F253B90 /* Frameworks */, + 0110F2CEFD0C1B0307FC0C8E9FA53278 /* Headers */, + BA1D3B4728E3F707992786790BE72426 /* Sources */, + 1F58A4CEDF767F8DB0AC1BC5674385C2 /* Frameworks */, ); buildRules = ( ); dependencies = ( - AFE40D7C71BC70BCF97592506BF26A0E /* PBXTargetDependency */, - DFBBC8ED52F10DB46F5EC21994357C38 /* PBXTargetDependency */, - 13DB896F77E76CA56846820611DB669B /* PBXTargetDependency */, - 9B6DB48F6B81E18686867F96EC7DBCFF /* PBXTargetDependency */, - BA98B2C792C5A2A9FE43C45BD18EF936 /* PBXTargetDependency */, - AE51FE4D6A76915901B071802B23F956 /* PBXTargetDependency */, - C272C1B3100F47B6BBEA4BFF875AB55D /* PBXTargetDependency */, - 4F67553BF4C80B0D4EFA4CFBB49B42EC /* PBXTargetDependency */, - 36181EA10D0CB8CD962C3556A8A878CF /* PBXTargetDependency */, - 4B71F70F82133AEBAFE451DB7A96B125 /* PBXTargetDependency */, - 3F9FD5C2282E2499BC237FCC163D48A9 /* PBXTargetDependency */, - 9B9EBA298AA5078E3605F9032CFBA60B /* PBXTargetDependency */, - B0E931478DA15DFE28F0509C56A5AAAA /* PBXTargetDependency */, - 793E6F8DA66825A652E3C6DB27C1D819 /* PBXTargetDependency */, - 9A61B343D7DA1B6D0AA49FE7CF7543B4 /* PBXTargetDependency */, - 5824872CC1ED46F9D297B6ECA9237623 /* PBXTargetDependency */, - F6195B7CF436117AE4ABAEC1E8EF265F /* PBXTargetDependency */, - 864EAED46729331D07E9CC4DB05C4098 /* PBXTargetDependency */, - EC020315738721BD82FC354E2DAE4019 /* PBXTargetDependency */, - B3C9116B55A8CCFA814282C8C2F00C60 /* PBXTargetDependency */, - 3EFD70DC43FE5AECACE00EB9658A4515 /* PBXTargetDependency */, - 7A6C04FD4D22C2CA6803709EB2E0B0ED /* PBXTargetDependency */, - 6B5BE425EE6FB72E90AB19296184C31C /* PBXTargetDependency */, - 207ED09F4A9992AC52178A13EEDE80D0 /* PBXTargetDependency */, - 92D4934E069E91D7AA3069EED5E35A20 /* PBXTargetDependency */, - CEBFE65F25B7FCFA340AFDD8E7DC40FD /* PBXTargetDependency */, - 730C4326B398B7BD795B302BE0E26ADF /* PBXTargetDependency */, - 20E487B497727AC6E4DCE66AEC5F8BDC /* PBXTargetDependency */, - 7697B646059BCFC75CFB34D0A247C015 /* PBXTargetDependency */, - 62D6945A3D0AD7F28ACB4D7F476FF88B /* PBXTargetDependency */, - 11666EED50D586E74EE4B23E6C64E44B /* PBXTargetDependency */, - A0AC13AE89000D66A3114D9D9FA3AAC3 /* PBXTargetDependency */, - 78C0152F53FEB93BAC1D34FB44E6423D /* PBXTargetDependency */, - 6E542366B9683A8FD4B444F972448A06 /* PBXTargetDependency */, - A9C08DD436AA971185617D1DEDB9FE80 /* PBXTargetDependency */, - 7594EE6E91E954FC4264B9CC7D99C9A1 /* PBXTargetDependency */, - 13B1B8273581C95C45687DB5DC69CD8F /* PBXTargetDependency */, - 66930FDBEDD8EDA1A51E7FC02DB1F236 /* PBXTargetDependency */, - 5F8DBBA509A581B1683B4B7A6515F92B /* PBXTargetDependency */, - 4C21ED59DD68642CB80F95BAB7566448 /* PBXTargetDependency */, - EFB60F485FA51972D732CF44C789CA08 /* PBXTargetDependency */, - C2CA6300253A7F2FB05EEDE70EBA2D00 /* PBXTargetDependency */, - 439180A9457B83A4A6BB90279D2569C2 /* PBXTargetDependency */, - AE937192FDA09F2DDC036176CE54B089 /* PBXTargetDependency */, - E7C960E4E30DF2F7A05D9C5EB2B3B911 /* PBXTargetDependency */, - FE333EAC8C85D2FD4BF6C366E7207CCC /* PBXTargetDependency */, - 0E811D3E24BAF3B143706AA6F9FED56C /* PBXTargetDependency */, - D6007D08F9631DBC113DF2C3D79C9B91 /* PBXTargetDependency */, - D57FECE0C7CF029BB2934350E5783D74 /* PBXTargetDependency */, - 62729E6473ACDABC14846740E66976FD /* PBXTargetDependency */, - C8A545D3C915597B7319DFD5BF70A6B8 /* PBXTargetDependency */, - F61FDE36436151FA6CDE30CDA28CD8F2 /* PBXTargetDependency */, - 4B55B2E5D7F161F68AE1D7787387CC2A /* PBXTargetDependency */, - 42A4C63665617135E71EB8568F1B8C17 /* PBXTargetDependency */, - AA18A98B79C24F189F29CF1BD02F9DEB /* PBXTargetDependency */, - 0E95E2B8DA42D178FEAB7BE58656F787 /* PBXTargetDependency */, - 9E20C50B8D082AF437A8A389A77C2528 /* PBXTargetDependency */, - 14A8A3DEAF356A38AFCD3E27213EA735 /* PBXTargetDependency */, - 3220E49A3C07261717F5755831C9CC8E /* PBXTargetDependency */, - BEA002D8626F4CD664198FE31AE1267E /* PBXTargetDependency */, - 7CB2FEF36A4B503E40E1C43B6A7E772F /* PBXTargetDependency */, - A8666E736F94C7BB0EFC3591A11232BE /* PBXTargetDependency */, - 01300D19F9D5DCA65DFB2397F3C19F72 /* PBXTargetDependency */, - 773D3C69DB13B07B952E285712ACC14B /* PBXTargetDependency */, - B644026B53D1FF20BFE2B8755F581292 /* PBXTargetDependency */, - F9278BA9AC3F457DCB416EC01931B607 /* PBXTargetDependency */, - 4DE53C5D3C6B59AB47291EBDFB565F31 /* PBXTargetDependency */, - 9259557FAE596677D3C4C8CCF3F3A76F /* PBXTargetDependency */, - 4413DBAF4C28C1A16709E65B36431252 /* PBXTargetDependency */, - 727305213BCA42241FCDD553DE1683B3 /* PBXTargetDependency */, - DA7D1D4D47ACB955847B15C175094B3C /* PBXTargetDependency */, - 6B55513BA501E95F24273A7CA4E28C81 /* PBXTargetDependency */, - F62674C85B2821D88F1B1892B8AE2BD3 /* PBXTargetDependency */, - C1CD3EC64A03802C67160C9CD2A838A9 /* PBXTargetDependency */, - C54E76401FA8C68885BC5976E1F0C2E9 /* PBXTargetDependency */, - 109FA96E137AB7D7B1C829AAF4447592 /* PBXTargetDependency */, - 2F536AC8B39AB70F0B3EBF75850BC0D2 /* PBXTargetDependency */, - A89DDD8D768828F906D1EEA142D7DD62 /* PBXTargetDependency */, - 44164C77B25FDA5E729F6B4C4288718A /* PBXTargetDependency */, - A64D2C03FC6888E3BA278A3A18DED406 /* PBXTargetDependency */, - C86F82B1AC15C17ABE214F16676E5193 /* PBXTargetDependency */, - 0E35207C013BF4DEF3DA2FE6B83439FA /* PBXTargetDependency */, - AAD991F6A075C5393F970D00A4E9F97C /* PBXTargetDependency */, - BDCDEC2BD57BB86692B7BC2000243F62 /* PBXTargetDependency */, - 8B638225E16F4282312D03F25FDA9ED0 /* PBXTargetDependency */, - 35483217D57C926FFAA2D370CA9957E8 /* PBXTargetDependency */, - C61450C4375B7A72668C6DC77C01BF57 /* PBXTargetDependency */, - 4DE65792C6E10AAF64DB44F461F02927 /* PBXTargetDependency */, - 3CE958DBAC0567978084311054841BCB /* PBXTargetDependency */, - 90F1F1ED909656FF7E1E2ACF52B264A1 /* PBXTargetDependency */, - C93C5E0E25EBCCAE57D6A483431FCEF6 /* PBXTargetDependency */, - 44F133A08308F45E22682DC20737A705 /* PBXTargetDependency */, - 5BFB7C18B46BF01C454EDF9A236ADF23 /* PBXTargetDependency */, - 7C7B56A410501B4EFCA2F11833BFCD92 /* PBXTargetDependency */, - 3FDF9DA132A179EDAEB4457AF489BBAD /* PBXTargetDependency */, - 565A1975D6FCE224210EE68B7B2EB5B2 /* PBXTargetDependency */, - 124D051435AC555D4CC199A15500BB9E /* PBXTargetDependency */, - 088D498F229EFFA8D8A6B3DE4C8E0417 /* PBXTargetDependency */, - 55E542C0F3C76EE86FD443B3A31ADC93 /* PBXTargetDependency */, - DAA8DD87080EC1874603BCDDDB112B9A /* PBXTargetDependency */, - 3B1D881FD465572B9D72A3341AD5EDAA /* PBXTargetDependency */, - 7B702FBFFD3DA75AD730D7C6F9BC11DB /* PBXTargetDependency */, - AF6CA85A23B88B1524E8828FA077EB33 /* PBXTargetDependency */, - C8F4139AB9EDF924F11110F17D495818 /* PBXTargetDependency */, - 1FC063F9C78954A5B7B5C4D8365C5B65 /* PBXTargetDependency */, - D2E77EC2FAD98104FE4D1020A85AD061 /* PBXTargetDependency */, - 330A2468136061BDF6640DC5BAFA01CD /* PBXTargetDependency */, - 46775BDBA3BA16A9BEEA5044F77603A6 /* PBXTargetDependency */, - 717D5016A33FE71B3492E8A383D567B6 /* PBXTargetDependency */, - 3EB54E00199EDBC49605F354666E011B /* PBXTargetDependency */, - EECA9449CD18052CC1788943DE789B45 /* PBXTargetDependency */, - 832916EC2BB8F184EEEDEB65B39D7218 /* PBXTargetDependency */, - 522ADE50C84B0FE3EAE73ED0BEC66BCB /* PBXTargetDependency */, + E74EDA2672774E1D2B840C7FF748EF7C /* PBXTargetDependency */, + C9497CAB4751A467BE4C7767A04C6E48 /* PBXTargetDependency */, + 4F616CD93D76BB10D3D743B5E3341716 /* PBXTargetDependency */, + 87E798F92022D85C76C5A030B7C13DD4 /* PBXTargetDependency */, + 1614FDEF705CC36FE5BA049BC1F013F7 /* PBXTargetDependency */, + 30340AAA894F18528BF2CD97D041FFEE /* PBXTargetDependency */, + 0F60404E022A7DC662BE91C638412EE1 /* PBXTargetDependency */, + 56DADBC46C56C5F10A8D48CE9F7477C7 /* PBXTargetDependency */, + A0293EF5974B5EB749F1D602F5D36DB5 /* PBXTargetDependency */, + FB4E2E9C87EF7640118F8141CF620E83 /* PBXTargetDependency */, + 5FD0BDB145219816654185B747E7C209 /* PBXTargetDependency */, + 5710A595FBBE590F22B9F4FAF2E1CE24 /* PBXTargetDependency */, + 93B6E6A981F19333B15AB53C7AA34906 /* PBXTargetDependency */, + 6AA65C64346DB9A55082FF8C22653612 /* PBXTargetDependency */, + AD161522B789F7BA63942D772ADE5610 /* PBXTargetDependency */, + FD1F896DDE01C27431DE9F4CA4AAA0E5 /* PBXTargetDependency */, + E2D7F8B0329BC4A8A41DB6C527C42812 /* PBXTargetDependency */, + E05DF521AABFDE0068334E17626773A2 /* PBXTargetDependency */, + 8EAB34970D85BE613A6174FE2D3E792A /* PBXTargetDependency */, + 613543704A192C87BA5AFC03F3591F38 /* PBXTargetDependency */, + DE9AF2F70D8B1C2B3380C869B2B99035 /* PBXTargetDependency */, + 2889011D78132B503AE5A0504695E0F5 /* PBXTargetDependency */, + 6FB4F7939613DF2F985A569DB85D7037 /* PBXTargetDependency */, + 1425107853AE89F769FC7DC064E53FEE /* PBXTargetDependency */, + DF42EAB451B59D6EA3B20354CBD7BA83 /* PBXTargetDependency */, + 73679F46A2CDCF0637CECCC894D66DE9 /* PBXTargetDependency */, + CFA1D1C5DE8415F53CE565B6DB41BBBA /* PBXTargetDependency */, + 05E21F471C0A49608085871DE2B00804 /* PBXTargetDependency */, + BD348A1BFC9750BEEB229B7A191EDE44 /* PBXTargetDependency */, + 822B5638EE676DAA3A0BEB0656C75C1B /* PBXTargetDependency */, + 7E1C28ABA8237CF1669293189F933024 /* PBXTargetDependency */, + E2480EEEA00CBEE6DC1F87B3BED5F28B /* PBXTargetDependency */, + D768B857AA45963D35F89B103123102A /* PBXTargetDependency */, + 85112ED9E36E3205ABB24E54280BCA1F /* PBXTargetDependency */, + BAF395129D6FF79F6A48F27C5C8384CE /* PBXTargetDependency */, + A6DE9418F2B658085BBE954A1895CF6C /* PBXTargetDependency */, + 1024C842EBE3427478F87AFBFCAF445E /* PBXTargetDependency */, + 15B1DA762006CE3A29ACEACDEDCE3819 /* PBXTargetDependency */, + F04A1C73ACB8C59F85FE4D3D681B8AEE /* PBXTargetDependency */, + D5BAB13E833BE02187636DD37CEEA897 /* PBXTargetDependency */, + 3DF73EDD514B7C0D98D6EEB619B0440E /* PBXTargetDependency */, + F241FDE1029555CAEF0DA9759BCB6341 /* PBXTargetDependency */, + 3B5896CAABCC7581E3B7A453BDD27295 /* PBXTargetDependency */, + 76678524AD39D5E8AD99E2BD24AA325F /* PBXTargetDependency */, + E0D93A898B075C99444EEAA72F1C2040 /* PBXTargetDependency */, + F85781156E29EE8E0483380264880C75 /* PBXTargetDependency */, + 64569F7CCD6D932B0D9B62F63FEDEE5A /* PBXTargetDependency */, + A0147A68AEF933AB0C9FBB9EBAE2E5AD /* PBXTargetDependency */, + 43BC0B0A573768C912B2A588717F48FC /* PBXTargetDependency */, + 1EAA8E9E8BB76B96DAA6A4FD9C432FE1 /* PBXTargetDependency */, + BA84494251F81CC8C3899BBA858215A4 /* PBXTargetDependency */, + F22650A93EE2BB34BCEB3CCCE0BA1A62 /* PBXTargetDependency */, + A15E0BDABCBD58DF4CA700553ACE75DA /* PBXTargetDependency */, + 140F5F37EC7510097DDFB7789E9CD6BD /* PBXTargetDependency */, + 8CC01C945718DE3FD5CFE5A2C207A4A2 /* PBXTargetDependency */, + E72FBEC5B7ABF94AEC9471ABD8B19726 /* PBXTargetDependency */, + FD716A9A94EB77E34C62A835C8313F40 /* PBXTargetDependency */, + BFFDDB280653B72A3B7AAECD991CAEAF /* PBXTargetDependency */, + 657027BFF6E5D50A16954E7188A575C1 /* PBXTargetDependency */, + 206C9B8E128FD18A6129DE2525F8CDE6 /* PBXTargetDependency */, + 5C98FB7EA8119B933EC84996B7BE4069 /* PBXTargetDependency */, + C891913CBB804A9CCD0C8B77046013A8 /* PBXTargetDependency */, + 52E597B2EEC8A0A29669ED1265F2E665 /* PBXTargetDependency */, + 91C76A9498E0842B48F2D1BE0D95185F /* PBXTargetDependency */, + 3D81E04141EBACCDBD29BBE72B5BCBAF /* PBXTargetDependency */, + 71DC4F776F3B105A4B62EFF07929A8E9 /* PBXTargetDependency */, + D4E9FEA03FB23E102C07B06FFEA09793 /* PBXTargetDependency */, + 736E495FDF0427052EB953868D3E5927 /* PBXTargetDependency */, + E26CA924FC475A6C3649B39BF0EA6E7E /* PBXTargetDependency */, + F76EB6A9BC553094CA94C82D12684536 /* PBXTargetDependency */, + 875DE9F5AE8765CF4058A2301CAA333A /* PBXTargetDependency */, + E7D3BFAC4D11166B7B2A6E25269E4FA6 /* PBXTargetDependency */, + 7291BBDF3396948EE8223BC6C5D24ECA /* PBXTargetDependency */, + BDEB1F8B69B6B22B35D1BD86C23F68FB /* PBXTargetDependency */, + 3B47F5FC53EE4AB51361C4E327130826 /* PBXTargetDependency */, + 5E970EF65DA6800F7A77B54A1C796E26 /* PBXTargetDependency */, + F451BC8AC79FA11B2F1C91E4D37CD41B /* PBXTargetDependency */, + 0612F54F4E4EADF5612F97EC10EB8DBD /* PBXTargetDependency */, + 12C595404940AE25E92A226CC1861B70 /* PBXTargetDependency */, + CAFBC257BE8271CD81AB56E7B34018D9 /* PBXTargetDependency */, + 35CCBE0849A3BE282E077EB400AD3901 /* PBXTargetDependency */, + E6DB5D267B409E06DB21CC58118311C5 /* PBXTargetDependency */, + 51250EAA87D2E515DE94BF6390D1A806 /* PBXTargetDependency */, + 48B4C9AAB873F37AAEA3B83B66CD2F58 /* PBXTargetDependency */, + AD94DDFE4281309EF42ADA72B6CA398D /* PBXTargetDependency */, + 6C2E14EB3E2659EC792F89EDECCC7C9A /* PBXTargetDependency */, + B9ED35B0F527954595A58F0E6255CC52 /* PBXTargetDependency */, + 2F6A34C2A120F91E4959FC3B1706FE1F /* PBXTargetDependency */, + 7E5975006CC64C4BBB9FEEDAE9060D6D /* PBXTargetDependency */, + A99EBA95AC9B964C2826A00F25EFD092 /* PBXTargetDependency */, + 1116A94107FDE9C0AEEECEAC6007A8DE /* PBXTargetDependency */, + B7ECD7C6E679C00C974768C6EBD9A92C /* PBXTargetDependency */, + 6D703E77C0E603B3765BC8A1D5FB0083 /* PBXTargetDependency */, + C99C9DBCA03C14183B3E0A97FD81EA4E /* PBXTargetDependency */, + 4227C89844E3B427650D22EC5A3A0D50 /* PBXTargetDependency */, + D90CD0FA1FD95CF9E731C30CFC473467 /* PBXTargetDependency */, + 5B35C28F49CB255712AD71BDB5601706 /* PBXTargetDependency */, + D3D6459C3A61FF832B3559A3DDB1771E /* PBXTargetDependency */, + BCA7113FDF2435C390856415E47AC03C /* PBXTargetDependency */, + D7FCDD4A4843F517D80A1F5E57C86BC4 /* PBXTargetDependency */, + 478461A4398100809B68DB3D8EC0C2F9 /* PBXTargetDependency */, + 21F2FFC493B30F29EEEFFA0E8CB200B2 /* PBXTargetDependency */, + 27DB140E720D83CD01D17B4DDEEB9A2F /* PBXTargetDependency */, + A059F4FF1B17996C04C06940832E511D /* PBXTargetDependency */, + BEA561B8AB471844550064D8C2993656 /* PBXTargetDependency */, + 29CD395713FBCC4EFA2FD07A6AD346DF /* PBXTargetDependency */, + 0BFCF18EA72AAEA738CC95A42F49B2FB /* PBXTargetDependency */, + 8FE17BBDCBBB170461E08E711736F1EB /* PBXTargetDependency */, + 2C9C412BF917DEF6EE0A60DD28F25A55 /* PBXTargetDependency */, + 79193BEA3A5DF3AA2F143D5FE8253308 /* PBXTargetDependency */, + CD32E58535F46F09AD92CB71D8024257 /* PBXTargetDependency */, + 75840552CE62EA7F21412402840794AA /* PBXTargetDependency */, + 6B0283CA2A127CA576E6F0E920823873 /* PBXTargetDependency */, + 163B5A31F27D0D916AB845B8310A4DF4 /* PBXTargetDependency */, ); name = "Pods-RocketChatRN"; productName = "Pods-RocketChatRN"; @@ -22828,6 +23008,24 @@ productReference = AC12C7E29555A7CFDDEF1EDB5BC2F3DA /* libFlipper-DoubleConversion.a */; productType = "com.apple.product-type.library.static"; }; + D985A509BFE270C95EDCBE6B4CBAF189 /* react-native-simple-crypto */ = { + isa = PBXNativeTarget; + buildConfigurationList = 3AD2263D27A2FE42696548A3F8E496CC /* Build configuration list for PBXNativeTarget "react-native-simple-crypto" */; + buildPhases = ( + C6EB7A4610C2DBDB42E0BDC1F8A6BE96 /* Headers */, + 5B497C2DD02E857006EAAE8FF447F917 /* Sources */, + 932B4983C4AFAC803EEEDFBA187A5FC5 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 5296D148F90597538E2C347ED95C5139 /* PBXTargetDependency */, + ); + name = "react-native-simple-crypto"; + productName = "react-native-simple-crypto"; + productReference = BF1F456334C248BD77BE65C60F42FF67 /* libreact-native-simple-crypto.a */; + productType = "com.apple.product-type.library.static"; + }; DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */ = { isa = PBXNativeTarget; buildConfigurationList = 8D46A94C71026DAFCA27977D570E4F28 /* Build configuration list for PBXNativeTarget "React-jsiexecutor" */; @@ -23077,7 +23275,7 @@ Base, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = 8408B015D8FDF06D5CC8C52509F0F422 /* Products */; + productRefGroup = A90F0A189C5FD1CF7574972F4955696C /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -23145,6 +23343,7 @@ CA400829100F0628EC209FBB08347D42 /* react-native-notifications */, 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */, BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */, + D985A509BFE270C95EDCBE6B4CBAF189 /* react-native-simple-crypto */, A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */, 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */, 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */, @@ -24095,6 +24294,27 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 5B497C2DD02E857006EAAE8FF447F917 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 1E6DC96389E012E5FE37C4FD89DB9E4C /* Aes.m in Sources */, + 31318622EC88D1A315C4BAE778383D4B /* Hmac.m in Sources */, + 3A0EA637D7DF627D07A928155C097290 /* Pbkdf2.m in Sources */, + A0F32959A9598F7DAA984C42B4750B47 /* RCTAes.m in Sources */, + 5CA4ED3E9C1F4A99CD4894C9F5BC72FA /* RCTHmac.m in Sources */, + 9E5F08C2FA5B05D0EE9F1B3EFE01EF62 /* RCTPbkdf2.m in Sources */, + 65977D82BA16D694BCACCE4A414C28B9 /* RCTRsa.m in Sources */, + 6FC2F3328B54FC02FD61A2015FDEF96A /* RCTSha.m in Sources */, + 9AD1BC54E51440917D5EBF663CE23443 /* react-native-simple-crypto-dummy.m in Sources */, + 10D417AC022405982EEE693E88464CC8 /* RNRandomBytes.m in Sources */, + F73F0A045B9EDB72DE99845E0C04AA3B /* Rsa.m in Sources */, + EBFDE9B13797036B29AD2F803D62CD5D /* RsaFormatter.m in Sources */, + B1193470C47CF1A694DC2801AD4560FB /* Sha.m in Sources */, + 7DC968F93A3EAD4C57557C0D17DE894E /* Shared.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 5ED0681D0B0483EFB813699D6C3CA48F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -24602,6 +24822,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + BA1D3B4728E3F707992786790BE72426 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + CD3A4A496B040E5DD375ED4388AF9EB9 /* Pods-RocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; BC3714ABDF8F36F6986C057512938172 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -25071,6 +25299,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + D878186A21DAEDC9ECD6D84E3334B32D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 1C5459C534AC0453DC4CD1446461E40E /* Pods-ShareRocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; DE8508D365FD7F3461F7CDCDF3E2C0E5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -25130,14 +25366,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E82A84204F1BDE502CB3FA94D052C9DB /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - C9AB4DF90B1F2F479B2049D106A5ED95 /* Pods-RocketChatRN-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; E9A805DB38C305E5E485B4D59231F42F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -25176,14 +25404,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - EE16AF4846CEB073B769F3023DDD1F17 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - F225E0A4C81CB21377BEFF6BB385D094 /* Pods-ShareRocketChatRN-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; F376EB0B0E53C97E90BDC5051A01357F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -25312,11 +25532,17 @@ target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; targetProxy = 625664485E68882E020182B4B8593A0B /* PBXContainerItemProxy */; }; - 01300D19F9D5DCA65DFB2397F3C19F72 /* PBXTargetDependency */ = { + 013C90FFE9CEB958C55A075B30D42E9C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 087301B72D18C60324E8D3CE32C7C7DD /* PBXContainerItemProxy */; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = B2B49D99C98D16862D87BF1D8994BD0F /* PBXContainerItemProxy */; + }; + 0155EF287B95D54E6E7726BB73F1C15C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = 8145084F4EAF0F01B4151EEB4C648EF7 /* PBXContainerItemProxy */; }; 057DBA0ECB399D66BB01D657296FECC9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25324,11 +25550,17 @@ target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; targetProxy = 599D1944ADF3E4137B0FD9AF2380696C /* PBXContainerItemProxy */; }; - 05B743FC5739FE427B4E3B6DC15498DA /* PBXTargetDependency */ = { + 05E21F471C0A49608085871DE2B00804 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = AA90526BBAF4A94F88E7297F5621D2CC /* PBXContainerItemProxy */; + name = "Flipper-PeerTalk"; + target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; + targetProxy = 2A6C1FD2C4566B37E0E385AB2366C58B /* PBXContainerItemProxy */; + }; + 0612F54F4E4EADF5612F97EC10EB8DBD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactNativeKeyboardInput; + target = 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */; + targetProxy = BA19FA90E07AEE296003271B8FAC013C /* PBXContainerItemProxy */; }; 079C86DCFA9E1A88C241F00B2B599635 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25348,23 +25580,23 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 449D79087AC8EFD285D3D6948D363A86 /* PBXContainerItemProxy */; }; - 088D498F229EFFA8D8A6B3DE4C8E0417 /* PBXTargetDependency */ = { + 0967E9CC9266AD3C7EF88208095AFE89 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = 2177F1A92E8E677FD3DB9F14BE184C89 /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = CA39C5F52F69F8B71F02BEA427544E35 /* PBXContainerItemProxy */; }; - 092789A25C7C8E9335722B6AC8D6FCFD /* PBXTargetDependency */ = { + 0B6E2E12D368C8B6CAD1ADF448B65DF3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = 99314472C3F1CF983AF02556A35776E7 /* PBXContainerItemProxy */; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = 7EDB38231A01F4090FA47F0C79B9F824 /* PBXContainerItemProxy */; }; - 0967E9CC9266AD3C7EF88208095AFE89 /* PBXTargetDependency */ = { + 0BFCF18EA72AAEA738CC95A42F49B2FB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = CA39C5F52F69F8B71F02BEA427544E35 /* PBXContainerItemProxy */; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = 7C1948695FA6AF641933A7A20299507F /* PBXContainerItemProxy */; }; 0D032123F4EBCE74D9FED646A18CAE69 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25372,11 +25604,11 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 735E3AA43CA3DBC1B064B58F38C962B2 /* PBXContainerItemProxy */; }; - 0D1CE17F1F435466D1BD1E758D82BF88 /* PBXTargetDependency */ = { + 0D8338207FF26956FACDAE3B6E66733C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCameraInterface; - target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; - targetProxy = 57109845350FC6B0CC362A84345F8F7F /* PBXContainerItemProxy */; + name = ReactNativeKeyboardTrackingView; + target = 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */; + targetProxy = 4D1B352944B6F8E5C637255D2A620BBD /* PBXContainerItemProxy */; }; 0E24937F77C37DEE56AA270AB9FBB911 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25384,23 +25616,11 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 3386A20F5DC9F446AF718DB214EB40DB /* PBXContainerItemProxy */; }; - 0E35207C013BF4DEF3DA2FE6B83439FA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = TOCropViewController; - target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; - targetProxy = E5705D0D7A14F5285EF0F7A779925E31 /* PBXContainerItemProxy */; - }; - 0E811D3E24BAF3B143706AA6F9FED56C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFBAnalytics; - target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; - targetProxy = 2CEE24CB66762308FD3A5EA199AC8027 /* PBXContainerItemProxy */; - }; - 0E95E2B8DA42D178FEAB7BE58656F787 /* PBXTargetDependency */ = { + 0F60404E022A7DC662BE91C638412EE1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = 715EF7383BC6591E698164908B2D766C /* PBXContainerItemProxy */; + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = 46C21DABA7EA67BACE2A4C0AEF8B89EA /* PBXContainerItemProxy */; }; 0FDB14D9412426C06AB2B68179373C1D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25408,23 +25628,23 @@ target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; targetProxy = 535AC5015896B54EAC072143514C8D8A /* PBXContainerItemProxy */; }; + 1024C842EBE3427478F87AFBFCAF445E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = 035B35BF0DEC0E685E9A1EDA3B7A602E /* PBXContainerItemProxy */; + }; 109AAD7F89F41A04284880BB80B4C074 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-Folly"; target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; targetProxy = 9BAAC27A785084FD67CA13B8EDA42C7D /* PBXContainerItemProxy */; }; - 109FA96E137AB7D7B1C829AAF4447592 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 6DFDF851E5769007EDFA12AA957954EE /* PBXContainerItemProxy */; - }; - 111CCCDBA82F6CDF807DCBA5A8B0EBD3 /* PBXTargetDependency */ = { + 1116A94107FDE9C0AEEECEAC6007A8DE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNCAsyncStorage; - target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; - targetProxy = B19AB5038FE8A242BFCD762B1BA89AA2 /* PBXContainerItemProxy */; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = B8C5CB33775861082284151A7B87C77D /* PBXContainerItemProxy */; }; 114A0F7B83145569C2F97C37C1E5BFA3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25438,35 +25658,29 @@ target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; targetProxy = 133D66D2446295F17DB286EF95791D1A /* PBXContainerItemProxy */; }; - 11666EED50D586E74EE4B23E6C64E44B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = C5E785DCD343186846D76898EE8FAB55 /* PBXContainerItemProxy */; - }; 118222E1D638D5F55C6170290A4121C6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = DFFBFD630CC61B0FB41AF5DEFC377BDE /* PBXContainerItemProxy */; }; - 124D051435AC555D4CC199A15500BB9E /* PBXTargetDependency */ = { + 12C595404940AE25E92A226CC1861B70 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = YogaKit; - target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; - targetProxy = 780C489924600E2D2175327CB1A49BEE /* PBXContainerItemProxy */; + name = ReactNativeKeyboardTrackingView; + target = 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */; + targetProxy = 7D496F850BCF5ED2F127F6B9D94533C2 /* PBXContainerItemProxy */; }; - 13B1B8273581C95C45687DB5DC69CD8F /* PBXTargetDependency */ = { + 140F5F37EC7510097DDFB7789E9CD6BD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = 17D406D653C0C052B9498FF2C238525C /* PBXContainerItemProxy */; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = C77AB78E75307BB18BC5D00D8FC7B6C6 /* PBXContainerItemProxy */; }; - 13DB896F77E76CA56846820611DB669B /* PBXTargetDependency */ = { + 1425107853AE89F769FC7DC064E53FEE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CocoaLibEvent; - target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; - targetProxy = DD332D06C98468476366962EEB6F446E /* PBXContainerItemProxy */; + name = Flipper; + target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; + targetProxy = 7B0CFD71B2124B5239726149C168C272 /* PBXContainerItemProxy */; }; 145777FF9590FE9C12FECB43C5ACC961 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25474,12 +25688,6 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = E1ABECEC3DA6B13E2002259B8170D9CB /* PBXContainerItemProxy */; }; - 14A8A3DEAF356A38AFCD3E27213EA735 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = 0F81F97AF2058E54B1FCEF8B41DBBFB6 /* PBXContainerItemProxy */; - }; 14D04125E2284DB6D632FA2146727F98 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = YogaKit; @@ -25492,17 +25700,35 @@ target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; targetProxy = C6B0262EE0DC1586E56807A2383ABFED /* PBXContainerItemProxy */; }; - 166E9428C7133CFA4E7BA14D4EB26ABD /* PBXTargetDependency */ = { + 15B1DA762006CE3A29ACEACDEDCE3819 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = EA60B34FAE20DB8AAFA9B1922269139A /* PBXContainerItemProxy */; + name = "OpenSSL-Universal"; + target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; + targetProxy = DD81D12D83447A5869FC71526CD35AFD /* PBXContainerItemProxy */; }; - 17159EA60C9A940FFF97001977494C48 /* PBXTargetDependency */ = { + 161217D7E1070387CBFA21645BA12DFD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FlipperKit; - target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; - targetProxy = A5B60B1B39544DC5253ABD07D6485879 /* PBXContainerItemProxy */; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = EDE192282AD60B72822BECE73F9F2398 /* PBXContainerItemProxy */; + }; + 1614FDEF705CC36FE5BA049BC1F013F7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = 2E4EC21741885855B19DD2446C17ACFB /* PBXContainerItemProxy */; + }; + 163B5A31F27D0D916AB845B8310A4DF4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = 632479A7387A4C35281F93EDDB9117FE /* PBXContainerItemProxy */; + }; + 170839ABB6FC8CBE7C5F9CB90A7295E5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = 1EA28455CB3DB1AA161A90A97A699FB9 /* PBXContainerItemProxy */; }; 17353D120557AABA6FEBE9B272C4B803 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25516,12 +25742,6 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 20D015A06332AED4640AE8BC78F18710 /* PBXContainerItemProxy */; }; - 17A28054C7140C25295F7A51C1F7B3F2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = D10E4AB1104805B2CB549FDCD0E5526A /* PBXContainerItemProxy */; - }; 17B0305E08C7EF9ED292AA9014450AF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -25534,6 +25754,12 @@ target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; targetProxy = 3A7FA56DDB4EA79231EDF6205B7D02B9 /* PBXContainerItemProxy */; }; + 189A2F323662275B74C5D292FD93DDA4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 48494DE188ABC612AC95EFB558454379 /* PBXContainerItemProxy */; + }; 18C1F6B8BAAA267E8DBAA3F09B7CDCA2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; @@ -25546,11 +25772,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = C5792CABC007D0A7A4E11F4A976C441D /* PBXContainerItemProxy */; }; - 193975774603B34073DE52A7E26ABC3D /* PBXTargetDependency */ = { + 19B9D03C216B36E4FBB2875B8D461911 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 214520C3AC6317E5E4FC9EE481596289 /* PBXContainerItemProxy */; + name = YogaKit; + target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; + targetProxy = B4CE7D340756A388E58AF12BBFAFDD63 /* PBXContainerItemProxy */; }; 1A1BD4F3924CCBF334A38735C6CAD9D2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25558,17 +25784,35 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 3E044DBA2E61AA8C64AED9F68101D5A8 /* PBXContainerItemProxy */; }; + 1B89728C4F33029CE0991D65D9990D2A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = 00A5917D284FC813709B36EC03FFE34B /* PBXContainerItemProxy */; + }; + 1BAA00278D8783BB6F276D2A355297DF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = 5EDAFD0217F02A1EA4C5E73B1E16B9B7 /* PBXContainerItemProxy */; + }; 1CB90B8DB64F55B6FACD3A4C886691C4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "boost-for-react-native"; target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = CA56CB8B099AFAC4ECCA73096D476AA4 /* PBXContainerItemProxy */; }; - 1DAD25BAFBF74D4B3A49D61F745FBF8F /* PBXTargetDependency */ = { + 1D450BC46105E55059B5291F2E43EDC2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = 5A4CA4AA0F3487A72DDF9AE2C3CC9573 /* PBXContainerItemProxy */; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = 7406230DB5E0987FD2DF052B3E9D28F8 /* PBXContainerItemProxy */; + }; + 1D5248F4062E62E823CFB305EB007EA1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = 3E32ACBE11DDA0875AB51A77FA0FBD9E /* PBXContainerItemProxy */; }; 1DF8472826EA8CB4E129A9BAD49CD435 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25582,29 +25826,41 @@ target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; targetProxy = A86A3721252494F286B714B8A88F95BA /* PBXContainerItemProxy */; }; - 1F7450AA2C34398418EAF86971ABFBFF /* PBXTargetDependency */ = { + 1EAA8E9E8BB76B96DAA6A4FD9C432FE1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = 1DFECDA4BCEA0A425AA8FB090EAE3E9E /* PBXContainerItemProxy */; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = E6A978D856BE0D88C55824D5E64F02B1 /* PBXContainerItemProxy */; }; - 1FC063F9C78954A5B7B5C4D8365C5B65 /* PBXTargetDependency */ = { + 1F17A37AB630AD595370AC1D7BEEA5F8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = 8275DFB6BE651189D62BD4BCB7FFCE53 /* PBXContainerItemProxy */; + name = "Flipper-Folly"; + target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; + targetProxy = 37C42DEF71566DEE92881D0866F07F85 /* PBXContainerItemProxy */; }; - 207ED09F4A9992AC52178A13EEDE80D0 /* PBXTargetDependency */ = { + 206C9B8E128FD18A6129DE2525F8CDE6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Flipper; - target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; - targetProxy = 8F2DA0EE84C293714ECE9FA3BDA449D8 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = D7D428EFBA2C93C8E68F472B98279810 /* PBXContainerItemProxy */; }; - 20E487B497727AC6E4DCE66AEC5F8BDC /* PBXTargetDependency */ = { + 20896F1F53C3BEB8FA198BCC8E9C09EC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-PeerTalk"; - target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; - targetProxy = CD7CAD7A9297E0C28C82E538A29BB4BF /* PBXContainerItemProxy */; + name = RNFBCrashlytics; + target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; + targetProxy = C4725969E8E8BED5B9299D881A342697 /* PBXContainerItemProxy */; + }; + 21F2FFC493B30F29EEEFFA0E8CB200B2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = D155A7B765D90F3F06188348ABE21B14 /* PBXContainerItemProxy */; + }; + 225D5C93D080F26AF41077DE8828F56E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXAppleAuthentication; + target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; + targetProxy = 327A7E68388B87BA9A8942826DE5BD18 /* PBXContainerItemProxy */; }; 234992BBB126A394443E99BEBD18A1F5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25612,11 +25868,17 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = BCDA17519A7296DCC9E213B0E9337C93 /* PBXContainerItemProxy */; }; - 235F54D738ACEA3FDA20B2DC23A548EF /* PBXTargetDependency */ = { + 241596CB190E965CF29F0C5B0AEE5CF3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-RSocket"; - target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; - targetProxy = FBC2011CA634388B1621BA952027D5EC /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 8AD5848B520BD7CD6999F3782AD8035B /* PBXContainerItemProxy */; + }; + 243B7E99B88D2F49A630CB6E62985E6E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXLocalAuthentication; + target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; + targetProxy = D4C99DE7A63D958D92F6DD583329D67E /* PBXContainerItemProxy */; }; 244B50F0AF3E46D55924620969A2CB74 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25624,29 +25886,17 @@ target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = F0595A3A8DC327024422604AADDB6501 /* PBXContainerItemProxy */; }; - 24B15474698659F4B9B0FC13F02A85BC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = 2D2280E618902D89DB61E0F3A9101443 /* PBXContainerItemProxy */; - }; 24E814046525044258B7154439929999 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 0A78C568CA90DDDEBA5BDB1A9F02EBD9 /* PBXContainerItemProxy */; }; - 251104A6B10403A5A6CD490A257808F7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = 6D215BC2110056536BBAAE0990B25956 /* PBXContainerItemProxy */; - }; - 264499A42BC4BE7C900DD44D18437ACD /* PBXTargetDependency */ = { + 26F86247E9761835F910DE3BBC6A1EB2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = 194489D6C6DA4BFC3FE778D8F0ADB10F /* PBXContainerItemProxy */; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 090C9F168A12D90FE77922286790582C /* PBXContainerItemProxy */; }; 273AB73143566EEFFCA27BDF03FF3713 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25654,23 +25904,29 @@ target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; targetProxy = 36831ECA54BDE0210098C683E1128ADE /* PBXContainerItemProxy */; }; + 27DB140E720D83CD01D17B4DDEEB9A2F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = 659B7FE9E4EA3E0B4E8AE62886D84AC0 /* PBXContainerItemProxy */; + }; 28824AF26C22A77C23B814C2FE067468 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTRequired; target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; targetProxy = 89EB9AE9BC2B35DEF18D56F66D4482BC /* PBXContainerItemProxy */; }; - 29A1DCE4E1087487D901530BBE40CB12 /* PBXTargetDependency */ = { + 2889011D78132B503AE5A0504695E0F5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 59A110812A83A4504B679B30A8189E55 /* PBXContainerItemProxy */; + name = FirebaseCrashlytics; + target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; + targetProxy = 57A8B2A29DE968ABD02A04F709BAD21F /* PBXContainerItemProxy */; }; - 2A60B80F85B5532086718BF530B74B4B /* PBXTargetDependency */ = { + 29CD395713FBCC4EFA2FD07A6AD346DF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = 49C8321D0887EFFB631B417BBB8810D3 /* PBXContainerItemProxy */; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = FBD4BBEEB9D1A9ED29902DF7A6E3FF98 /* PBXContainerItemProxy */; }; 2C3AC2CEA8022D07044F7BA29590CA5A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25678,35 +25934,47 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 553C9E2156C22165A3D5F8E54F781E1E /* PBXContainerItemProxy */; }; + 2C9C412BF917DEF6EE0A60DD28F25A55 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-safe-area-context"; + target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; + targetProxy = 961E2F1FD2C47C7B1304F9B379EFD09F /* PBXContainerItemProxy */; + }; + 2CBFA791AB12AFD81FB6CFA94D64D1F3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-RSocket"; + target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; + targetProxy = A3186CEB37B55F0EC70D45DD9CFB0B4A /* PBXContainerItemProxy */; + }; 2D365469B1B38573CE4598BD17A86096 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = D1B6676933B6091F594BD94DE1B18D11 /* PBXContainerItemProxy */; }; - 2DEC0DE01DA6493268B04579B21C8297 /* PBXTargetDependency */ = { + 2D5636AAA74FB1BEECA6EEBE8A0F2517 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-DoubleConversion"; - target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; - targetProxy = 9E534D42CEE0BAE16AFBC5CDD1AE05CE /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 5F068532C664A46C689368CE1ED2E7BF /* PBXContainerItemProxy */; }; - 2ED4221DEA77F8BF7B900544AFA154CC /* PBXTargetDependency */ = { + 2D99E4F5796B9DD859959AB17785F0FE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 97AA08AE4B4F559041339C8CDE6C4D77 /* PBXContainerItemProxy */; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = 12679593595F9C842FEFE948D5196579 /* PBXContainerItemProxy */; }; - 2F536AC8B39AB70F0B3EBF75850BC0D2 /* PBXTargetDependency */ = { + 2DEC0DE01DA6493268B04579B21C8297 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = 855CA6E74DDDEFB94288B801AD40477A /* PBXContainerItemProxy */; + name = "Flipper-DoubleConversion"; + target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; + targetProxy = 9E534D42CEE0BAE16AFBC5CDD1AE05CE /* PBXContainerItemProxy */; }; - 2F97A56358544A977A42C12226F1EDD4 /* PBXTargetDependency */ = { + 2F6A34C2A120F91E4959FC3B1706FE1F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = 9850FB5A53F9FC2CB071233E497CFA62 /* PBXContainerItemProxy */; + name = UMFaceDetectorInterface; + target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; + targetProxy = 4C230F345FA4CF14797CDE68F26D1B20 /* PBXContainerItemProxy */; }; 2FB76CCFA4349F0DC6D356B0A6C5656B /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25714,6 +25982,18 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = C53F6A668A1B81EA8D5EFA236BBDC391 /* PBXContainerItemProxy */; }; + 30340AAA894F18528BF2CD97D041FFEE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXAppleAuthentication; + target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; + targetProxy = 903BED26B4437DD12B892A06619677B9 /* PBXContainerItemProxy */; + }; + 303511DFD464D4426990F7C480FA2F80 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXKeepAwake; + target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; + targetProxy = 789ED4E446A25B4A0F66EAD4D92D34F2 /* PBXContainerItemProxy */; + }; 303A329EFE63F98C76E1F88C1909DC69 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; @@ -25738,23 +26018,17 @@ target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; targetProxy = 286C7DA34EBE9F8A3EC10424B36A30C8 /* PBXContainerItemProxy */; }; - 31EC5A4FD273DC63CC415151E5618CC1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-callinvoker"; - target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; - targetProxy = EF1B0C9A37B7DDEE5C37E8F477B13590 /* PBXContainerItemProxy */; - }; - 3220E49A3C07261717F5755831C9CC8E /* PBXTargetDependency */ = { + 325511427E153C35D07389E6A0DA1EA6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 420841C4DC37EADBDD1A0A831E447D51 /* PBXContainerItemProxy */; + name = CocoaAsyncSocket; + target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; + targetProxy = EFD5EF8EAC9C6BD8AAFAA9ECA2A136EA /* PBXContainerItemProxy */; }; - 330A2468136061BDF6640DC5BAFA01CD /* PBXTargetDependency */ = { + 337433C5ECFBE19529AEF6A6833B7D5C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = 5A02F4A4ABB42DA2EADFE3EBD3162445 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = A2F903D7D9A8C4CC6AB5384704EC1218 /* PBXContainerItemProxy */; }; 33F5B6A58855F2016450517E03B74C4E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25762,23 +26036,23 @@ target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; targetProxy = D466E30F6A7C6BA97286EAE8358F3B63 /* PBXContainerItemProxy */; }; - 35483217D57C926FFAA2D370CA9957E8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = B603115D864C520D6482B0A57DD511C0 /* PBXContainerItemProxy */; - }; 35614ADF4A7B665694A0F889FE3FB55E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 7C0B9E22BBC11A64C90E2F48A14F8E0A /* PBXContainerItemProxy */; }; - 36181EA10D0CB8CD962C3556A8A878CF /* PBXTargetDependency */ = { + 35CCBE0849A3BE282E077EB400AD3901 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = 6AF5718193AE320EEA16782FF65825C2 /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = F498B83A60E93E162E3277A972784709 /* PBXContainerItemProxy */; + }; + 35DBA93F1C0E2B3AF8E02A6347BACAC6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCameraInterface; + target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; + targetProxy = F70AFD896A74C114D7B13A2737B2F38D /* PBXContainerItemProxy */; }; 36597FCB98CC1D64622E4991713E4EBA /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25798,12 +26072,6 @@ target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 12BB121C6C62E9D130D1F1C4061597FC /* PBXContainerItemProxy */; }; - 367F85DB46C38CBB261ECB998D8C4054 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXVideoThumbnails; - target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; - targetProxy = 99CB1C25285CDAC855BC037CCCDC1F33 /* PBXContainerItemProxy */; - }; 36DE053642858BDF23DDF8F4AA2F8E1F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTSettings"; @@ -25816,35 +26084,23 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = CCC71DC98DA1BFF43521E8CF40226C64 /* PBXContainerItemProxy */; }; - 37507218DB4CE6C01C248376DD6BF077 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMAppLoader; - target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; - targetProxy = F46EA4560EC34335940198CDE47DE3B4 /* PBXContainerItemProxy */; - }; - 38C246704326A70EBFD0446BBA40966C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFBAnalytics; - target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; - targetProxy = 9337760F63CEB61EB92CDA2399B31290 /* PBXContainerItemProxy */; - }; - 3B1D881FD465572B9D72A3341AD5EDAA /* PBXTargetDependency */ = { + 3B47F5FC53EE4AB51361C4E327130826 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 7CD8AE6F01093423091B25CCE1ED8EE0 /* PBXContainerItemProxy */; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = 1875937628CDD2F250DF70E83001C5C1 /* PBXContainerItemProxy */; }; - 3CE958DBAC0567978084311054841BCB /* PBXTargetDependency */ = { + 3B5896CAABCC7581E3B7A453BDD27295 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = A1CD62EF40F61F5D02E1EC2EDD699DD3 /* PBXContainerItemProxy */; + name = RNCAsyncStorage; + target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; + targetProxy = BC4E9931D903A03869D58747D31FC6F5 /* PBXContainerItemProxy */; }; - 3D0DB87ED72C0A73262A96084165DF4F /* PBXTargetDependency */ = { + 3D81E04141EBACCDBD29BBE72B5BCBAF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = 28F567F6DB1F73A5A38FF9A6983B029E /* PBXContainerItemProxy */; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = A9305DB077DAC55DC705CB50DFE6994E /* PBXContainerItemProxy */; }; 3DC4BA9D7F984F02E2BD3AD2EF39F504 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25852,41 +26108,41 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 4929FE3F288D63DE59928493EE949592 /* PBXContainerItemProxy */; }; - 3EB54E00199EDBC49605F354666E011B /* PBXTargetDependency */ = { + 3DF73EDD514B7C0D98D6EEB619B0440E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = B402CA06942E7CA7AAA8515C46FFD247 /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 3C48DDB40A603C8020BC71D9ADDEAEE1 /* PBXContainerItemProxy */; + }; + 3E7197A54CC7EFD01FA5C516FA16EA41 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXVideoThumbnails; + target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; + targetProxy = AC3085603EC5C479E7BBF907C850FFEC /* PBXContainerItemProxy */; }; 3EC7B7DE30BB33E3632E1C2142B98A9A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 80FA676E34C136BD514521000FACCDC2 /* PBXContainerItemProxy */; - }; - 3EFD70DC43FE5AECACE00EB9658A4515 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 7FC9F4285A5A42AC9541173002DCE831 /* PBXContainerItemProxy */; + targetProxy = 80FA676E34C136BD514521000FACCDC2 /* PBXContainerItemProxy */; }; - 3F9FD5C2282E2499BC237FCC163D48A9 /* PBXTargetDependency */ = { + 3EDE0C3EB27B566FF858AD0D4359B711 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXKeepAwake; - target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; - targetProxy = 80AE2E0403D58C02D4BE1AEBA59B169C /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = 38A15894323C6B57CE36362342FAB0FF /* PBXContainerItemProxy */; }; - 3FA2CE24F233C074190F51B9EE0524CC /* PBXTargetDependency */ = { + 3F8ABE5940A3A54737D6BAD5FF155ABC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 3F2EC526F7D99F364779A8A82B24760D /* PBXContainerItemProxy */; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = BFBA7057C5DCD5194D0F5876E6EA1D78 /* PBXContainerItemProxy */; }; - 3FDF9DA132A179EDAEB4457AF489BBAD /* PBXTargetDependency */ = { + 4067CBB61596C97F02F1DE88AE2EB757 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; - targetProxy = 902F074732C9C4D805CEBC222D8B7F54 /* PBXContainerItemProxy */; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = 24CAED39D69D03249704A410473002E7 /* PBXContainerItemProxy */; }; 40CF33F53D7B76AB1A7D1B47986EA231 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25900,77 +26156,65 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = C5F28406FC5AC0A4A9DC20B65617D227 /* PBXContainerItemProxy */; }; - 414F8BF8B71D025F6E39A2BDA8D40230 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = B2F1BDD4421F5567A31BE07E891DE961 /* PBXContainerItemProxy */; - }; 416BBA99AC6D39DEF4D3E1D6B55585F8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 5DCA67E832A9675BB0A0994ED38A5284 /* PBXContainerItemProxy */; }; + 41C22F957A9FF1F001B9A9B85161342F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = 66C16F059DFE97CA23F3474BFFFD5634 /* PBXContainerItemProxy */; + }; 41FF68034D509FCE39317463A46EE39D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = B40AA08577F30A00FD2A25A08341964A /* PBXContainerItemProxy */; }; - 42A4C63665617135E71EB8568F1B8C17 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = BF29C1EBF7A86CAAB9C6EE1C2CDAEFD5 /* PBXContainerItemProxy */; - }; - 439180A9457B83A4A6BB90279D2569C2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNCAsyncStorage; - target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; - targetProxy = F24627E9A7C6345D70F2328874B8E6A9 /* PBXContainerItemProxy */; - }; - 4413DBAF4C28C1A16709E65B36431252 /* PBXTargetDependency */ = { + 420121698C703BD3D3F10C90DA764ED1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = 07D2DC55864BFDEACD7D0E0C0DC368E7 /* PBXContainerItemProxy */; + name = UMFaceDetectorInterface; + target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; + targetProxy = 96F197F5A5E46C93A745C787BE0E6AE9 /* PBXContainerItemProxy */; }; - 44164C77B25FDA5E729F6B4C4288718A /* PBXTargetDependency */ = { + 4227C89844E3B427650D22EC5A3A0D50 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeKeyboardTrackingView; - target = 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */; - targetProxy = D5FBBA18523897587DA48B6F1A6E19C6 /* PBXContainerItemProxy */; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = 1A6A4C0FC2226ADA371C14C49C9FD87B /* PBXContainerItemProxy */; }; - 446CF701720C6ADEDADD5362CDBF6A20 /* PBXTargetDependency */ = { + 4249957C84BF5D2D58944FA1A62F180D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 2AEBE4AB92FD40BE88FF7AA27EDB8876 /* PBXContainerItemProxy */; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 64A9E19C4593E79A77E591309E41F524 /* PBXContainerItemProxy */; }; - 44F133A08308F45E22682DC20737A705 /* PBXTargetDependency */ = { + 43BC0B0A573768C912B2A588717F48FC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = 148E43A59FBB3C9B242FE322FE3BBC5F /* PBXContainerItemProxy */; + name = RNFBCrashlytics; + target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; + targetProxy = 0E152DF02C367AF7F73C5794DE3F40D0 /* PBXContainerItemProxy */; }; - 459A3D1A21634B589B2F43B855A61B7E /* PBXTargetDependency */ = { + 43DB2B9B75A308BF29DE4F819927F45C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = DBC8F1745DAC18B77E6339D3D2F07E4F /* PBXContainerItemProxy */; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = 65564F3A4A4E9D7560ACE2C9186B6A04 /* PBXContainerItemProxy */; }; - 4673914ED7B26882960E71D09BD6EA17 /* PBXTargetDependency */ = { + 43EF123F196EDCC7D86AAA1F3F6153CE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXImageLoader; - target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; - targetProxy = F73B77B3DE51E2B91946FD2D65EEEF35 /* PBXContainerItemProxy */; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = ECC708DBEAE24FC8CEED8FB53DB8CEF9 /* PBXContainerItemProxy */; }; - 46775BDBA3BA16A9BEEA5044F77603A6 /* PBXTargetDependency */ = { + 446CF701720C6ADEDADD5362CDBF6A20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = 3351B25E220ED87CB01067FC96D84CD5 /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 2AEBE4AB92FD40BE88FF7AA27EDB8876 /* PBXContainerItemProxy */; }; 4740A9CECBAC206E21B5C739F4B25FED /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25978,17 +26222,17 @@ target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = FDE949C946FC4658F2DE21F4C568B19A /* PBXContainerItemProxy */; }; - 479DFA0EF2B7EF31CD72A0C2AC75AA1E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNCMaskedView; - target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; - targetProxy = 1DDE3109ADD35880C3E8F514A347D5F7 /* PBXContainerItemProxy */; - }; - 47E752A1B3ECE371DD8D036AFE151538 /* PBXTargetDependency */ = { + 478461A4398100809B68DB3D8EC0C2F9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 2D997C75205460669C367E2FFB409739 /* PBXContainerItemProxy */; + targetProxy = 2DFD0DFCA4DA32EC8670677B56D0EE28 /* PBXContainerItemProxy */; + }; + 48B4C9AAB873F37AAEA3B83B66CD2F58 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMBarCodeScannerInterface; + target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; + targetProxy = 207EB802EBD95CC68B7CCE7D1667D950 /* PBXContainerItemProxy */; }; 49AC31079F8A8A1CB4A6E1E09B034C7F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26002,29 +26246,23 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 2539C386890D7883A108FF4E3829524A /* PBXContainerItemProxy */; }; + 4ADFD9BBE653D45147ACD33A808FA18F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = 4C90CCB8903A79938D7CE4F45EA8BF92 /* PBXContainerItemProxy */; + }; 4AE7F0903CAB3EEC559660BF180EDA72 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = E82ACE99C02A32E8354DEFDEE354DAB2 /* PBXContainerItemProxy */; }; - 4B55B2E5D7F161F68AE1D7787387CC2A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = FB2F433A2A0F0D2B62AE89E1773126A1 /* PBXContainerItemProxy */; - }; - 4B71F70F82133AEBAFE451DB7A96B125 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXImageLoader; - target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; - targetProxy = 6CC2A3A38037B04F4C9E044CDB34B956 /* PBXContainerItemProxy */; - }; - 4C21ED59DD68642CB80F95BAB7566448 /* PBXTargetDependency */ = { + 4C733CEC6C0D9A517657A8265D2337C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 557C906DD0B23E7AB6B3DC7D5A343564 /* PBXContainerItemProxy */; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = C2B36AF4A5D2DCCB4D75D0EAF2BF16FE /* PBXContainerItemProxy */; }; 4CA0E425446EC88158C4A8B0D077B5FD /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26038,11 +26276,11 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = B4D754DAAEB32C0804AEC002541494D3 /* PBXContainerItemProxy */; }; - 4CDADBF1DFD5E4D1351AB82863A6A9AB /* PBXTargetDependency */ = { + 4D3193B14B70785B482196063BA0C0E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = F0F05B46D31F97AD80A8EE2A9859B0E0 /* PBXContainerItemProxy */; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = F79D6B73F0C2C586E6E8F52FC444CD3C /* PBXContainerItemProxy */; }; 4D36F3B9114DCFB053C2BF871C801272 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26056,17 +26294,17 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = BDFC9376209109E8784F4E7DA1770B6F /* PBXContainerItemProxy */; }; - 4DE53C5D3C6B59AB47291EBDFB565F31 /* PBXTargetDependency */ = { + 4DE840F46938853B68EB44B51D9F9EBE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = B4423E08239B159DAC652D165FA1C183 /* PBXContainerItemProxy */; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = FB996DAB42B6381B0369EEFDEEEA0831 /* PBXContainerItemProxy */; }; - 4DE65792C6E10AAF64DB44F461F02927 /* PBXTargetDependency */ = { + 4E23C6C761CE36972A5A35F98D676BC4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; - targetProxy = BF49FFE78B98FBAA68D6BAEB5935E288 /* PBXContainerItemProxy */; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = B09FEB93AF1981A69D66303D2664056F /* PBXContainerItemProxy */; }; 4E7A54EBDEED5E1498EB0028BFC71740 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26074,17 +26312,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 2AB4E316E2673B76ACA537189D619922 /* PBXContainerItemProxy */; }; - 4F67553BF4C80B0D4EFA4CFBB49B42EC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = 9AD5B6A41DD991BCFFC9F69A7776042C /* PBXContainerItemProxy */; - }; - 4FB16A911EE09FD164AD7BDAB97FADC5 /* PBXTargetDependency */ = { + 4F616CD93D76BB10D3D743B5E3341716 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = 1E7E213B3C232EF8222D25E027634C04 /* PBXContainerItemProxy */; + name = CocoaLibEvent; + target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; + targetProxy = 8AB01E4EBBB2D50067D0DE2EC43CEE44 /* PBXContainerItemProxy */; }; 505B4B56752648ED437C22E53D0AFE0A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26092,29 +26324,35 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 3574B1BC6D98AB920A3CF341F2BCD349 /* PBXContainerItemProxy */; }; + 51250EAA87D2E515DE94BF6390D1A806 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMAppLoader; + target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; + targetProxy = 636A8822C7AA7BFD08346E59E1E892C1 /* PBXContainerItemProxy */; + }; 51426FE9C0540AEE85464E6161AD8A3C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Yoga; target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; targetProxy = B4D453DE31A865E38FCE41018FF05012 /* PBXContainerItemProxy */; }; - 51BE449E5D84691EDD9B7CC200927165 /* PBXTargetDependency */ = { + 518647849A979626E7E0E3B8C82CFFA8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = 484FC234F6BE29EBD0F9C1AF592F5AA5 /* PBXContainerItemProxy */; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = 8A54EB7B0C4D2D2CD8D66A3E6205DC1C /* PBXContainerItemProxy */; }; - 522ADE50C84B0FE3EAE73ED0BEC66BCB /* PBXTargetDependency */ = { + 5296D148F90597538E2C347ED95C5139 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = D712B3FBD88A28808A4ADB7C9D56FEC4 /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = E71070576C5011CB4C497317CB547D97 /* PBXContainerItemProxy */; }; - 5293CA9D11E6894D549634E7D8C041E0 /* PBXTargetDependency */ = { + 52E597B2EEC8A0A29669ED1265F2E665 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; - targetProxy = 35487FEB80E22E0784F7984BF805AA3C /* PBXContainerItemProxy */; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = C9D4052562DE4954C87D3B63A363304E /* PBXContainerItemProxy */; }; 539216AA2FCFC2CA2772CF3C2CA1A180 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26134,29 +26372,11 @@ target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; targetProxy = BF2A9ED197DF746C24A0C6CB8CF649D6 /* PBXContainerItemProxy */; }; - 557BD761E36519134C15EAD97C2F7051 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = 9D307E73FF3F720E05C7AD4E100F075C /* PBXContainerItemProxy */; - }; - 55E542C0F3C76EE86FD443B3A31ADC93 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 08FC95F9E3810ABD23A6F49E883DC0CC /* PBXContainerItemProxy */; - }; - 565A1975D6FCE224210EE68B7B2EB5B2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 11D39A102F82ADF9CF532E62ADA952E5 /* PBXContainerItemProxy */; - }; - 566C3E86107E0E0DD1D7F9BA63555CD5 /* PBXTargetDependency */ = { + 5563597A20719EACA3BE41A29EBCEBA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = 92913CE7F5671EA23F8DD72BD270724B /* PBXContainerItemProxy */; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = 1AE0BE3511E2306262CE91EB0CAB5471 /* PBXContainerItemProxy */; }; 56B47897F97C79438D6512C76671C277 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26164,11 +26384,17 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 4117C1D772FF72CEB7856965D78C23AD /* PBXContainerItemProxy */; }; - 574166C6BC2CD1949243DF9103CAF7CD /* PBXTargetDependency */ = { + 56DADBC46C56C5F10A8D48CE9F7477C7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeKeyboardInput; - target = 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */; - targetProxy = 02FE637960758CFB41DD0F63868130C7 /* PBXContainerItemProxy */; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = 3F214067E3F3B5A132D768CFA87C06EA /* PBXContainerItemProxy */; + }; + 5710A595FBBE590F22B9F4FAF2E1CE24 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXLocalAuthentication; + target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; + targetProxy = 08BDDBD9225ECC2B50DEDE4CB09EFB40 /* PBXContainerItemProxy */; }; 57D76DD84C0E257A7AC31F2CBE1F3A00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26176,12 +26402,6 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 0737629FABAD4284C6231D677429F1A7 /* PBXContainerItemProxy */; }; - 5824872CC1ED46F9D297B6ECA9237623 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 2946059A81F6694046621FBCF29D0422 /* PBXContainerItemProxy */; - }; 58EB016622ABE5A31A364D8F7F8E67EB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMImageLoaderInterface; @@ -26194,17 +26414,23 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 592671C6C3F74111AF89BE688E45B730 /* PBXContainerItemProxy */; }; + 5B35C28F49CB255712AD71BDB5601706 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = YogaKit; + target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; + targetProxy = C517984124EA7143ECFA3D26FF742BB3 /* PBXContainerItemProxy */; + }; 5B8E682CA4C0FF7278103001BA32A52F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = C6B9A2DF20D9C7D3844C5462F790CD21 /* PBXContainerItemProxy */; }; - 5BFB7C18B46BF01C454EDF9A236ADF23 /* PBXTargetDependency */ = { + 5C98FB7EA8119B933EC84996B7BE4069 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = A2FA66312BE745E773DC2EEF2762F971 /* PBXContainerItemProxy */; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = 507D8236E92487A3F0B701578379F4E2 /* PBXContainerItemProxy */; }; 5DE5DFEFFA172A9FB5F603C604B7708D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26212,23 +26438,23 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = AE8FB3B2C3A8E8F3BDFCE223A4C9943E /* PBXContainerItemProxy */; }; - 5E0B122BC644AD91887C1789BA06F886 /* PBXTargetDependency */ = { + 5E970EF65DA6800F7A77B54A1C796E26 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = 7DB750EF8B5A1A600653B2392309E8C3 /* PBXContainerItemProxy */; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 49D08B9584ED9E27E0B111E7F40CB058 /* PBXContainerItemProxy */; }; - 5E2CAD3B8BCB85FA42EB477FC2E3BF4D /* PBXTargetDependency */ = { + 5F36FBEE96BC576111141547D8F6147C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFBApp; - target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = 368F5B3A287B681676CB312493581753 /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 97A3D2BF5B2B9627E2DBBC3478972D7E /* PBXContainerItemProxy */; }; - 5F8DBBA509A581B1683B4B7A6515F92B /* PBXTargetDependency */ = { + 5FD0BDB145219816654185B747E7C209 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 434401F15A5507D2E58F577635420734 /* PBXContainerItemProxy */; + name = EXKeepAwake; + target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; + targetProxy = 575F9C3F8EF86067CCDF04474F23BF71 /* PBXContainerItemProxy */; }; 5FD0C4F9D97C88847DCFF62E51086938 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26242,23 +26468,29 @@ target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; targetProxy = 88D72330C8DCE3BF856F9C1ED31ACD43 /* PBXContainerItemProxy */; }; - 604415B1C79F63B80EF02DA1DA340190 /* PBXTargetDependency */ = { + 613543704A192C87BA5AFC03F3591F38 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXConstants; - target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; - targetProxy = 59A042DFF61666FBC3962AA7DA170633 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 829843EDBC782D86F37AE6402F5812C6 /* PBXContainerItemProxy */; }; - 625BCFA4FBF235FBC1A1092A558965E3 /* PBXTargetDependency */ = { + 618A7F51DCF8FF125446823AE897D95A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = YogaKit; - target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; - targetProxy = 707F9C3CA230284A414E902CA8EBF553 /* PBXContainerItemProxy */; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = 4F9D1EF82045308877BCAF51333C565B /* PBXContainerItemProxy */; }; - 62729E6473ACDABC14846740E66976FD /* PBXTargetDependency */ = { + 621FCC1357EE53AA6DE3DFDFDD9A28CB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = D7FFEF9D7AE1849478BE36EF1EE9DE0A /* PBXContainerItemProxy */; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = D1BDF303BC2D4654A1C9BE7DA4FE1882 /* PBXContainerItemProxy */; + }; + 628EBD222A38BED6F631A0033AA1E510 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNUserDefaults; + target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; + targetProxy = 13357F753589AF94C51ACEE301B016F9 /* PBXContainerItemProxy */; }; 6298DCDD90053BAFC6CEAE719941BCD0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26266,12 +26498,6 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 51BB17051B552032F9321C6BC8CFAD27 /* PBXContainerItemProxy */; }; - 62D6945A3D0AD7F28ACB4D7F476FF88B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FlipperKit; - target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; - targetProxy = B72244A237FCB8E6A8870696502B671D /* PBXContainerItemProxy */; - }; 63D7F15F3F84CE1D7897DA20F6CE6F43 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; @@ -26284,18 +26510,36 @@ target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; targetProxy = 72AEF3DC8768694E58AE665D174CE14F /* PBXContainerItemProxy */; }; + 64569F7CCD6D932B0D9B62F63FEDEE5A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFBAnalytics; + target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; + targetProxy = 1355FADC83CBC1C02532DFB322690CBE /* PBXContainerItemProxy */; + }; 64A874D42FE0579EBB177F7A34B67270 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = 9F5AAB77687C10A1E9FBDF8FB2EAB507 /* PBXContainerItemProxy */; }; + 657027BFF6E5D50A16954E7188A575C1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = B70CECE59A7898D42264FC62F8D7628C /* PBXContainerItemProxy */; + }; 659CE20F5F8A4FDAFAC33456B26AD2CC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SDWebImage; target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; targetProxy = 925B94B36D67D27AF51664D1645EC2F7 /* PBXContainerItemProxy */; }; + 65C014E22A004953268CC1CC51B83F82 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFBApp; + target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; + targetProxy = EAA855A99AB16B5D8F61BDA38DC0E354 /* PBXContainerItemProxy */; + }; 65F9F3E04EE3016D1347EC50F730C953 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; @@ -26308,30 +26552,24 @@ target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; targetProxy = B6677D6DAB197C7676A97F624A434B26 /* PBXContainerItemProxy */; }; - 66930FDBEDD8EDA1A51E7FC02DB1F236 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "OpenSSL-Universal"; - target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = FE4069586AE78F3F0889B3C0A352A898 /* PBXContainerItemProxy */; - }; 676B6FEE2373CB5B7A4F4AADE445A472 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 9C9D41F92515D7D2C0205D966777748B /* PBXContainerItemProxy */; }; - 68730AD08828F3D223E2828A88A73AB8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 81A5E54307106E89B8F44E8446A4FA3F /* PBXContainerItemProxy */; - }; 687C7745B0C9D33906DF6031B3231B04 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = CAD9ABFE1D8247DFCA7C5B5DC70C1C94 /* PBXContainerItemProxy */; }; + 68EEE8B3068D0AA6BE9684CE65B8060F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = 14634E793B9A36D2451D447BD4E30A9E /* PBXContainerItemProxy */; + }; 68F3EB5F95FAC1BD87C5FC1DE066D8DC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; @@ -26344,12 +26582,6 @@ target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; targetProxy = A7E5D397C11338DEED5E896EF959836C /* PBXContainerItemProxy */; }; - 69A6CD57C318DE19B72D06B8EC0F5FD3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Flipper; - target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; - targetProxy = 6D923B4154E0C6561C568A645B6B0AAC /* PBXContainerItemProxy */; - }; 69E2628D4D95C8E998B2228D394BBE1A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; @@ -26368,11 +26600,17 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 5CCEC9141DF983E90BD5AE3E05C21A7B /* PBXContainerItemProxy */; }; - 6A2E9FA1C9D212793ECA0622E31CDDC8 /* PBXTargetDependency */ = { + 6AA3A57B69D3E380A7B2ABFEF87052AA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 2D4C0D12573ACE5598A61A3E2F84E473 /* PBXContainerItemProxy */; + name = UMBarCodeScannerInterface; + target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; + targetProxy = A54F26C7B23B92B6C2AB0D804CA0B9D3 /* PBXContainerItemProxy */; + }; + 6AA65C64346DB9A55082FF8C22653612 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXVideoThumbnails; + target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; + targetProxy = EF7A2E0EC79A060A65FED931E8FBE2FB /* PBXContainerItemProxy */; }; 6ABD1C96CFAB9999A3CB6EBB60E7009A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26380,41 +26618,53 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 1B427832E8B2D091A989E92604487DCF /* PBXContainerItemProxy */; }; - 6B55513BA501E95F24273A7CA4E28C81 /* PBXTargetDependency */ = { + 6B0283CA2A127CA576E6F0E920823873 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = ED9CFAF4D576345425901F6D351BF162 /* PBXContainerItemProxy */; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = F75F7B2D23B406EA0B38E23F0BD2A6BF /* PBXContainerItemProxy */; }; - 6B5BE425EE6FB72E90AB19296184C31C /* PBXTargetDependency */ = { + 6C2E14EB3E2659EC792F89EDECCC7C9A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 9E2CED9304DF6E970DD73099FC2A327B /* PBXContainerItemProxy */; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = 006F834FE6FF3BDEE2984B0CE662D18D /* PBXContainerItemProxy */; }; - 6BF2862C0F2520279E871BEC3DD5CDCD /* PBXTargetDependency */ = { + 6D703E77C0E603B3765BC8A1D5FB0083 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = 7A19EA2D716E9BA5AFCD9073AAEB6C49 /* PBXContainerItemProxy */; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = 528139174349E239FC4E848514A6154D /* PBXContainerItemProxy */; }; - 6D6C661E7B9AF6EE1C064CCB01AB4205 /* PBXTargetDependency */ = { + 6DB7FF6F1FDF3C2E96429277C6F1875F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = 6A6D04721B1B826A6B2FFE1229AFB2A6 /* PBXContainerItemProxy */; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = 7F4BC9B8A9C97D5493A795140621C05F /* PBXContainerItemProxy */; }; - 6E542366B9683A8FD4B444F972448A06 /* PBXTargetDependency */ = { + 6F06AF75AD0361C1DB54FE0842FB5A20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = C3FEE95FFC3411F13658CA49AEA6AD1D /* PBXContainerItemProxy */; + name = "Flipper-Glog"; + target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; + targetProxy = E679399E70A1302F64F34F5147A0D753 /* PBXContainerItemProxy */; }; - 6F06AF75AD0361C1DB54FE0842FB5A20 /* PBXTargetDependency */ = { + 6F154F9E3F9A4B102EBE12F75D1E2C62 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = B1D847248EC73DD593AF917E9D245222 /* PBXContainerItemProxy */; + }; + 6F46A931DC4EFE7E110A0C170656512F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FlipperKit; + target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; + targetProxy = 0B0F2B56CA50FA2C112A04EFD1B3C4E7 /* PBXContainerItemProxy */; + }; + 6FB4F7939613DF2F985A569DB85D7037 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Glog"; - target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; - targetProxy = E679399E70A1302F64F34F5147A0D753 /* PBXContainerItemProxy */; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = B15193DA924202D6338B5B0524992E2A /* PBXContainerItemProxy */; }; 6FDA0EE43054A87C42FCA741AD58285F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26422,35 +26672,17 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 4995181EAD88B0A6D8B25B4EBD7059C0 /* PBXContainerItemProxy */; }; - 6FE0F63578F810BC6E78CD8746F6733A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = 39D519C6506A266CBE4359C7D93A4091 /* PBXContainerItemProxy */; - }; - 6FF17E32988C5C942056038551B75B43 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXLocalAuthentication; - target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; - targetProxy = A45883A88950E4C078034DE677BD2E28 /* PBXContainerItemProxy */; - }; - 70581F56E1509B8235D0C83DE44F2E71 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = C4C6D15D84894CFF65B29261C99EB9B8 /* PBXContainerItemProxy */; - }; 7074AB64938AFE46C3B792B65FC0AE8B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-Folly"; target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; targetProxy = 935BBCA2BD6E481D46FA01E32BFEF1E3 /* PBXContainerItemProxy */; }; - 717D5016A33FE71B3492E8A383D567B6 /* PBXTargetDependency */ = { + 71173C3DB63B210C93F681046C06A1E2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-safe-area-context"; - target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; - targetProxy = 4E360C1CAE4B1F34A27E25671972E87C /* PBXContainerItemProxy */; + name = "Flipper-PeerTalk"; + target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; + targetProxy = 5F78580174692E14344E388EF431658E /* PBXContainerItemProxy */; }; 719E3CB07862230515EC8439F291EBD4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26458,17 +26690,17 @@ target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; targetProxy = EC27520D8FECFB4E9412291A616D4F07 /* PBXContainerItemProxy */; }; - 726C07E3BB7D4F0100E3884A938286EE /* PBXTargetDependency */ = { + 71DC4F776F3B105A4B62EFF07929A8E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = F596D062F5BCE06F4EDBF45CAD3BD53C /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = D144D07A8A180FDD1C23E25C83FBAB56 /* PBXContainerItemProxy */; }; - 727305213BCA42241FCDD553DE1683B3 /* PBXTargetDependency */ = { + 7291BBDF3396948EE8223BC6C5D24ECA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = CFC4B185C1FCB7E341E9828E2EC74914 /* PBXContainerItemProxy */; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = EEAC49692E638D5D4790ABFBC99F38E0 /* PBXContainerItemProxy */; }; 72B059030824F625CF2C5364414F81B4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26482,11 +26714,11 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 9F22B1056BC978E122F2EAE6CD9D7ED1 /* PBXContainerItemProxy */; }; - 730C4326B398B7BD795B302BE0E26ADF /* PBXTargetDependency */ = { + 72C566E689E40A4D46C1EEC24C34C25E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Glog"; - target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; - targetProxy = 3AEFC4AEDCEA30DDD554C16E9B9FFE94 /* PBXContainerItemProxy */; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = 2B6AB396E8556E2B564289B2E704DD2C /* PBXContainerItemProxy */; }; 733A7379EE2E0D2B3BCED6B1C0D71CF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26494,29 +26726,35 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 4CE3F4431AF21200231C83FD68EE5344 /* PBXContainerItemProxy */; }; + 73679F46A2CDCF0637CECCC894D66DE9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-Folly"; + target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; + targetProxy = E2CCA8E8115AACB9EB8639B4F4EAC3CE /* PBXContainerItemProxy */; + }; + 736E495FDF0427052EB953868D3E5927 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = D5F998C49FC69E68A25AA53D26700707 /* PBXContainerItemProxy */; + }; 73AFA9C3EE158345C0AC8853E23D4C99 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseInstallations; target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; targetProxy = 5199EEE170B03E6034771D7D410366D6 /* PBXContainerItemProxy */; }; - 73B1C592BF6ABE5F2CDFE1510620F7A4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXAppleAuthentication; - target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; - targetProxy = 815EA1D52F1010B54D91CE92826AC80E /* PBXContainerItemProxy */; - }; 74F58832B6EE859ACAC8329A38B23E43 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMFileSystemInterface; target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; targetProxy = 02884AC05BC4B650EBE6E310CA3916B7 /* PBXContainerItemProxy */; }; - 7594EE6E91E954FC4264B9CC7D99C9A1 /* PBXTargetDependency */ = { + 75840552CE62EA7F21412402840794AA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = 53E88435B31040C020F311E0E2437DC6 /* PBXContainerItemProxy */; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = 338A53819BFF3DB32E224B471ECD69B7 /* PBXContainerItemProxy */; }; 763950692B96D0F454EC298D94E2D48F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26530,17 +26768,17 @@ target = 6D979AB5FDA2E858850D9903776A30B3 /* RNImageCropPicker-QBImagePicker */; targetProxy = 2EEDA8CE75E6D0DC62A3B88EAA06ADD9 /* PBXContainerItemProxy */; }; - 7697B646059BCFC75CFB34D0A247C015 /* PBXTargetDependency */ = { + 76678524AD39D5E8AD99E2BD24AA325F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-RSocket"; - target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; - targetProxy = 7292A4C29EA10CD67E215B1CB97E525F /* PBXContainerItemProxy */; + name = RNCMaskedView; + target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; + targetProxy = 731DEA08B430BF6DF0F646810FDEE282 /* PBXContainerItemProxy */; }; - 773D3C69DB13B07B952E285712ACC14B /* PBXTargetDependency */ = { + 773C4C9372AA308457FCACAD24E2593F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = E1C62364FD1EBA6AC10FD7374D0B08B7 /* PBXContainerItemProxy */; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 5F600805981051902410052B63FB0EED /* PBXContainerItemProxy */; }; 775E00DE8A8597FE01362B4644F5392C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26548,47 +26786,41 @@ target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = C33E9472C09D771A868C935EADD927BB /* PBXContainerItemProxy */; }; - 78C0152F53FEB93BAC1D34FB44E6423D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 6D3BBF6450DC25ED809B274E24E99407 /* PBXContainerItemProxy */; - }; - 78DB55D0824B5ECB255F897151DA48C3 /* PBXTargetDependency */ = { + 79193BEA3A5DF3AA2F143D5FE8253308 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CocoaAsyncSocket; - target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; - targetProxy = 47FBFA23EE196FFF1148F9C5F8432293 /* PBXContainerItemProxy */; + name = "react-native-simple-crypto"; + target = D985A509BFE270C95EDCBE6B4CBAF189 /* react-native-simple-crypto */; + targetProxy = 2FC3821B9241665A0820A0EC4C899781 /* PBXContainerItemProxy */; }; - 793E6F8DA66825A652E3C6DB27C1D819 /* PBXTargetDependency */ = { + 7A6627C14ECA18D0E5D1460CCB32608E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXVideoThumbnails; - target = 4A95B7CD1D5F80C5E8CD9CDA00D41F70 /* EXVideoThumbnails */; - targetProxy = 0EBB2AD81B6BF47A113E7CB74D36CB30 /* PBXContainerItemProxy */; + name = Flipper; + target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; + targetProxy = 23E6440A82EDAD14964E8317BFA7BA9D /* PBXContainerItemProxy */; }; - 7A6C04FD4D22C2CA6803709EB2E0B0ED /* PBXTargetDependency */ = { + 7ADFC0716841A46E99D87E79199D0938 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCrashlytics; - target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; - targetProxy = 72FD2B3DAED791B1CC5770F4A52BCCAE /* PBXContainerItemProxy */; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = A7F7AFAD23C4190AE9102069D1091780 /* PBXContainerItemProxy */; }; - 7B702FBFFD3DA75AD730D7C6F9BC11DB /* PBXTargetDependency */ = { + 7B4090BCEE16C4520DF09546C6BCDC5E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = F10C6ED7FAE6E6327D410552FEEB5B8C /* PBXContainerItemProxy */; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = 04BF81B226344B05A0847C87826D73D6 /* PBXContainerItemProxy */; }; - 7C7B56A410501B4EFCA2F11833BFCD92 /* PBXTargetDependency */ = { + 7B44FDDA61B1C950C71CD47226C8CA42 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; - targetProxy = CCD6FB94D1DA07C9F1DAB620A4A4F015 /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = 01CD1AE6253A56C66AD7016A1E355178 /* PBXContainerItemProxy */; }; - 7CB2FEF36A4B503E40E1C43B6A7E772F /* PBXTargetDependency */ = { + 7CD6107CAD163F0C632153CA5B3F3C9C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 9C81F0CF75A2643E2086F7D45F5B7162 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 767F418C563CBAAB5E3ABB44B6F66208 /* PBXContainerItemProxy */; }; 7CDFAC77C9B2E078C4776F6D7DA9941C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26602,23 +26834,47 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 882BEE9E8FCF0A6BD665F01DFBEF822B /* PBXContainerItemProxy */; }; + 7E1C28ABA8237CF1669293189F933024 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Folly; + target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; + targetProxy = E531D7F9455F1EC204213D8B26A891AE /* PBXContainerItemProxy */; + }; + 7E5975006CC64C4BBB9FEEDAE9060D6D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = A43DA2B6E94145FB6D417C1492351303 /* PBXContainerItemProxy */; + }; 80236FEF3AC6840FE5ABC8D1FF8D3235 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBReactNativeSpec; target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = C9548D5EC1772128ADFB40684079BE57 /* PBXContainerItemProxy */; }; + 80AD8A6771597B4EF338FA8F945CC789 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNCAsyncStorage; + target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; + targetProxy = 50F204FEB4326964BDE922CEFA7F609D /* PBXContainerItemProxy */; + }; + 815DF33A2274AA48583248B3F45B494C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = 15F58DEBBA9BCB7DF0201F6B70DB661E /* PBXContainerItemProxy */; + }; 819BAF10584B377A2216A0F89DF68CEA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 256A3233D39C474C08913C7F1FE396E2 /* PBXContainerItemProxy */; }; - 821BD7D041828CA8EEEE50CB33D45168 /* PBXTargetDependency */ = { + 822B5638EE676DAA3A0BEB0656C75C1B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = 599B3983C9DAAB38F32CA2858BBA3C52 /* PBXContainerItemProxy */; + name = FlipperKit; + target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; + targetProxy = 638DA812E40D3AA31C5EECF5FD9A1932 /* PBXContainerItemProxy */; }; 8247388091D0881AAFB46349846F8C4A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26626,23 +26882,29 @@ target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; targetProxy = D3A2BE59053796870DA91971C0D7C401 /* PBXContainerItemProxy */; }; + 8258646A838E0C5AB97738028A3720D1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = 7B6B4B865E56D74ECA6C9D3514E61DDC /* PBXContainerItemProxy */; + }; 82EE3F897B21987955AE2A7BEF426B99 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 1DCB3309999BFDB2222EDB72D85FDB78 /* PBXContainerItemProxy */; }; - 832916EC2BB8F184EEEDEB65B39D7218 /* PBXTargetDependency */ = { + 84629EB8DDB4A8B0D58835FC3E8F845E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = 73B1AF274B4CA9A7D7B3AE8CC126BA83 /* PBXContainerItemProxy */; + name = TOCropViewController; + target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; + targetProxy = 230C5283B4ABA3E0102873D811B04034 /* PBXContainerItemProxy */; }; - 83AF158865197240427282E3C32FF1D8 /* PBXTargetDependency */ = { + 8477E2D683E36004894B29DE97029254 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = F145702AE8922B12B21EC56B1F6A01BD /* PBXContainerItemProxy */; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = CC801E3F3BD91E69AA46CB8BECF6DF24 /* PBXContainerItemProxy */; }; 84B6DD062155BC96E06C6C8078DD0789 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26650,17 +26912,29 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = C7ED593E81C9992CB3136F8B3479E783 /* PBXContainerItemProxy */; }; + 85112ED9E36E3205ABB24E54280BCA1F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = 9691E5189FF6053699C2B0A8630A27BA /* PBXContainerItemProxy */; + }; 855F3C9F2AE9C3FC9633F4FEF45A68DF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Firebase; target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; targetProxy = DC35D17457841C5E413EC553D87DADE8 /* PBXContainerItemProxy */; }; - 85D856D696027CC5428DA932D390A1EB /* PBXTargetDependency */ = { + 859C05C37B75B7CDC8AB008139375F52 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = 4A4F8B8BB889D6978B9BC1D7B017E508 /* PBXContainerItemProxy */; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 8664384D777470C42AFEBE69A204442F /* PBXContainerItemProxy */; + }; + 86015C20509D7F3C46528FC1CABA1D86 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = C1C84EBF5907B25961F73A4A447D5313 /* PBXContainerItemProxy */; }; 8605B4632FC60A9F80261EF9A8ED244C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26668,41 +26942,41 @@ target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; targetProxy = 6295B26D9349A23F0AF1DE7C6AD8A1B3 /* PBXContainerItemProxy */; }; - 864EAED46729331D07E9CC4DB05C4098 /* PBXTargetDependency */ = { + 86521DF2C8E2D379C2BD0471AAC9E657 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = A581C6B3C076C796ED21A05A2942C2A9 /* PBXContainerItemProxy */; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = FF1A45E2983D47DE5B9912C67359FEC5 /* PBXContainerItemProxy */; }; - 87F0CDD69C50A2818BC320DECEB03BA4 /* PBXTargetDependency */ = { + 871019C9FD8BF017DADED71E0B49739F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = 183CDB441942C9FFAD4D3E81F86D6E77 /* PBXContainerItemProxy */; + name = RNFBAnalytics; + target = BDD119F8782FABE2707D3D913EC3EDE5 /* RNFBAnalytics */; + targetProxy = DF10051F5C6A413A607300BA84368B80 /* PBXContainerItemProxy */; }; - 8828AB8AB11A43640DCCBA23B0DB865D /* PBXTargetDependency */ = { + 875DE9F5AE8765CF4058A2301CAA333A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 43F8A05471207C4A2D06B4F455E0DF06 /* PBXContainerItemProxy */; + name = "React-callinvoker"; + target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; + targetProxy = 8C5E6A02811EC0B2316605C6D60F705D /* PBXContainerItemProxy */; }; - 88FBEE29C4CD193B0FC2438716A7C259 /* PBXTargetDependency */ = { + 87E798F92022D85C76C5A030B7C13DD4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-DoubleConversion"; - target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; - targetProxy = 7E738D3D1618C70BF0787446B765FF31 /* PBXContainerItemProxy */; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = D0851167FE3252D302B28CB570DDFC9E /* PBXContainerItemProxy */; }; - 89FDEFB52A2A359D8FB0E6ACEA1EA8EC /* PBXTargetDependency */ = { + 8828AB8AB11A43640DCCBA23B0DB865D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 3FE18628A68B47617543A03771CFBB10 /* PBXContainerItemProxy */; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = 43F8A05471207C4A2D06B4F455E0DF06 /* PBXContainerItemProxy */; }; - 8A246944BD9BF1510426A60B4B79C8D9 /* PBXTargetDependency */ = { + 88952FC3161058774A80A6F75696247D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = 7C73E6EF893F86C5F80F52BC152B6AE9 /* PBXContainerItemProxy */; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = C59F8614A9DB1EC7DBBBD5BA56949F69 /* PBXContainerItemProxy */; }; 8A6A487A4B1F40EA6984510C2CECC877 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26710,30 +26984,12 @@ target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = E5559543E1D84272633B986661EE620B /* PBXContainerItemProxy */; }; - 8AA00DB9A342B3A29034377D4AC15958 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 7767FEEC42905BBBDF2E9AFA9FE85E29 /* PBXContainerItemProxy */; - }; - 8AC17A577FCACE746BDD0FA888FF0DAC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = TOCropViewController; - target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; - targetProxy = 6A8005FD7A11780367334C1DE25E3BDD /* PBXContainerItemProxy */; - }; 8B4D9312BC7FC674B6DE7FD3EF238C9A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = 04B87863563E406809DFE81CD3C9622A /* PBXContainerItemProxy */; }; - 8B638225E16F4282312D03F25FDA9ED0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCameraInterface; - target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; - targetProxy = A6A560CB5BCFCF6B695A425D2B81ED48 /* PBXContainerItemProxy */; - }; 8BB8E79C6B4BE9C72FBF21D4C8068513 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCrashlytics; @@ -26752,17 +27008,29 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = B325F9553222FA53980F926E839937E2 /* PBXContainerItemProxy */; }; - 8DB8FAFD92C168FBF0A0005DAAB1A4FE /* PBXTargetDependency */ = { + 8CC01C945718DE3FD5CFE5A2C207A4A2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = E24F44E7C91CF06DB7175022659AD7D4 /* PBXContainerItemProxy */; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = D5DCCA94BE99A35BCB85566DE5FA474C /* PBXContainerItemProxy */; }; - 8DFEC5A7BE6A963B6A0F2B359E913B5F /* PBXTargetDependency */ = { + 8E56562A8D2C03726648B92C08EF0E4A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = E634A6162140C5B961545B2E89D7A23C /* PBXContainerItemProxy */; + name = RNCMaskedView; + target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; + targetProxy = DD557F30258116EFCDF5334E96F64EF8 /* PBXContainerItemProxy */; + }; + 8EAB34970D85BE613A6174FE2D3E792A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = 15C14DAD781EF0E7777E7EF6270AD24A /* PBXContainerItemProxy */; + }; + 8FE17BBDCBBB170461E08E711736F1EB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = 47B6CAD3C6306600A898E278A0B85ED8 /* PBXContainerItemProxy */; }; 9013A0482FB9B15D0A32499D01A68C65 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26776,41 +27044,29 @@ target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; targetProxy = 4CAFA9778CDD44DF406CDBD2D4E93969 /* PBXContainerItemProxy */; }; - 9056B537D823911604932E2E10B1570C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = 0371F95847C9A3B0AAD92DC9B5B0A052 /* PBXContainerItemProxy */; - }; - 90F1F1ED909656FF7E1E2ACF52B264A1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = 2A9BD23D3755054B2E68D2362436FC17 /* PBXContainerItemProxy */; - }; - 91C0F6C083E7AE0F01544A4880F201BA /* PBXTargetDependency */ = { + 90CD8583DB4201EB0F9476819F204B22 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = A3828FF5FB39039217CA29A893A54DF1 /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = BD9658B10E97FBF35C26CD886BA0F3CD /* PBXContainerItemProxy */; }; - 91EF5D2035FA2EF911537A453EBF2562 /* PBXTargetDependency */ = { + 91C76A9498E0842B48F2D1BE0D95185F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; - targetProxy = 8D5B9991BB98A47474EAB9779EE1C7F0 /* PBXContainerItemProxy */; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = 6D633F00841136E832319BFC894A593D /* PBXContainerItemProxy */; }; - 9259557FAE596677D3C4C8CCF3F3A76F /* PBXTargetDependency */ = { + 92DD31BE1EE2AAA12190756A3E682766 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = C43D14C1C7C996528BBC333036BF5E2F /* PBXContainerItemProxy */; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = E8CC16DFC1FFCACBC5299EEDD295292C /* PBXContainerItemProxy */; }; - 92D4934E069E91D7AA3069EED5E35A20 /* PBXTargetDependency */ = { + 93B6E6A981F19333B15AB53C7AA34906 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-DoubleConversion"; - target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; - targetProxy = A2F33ABF848647D27413D448A83F92ED /* PBXContainerItemProxy */; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = 7301E0EEA4381E7BB0765E0E2F26D433 /* PBXContainerItemProxy */; }; 96DA387B98978C2974700F14ACFDEBCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26818,12 +27074,6 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */; }; - 976FA7E0E567B7EF4588D15FAC2E5810 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCrashlytics; - target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; - targetProxy = 1689B8EFD7CA76B9AAC4F841427CF02F /* PBXContainerItemProxy */; - }; 98CAF57D4AE1A05752E57EC99DA909D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; @@ -26854,23 +27104,17 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 49F50ECEA44D3E4F8BB4ABF723720AB8 /* PBXContainerItemProxy */; }; - 9A213DCD1A88E7255871EAC4CC1E564E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = B31BE5F56839C6B2828C8DB678628BD2 /* PBXContainerItemProxy */; - }; 9A3CC81587399B5DD349F3B88D45A176 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 0053ED9B78FA78A3C6C3F5BE362C5CF1 /* PBXContainerItemProxy */; }; - 9A61B343D7DA1B6D0AA49FE7CF7543B4 /* PBXTargetDependency */ = { + 9A54C25C4D656A9BDE58672021762566 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXWebBrowser; - target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; - targetProxy = F193EBF0DD0204CE1AA054337CA9E7ED /* PBXContainerItemProxy */; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = 4AFD781D02E98E6871F46EF5E5B10CD2 /* PBXContainerItemProxy */; }; 9B2EEDE8DA879BBAB20E4B071536A162 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26878,24 +27122,6 @@ target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; targetProxy = DAC5FE4A6E4A3B1C724D63970BAC4338 /* PBXContainerItemProxy */; }; - 9B43CFD67EAD8AB9E098EC2DC3258B2A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 6804E03A9E36C6C405ED577BA6AD08DD /* PBXContainerItemProxy */; - }; - 9B6DB48F6B81E18686867F96EC7DBCFF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = A735C3C076CF8106DEA2E3E0A4550C15 /* PBXContainerItemProxy */; - }; - 9B9EBA298AA5078E3605F9032CFBA60B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXLocalAuthentication; - target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; - targetProxy = AA244138E7BA3CD2D7BD9FA21605E48B /* PBXContainerItemProxy */; - }; 9BE77C0CE5C822FC5DB8B01450B58D87 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCoreDiagnostics; @@ -26908,17 +27134,11 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 70AC81A917439EA0D74DCF9C1BF144DF /* PBXContainerItemProxy */; }; - 9C34EE49FD661A5331345C5F44727947 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = AA7D976367D89DFF9045D927833AC659 /* PBXContainerItemProxy */; - }; - 9D12EC0FCD0AC6519783B1E934B0FD1B /* PBXTargetDependency */ = { + 9C9FDC7A9C8F73410D3AED0B0F171945 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 102CC72BE4EEBF0CC9BA36C7D28186D1 /* PBXContainerItemProxy */; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = 2586A33EF830996B4319A4EB7C4FC276 /* PBXContainerItemProxy */; }; 9D952223892B210445690CF8063E5819 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26926,18 +27146,18 @@ target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = F58E9777EB3ADF88D9527C53980828B5 /* PBXContainerItemProxy */; }; + 9DC39EF7E8C9742DDA7A90F0A8DB90FF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = 0B221A3EB593BD77A6B5D5A3D8E3C356 /* PBXContainerItemProxy */; + }; 9DD60125DC20F42302B0B2D0CB316AC5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 8B10525073A1E3A812765DACA9E0E5F9 /* PBXContainerItemProxy */; }; - 9E20C50B8D082AF437A8A389A77C2528 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNUserDefaults; - target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; - targetProxy = 1E0505ACC34ED82B829A8D4A20313EAB /* PBXContainerItemProxy */; - }; 9E26FA23DA2D5C313CE6338C3FA0D6AB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; @@ -26950,11 +27170,23 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 2D2C4648FB3AB375786117A39F3D1919 /* PBXContainerItemProxy */; }; - 9F6E3C0188D803B20E2E5ECC38E2F8EF /* PBXTargetDependency */ = { + 9F6E3C0188D803B20E2E5ECC38E2F8EF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = 4C0C596ADC9E293A7A58D1310730D1F4 /* PBXContainerItemProxy */; + }; + 9FAE489BBA0A01A86489C936A5A3989A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = D0ADFFA1030312CDEC894612AB38DBEA /* PBXContainerItemProxy */; + }; + A0147A68AEF933AB0C9FBB9EBAE2E5AD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = 4C0C596ADC9E293A7A58D1310730D1F4 /* PBXContainerItemProxy */; + name = RNFBApp; + target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; + targetProxy = B58B6E1D796F7C4443D82C96325C5FB3 /* PBXContainerItemProxy */; }; A01D5BF6DB015DF0EC8522DEE1B04EF5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26962,23 +27194,35 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 36C09803F5639679F48876B79C1E1CFE /* PBXContainerItemProxy */; }; - A07714E330CB35CCACE3AE6428147009 /* PBXTargetDependency */ = { + A0293EF5974B5EB749F1D602F5D36DB5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 68F74AC235DAA430D9A3B78FDBD92BC3 /* PBXContainerItemProxy */; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = 0E57D077F0CF59BB71B11CE556426075 /* PBXContainerItemProxy */; }; - A0AC13AE89000D66A3114D9D9FA3AAC3 /* PBXTargetDependency */ = { + A059F4FF1B17996C04C06940832E511D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = AA720C04C92D5F9F7419344C04D974ED /* PBXContainerItemProxy */; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = 86B57EDA6036DBDA5A4513A700B5DC4E /* PBXContainerItemProxy */; }; - A0B5F04B2384C409F112C368294004BC /* PBXTargetDependency */ = { + A11FA30F50DC85E1F08D95F3FA594D14 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = AB73AF3E9BAEBB6C898995C4A5946BBC /* PBXContainerItemProxy */; + name = "react-native-simple-crypto"; + target = D985A509BFE270C95EDCBE6B4CBAF189 /* react-native-simple-crypto */; + targetProxy = 56A3FE760526E0DBAFC8EEFEA8B5A1FE /* PBXContainerItemProxy */; + }; + A15E0BDABCBD58DF4CA700553ACE75DA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = EEF440806D7662571E8255427D1C638F /* PBXContainerItemProxy */; + }; + A31B3D1B80B8A4A6B49790F332C375C4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = 13167A704C6B1D0E081F5188416F494D /* PBXContainerItemProxy */; }; A3F4258D4EA27D6C88C15BCDA4CDEDA4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26986,11 +27230,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = DDFCA674E1FE8DC1DB86D5A0C0A1FB6A /* PBXContainerItemProxy */; }; - A4932993120A302C7E09AB985581BA4A /* PBXTargetDependency */ = { + A48DAD4BD965C9810FE15DDA4A472702 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = 18B42A92AA0B03ABEDAFAD7E32385542 /* PBXContainerItemProxy */; + name = EXWebBrowser; + target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; + targetProxy = 882AE71F3FBC68F12800B820FAE944EA /* PBXContainerItemProxy */; }; A4F0171858F48CD50806A85D302C6E08 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26998,71 +27242,65 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = ECDF72BAFEE1568BCF8EFBBF82F17C77 /* PBXContainerItemProxy */; }; - A5480FBAB696D18491B23A15ADF84A7C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = C1706B224639845425D07B75E6227FFC /* PBXContainerItemProxy */; - }; - A64D2C03FC6888E3BA278A3A18DED406 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 3EBD3C18DFD4DE4370A8A64EB8072E46 /* PBXContainerItemProxy */; - }; A6B1DDAFCA31978F80326B93C5C07C68 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNFBApp; target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; targetProxy = 5A9DED21300713AA6D50E96B3E2A6CE4 /* PBXContainerItemProxy */; }; + A6DE9418F2B658085BBE954A1895CF6C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = DA10D47E8B52EF3EC53E9A1A4A574A3B /* PBXContainerItemProxy */; + }; A7508E3F53BF61BFA85D004AC3B86866 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBReactNativeSpec; target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 8195006B3B2AB45ACA54D6CFB2BC09A4 /* PBXContainerItemProxy */; }; + A7CDE345143DA4B4033E635C973C6E80 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "OpenSSL-Universal"; + target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; + targetProxy = 3C59E4B2BBEC0AD22755CBDD40148CA4 /* PBXContainerItemProxy */; + }; A7D97A2BA1A9E380ADD61762394F3AED /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 00F742804BC9EBF2BCDCC9C43C85E9FC /* PBXContainerItemProxy */; }; + A7E80D2CDD218D50F7E8CCC9E4EC39CC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = 8795792233AA7AAE4AFEF5CA3E4952E1 /* PBXContainerItemProxy */; + }; A80C97EEB33F6FF4E8DE4DC0F0CF9B66 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 5BE1625FF2C73ACD1127D4A9DDADF1AF /* PBXContainerItemProxy */; }; - A8666E736F94C7BB0EFC3591A11232BE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = D1B92E7CF50E518C083EE603E83BC504 /* PBXContainerItemProxy */; - }; - A89DDD8D768828F906D1EEA142D7DD62 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeKeyboardInput; - target = 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */; - targetProxy = F951B17A7A7A64D132F94DFC375CAF77 /* PBXContainerItemProxy */; - }; A9378C0255BF78AB2A2850B72E2A434B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = B2FA3966A49A0C9A1B7398D28D027638 /* PBXContainerItemProxy */; }; - A9C08DD436AA971185617D1DEDB9FE80 /* PBXTargetDependency */ = { + A94C555F94B1C3011C1167BBC1CE7964 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = F508C4403E8BFCC4439A69976A1D8DA7 /* PBXContainerItemProxy */; + name = ReactNativeKeyboardInput; + target = 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */; + targetProxy = 81BCD7A4EC3125023DBEEFF35A393C97 /* PBXContainerItemProxy */; }; - AA18A98B79C24F189F29CF1BD02F9DEB /* PBXTargetDependency */ = { + A99EBA95AC9B964C2826A00F25EFD092 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = 5F58C8FF443CDF9BB7FD1B4945661440 /* PBXContainerItemProxy */; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = ABB406873DA1ACED37DC37FADCC58D8D /* PBXContainerItemProxy */; }; AACFA3F54D41DD980F02203B57C8F7A2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27070,53 +27308,29 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = E8524B7128B54F7936616A550BEB7203 /* PBXContainerItemProxy */; }; - AAD991F6A075C5393F970D00A4E9F97C /* PBXTargetDependency */ = { + ACFA046877CE7A9517634BE2E207621A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMAppLoader; - target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; - targetProxy = 1482A36934233BD9C9E673F3F3A3F73D /* PBXContainerItemProxy */; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = 457FD8439900F794EA4C82ECAAFDFC81 /* PBXContainerItemProxy */; }; - ADB901FB82F34F3628E56095469FA945 /* PBXTargetDependency */ = { + AD161522B789F7BA63942D772ADE5610 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = EXWebBrowser; target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; - targetProxy = D2A9F75B6C6D125AE815F306835297D6 /* PBXContainerItemProxy */; - }; - AE51FE4D6A76915901B071802B23F956 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXAppleAuthentication; - target = 28A005E00FB77DDB2543047A07ED99A5 /* EXAppleAuthentication */; - targetProxy = 4D8A79FF8682A6D309289F9CFECD4040 /* PBXContainerItemProxy */; - }; - AE937192FDA09F2DDC036176CE54B089 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNCMaskedView; - target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; - targetProxy = 9651FF3DBD5C266953053897EF7756C2 /* PBXContainerItemProxy */; - }; - AF6CA85A23B88B1524E8828FA077EB33 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = E2CDEC4DE5B88BD3841BA5F094B06EFA /* PBXContainerItemProxy */; - }; - AF7D063DE16FD795063C5E0BD9BB35F1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = 8F8B5D0ECBD935688F202AF3510AB719 /* PBXContainerItemProxy */; + targetProxy = B292C831AAC36008DBC9DEDE7E76E53B /* PBXContainerItemProxy */; }; - AF9AB8A52A013C2B6F6126B2878D2166 /* PBXTargetDependency */ = { + AD94DDFE4281309EF42ADA72B6CA398D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-PeerTalk"; - target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; - targetProxy = 7B897D62DAD37F947393384156605211 /* PBXContainerItemProxy */; + name = UMCameraInterface; + target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; + targetProxy = 9D05993F4F599C0EC8C62BDB24CA2F13 /* PBXContainerItemProxy */; }; - AFE40D7C71BC70BCF97592506BF26A0E /* PBXTargetDependency */ = { + AE9AE34D488788408C6D8E003E553AB6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = FDBE2AE0C5D25206ABD02857E2ADFE60 /* PBXContainerItemProxy */; + name = "React-callinvoker"; + target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; + targetProxy = A09B5847EC68A49DBD8363077ED63490 /* PBXContainerItemProxy */; }; B06F178A82F3A420933C23345689BFDE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27124,11 +27338,17 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = E4C5288E9590D734DF4231687F5AE711 /* PBXContainerItemProxy */; }; - B0E931478DA15DFE28F0509C56A5AAAA /* PBXTargetDependency */ = { + B12773451AD535DEC17BDA464ED2404B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXPermissions; - target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; - targetProxy = 6AF372C0A7E3E05F2FA750659E3859F7 /* PBXContainerItemProxy */; + name = CocoaLibEvent; + target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; + targetProxy = 926DFEE7A0C24A8D5DBC044BAB493A4B /* PBXContainerItemProxy */; + }; + B1E8645A56B83FFCE6BFD9E60AEFF219 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = ACDDF280E206D10F889E114741848BEB /* PBXContainerItemProxy */; }; B237B8606B38C5CFB633C18DE09C72F4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27142,17 +27362,17 @@ target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; targetProxy = 687A049B2D3DF03B5F595D44592357B0 /* PBXContainerItemProxy */; }; - B3C9116B55A8CCFA814282C8C2F00C60 /* PBXTargetDependency */ = { + B3AA3B6C88543739EB55ECB98EE1F8E8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 70D2BFDD732B045BE03F7D9F6CA75B24 /* PBXContainerItemProxy */; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = E2E9E1BFDF193698C7A9AA6009C72FD5 /* PBXContainerItemProxy */; }; - B3CE52E42076A48F38EF624DD8171212 /* PBXTargetDependency */ = { + B4E1B64957057A684071F49D940BA955 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = 62B955709D1A174FD1C8BFC6EE83FA5B /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = 4CA531489325CF0D12AC347B4C66C12E /* PBXContainerItemProxy */; }; B58CF1FEA4024B58557DC96FA1284F62 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27160,6 +27380,12 @@ target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; targetProxy = 3B2CB4C09D3A44183329A2C1357EC2EF /* PBXContainerItemProxy */; }; + B5B732C02A9EFC3A177C22065D967ACC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = C415B2263B3D3065CF0D297E0B4922CA /* PBXContainerItemProxy */; + }; B6079F9D300E836B6122ECEE5C42C565 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-callinvoker"; @@ -27172,17 +27398,11 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = 0B7BA2BED87BC1DD6BBFA3C1A07E4E46 /* PBXContainerItemProxy */; }; - B644026B53D1FF20BFE2B8755F581292 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = D8CD7F04517359388C54DD5079CDCDC1 /* PBXContainerItemProxy */; - }; - B6CB5E7F75EFE8C915A966B47D2ACB92 /* PBXTargetDependency */ = { + B7ECD7C6E679C00C974768C6EBD9A92C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 4CF8553245B339053F7DBC3F02CD26D4 /* PBXContainerItemProxy */; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = 80377F47E690B90F68BDE0ED94887AFD /* PBXContainerItemProxy */; }; B8B73617617104E7103760F1AB0FDDAD /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27190,12 +27410,6 @@ target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; targetProxy = 52D75569EE8B532085465A5470C6C390 /* PBXContainerItemProxy */; }; - B8FF2A0A932FB07095790741EB3D9396 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = 9EA9C284B78D1354B2D4BCA62465F349 /* PBXContainerItemProxy */; - }; B92630B331C84A01EBE7ECA0D823D9FC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -27208,35 +27422,47 @@ target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; targetProxy = EFB0AF13D239174FC9CDAFF9D17ECDFC /* PBXContainerItemProxy */; }; + B9ED35B0F527954595A58F0E6255CC52 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 9BC81465D37E5360FE716853FC3E6905 /* PBXContainerItemProxy */; + }; BA241D5679EFEE167EE2F6CED9B54AF4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 77650DB9BCD15D3DBD659DF4437F2533 /* PBXContainerItemProxy */; }; - BA6B6122BAD82D5CB0BFFCA9912246F5 /* PBXTargetDependency */ = { + BA70064101E6D086314B256AF19330CC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeKeyboardTrackingView; - target = 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */; - targetProxy = 4DB20AF4BBBB941B8FEBA7317AE6EC08 /* PBXContainerItemProxy */; + name = "react-native-safe-area-context"; + target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; + targetProxy = BBBF66BE90497254A0FCD1CE3D956082 /* PBXContainerItemProxy */; }; - BA98B2C792C5A2A9FE43C45BD18EF936 /* PBXTargetDependency */ = { + BA84494251F81CC8C3899BBA858215A4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = C0FD2D1B32D2D3256D33F6909002282D /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = 7830759686E5A66561E3E1C481B46FCF /* PBXContainerItemProxy */; }; - BC00F0B1F90087E0576DCC395F487B2E /* PBXTargetDependency */ = { + BAF395129D6FF79F6A48F27C5C8384CE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Glog"; - target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; - targetProxy = 9BD5EC311CAE4B9C7E8DDF8118082581 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 9A8EB10EFCDC76BB2F6CF3E4E5469148 /* PBXContainerItemProxy */; }; - BD1A0F5FD33DCC5A74FDB51B9515DF06 /* PBXTargetDependency */ = { + BCA7113FDF2435C390856415E47AC03C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "OpenSSL-Universal"; - target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = 622E944BCD43EFCFCD146D72CDC98B83 /* PBXContainerItemProxy */; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 377DF289115160803299DC420860AEBC /* PBXContainerItemProxy */; + }; + BD348A1BFC9750BEEB229B7A191EDE44 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-RSocket"; + target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; + targetProxy = 0D572A8AD89C9CA36073105C0EE42221 /* PBXContainerItemProxy */; }; BD7B65C53246D71F9CAAFFEB4F1C1AEB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27244,17 +27470,17 @@ target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = FC08646CEFADC8729C286DFED21F92F1 /* PBXContainerItemProxy */; }; - BD8E217B2619F102FA8F1F7847A33546 /* PBXTargetDependency */ = { + BD7DB2C15A285C19E19D6DE4FA874A68 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXKeepAwake; - target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; - targetProxy = 756200A3C1C2626C19BB514C5942D162 /* PBXContainerItemProxy */; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = 62F2A501B180E45F813085F1C479FE81 /* PBXContainerItemProxy */; }; - BDCDEC2BD57BB86692B7BC2000243F62 /* PBXTargetDependency */ = { + BDEB1F8B69B6B22B35D1BD86C23F68FB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; - targetProxy = C2EB0B69E5B71D5B7CEF787DA982185C /* PBXContainerItemProxy */; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = 26BD6A2A46860388C93B21EDB975DA3D /* PBXContainerItemProxy */; }; BE7D0958FA0D61A89ADF1137F78DA078 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27262,11 +27488,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 7CBA093BB5F4F39B712F2AF488BEEC02 /* PBXContainerItemProxy */; }; - BEA002D8626F4CD664198FE31AE1267E /* PBXTargetDependency */ = { + BEA561B8AB471844550064D8C2993656 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = FA5699ABFF3409E16D3704454813326A /* PBXContainerItemProxy */; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = 4115B2B1B24446F419C0208831C405DE /* PBXContainerItemProxy */; }; BF23376B1A7E5DFDD5B71433E58CDDA1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27280,17 +27506,17 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = CAC5E63A0DB508761FB7D52FA119FB6F /* PBXContainerItemProxy */; }; - C1CD3EC64A03802C67160C9CD2A838A9 /* PBXTargetDependency */ = { + BFFDDB280653B72A3B7AAECD991CAEAF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = 2D5688E0BAB607DAB9035C32327EF3BF /* PBXContainerItemProxy */; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = 8DAB8C3B108A31E8EF7EC840A88F8306 /* PBXContainerItemProxy */; }; - C272C1B3100F47B6BBEA4BFF875AB55D /* PBXTargetDependency */ = { + C2A0D5E84C1B0EC349EDC8D49D1E5B01 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXConstants; - target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; - targetProxy = C19C44C5B9A77498CD3E3975B2D5E56F /* PBXContainerItemProxy */; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = 6486EEE39D28D6EC4B3FEF0E5A49BF3E /* PBXContainerItemProxy */; }; C2AC30595C831D2B12F9E0732A34E6A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27298,35 +27524,23 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = E061BCD9C026CFAFF267A1BBDC721A90 /* PBXContainerItemProxy */; }; - C2CA6300253A7F2FB05EEDE70EBA2D00 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = 0F25F061A1A39924FF13890EC569549E /* PBXContainerItemProxy */; - }; C2F4F600BE8CFAE46C20184214A19FFE /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTTypeSafety; target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = F6FBF19908B8BD5F401871F2E3C3DD7A /* PBXContainerItemProxy */; }; - C47CEA905059B69507559936B9EBAB14 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = B564E5602A6BC67C2371AB2B17192014 /* PBXContainerItemProxy */; - }; - C54E76401FA8C68885BC5976E1F0C2E9 /* PBXTargetDependency */ = { + C50FA462E95BBF52EDCBDC809F2A54F6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = CB590837E282489674DA6B1FCD7C0520 /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = FB885DD65B3816968A484CB683270E14 /* PBXContainerItemProxy */; }; - C57D10C69B26DCC3917100EE0D8CEB3C /* PBXTargetDependency */ = { + C54FEE278B90C9FB227D8CCCB50ED3DB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = 6B3252AE3D41748A46CA498FABAF4877 /* PBXContainerItemProxy */; + name = UMAppLoader; + target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; + targetProxy = C77E9414EFEC331A01522E271C9D33FF /* PBXContainerItemProxy */; }; C5A0E011AD4DDD3DB47BE2A057285067 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27334,71 +27548,53 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 1B209875BE1A2519F69D4DFF0948FFAC /* PBXContainerItemProxy */; }; - C61450C4375B7A72668C6DC77C01BF57 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = A004A2C3FB38B8EC0BBA25417855E0D4 /* PBXContainerItemProxy */; - }; C703CF0D0E02E9A86C01260A8FD221D7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 68768374A1E75E492CE01513CA6C20AF /* PBXContainerItemProxy */; }; - C73A558938E341FCDC078B40F5F019EE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 2E334A0920C947FEECC3ABDF658B06ED /* PBXContainerItemProxy */; - }; C7D76D218015D375E16E46FB5BC47558 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 74F8831E48B81E5BF2E301334BA3ED41 /* PBXContainerItemProxy */; }; + C7E148418BDC1EE12585CF2ECBD2A068 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = 09BA2B6AC4A3C12D0A61B83D245D73D3 /* PBXContainerItemProxy */; + }; C85153279823DD6D83526F6B511CE44D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMConstantsInterface; target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; targetProxy = 13791CBAE3B4CCAF1FC636BA2BBD9DE4 /* PBXContainerItemProxy */; }; - C8575F8BB7FBE181EB7066A740CD601F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFBCrashlytics; - target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; - targetProxy = B65E5E5EDE7E65D488913DFB6C520360 /* PBXContainerItemProxy */; - }; - C86F82B1AC15C17ABE214F16676E5193 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = 4FA88F9DBF4DFFD73FAF38583EE2CC6D /* PBXContainerItemProxy */; - }; - C8A545D3C915597B7319DFD5BF70A6B8 /* PBXTargetDependency */ = { + C891913CBB804A9CCD0C8B77046013A8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = AD31FD19C61BB36FD74C9BA21A896DF9 /* PBXContainerItemProxy */; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = 8A64C9AF6FB93DD3F969BACDFCA20F43 /* PBXContainerItemProxy */; }; - C8F4139AB9EDF924F11110F17D495818 /* PBXTargetDependency */ = { + C9497CAB4751A467BE4C7767A04C6E48 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = B7178B40087CC371B2D06E64B379D5F5 /* PBXContainerItemProxy */; + name = CocoaAsyncSocket; + target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; + targetProxy = 7BC57D58971D7894E334873FDED73997 /* PBXContainerItemProxy */; }; - C93C5E0E25EBCCAE57D6A483431FCEF6 /* PBXTargetDependency */ = { + C99C9DBCA03C14183B3E0A97FD81EA4E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = 1703310E0089BFD02A47B059AEE33F92 /* PBXContainerItemProxy */; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = EB12E42943010A92F519E9BFC7DB543C /* PBXContainerItemProxy */; }; - CA4FDFA5DB013DE7C4D05C63463591A3 /* PBXTargetDependency */ = { + CAFBC257BE8271CD81AB56E7B34018D9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = 873A69DDCFD90F1DF7D9017673114797 /* PBXContainerItemProxy */; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 0D91F3348970B014046ABAECBBCF691F /* PBXContainerItemProxy */; }; CB97061AE5C24A9D7F6D01F21E27B66B /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27406,17 +27602,23 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 693D404670546F8992A85D966A95020E /* PBXContainerItemProxy */; }; - CD20DB0CDFCEE83349A17C394DFF57AD /* PBXTargetDependency */ = { + CC4498CB8FA35C1FD5F4024850B7C347 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = 6BAEA3CD9128BF458A84EA0A37036103 /* PBXContainerItemProxy */; + name = FirebaseCrashlytics; + target = 526C4398D095B3704EB933DADBC30093 /* FirebaseCrashlytics */; + targetProxy = 0CDC6E2828C2DFE596814DF75208C626 /* PBXContainerItemProxy */; }; - CDBE6654F13DC9C7A24D00145F56DF01 /* PBXTargetDependency */ = { + CD32E58535F46F09AD92CB71D8024257 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 5AC78BCBBECC659F27CEE775EB3BA0EB /* PBXContainerItemProxy */; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = E7D573B0CE2097B45FFC138BCC08F6E4 /* PBXContainerItemProxy */; + }; + CDC7BC4784E8ED0193BA3BC19E90FB0C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 1D3CF06D95E18187A5CC55B87327DDFC /* PBXContainerItemProxy */; }; CE811BA8598231C29656D85CC4033048 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27430,11 +27632,11 @@ target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = DA6E367832BBDB743B832C859EFC4513 /* PBXContainerItemProxy */; }; - CEBFE65F25B7FCFA340AFDD8E7DC40FD /* PBXTargetDependency */ = { + CFA1D1C5DE8415F53CE565B6DB41BBBA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Folly"; - target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = 79E9F2AA6859D35243914AF4693E6795 /* PBXContainerItemProxy */; + name = "Flipper-Glog"; + target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; + targetProxy = BD87CEB5913D16132A3C3B1DAC1CE395 /* PBXContainerItemProxy */; }; D05604972B2B426A3FED1BAC2ABE3BF8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27442,18 +27644,6 @@ target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; targetProxy = 0992EA3BAB1334D3D4F32C329D61E5D8 /* PBXContainerItemProxy */; }; - D0DAA51893D7D01013EF6D17CD01E5E2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 8167557852880ECC0A0F1AFA3AF5BFF2 /* PBXContainerItemProxy */; - }; - D1B80D5E1FFCEB90075B5FB9857752F9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = E90029E85BE23351C5A4BE8396D75B8E /* PBXContainerItemProxy */; - }; D2285B5805A417D68129D0A7C6A51AE3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleDataTransport; @@ -27466,11 +27656,11 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = BA8918FF1CDCF34A08912891E7A9FE85 /* PBXContainerItemProxy */; }; - D2E77EC2FAD98104FE4D1020A85AD061 /* PBXTargetDependency */ = { + D2C5880FF4EC91EE05FBBC5F7ACC48E5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = 73CADBA3053C227CCFD5EA6050B28BB1 /* PBXContainerItemProxy */; + name = EXImageLoader; + target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; + targetProxy = 8072F15817ED442C11DD22466FB7E264 /* PBXContainerItemProxy */; }; D363B6CB8ECD71EA16419BCB97ACD6E1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27484,41 +27674,35 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 3B6D37192A39FD2BDCD1EC2D0E739FED /* PBXContainerItemProxy */; }; + D3D6459C3A61FF832B3559A3DDB1771E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 2A3434F5179ED82CC75AC9D4DF3AE225 /* PBXContainerItemProxy */; + }; D499516EE5DA748087C7EF2C94543BA3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; targetProxy = 91345979BEE4768EF9136EE4EE3D00FB /* PBXContainerItemProxy */; }; + D4E9FEA03FB23E102C07B06FFEA09793 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = A2D94C5C1E306A99D3F3DB83346F25A8 /* PBXContainerItemProxy */; + }; D534792836CC031487EB62253344EA5D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 2E8FE62F5F6B8EF737DB919ED66B630A /* PBXContainerItemProxy */; }; - D56ABD25564E4D543838DDF2E31F21AB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 339D5CE31DB005B622A11D2CF76B0AFA /* PBXContainerItemProxy */; - }; - D57FECE0C7CF029BB2934350E5783D74 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFBCrashlytics; - target = E3573FB7AF659C42B699003C73722241 /* RNFBCrashlytics */; - targetProxy = 96C3C58DF266EB7D9FFCEDF89B333502 /* PBXContainerItemProxy */; - }; - D5A9B3FC93AB212ACD1E74DD16D724F1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXPermissions; - target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; - targetProxy = 30F8E6E19A2F9A2D230976D9CB2ACA68 /* PBXContainerItemProxy */; - }; - D5EC79833E7F34FE5D2AE073E2EF4EE3 /* PBXTargetDependency */ = { + D5BAB13E833BE02187636DD37CEEA897 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = 5B188110322483D27D171D9BCDE803CE /* PBXContainerItemProxy */; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = 35216D06209D0795DFBE9421B2BB8AF8 /* PBXContainerItemProxy */; }; D5F43FE63F1F6C96E0D9F953258FAE9D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27526,12 +27710,6 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = E79050B7B79BB88D74178F90A19D9ECF /* PBXContainerItemProxy */; }; - D6007D08F9631DBC113DF2C3D79C9B91 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFBApp; - target = 90D0DE2F3348233618414728C35311CA /* RNFBApp */; - targetProxy = 937E8BB33621B0D4B6B924E030F6BA5A /* PBXContainerItemProxy */; - }; D6B7B8C07DEE0669AA70FB17B58D483A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -27544,35 +27722,47 @@ target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; targetProxy = 42F97C29084691AA0F01785A3193AF04 /* PBXContainerItemProxy */; }; + D768B857AA45963D35F89B103123102A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = 01E4C3EBE22D57354AD8981E37AB9F25 /* PBXContainerItemProxy */; + }; + D78159152E651C8B28D6E662AB668728 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = A28ECABFC56E17EA13272C601645BBC1 /* PBXContainerItemProxy */; + }; + D7FCDD4A4843F517D80A1F5E57C86BC4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = B317C91666F62A8229E21726CC221A33 /* PBXContainerItemProxy */; + }; D846DE6BBAA9C4DBC81A4B1BE9895E7B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = E78EB90AEEC70687EFA88E5AA41058AA /* PBXContainerItemProxy */; }; + D90CD0FA1FD95CF9E731C30CFC473467 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = 3029C6D076A85E9D8724318328451A37 /* PBXContainerItemProxy */; + }; D919ED6D5E9BBF3E57EF55725262CB14 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = F6D03AA427E993C8552AA921EA59A306 /* PBXContainerItemProxy */; }; - D9850D7E1EFCC45C877A53342826541B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 04F87EED63E3263EC45992EE810C5C08 /* PBXContainerItemProxy */; - }; - DA7D1D4D47ACB955847B15C175094B3C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-callinvoker"; - target = 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */; - targetProxy = B82951709CED7FF36703E8A0A8CD2FB1 /* PBXContainerItemProxy */; - }; - DAA8DD87080EC1874603BCDDDB112B9A /* PBXTargetDependency */ = { + D9A1380EAA8190A0C5C4A60813B059CD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = 7C64EFBCE88FE7A6A96223D6FE0AC949 /* PBXContainerItemProxy */; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = 26CD54261130101A3F126B292E436674 /* PBXContainerItemProxy */; }; DB428F9B87F61672189FE93818C7346C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27616,53 +27806,53 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 6423924A022902547DBE5FC8EF93BD4D /* PBXContainerItemProxy */; }; - DD496B3802798311DA3BE2A056C0B8CF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNUserDefaults; - target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; - targetProxy = B1C0A034ECD22BD66E1B28389FBC84F9 /* PBXContainerItemProxy */; - }; DDAE5DE7E02A6212BDC43A3CA35A61F2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-cxxreact"; target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; targetProxy = 105C14933DE14E3D661907FB45821DCA /* PBXContainerItemProxy */; }; - DE06F05CB467E64B5594ECE50618EC61 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = 3449D4C1992471B082F0F2405746C6A2 /* PBXContainerItemProxy */; - }; - DE4600EEF1BF80E488532B4A9347AB91 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 0CAAA2A225AC8B72F176D932B816583E /* PBXContainerItemProxy */; - }; DE7D32A14CF77975D6D807C453648136 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 132A4A8CBAE2EBFF485A847482DF06DD /* PBXContainerItemProxy */; }; + DE9AF2F70D8B1C2B3380C869B2B99035 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = 928C7346A708CEB7918C883983F51CEB /* PBXContainerItemProxy */; + }; + DEFBA5571A74870B3969F38E90BB927E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-Glog"; + target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; + targetProxy = B724FAD1E7467DBF06FECC070E24E149 /* PBXContainerItemProxy */; + }; DF072AA82B95EF5DD4445A2E27AEC5E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 21B7FFD1A14C9DCA797642821E09A7B1 /* PBXContainerItemProxy */; }; - DF48B763E8928213E008106D1BFA6973 /* PBXTargetDependency */ = { + DF42EAB451B59D6EA3B20354CBD7BA83 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; - targetProxy = 765DFC27735F57B327433D487327CE7F /* PBXContainerItemProxy */; + name = "Flipper-DoubleConversion"; + target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; + targetProxy = 77497048A04993E0D14F21677BAF5FF2 /* PBXContainerItemProxy */; }; - DFBBC8ED52F10DB46F5EC21994357C38 /* PBXTargetDependency */ = { + E05DF521AABFDE0068334E17626773A2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CocoaAsyncSocket; - target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; - targetProxy = 4829582FFF26B2D4C359F08214923EB3 /* PBXContainerItemProxy */; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = F30F43473AAF6709ECDD0451946735F6 /* PBXContainerItemProxy */; + }; + E0D93A898B075C99444EEAA72F1C2040 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = 692BFDC7A05DE6BE7ED8C8AD55684443 /* PBXContainerItemProxy */; }; E0EE46A92FA4B2520F4C0979EC9369DB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27670,24 +27860,30 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 23C9EE150BBDDD445CE0ADCFAE6D68ED /* PBXContainerItemProxy */; }; - E0F6CAE2B0912436706447EBFA8936DB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 86D62CF53A7AB2FEB4D32E0B4E124ECA /* PBXContainerItemProxy */; - }; - E10AFAC3057FD964C466F26D527BA92B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 394F97E0F09CE10C2012CCCF2039B7FD /* PBXContainerItemProxy */; - }; E23CCC73B951B35C0FB4CA8FF050583A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = BD5F7970056AEC9A9A48216153498EF7 /* PBXContainerItemProxy */; }; + E2480EEEA00CBEE6DC1F87B3BED5F28B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 155324295DF41FC7E25885367E651D2B /* PBXContainerItemProxy */; + }; + E26CA924FC475A6C3649B39BF0EA6E7E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = 5DDF4FBDAE2E202F61C21E1F471DE363 /* PBXContainerItemProxy */; + }; + E2D7F8B0329BC4A8A41DB6C527C42812 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 927BDF9A45005191E07C2BDCEECA6B40 /* PBXContainerItemProxy */; + }; E364FC183F2618C9D12C99E67143417F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -27700,17 +27896,41 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = EAA9F477386E52EB30E75431006FAA8C /* PBXContainerItemProxy */; }; - E59BCF8EFCBD9C5476FDABA90C5814E8 /* PBXTargetDependency */ = { + E639C2719680F1C841848E6515436917 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = 161EA40FE8CAA8D6918971FF60C8FF2D /* PBXContainerItemProxy */; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = 97555F50FD71B1A3803B56858EA88A38 /* PBXContainerItemProxy */; }; - E7C960E4E30DF2F7A05D9C5EB2B3B911 /* PBXTargetDependency */ = { + E6DB5D267B409E06DB21CC58118311C5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = 13900C7DF3CC2DE7FA2B02A57863AFC6 /* PBXContainerItemProxy */; + name = TOCropViewController; + target = F3966F664F3CFAEFAB57C40FB54D3788 /* TOCropViewController */; + targetProxy = C147EB6A0CC077B61B8C0B91CCBD33B3 /* PBXContainerItemProxy */; + }; + E72FBEC5B7ABF94AEC9471ABD8B19726 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = 894F1783DC8176DBC1CAC4E5FE4262DE /* PBXContainerItemProxy */; + }; + E74D907D8499F3CFBBF8762545B4CFA5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = 502ED6835777559672A8E34650A0A573 /* PBXContainerItemProxy */; + }; + E74EDA2672774E1D2B840C7FF748EF7C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = 9FD00932C6368496E06E1282E8706435 /* PBXContainerItemProxy */; + }; + E7562746CE69C0AC5B62568B326CF522 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = ED35C6A14E1524086A9B93EDE40E3DFA /* PBXContainerItemProxy */; }; E7D36BFE6E30CE57D9BAA1151633F937 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27718,11 +27938,17 @@ target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; targetProxy = AC4A774AD4298B03F7153D4FC3C59F8D /* PBXContainerItemProxy */; }; - E819E4CD2FD53FDFEA6E63D553ACA054 /* PBXTargetDependency */ = { + E7D3BFAC4D11166B7B2A6E25269E4FA6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-cxxreact"; target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 0C158871B3A6981ABE3CF3915C4072CB /* PBXContainerItemProxy */; + targetProxy = AD35E9F1769247FD5F3A3ACE6B6316AE /* PBXContainerItemProxy */; + }; + E80781B4303B82DC7DDA3C8DB90A119B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 8EF2B48EBD66C4CA9B2900B739855E81 /* PBXContainerItemProxy */; }; E8740A2B879F18CF356E4FD2B9498953 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27730,23 +27956,17 @@ target = 2D4D3D5AD93ADCCF3DD45A88009E48D6 /* TOCropViewController-TOCropViewControllerBundle */; targetProxy = 004E28481B999EBB8713F583C49F4661 /* PBXContainerItemProxy */; }; - E93512688EB7F5AC5080541457992B37 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = CC5BB994C099F7C8C461715A78B6BE26 /* PBXContainerItemProxy */; - }; EB9FA6F585C535B87FED8F313CC4B3DC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Flipper; target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; targetProxy = 6514B943829E36F02B9A139465155A84 /* PBXContainerItemProxy */; }; - EC020315738721BD82FC354E2DAE4019 /* PBXTargetDependency */ = { + EC0D16E1177B611EDEF3361C6B50BC0B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 5624877926ECCB7E1106DDDC76C3145F /* PBXContainerItemProxy */; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = 3217641DC9047B0C682694F0704FEDC8 /* PBXContainerItemProxy */; }; EC6304241511E3A3FDE95C7A5D38EDBC /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27766,29 +27986,35 @@ target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; targetProxy = B5E90F5A93A4DF2C85CB04E1C028E70E /* PBXContainerItemProxy */; }; + ED1118FD4F9F8734CED3AAC9456B1DC3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = 37F9C0BD2F86E02559E4C0E076564810 /* PBXContainerItemProxy */; + }; EDE4622A231D7E4C637C51459B075FDC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = F1D31400DE78E76FE461920F078645F1 /* PBXContainerItemProxy */; }; + EDE4B3B642FEF439BDFD00E237BEFDF6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-DoubleConversion"; + target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; + targetProxy = BE393462FB7270897C49B4C686544456 /* PBXContainerItemProxy */; + }; EE1CC51893DCF92DD4E8E26E4F3526E4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 8110DAB12235E146C76645C74A703974 /* PBXContainerItemProxy */; }; - EECA9449CD18052CC1788943DE789B45 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = E578A89849C64640D7209C8ACFFFA076 /* PBXContainerItemProxy */; - }; - EFB60F485FA51972D732CF44C789CA08 /* PBXTargetDependency */ = { + EE4C42A593E71810E5E81614C489B1E1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = C7B466FA383D81AF6F3241A37DB05A84 /* PBXContainerItemProxy */; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = 9C14DBB828FB613BF4B4169E0B4B521A /* PBXContainerItemProxy */; }; F00EFFD8AB7F4034C272369D638B0070 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27796,47 +28022,53 @@ target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; targetProxy = 036314721AE80A783233849B6130E1DB /* PBXContainerItemProxy */; }; + F04A1C73ACB8C59F85FE4D3D681B8AEE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 0AF8039B014EC2ADCE1F8110ECCBA350 /* PBXContainerItemProxy */; + }; F135F9BF24D8AFC3B42F3522D809B4BB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = 8DF020BBAD4E0EEEBB161574ABB68916 /* PBXContainerItemProxy */; }; - F1FC8BAE0A96C66B6EB4358258DFACCA /* PBXTargetDependency */ = { + F22650A93EE2BB34BCEB3CCCE0BA1A62 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 19DF1D7AC3BB100EF5DF6E81294047BE /* PBXContainerItemProxy */; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = 18F4972C81215B160CC3E223170BDAD1 /* PBXContainerItemProxy */; }; - F2F4B54483C4E024FEDD562422BF8649 /* PBXTargetDependency */ = { + F241FDE1029555CAEF0DA9759BCB6341 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = 9A6B1BFD6E25FFE6820F3E7009D05C56 /* PBXContainerItemProxy */; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = D210E08EB4E75D6BD008BE7BF36F2DD2 /* PBXContainerItemProxy */; }; - F4394E6D140855F13C7E085D52017FC3 /* PBXTargetDependency */ = { + F2B1D738EC334FD7CB3279D5893D0B1C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-safe-area-context"; - target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; - targetProxy = 896F6B80F3BC3956ADC898A9918C4606 /* PBXContainerItemProxy */; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 91F495D864D5159885AC36C0EA646FE0 /* PBXContainerItemProxy */; }; - F4ABC2B3D06CA044325DADC1ED59161D /* PBXTargetDependency */ = { + F3175487AA93023705C5A8C8C9960A64 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = DE426B84920AAD68A99A39CB81DA3490 /* PBXContainerItemProxy */; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = 5A1F0FCF7801D502B70460B99CB41F46 /* PBXContainerItemProxy */; }; - F6195B7CF436117AE4ABAEC1E8EF265F /* PBXTargetDependency */ = { + F451BC8AC79FA11B2F1C91E4D37CD41B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 13FB93276AC50813E07244461EF496E6 /* PBXContainerItemProxy */; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = 0F1173BCAC0DFAD0051AE844CBEB7174 /* PBXContainerItemProxy */; }; - F61FDE36436151FA6CDE30CDA28CD8F2 /* PBXTargetDependency */ = { + F4ABC2B3D06CA044325DADC1ED59161D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = 8BCFBE8E144139E6908BBE0783D76B49 /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = DE426B84920AAD68A99A39CB81DA3490 /* PBXContainerItemProxy */; }; F6258EC7EA780DA17A9BB7DEC0186247 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27844,30 +28076,12 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 7376C532C4FB647A107D7FD9698C24E8 /* PBXContainerItemProxy */; }; - F62674C85B2821D88F1B1892B8AE2BD3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 2CF888B3E22609FE38050554C48DB48D /* PBXContainerItemProxy */; - }; F6479A4C276556C2A703A39E011FE39A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 69C4D7766C312F032D5267A5354EEDFE /* PBXContainerItemProxy */; }; - F6845044C9D1F85963240D40A8CF66CE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CocoaLibEvent; - target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; - targetProxy = 2D5646887B66701B7BF9C96E1C741BDA /* PBXContainerItemProxy */; - }; - F6F02601B64F7A899C53147731C94B7A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-Folly"; - target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = 7B3522FBFEC023993CFA8C115B1B206F /* PBXContainerItemProxy */; - }; F701D20B1DCD05A8343468AB65446D29 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseInstallations; @@ -27880,6 +28094,18 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = DF83807DED7F8C5AF770B13C6BAA9515 /* PBXContainerItemProxy */; }; + F76EB6A9BC553094CA94C82D12684536 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = D1837FD8965948ED109FCDE0DC81859E /* PBXContainerItemProxy */; + }; + F777DAEC84F07192E8CCB9414974276A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = 554E7C1D3BAC9594C4D5C44B987A5E15 /* PBXContainerItemProxy */; + }; F77917FB7C27A937C4A222233103AEBF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -27892,11 +28118,11 @@ target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; targetProxy = 8A87B1215AE1D57577083FFA7A10794D /* PBXContainerItemProxy */; }; - F8B6F8DB25AB325478B75C3A9A29EBC0 /* PBXTargetDependency */ = { + F85781156E29EE8E0483380264880C75 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; - targetProxy = 166349A4DAD62A7CE0C2E79B5A36CEDC /* PBXContainerItemProxy */; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = 1AF9AB344DE1B51241EC27F098F41138 /* PBXContainerItemProxy */; }; F8C1CD1626D72CA6B6AA13427FA2AD1B /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27904,11 +28130,11 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 071222278FB4DF525C9E63FA3E8CE461 /* PBXContainerItemProxy */; }; - F9278BA9AC3F457DCB416EC01931B607 /* PBXTargetDependency */ = { + F992A69349DB8ED5D62558269EA9D966 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = 852ECD89363EAB11E5C8D12DCCAA4DD3 /* PBXContainerItemProxy */; + name = Folly; + target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; + targetProxy = 9A3C0D45190ED3333806C5FF7AA064A9 /* PBXContainerItemProxy */; }; F9BED6237125E21323372F82EBB8C492 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27922,17 +28148,29 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = B385A03A23F4B1BBC725B05DDC7A641F /* PBXContainerItemProxy */; }; - FD6B24836F3DAB432256885603F29AE6 /* PBXTargetDependency */ = { + FA4EAA02E3BAF8913C0B39F0D12FBDA4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = D292BFC0747A88D94B390E8FBCD831CB /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 3451E6DAE36131EB49A2E250073E4FCC /* PBXContainerItemProxy */; }; - FE333EAC8C85D2FD4BF6C366E7207CCC /* PBXTargetDependency */ = { + FB4E2E9C87EF7640118F8141CF620E83 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = 6CF29919C69E6D5DD25546168A2C75E9 /* PBXContainerItemProxy */; + name = EXImageLoader; + target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; + targetProxy = 8819AC90BF432CE5A8DF4EBF040A80FE /* PBXContainerItemProxy */; + }; + FD1F896DDE01C27431DE9F4CA4AAA0E5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = E2C62C33461C7E2702433ECCBD3ED565 /* PBXContainerItemProxy */; + }; + FD716A9A94EB77E34C62A835C8313F40 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNUserDefaults; + target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; + targetProxy = 12184D55C7BE61C90FA947369504EF00 /* PBXContainerItemProxy */; }; FF13C50DDCC10521862C497DD83A27F9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -27971,7 +28209,7 @@ }; 003F3938252205C778AEAE6B3CA5EF19 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E00C04F111934CCA0CF49B66116F31AF /* EXLocalAuthentication.release.xcconfig */; + baseConfigurationReference = 8A564A141A9AE2E73F2C52C8CFAF09C0 /* EXLocalAuthentication.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27999,7 +28237,7 @@ }; 006AFBC6FCCB17BEFAB9433D173BAF0C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C2EDD1CADC43293D0D1DAD6D57DD9A1C /* RCTTypeSafety.debug.xcconfig */; + baseConfigurationReference = 451F93EADDC4F35AE18B140295DBE80B /* RCTTypeSafety.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28054,7 +28292,7 @@ }; 020DCEB2FA2C29179A3E14493A6603A0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 70121B130EBD45D3CF9B351466EEB35A /* React-jsinspector.release.xcconfig */; + baseConfigurationReference = 14E554F53262272D3C91AC3826450D23 /* React-jsinspector.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28082,7 +28320,7 @@ }; 02E2C7353DFFBC0058944D4918E49DB2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7D73CFEE36A84DAC62307E1903F2E9B5 /* React-Core.debug.xcconfig */; + baseConfigurationReference = 4FC5015413CFC22C82916293D25C96C1 /* React-Core.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -28100,7 +28338,7 @@ }; 02EFD6A33F09391B5FC2D1AE34F42439 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0EA62232CBEF8FF811E72EC3CC3709A3 /* UMCameraInterface.debug.xcconfig */; + baseConfigurationReference = BEC770B8F5C2CDCD16EA05F38DD4ACFD /* UMCameraInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28134,7 +28372,7 @@ }; 0666FD7E2F8158F6150585C0E2801B63 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 62D0EB1335EE43AFD5FFBF3BA7A06204 /* ReactCommon.debug.xcconfig */; + baseConfigurationReference = A8A036EF500B0CEDC902E32C84DE6FA4 /* ReactCommon.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28161,7 +28399,7 @@ }; 069E4904583D4141FD62AB20BAB275DE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B97B2D7FE0E734635F61FB19F658FC9D /* rn-fetch-blob.release.xcconfig */; + baseConfigurationReference = BBEA8CAFF75CDEE68027BDE08DD47A10 /* rn-fetch-blob.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28188,7 +28426,7 @@ }; 09A25B46F5EF831F12D8DC150A71DB64 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 17B5187116367FE0095FE4AB06B77488 /* React-RCTLinking.release.xcconfig */; + baseConfigurationReference = 08B0139E8BE058755F5EB3C8996FC9FF /* React-RCTLinking.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28216,7 +28454,7 @@ }; 0B61F83B3253E9F9CBE5716EB3040EFD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B822C39AA6B0EC03D3F6E42F67AB74BD /* React-Core.release.xcconfig */; + baseConfigurationReference = B22FB9D497AD7D63DC4CDAC56A4F44AF /* React-Core.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28244,7 +28482,7 @@ }; 0C1F80D095D5EFAD22FA9D27FE38755E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3D5FD0B95ACC58746CBA3B0C6E668BD3 /* UMImageLoaderInterface.release.xcconfig */; + baseConfigurationReference = 20ECC9838D9057350279484544C6F8EB /* UMImageLoaderInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28261,7 +28499,7 @@ }; 0CF60BA930A13ED11DE8C9A3B6457EB3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 75FC24EF233E089CBF441BC19974A593 /* RNDateTimePicker.release.xcconfig */; + baseConfigurationReference = A6C598973F0ED3E9D576B49F2421842E /* RNDateTimePicker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28275,34 +28513,7 @@ OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; PRODUCT_MODULE_NAME = RNDateTimePicker; - PRODUCT_NAME = RNDateTimePicker; - 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; - }; - 0E0967984E9EEDAE2DB825D775411C33 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 88C803B99AEC562FC0C0CCA0D1D2B59F /* RNDeviceInfo.release.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - 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/RNDeviceInfo/RNDeviceInfo-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNDeviceInfo; - PRODUCT_NAME = RNDeviceInfo; + PRODUCT_NAME = RNDateTimePicker; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -28313,27 +28524,28 @@ }; name = Release; }; - 10ED031356ACF69DA7825854CAC16BF6 /* Release */ = { + 0E0967984E9EEDAE2DB825D775411C33 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 852DC564997734F4D539E66A2B03F20B /* Pods-ShareRocketChatRN.release.xcconfig */; + baseConfigurationReference = D08EFCBEA423BA10284B5BA66BE2CE5B /* RNDeviceInfo.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"; + GCC_PREFIX_HEADER = "Target Support Files/RNDeviceInfo/RNDeviceInfo-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNDeviceInfo; + PRODUCT_NAME = RNDeviceInfo; + 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; }; @@ -28341,7 +28553,7 @@ }; 11F71D8FD0DAF9E2C3E225E965C91F2A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 69023791643DD50D7580B1673D35676B /* react-native-document-picker.debug.xcconfig */; + baseConfigurationReference = 15765270D5A73D79E74E1D5890B76E3D /* react-native-document-picker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28367,7 +28579,7 @@ }; 1338CC95376DE111E183F0E21553E556 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7465EF4745AEA5201AC98AD425335674 /* react-native-notifications.debug.xcconfig */; + baseConfigurationReference = BF1CE46C0D909DD9EFFE550B20C0B2B4 /* react-native-notifications.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28393,7 +28605,7 @@ }; 135F3D49C974222F544098332333370B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A5BDC94EBC9ED964369495694B7D1365 /* React-RCTText.debug.xcconfig */; + baseConfigurationReference = A466E69D1453E4527BAEFDE5D27D7DFA /* React-RCTText.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28448,7 +28660,7 @@ }; 1684FEB26BF37EF9DC4A3DD1B469A4FA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1945EE587E1BE1EAAAA7448B347758F7 /* React-jsi.release.xcconfig */; + baseConfigurationReference = 3E3CBC770D5701724EC508F10C737C78 /* React-jsi.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28517,7 +28729,7 @@ }; 17C4C81C4E7EF12C651709C9B246C240 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CA782B6CB8D0E07AD5544587498F4408 /* RNFastImage.release.xcconfig */; + baseConfigurationReference = B7E12A532E80DAD7CAF5F1DEF2B00FD6 /* RNFastImage.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28544,7 +28756,7 @@ }; 1A944E73ACCD8D4CFC2AEC2CCD644B41 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 27B06FC1E3E74DC87660CC1C44A1853A /* React-jsinspector.debug.xcconfig */; + baseConfigurationReference = 0524B1607ADF3E508B48634EC00BD81C /* React-jsinspector.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28571,7 +28783,7 @@ }; 1AF7199724635CFC2C0BC414F1AAF724 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 936320A64EDEEA8877AC905B74B766CB /* UMCameraInterface.release.xcconfig */; + baseConfigurationReference = BC7339B8473F04B0785014553A717B78 /* UMCameraInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28588,7 +28800,7 @@ }; 1CE86106E25A058EB5B61FA7D0E72060 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4EA1502303E174DE40C90730967EAB4B /* FBReactNativeSpec.debug.xcconfig */; + baseConfigurationReference = 3BBCBD38C38548864689869B2010688D /* FBReactNativeSpec.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28640,7 +28852,7 @@ }; 1E85F0B070B37F62925BC426E2A1909F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9710E213DF582CC31939C04EE0D5A781 /* RNFastImage.debug.xcconfig */; + baseConfigurationReference = F3611D92CEB634663616E523EA33E6E6 /* RNFastImage.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28666,7 +28878,7 @@ }; 1FD68DC9973983FD86FE073176C336A1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B822C39AA6B0EC03D3F6E42F67AB74BD /* React-Core.release.xcconfig */; + baseConfigurationReference = B22FB9D497AD7D63DC4CDAC56A4F44AF /* React-Core.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -28684,7 +28896,7 @@ }; 1FD78FCF0C533D343B37BC826AFC6B8B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 43B313C2EAFDE643A654012BE6963E02 /* react-native-webview.debug.xcconfig */; + baseConfigurationReference = F39A3A428F911B4669E69AE5169C7A17 /* react-native-webview.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28736,7 +28948,7 @@ }; 20F88E1CDBA94ACB3EA68F2B9253C877 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7BFBAD1CC0AA23AFCC75E44DC37F8A37 /* UMConstantsInterface.release.xcconfig */; + baseConfigurationReference = 344EA3DC384C4688B5A035B4BDFFADFD /* UMConstantsInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28778,7 +28990,7 @@ }; 21AA9A352B92EA57A557A37FFCA60D75 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5F2298F3D34C9A9DD8E280DACFD6459F /* rn-extensions-share.debug.xcconfig */; + baseConfigurationReference = 06A56230C14E41E096A9923585B75D48 /* rn-extensions-share.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28804,7 +29016,7 @@ }; 21D2953E38C8DD2001B80461521AABE6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 996461F103F45D5BE5529D84D47528FC /* React-jsiexecutor.release.xcconfig */; + baseConfigurationReference = C80DE865776E85161465B18D33B6DE06 /* React-jsiexecutor.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28832,7 +29044,7 @@ }; 2236A0EBC7F306402E0BB7A440642910 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 294504C486F5F64864F99B2EFB421FE9 /* UMImageLoaderInterface.debug.xcconfig */; + baseConfigurationReference = C92D2F1E221B70EF17DB12920D92AC56 /* UMImageLoaderInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28848,7 +29060,7 @@ }; 23026F0D93110B28E689E6BB7695F956 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6B486A186239F52BD48F79798FE34685 /* UMSensorsInterface.release.xcconfig */; + baseConfigurationReference = E9654FF2F799926D75C52D94043F204F /* UMSensorsInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28865,7 +29077,7 @@ }; 233E91B6584859484A37FEFD8886DF4E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5DEB102DABB3B9DB0C73E9C3DFA8CBFD /* ReactNativeART.release.xcconfig */; + baseConfigurationReference = C5CA0A7B52FE174A212C2B1468843BD5 /* ReactNativeART.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28892,7 +29104,7 @@ }; 23712E9BDBE1344689237B616B99AEA1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 26EA42C45E63258B96C6B447BC269D23 /* RNBootSplash.debug.xcconfig */; + baseConfigurationReference = A799BE99ACA2C06A7320F5B1B7FF51DA /* RNBootSplash.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28944,7 +29156,7 @@ }; 241391C4F4418DE3669DAC6DB3894E2B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6541A25970B3BA2CE271ABABDEBE1B81 /* UMConstantsInterface.debug.xcconfig */; + baseConfigurationReference = F079017069DAB45979E46D9C53B7B171 /* UMConstantsInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28960,7 +29172,7 @@ }; 246D2F57373941B41420A899E6697244 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E4E3210222E7604D06C2A57E5A10F726 /* UMSensorsInterface.debug.xcconfig */; + baseConfigurationReference = 75C258D31AF8B779ECFAF362BF576F9D /* UMSensorsInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28976,7 +29188,7 @@ }; 24CE60708CE99D4EC1DE102DBB703225 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2F9FBBEF4AC750C92B141F830E862FC3 /* EXConstants.release.xcconfig */; + baseConfigurationReference = 04E5BF0CF306F649BFC051351E84ADA6 /* EXConstants.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29091,7 +29303,7 @@ }; 26703BF1804D33DA9A7CF9F81697AA4E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 94218B8FFE4CD853DBA47FA9D80434AD /* react-native-orientation-locker.debug.xcconfig */; + baseConfigurationReference = 3256EA822DC6CCF919DBDC3B27FCF8A1 /* react-native-orientation-locker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29117,7 +29329,7 @@ }; 2673EC1B271FA46D7BFDE37D9A3B80D7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 032065F6323BD031086AE106FE42F7B7 /* RNGestureHandler.release.xcconfig */; + baseConfigurationReference = 0979BC80C8BAC831C58805766F4541A2 /* RNGestureHandler.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29199,7 +29411,7 @@ }; 27741A099B2410EAEA6C6F7E1559B4E9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 972DD2AA0947D1FCE181610CF7DD8ADD /* UMFileSystemInterface.debug.xcconfig */; + baseConfigurationReference = 475B3A1FEA03D7BF8245495E3756A5FD /* UMFileSystemInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29272,7 +29484,7 @@ }; 2C97BC281FD4710359FCA2624B946742 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1EA92D5997FAF3B0BDE7E6B06A1D7A44 /* react-native-cameraroll.release.xcconfig */; + baseConfigurationReference = 50FF6DAE7F8DFDB94CF1E5A200062077 /* react-native-cameraroll.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29299,7 +29511,7 @@ }; 2D2F62753E5B1FC985ECFA9AB7834DDA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6F0A2A0EF0637CF3EFB74B0D6111D57D /* React-jsiexecutor.debug.xcconfig */; + baseConfigurationReference = 18A4EF80B700EE8CCB76D65C93FA5FC5 /* React-jsiexecutor.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29326,7 +29538,7 @@ }; 2F3665146914035B90902D1C625161FA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 905DF53B9D7EB2C9D2DFF66ED4A59C55 /* UMFileSystemInterface.release.xcconfig */; + baseConfigurationReference = 5751B2BE13BC02558FB90B2C3DD04E30 /* UMFileSystemInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29341,9 +29553,35 @@ }; name = Release; }; + 2F5E010D70DE5EA55E065E690A87AF6C /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F3C274A19A6E55D76BFB119B2B8D0FC9 /* react-native-simple-crypto.debug.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + 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/react-native-simple-crypto/react-native-simple-crypto-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_simple_crypto; + PRODUCT_NAME = "react-native-simple-crypto"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 2F931C003026BA8635FC030BC632F564 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EAE9ABD23596C05FD899E938A7BF91FF /* RNFBCrashlytics.release.xcconfig */; + baseConfigurationReference = 28205285B7F1625C04405C2DAA9DEACD /* RNFBCrashlytics.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29370,7 +29608,7 @@ }; 3006B3D3A843978B5AF5ED354859C504 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E2A92ADD71C97A1A9852491D032AC73D /* ReactNativeKeyboardTrackingView.release.xcconfig */; + baseConfigurationReference = 6ABC573A6E7BEA31FA390BBF774C07C0 /* ReactNativeKeyboardTrackingView.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29397,7 +29635,7 @@ }; 30DA8B308BA1F5B848C4BD42552D4FDE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D3749DB4BC9E9ED52FC1398435CC5789 /* React-RCTImage.release.xcconfig */; + baseConfigurationReference = 779A1C066D57206871E683BEEA4ED27A /* React-RCTImage.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29425,7 +29663,7 @@ }; 3101FEBBD4620A99AE756B72F7A305B5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F10320087A957C5D7E95D07242064BE2 /* FBLazyVector.release.xcconfig */; + baseConfigurationReference = 81812F3C0F21D126D5A16101BD9C572B /* FBLazyVector.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29442,7 +29680,7 @@ }; 31D730693D9596C827D1EEA9CE15FD7F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BA65CD9F60D6CD9D2918F1119B037C55 /* EXHaptics.debug.xcconfig */; + baseConfigurationReference = 5A35394086F383136398A2771E1A363B /* EXHaptics.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29469,7 +29707,7 @@ }; 3277364A21737CF8A089E2AE592D42D3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 108BE75BC3ADA9FB3802BBA633080FE9 /* RNVectorIcons.debug.xcconfig */; + baseConfigurationReference = 67D17B86D20BF654974C4FC7EB40228F /* RNVectorIcons.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29495,7 +29733,7 @@ }; 32BFC0EAF794341206060179B12E4900 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E377BFD509F53255A0906A3F5D3E2721 /* UMPermissionsInterface.release.xcconfig */; + baseConfigurationReference = D5BEDE36755A77D49123F02AA99D65B1 /* UMPermissionsInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29523,7 +29761,7 @@ }; 33525175C23E323B3991150A80EFFEAD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3DB517B983E703D101B71F0C4F108313 /* React-RCTBlob.debug.xcconfig */; + baseConfigurationReference = 6D2A2285C66190A34C9DD22A59E572D3 /* React-RCTBlob.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29550,7 +29788,7 @@ }; 34DA6C9EF1A02C2C5B93E897CA6FB8E6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0D44DABF4F80A19E0763F9D6055B2732 /* ReactCommon.release.xcconfig */; + baseConfigurationReference = E32D60A0C447BA220B8D000D338C2F6F /* ReactCommon.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29606,7 +29844,7 @@ }; 380B06BE681DEE8230A0D6291E78203D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 755527DE84ABFB721EB0C04171F825B4 /* React-RCTNetwork.release.xcconfig */; + baseConfigurationReference = 668F4E7B77D3B0FEBF7B23A3CFB03DDC /* React-RCTNetwork.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29634,7 +29872,7 @@ }; 3814993E1C71399C48968CECDF10D526 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 688A4E56F54BF55026DB0D0255F0B696 /* rn-extensions-share.release.xcconfig */; + baseConfigurationReference = BD86530E213F2225C67A4E11C51FDE43 /* rn-extensions-share.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29686,31 +29924,6 @@ }; name = Release; }; - 38953EEB263E51D29897E6F8F0CFBDB9 /* 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; - }; 3D25C7374B66BB9EC2252A909332A8CB /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = CFAD8597CC3ED06B8717AF6EBBEA4EFA /* GoogleDataTransport.debug.xcconfig */; @@ -29738,7 +29951,7 @@ }; 3D8A5952584E8DB30356F62F2948D77A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B8CE15BD4D857D963E523DDE4C02D111 /* UMTaskManagerInterface.debug.xcconfig */; + baseConfigurationReference = 2E32A66191936464E27CA08EF71A5A57 /* UMTaskManagerInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29754,7 +29967,7 @@ }; 3E0BE3BAAB9E308179BC6858FC46E8C7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 572F73857E3AE75AFFF506AE103B02F8 /* React-callinvoker.release.xcconfig */; + baseConfigurationReference = 0F64A1A41F4E66F99022F2539A36AAAB /* React-callinvoker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29796,7 +30009,7 @@ }; 3F60D0E08324E58D8375C87E0FEBD7A1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 406BF4C99CB4F1FD0319C9242FDEE632 /* Yoga.debug.xcconfig */; + baseConfigurationReference = 6C45D07153014333A7E477C92430F052 /* Yoga.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29852,7 +30065,7 @@ }; 41300370952473416EB0DC08BCF2CAB0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A110C36112C624ED8ECBF5AF8E1914E0 /* UMFaceDetectorInterface.debug.xcconfig */; + baseConfigurationReference = 1A9EFA626A102B4250C205E2D94A8D72 /* UMFaceDetectorInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29868,7 +30081,7 @@ }; 4185DFC98EFDEBE86EA22D97C01CBE9A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2D77C6DB0287A5D60AC414B8A6560502 /* EXWebBrowser.release.xcconfig */; + baseConfigurationReference = CEE49B8D45F187E30A1C692531935198 /* EXWebBrowser.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29896,7 +30109,7 @@ }; 4353EEC063D59919914E9D9EE2A61D11 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0947433F261E40A143BAE8448915BCE7 /* RNCAsyncStorage.release.xcconfig */; + baseConfigurationReference = 85A119EF008044BD6DD681CF1E205D2D /* RNCAsyncStorage.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29949,7 +30162,7 @@ }; 43C5DDFC592C3DFBA2EE7F06B286186E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2C04FBD6FA48936DAF7EAD4995FBDC01 /* RNRootView.release.xcconfig */; + baseConfigurationReference = D68BF64C928CF8F9FA95DD2E22073501 /* RNRootView.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29976,7 +30189,7 @@ }; 43C87197652B80848612B41A36422A7B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D9D443D8C8355E2C6FFE517B93508081 /* KeyCommands.debug.xcconfig */; + baseConfigurationReference = 45BBE812DCB620347D1126DFC59FA9F3 /* KeyCommands.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30002,7 +30215,7 @@ }; 4432B925223A4ED97B63826291EAC2F3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BA812CA4C38920369FDD5B8C7831688D /* React.release.xcconfig */; + baseConfigurationReference = D9E5644F0AF4686846C4BB49CDB3BD59 /* React.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30072,7 +30285,7 @@ }; 4B4057F32648D959EDDBC2B05CC50E5F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 82EDAE27007B076E21FB53B2FB275D41 /* react-native-background-timer.release.xcconfig */; + baseConfigurationReference = 3CBA5AA9DF9571BF79ACE216CD05DCC0 /* react-native-background-timer.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30116,7 +30329,7 @@ }; 4E071B76BCC690294493D5F0473770E3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F546B7E8168F1EFA6B4FC83BFBAF4F8D /* FBReactNativeSpec.release.xcconfig */; + baseConfigurationReference = 4BF3AFEDF5A02ABF3C51A1720758AF15 /* FBReactNativeSpec.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30144,7 +30357,7 @@ }; 4EA1C88CB560BD57129EA38F08DA984C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6EAFD5B087B08C5857B765EF3CBFB157 /* React-RCTActionSheet.debug.xcconfig */; + baseConfigurationReference = C603E18F4F042ECA9E90222CD55561B8 /* React-RCTActionSheet.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30160,7 +30373,7 @@ }; 5184258ADF1B3BE8D5537D4065FE4121 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1BBB8586CCC5771E3123F71C5B381644 /* React-jsi.debug.xcconfig */; + baseConfigurationReference = 1DB49B3AC8B4AAFAEF609B638134B3C4 /* React-jsi.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30187,7 +30400,7 @@ }; 524071AA2798EB6CD9BA190999377D9C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D45569970FC2C3DFC09F7E5C85BDE7A5 /* RNLocalize.debug.xcconfig */; + baseConfigurationReference = 41BEE2AA923F06A02EC3BF029070EFA0 /* RNLocalize.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30213,7 +30426,7 @@ }; 52E63755187A39512D1FFDDCC626FAF0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A629ACF8E06C13D5446917A9CEC51866 /* react-native-slider.release.xcconfig */; + baseConfigurationReference = 0C7C52EEFCA52424F8740FCA770F370E /* react-native-slider.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30240,7 +30453,7 @@ }; 5563375E4192870FE385ECE1DC859756 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B7743AE73E9139677017E03C6DA9C817 /* react-native-notifications.release.xcconfig */; + baseConfigurationReference = 80A6035EC6BF580BA5DD5CBF902CE5AB /* react-native-notifications.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30267,7 +30480,7 @@ }; 566601CE5FE23D9BE5A147AF28AB91C6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9C190D329DAF3108EFA7B75F70E14C21 /* EXConstants.debug.xcconfig */; + baseConfigurationReference = A49DF31BFA977D6648A29C2C6C537B98 /* EXConstants.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30294,7 +30507,7 @@ }; 575C40AA703D6A263895C74CEF82C70B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ED89FD6A33B5F43A9CBFA023D2080DB8 /* KeyCommands.release.xcconfig */; + baseConfigurationReference = B316AF37C726545B7DB0FF965CE84FC7 /* KeyCommands.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30348,7 +30561,7 @@ }; 5928054F11072572E2EBC5A6EACE604F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E11152178C28AA50B47376E8919D4805 /* EXLocalAuthentication.debug.xcconfig */; + baseConfigurationReference = 49415B13A51EC366AA17D94B2ED00D25 /* EXLocalAuthentication.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30402,7 +30615,7 @@ }; 5C4EA8B557E49908AC7F24F172238756 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B30EA90EB1269BBEFA1BBAF96A86C2B5 /* react-native-orientation-locker.release.xcconfig */; + baseConfigurationReference = CE75A10165E4CD14C11C9FCDB62C2699 /* react-native-orientation-locker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30429,7 +30642,7 @@ }; 5D0F792C27831D94F2F52D29B7566FE5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6E6D72DCE2064D4DE30A6DE733B88CA7 /* Yoga.release.xcconfig */; + baseConfigurationReference = F2F45F82F3A93884760C8DB40FF71579 /* Yoga.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30458,7 +30671,7 @@ }; 5D9F27AE922C2275B80490984526D63D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 025A5E331BE82AF2D4C6B7DAED1E6FFD /* react-native-appearance.debug.xcconfig */; + baseConfigurationReference = B858F36E16147B9EDD7666E15590DCE0 /* react-native-appearance.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30484,7 +30697,7 @@ }; 5DB62EE09E32C3C5AFB53E5CF490836B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A84270B47B32FFB2AE5802D6A3A49C0B /* EXAV.release.xcconfig */; + baseConfigurationReference = 48B3A64C1EA37997575979F85218D1E1 /* EXAV.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30512,7 +30725,7 @@ }; 5E5EDD5D3A0ABDC9540A630105470032 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BD29C3393953D54B4142E70C530F56D4 /* EXImageLoader.release.xcconfig */; + baseConfigurationReference = 86C9A29DF70E0BDD75BEEE10DC8DA60F /* EXImageLoader.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30540,7 +30753,7 @@ }; 5F100DCA9E9A50832C45C7C017BA3ECC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2CDE27B48928A37F5C3D238EF4D46660 /* EXKeepAwake.debug.xcconfig */; + baseConfigurationReference = 45A2D7E7134F1154C2787C2F1DE89B9C /* EXKeepAwake.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30593,7 +30806,7 @@ }; 61D3974125FDECF58BCFB02569AABAEF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 91BA18ED6F6AF5B08848DD3D1BFA26C4 /* EXHaptics.release.xcconfig */; + baseConfigurationReference = 02ED863CD770F3959D1A3A05CF7C80F3 /* EXHaptics.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30637,7 +30850,7 @@ }; 63D73649BB61EEB35967D5B5CBE44056 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F390A4ADFE5065ED118026F7A8CC5920 /* react-native-safe-area-context.release.xcconfig */; + baseConfigurationReference = 1C6667914E8A269765FE106EC821B8B9 /* react-native-safe-area-context.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30664,7 +30877,7 @@ }; 642CC74DF28B75CB994A1C2E6A3F9880 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D42AFDA613E0E45A006CDC0E8DCCF71B /* UMReactNativeAdapter.debug.xcconfig */; + baseConfigurationReference = F0BEC591BD7C736813D10344B60D5695 /* UMReactNativeAdapter.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30689,9 +30902,35 @@ }; name = Debug; }; + 65040CEA3CE35AD97ED87810F69E3ADA /* 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; + }; 6521E5255E85BBF827A6D6D6D56BFA02 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9FE33FEB54FCCD540B5C8AF66F5BA1B1 /* RNCMaskedView.debug.xcconfig */; + baseConfigurationReference = F715FF90281EF36EBA9AB5EB54853BC0 /* RNCMaskedView.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30733,7 +30972,7 @@ }; 6A6A8E9DE92AB115199CB4C2F83D58BE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E4E480D3B09BDBA497547A283A7D0910 /* EXAppleAuthentication.debug.xcconfig */; + baseConfigurationReference = 7214DC633B7FA5A29CACCF6CA3B0E00E /* EXAppleAuthentication.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30760,7 +30999,7 @@ }; 6D20B5094034446440C0039183AFCC2D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BACA52C24099F0800D61CF1C7A6C4588 /* rn-fetch-blob.debug.xcconfig */; + baseConfigurationReference = B9CB3F838B51DEBDA2AD9DB3A5AC5069 /* rn-fetch-blob.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30812,7 +31051,7 @@ }; 734396EEB48FFFF22B92D8349091A261 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 17A83FE56EE5719F8B34D3A654E8B081 /* BugsnagReactNative.release.xcconfig */; + baseConfigurationReference = 65934FC3E490AB23D33A06129B83283A /* BugsnagReactNative.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30866,7 +31105,7 @@ }; 77AC19305A0EFB3BDFAFC47C1351729E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BF78E5C625685E0CB6D4C8D77A19163B /* react-native-slider.debug.xcconfig */; + baseConfigurationReference = 0890F5DD4054F3B7A83F4ED726F53EF5 /* react-native-slider.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30919,7 +31158,7 @@ }; 7AF14BFA566044589CBBE7905ACE8243 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 30344D38AC24E622A7CB8F90B79B1BDD /* RNImageCropPicker.debug.xcconfig */; + baseConfigurationReference = 18E749B7CF46B1C4F7D109E219EDAC77 /* RNImageCropPicker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -31035,7 +31274,7 @@ }; 8324AD96D623285BCCE413528470AE46 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 41FED78D9D58D4FDF3AD5E281760AD9E /* RNScreens.debug.xcconfig */; + baseConfigurationReference = BC5A3FC8AFDC6481A9ACF677E1C92C2F /* RNScreens.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31061,7 +31300,7 @@ }; 8334456F9E9FDD79920C1AA56FAB4EA3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 93317CB6FAB6B5749D8046FD3B0DCCCD /* RNRootView.debug.xcconfig */; + baseConfigurationReference = 9A3744465D93ADBE55E87D06E7908F39 /* RNRootView.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31085,9 +31324,34 @@ }; name = Debug; }; + 83A16164D66568DDBE0F43D1A092D012 /* 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; + }; 8515DA449755D000C9EDB262016308FF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C475CD97836017BA624960DEE9E51170 /* EXKeepAwake.release.xcconfig */; + baseConfigurationReference = 576F640416624F8A61CB9E2558337DD2 /* EXKeepAwake.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31115,7 +31379,7 @@ }; 85E70507157E2E8FEE1BCB6FAEDC87E3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 080FA1029D64D66B630C2230FAD56666 /* react-native-webview.release.xcconfig */; + baseConfigurationReference = 5B4DCB9F0A88A8B83DDD5F46A61F0B33 /* react-native-webview.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31142,7 +31406,7 @@ }; 87DC6830A5078830DBFF761F9E7960EB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A5D95122CFB7FE65048C4E038BAF4AE5 /* RNCMaskedView.release.xcconfig */; + baseConfigurationReference = 9BFCE08E6AF80A47463D31DA35651250 /* RNCMaskedView.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31169,7 +31433,7 @@ }; 88F49D2A484D30C260D9C407ADECA1B8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1A8191EC0EBF48385F0338017A4746D5 /* React-callinvoker.debug.xcconfig */; + baseConfigurationReference = 87020B85ADE1CC6C75520E57AC007451 /* React-callinvoker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31224,35 +31488,9 @@ }; name = Debug; }; - 8AAAF81E4B21D86C82E5E15BBF6D2954 /* 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; - }; 8B558936ADBEFDBFFC5E9BA901A7EB44 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B92F821C4225B68C5B18D5B06629C189 /* EXFileSystem.release.xcconfig */; + baseConfigurationReference = 9F823EB7BF3A2AE2CBA4A958D05EBA3D /* EXFileSystem.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31280,7 +31518,7 @@ }; 8BF892ADB4D15FD34810EADD67A95124 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EAD1A90878A4208C166B3CB5FF718894 /* ReactNativeART.debug.xcconfig */; + baseConfigurationReference = 0D7DEAC6D70FF15A93E3EB7002B3F4EA /* ReactNativeART.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31332,7 +31570,7 @@ }; 8D507DADE0F407D4C5410A67F2540A43 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B8D5F0575AAA7CBC7BACD04B7BAD538F /* RNBootSplash.release.xcconfig */; + baseConfigurationReference = A8AEF77C3E2AF534A8C594FE32E647CF /* RNBootSplash.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31359,7 +31597,7 @@ }; 8E5775EA01828A89A9C84059FE5CA87B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 22D0530DC611FB94204BC1BFE55083B0 /* React-RCTSettings.release.xcconfig */; + baseConfigurationReference = 5F96281C6C4116BF30854726AAE0207D /* React-RCTSettings.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31387,7 +31625,7 @@ }; 8F081C07D357D0FE6680BFAEBDDFD7DE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2732B5BC52CA8008D3579214389C4BE5 /* RNImageCropPicker.release.xcconfig */; + baseConfigurationReference = FCDDD2C6F783F69D3705B88CFE72A558 /* RNImageCropPicker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31414,7 +31652,7 @@ }; 8F125C611123441DD928C0DD69F449EB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 523DF1DDD948533ECC09FAD0FFA44732 /* react-native-jitsi-meet.debug.xcconfig */; + baseConfigurationReference = CFB41288C18EF0E2426E348B1408ECA6 /* react-native-jitsi-meet.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31440,7 +31678,7 @@ }; 8F6FCFBCA2D7CDAA42972A149EF7D4E4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 31A37F2B604486E89B7D21532DECA5B5 /* RNVectorIcons.release.xcconfig */; + baseConfigurationReference = 34196660B125935BD97FD8D8002203CF /* RNVectorIcons.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31467,7 +31705,7 @@ }; 91C9312ECE7854AB6E94AB8E33E9DC7B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6AAD87784BDE217662E6BDCDE05C68A0 /* BugsnagReactNative.debug.xcconfig */; + baseConfigurationReference = 214534118C1813DAE7745017DB1462AF /* BugsnagReactNative.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31493,7 +31731,7 @@ }; 93327737F52E8517C5248270B4826E51 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F5C90F8428D1ECED9E0986EC790A7769 /* UMReactNativeAdapter.release.xcconfig */; + baseConfigurationReference = 768F6F62CB936FAA24AE5AB7C76977F0 /* UMReactNativeAdapter.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31548,7 +31786,7 @@ }; 94E71A5AAF3EB2748169947DCC9D80A7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 87990953DE6B7AE787098538E6ADE5C9 /* React-RCTAnimation.release.xcconfig */; + baseConfigurationReference = 017DB0362BA3E36A5524AD9BDAD36451 /* React-RCTAnimation.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31576,7 +31814,7 @@ }; 96CF32B0E12FEDD12C0FD751DAB4D76F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E4638D71A21504E40ADA3A5D86F07629 /* RNFBCrashlytics.debug.xcconfig */; + baseConfigurationReference = D7DC0CE6921C622B13C7D6C00F957B81 /* RNFBCrashlytics.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31602,7 +31840,7 @@ }; 970791231C44919F7142E9B708ECA39C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 562358291754429BDABD830DBC6BBD5B /* EXAppleAuthentication.release.xcconfig */; + baseConfigurationReference = 914EBF309912C985E247DF24426247E8 /* EXAppleAuthentication.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31630,7 +31868,7 @@ }; 97A258CFF292221D888B34C00DFF8CEB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 248D3CB1F9995186AC0EB934A5CAC0CB /* UMFaceDetectorInterface.release.xcconfig */; + baseConfigurationReference = 90093221BAE0DBF1DA1E4AD409AF4D68 /* UMFaceDetectorInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31672,9 +31910,36 @@ }; name = Release; }; + 9940A5425832093E3CC9B43B72656911 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 10EFDA1322B3AA90E37B90A900AFF443 /* react-native-simple-crypto.release.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + 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/react-native-simple-crypto/react-native-simple-crypto-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_simple_crypto; + PRODUCT_NAME = "react-native-simple-crypto"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 99C4CF39EFC7D751EC616C78734B8102 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 624CA4F58AF5F67C4DA05345E67B1D23 /* RNReanimated.release.xcconfig */; + baseConfigurationReference = AC4B5139E782DBEAA9EC3A547A70A15C /* RNReanimated.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31701,7 +31966,7 @@ }; 9AD862A3FA9A8C5D93D92B9EFB3BE3A5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CCEA52403CD4611FB40B7A447982030E /* react-native-background-timer.debug.xcconfig */; + baseConfigurationReference = AD19A60B1913122CEA2EAE013EEAF0EE /* react-native-background-timer.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31727,7 +31992,7 @@ }; 9B3FED3EBF3EA3DAE80951C569F8B0E8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9BFB858FFCD75C16524DAE41E50EDA6C /* FBLazyVector.debug.xcconfig */; + baseConfigurationReference = 0BF31D6D34312892313B9FF6E2B8A82D /* FBLazyVector.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31743,7 +32008,7 @@ }; 9C9404E94C3B90059E993B0B27C0ECB4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AF2990C86ED4A958996CB1EEC73A61C4 /* React-RCTActionSheet.release.xcconfig */; + baseConfigurationReference = B6C734D0499C175CC7338AED32A6FD8C /* React-RCTActionSheet.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31760,7 +32025,7 @@ }; 9D7A311D2B277C9D20EBF0AB1C27A417 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1DB9CB995820A385301DDF362DEF8758 /* React-RCTBlob.release.xcconfig */; + baseConfigurationReference = 5F42FF119EA09E00C09CF21FDFC9AAD1 /* React-RCTBlob.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31788,7 +32053,7 @@ }; 9DDBA0A9845B873604774272DE52332C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 51E38420E3F75E55A5454CA007333CC5 /* EXAV.debug.xcconfig */; + baseConfigurationReference = 694EBAE41EA9114295A09D41E9CF41ED /* EXAV.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31831,7 +32096,7 @@ }; A0951B9E99124E41DC7165676455F2D6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AD84635EE517890E530B9D01221D50D9 /* EXVideoThumbnails.debug.xcconfig */; + baseConfigurationReference = 28EE73CF5F00704768457F2E2CF48E3E /* EXVideoThumbnails.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31885,7 +32150,7 @@ }; A30DBFB1FCF612228C139E47A11A761D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1CB04892C02252BF34E735E98877B7B4 /* RCTTypeSafety.release.xcconfig */; + baseConfigurationReference = F886F5A6DAFBF94189D7B993953D5F22 /* RCTTypeSafety.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32020,34 +32285,9 @@ }; name = Debug; }; - A8E70A4BC8C9C720581403483498218D /* 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; - }; AB0C5DBCBAF76212B344FADD43A07E14 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 300627D0E908150F097AE8D79B83B1C9 /* React-cxxreact.release.xcconfig */; + baseConfigurationReference = 63BE788E504947243C67ABE47286B0AF /* React-cxxreact.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32102,7 +32342,7 @@ }; ADAB0420D478021A93BC72BA69F9557F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2732B5BC52CA8008D3579214389C4BE5 /* RNImageCropPicker.release.xcconfig */; + baseConfigurationReference = FCDDD2C6F783F69D3705B88CFE72A558 /* RNImageCropPicker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -32120,7 +32360,7 @@ }; AF50ABAF5D4FC96FD6BD3E5B80541CD9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 30344D38AC24E622A7CB8F90B79B1BDD /* RNImageCropPicker.debug.xcconfig */; + baseConfigurationReference = 18E749B7CF46B1C4F7D109E219EDAC77 /* RNImageCropPicker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32146,7 +32386,7 @@ }; AF5BADE313CF7EF13C5E5395B901AAAD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DCE28981DADFB136421AA01942EC8448 /* RNUserDefaults.release.xcconfig */; + baseConfigurationReference = 2D48EBF73418FDE34E4A6685BF019E63 /* RNUserDefaults.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32173,7 +32413,7 @@ }; B05C2894390D644A4A148947FEB748C9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C59DB90CF3AC928BF2F41DEEDA4939E5 /* EXWebBrowser.debug.xcconfig */; + baseConfigurationReference = DA9F5896B85B721297FC4071DB29C726 /* EXWebBrowser.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32216,7 +32456,7 @@ }; B0ACC6A772A13986776D06CFEE5BFD64 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 75E83D4C0AB95E87395D9FCB968D6D2B /* RNLocalize.release.xcconfig */; + baseConfigurationReference = 5271BB91ADBC9FCF274C4F336E52D3E5 /* RNLocalize.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32243,7 +32483,7 @@ }; B40A0128EC51F25F4EEAB77B4DDD88E2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 761A9192EE9B0F232544C13FF99AFEB7 /* RNFBAnalytics.debug.xcconfig */; + baseConfigurationReference = 5EBD58B8666614B8858F11A4499E2CCA /* RNFBAnalytics.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32295,7 +32535,7 @@ }; B97A00B47BE98AB67CD521023B308E90 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3BC6F446BD80D5F78F941FE2471C86F8 /* RNGestureHandler.debug.xcconfig */; + baseConfigurationReference = AB28A62947B978F0CD549D37C69CD20F /* RNGestureHandler.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32337,7 +32577,7 @@ }; BBDB711743976FD8B051E4A11DBA1662 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3625BBE65B73F157169A12C751C26995 /* React-cxxreact.debug.xcconfig */; + baseConfigurationReference = C4AA78CBB6782C8E7428B534F72B07FB /* React-cxxreact.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32364,7 +32604,7 @@ }; BC2A4314574CAB2DA6081A5562AE2F3E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2D292F848C371759568A2C2ABCD1A7B9 /* UMBarCodeScannerInterface.release.xcconfig */; + baseConfigurationReference = 137F89DD5DAEDD02E1D88E58E9DA3F5E /* UMBarCodeScannerInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32381,7 +32621,7 @@ }; BCF56F95D2A3F8C70517A7A11E7E37E0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BC282D79910D6F5C3C62503D5C1F04C3 /* RNFBApp.debug.xcconfig */; + baseConfigurationReference = 3D40AC05EFB8E109C49D2C550C5645FF /* RNFBApp.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32432,7 +32672,7 @@ }; BF2F192FA36EB0207EF68478CCB6359D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3DD7C081F1053190D2A1D5378E0B12D3 /* EXFileSystem.debug.xcconfig */; + baseConfigurationReference = 2E219A5EC5A88483D9A0CFF8771E52C9 /* EXFileSystem.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32459,7 +32699,7 @@ }; BF3C3D55EA4656E08C16EC9D77C486CD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4BF6B8C2CDE8431224EDED81BBAA94F7 /* React-RCTLinking.debug.xcconfig */; + baseConfigurationReference = E448CB1CFBC5BA0A3B1238A207A74782 /* React-RCTLinking.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32486,7 +32726,7 @@ }; BF48B6B3879FCC80A298178F292D55B4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BBD78CAA6416E3C6C0E9A765BADB047F /* UMAppLoader.release.xcconfig */; + baseConfigurationReference = 4384EDAAEAB8CBFDE1346C9C90A7B4F1 /* UMAppLoader.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32514,7 +32754,7 @@ }; C098A7A4611DF2771CC7EA939609F477 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 919C50A6D079D487FD6A921C0145CE02 /* RNDateTimePicker.debug.xcconfig */; + baseConfigurationReference = F886F3E1A07C2D55200725FC5237857B /* RNDateTimePicker.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32540,7 +32780,7 @@ }; C15027671C5D0C6A8CAC6E78D66CD017 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 069A369A40EF5B5F2056CA1660079BA9 /* react-native-appearance.release.xcconfig */; + baseConfigurationReference = C4B6B1AAC5F6EC73DDBDD5E950FFD76D /* react-native-appearance.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32567,7 +32807,7 @@ }; C2871C5CC657787D399A4B524949F03A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A8CE00DD3674D4D80825B09A7432548E /* UMBarCodeScannerInterface.debug.xcconfig */; + baseConfigurationReference = D2ADA587AA0692848BBB01A850B74C47 /* UMBarCodeScannerInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32583,7 +32823,7 @@ }; C2DB949BCE9FBCCDD8E71534FB7F7E73 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7BD0ED98734525242432A759D5F27FBF /* RNFBApp.release.xcconfig */; + baseConfigurationReference = 6D683DFA4ECEFBF658B0C0799839546F /* RNFBApp.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32610,7 +32850,7 @@ }; C33A9E2686E5927EE4D0A4C94ADBA93B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7A18EAC16952FC4052FA013FDD0AFCB0 /* React-RCTSettings.debug.xcconfig */; + baseConfigurationReference = 8D5DFF74B09A6C161836EF11E9AC5183 /* React-RCTSettings.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32637,7 +32877,7 @@ }; C43EF2F43E7615CA85502D30C64FA4F6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CC3B029D80BE1096B22E0C92D046BD78 /* RNScreens.release.xcconfig */; + baseConfigurationReference = 471DA02DD0438A9A6E28756AAFF43295 /* RNScreens.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32664,7 +32904,7 @@ }; C6679B91C62A53EF07A491EE45B2DAE7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EF4B97470003B61AE2879931D9748DE3 /* React-CoreModules.debug.xcconfig */; + baseConfigurationReference = 60B85E4E8D160A075EFF3F6B3D9DB0F3 /* React-CoreModules.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32717,7 +32957,7 @@ }; C86F4AB7981E6519EB23A87879937446 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 25B96F41AA6F97B2B6FDE39595CCD41D /* React-RCTNetwork.debug.xcconfig */; + baseConfigurationReference = 77AAAF467AE8B022E1E214013CCF98A2 /* React-RCTNetwork.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32744,7 +32984,7 @@ }; CF55DAE16EDFE6ED8386E351366F5CF8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B511866C557FC6A4878CDC484356D0FC /* UMCore.debug.xcconfig */; + baseConfigurationReference = 217CC5108C143D5778890297EC62A091 /* UMCore.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32771,7 +33011,7 @@ }; CFDFAB5FB506C4974DE54EDD53C0D4E6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0016CB757D356FEFC24C3CBF2180C813 /* UMAppLoader.debug.xcconfig */; + baseConfigurationReference = 8F0058703FECE1F2AF98235947677D3D /* UMAppLoader.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32798,7 +33038,7 @@ }; CFF4E2808673522F0463F5AD9D24DC27 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 27129A10F8357EB63C5D3F6A502B9587 /* RCTRequired.debug.xcconfig */; + baseConfigurationReference = 2810B26CEEDC1CED35FAE7B670474663 /* RCTRequired.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32840,7 +33080,7 @@ }; D65845EB52762C86A7E2501FB2C4C778 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 525880D7321AB021C70521B79D0DB240 /* react-native-jitsi-meet.release.xcconfig */; + baseConfigurationReference = A7971C717587662968EDBE106F56E639 /* react-native-jitsi-meet.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32867,7 +33107,7 @@ }; D829BD40E0928CC43F22BF3B40B7626B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8DCDA898216AFF5600FE513729B89CC7 /* ReactNativeKeyboardInput.release.xcconfig */; + baseConfigurationReference = EF38B221E0F79D1897487F1254678820 /* ReactNativeKeyboardInput.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32921,7 +33161,7 @@ }; D926B739DA1465748AC5A51DF54725B5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FB5636F03310523B5AB4AC1A89223497 /* react-native-safe-area-context.debug.xcconfig */; + baseConfigurationReference = 8EED67439E272B995EE2BB852645EAD9 /* react-native-safe-area-context.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32947,7 +33187,7 @@ }; D97639C8B8224A918CC1611F45940647 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 02E9C129039A17E828B1E3DC260FA844 /* React-RCTVibration.release.xcconfig */; + baseConfigurationReference = 754DF975C536E7E3964E4A1DD637028D /* React-RCTVibration.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32975,7 +33215,7 @@ }; D97887993E86C41568802DFAC2634A34 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 74A969158B582707C7077C19C4D34DA8 /* EXPermissions.debug.xcconfig */; + baseConfigurationReference = DBBDC1D1B7A881F1010AC3D8852888E6 /* EXPermissions.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33028,7 +33268,7 @@ }; DAF7195F940FA8C1010ECFB32E4EE001 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6911ED31F697A5D978DD5DAF749ECE5E /* RNReanimated.debug.xcconfig */; + baseConfigurationReference = A2B73EA0D540C759D83C4600F35E43F4 /* RNReanimated.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33054,7 +33294,7 @@ }; DB682A1751B7203657DC0093E5AAA62F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0871C8795234C3431222032EA497AA83 /* React.debug.xcconfig */; + baseConfigurationReference = B8AF713EA42BD2EB9135B888DFB4D80C /* React.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33070,7 +33310,7 @@ }; DBFB6247ADD92014A5C444214621728B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2A3EFED49392A9AF5CE0B7C48B7585F8 /* RNUserDefaults.debug.xcconfig */; + baseConfigurationReference = 92E7FD88520F0381C8BE02EA2E4EC923 /* RNUserDefaults.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33096,7 +33336,7 @@ }; DC006E2CB853C8EBCBF31D5B907A9466 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3F6A8412203B8EBE749B35D196F12915 /* React-RCTAnimation.debug.xcconfig */; + baseConfigurationReference = 850762DB3807EDBFADDC68F8928B08DF /* React-RCTAnimation.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33123,7 +33363,7 @@ }; DD56D248833C2C798647FDE5E2718CDB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7D5CD9BE92AB43A4215458B3794E4A4C /* UMTaskManagerInterface.release.xcconfig */; + baseConfigurationReference = 3784393F5D9459F008D5B5085A85C685 /* UMTaskManagerInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33204,7 +33444,7 @@ }; E01528A782B7451667DDBC3E67A11C90 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5FAEB2AE280C89F3B2E4C883DDB5519F /* EXVideoThumbnails.release.xcconfig */; + baseConfigurationReference = 04F6EDCBB1BEAB601C3026AEA1CCEB0A /* EXVideoThumbnails.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33230,9 +33470,35 @@ }; name = Release; }; + E0D64D31F36DE81F152C5D2306BF9672 /* 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; + }; E0F5AD5647A8989933301A2E39914884 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ED60595149C4D4ECE391CD7E055A488B /* RNDeviceInfo.debug.xcconfig */; + baseConfigurationReference = 56DAF4014B943B40781B830AF5F62887 /* RNDeviceInfo.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33258,7 +33524,7 @@ }; E22D3E8C025807F476FE70C2B7478E2C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DBEDCF660820BB528AC2D2BF39B73B8C /* EXImageLoader.debug.xcconfig */; + baseConfigurationReference = A8C2ED9069F6157678C17034BD74A846 /* EXImageLoader.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33285,7 +33551,7 @@ }; E4409D6DD01F674F455C88AF3BCB2786 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B256DD186535793D13DC257337B65783 /* ReactNativeKeyboardTrackingView.debug.xcconfig */; + baseConfigurationReference = 6BDDE93DD97D9FE1EE2C556CB54E4541 /* ReactNativeKeyboardTrackingView.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33338,7 +33604,7 @@ }; E567A792983702981257D4CD8F75AC0C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 587E2736E299E19869C89B553DCA7677 /* React-RCTVibration.debug.xcconfig */; + baseConfigurationReference = 4B469E1368D928C3790E8389D8966E8F /* React-RCTVibration.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33392,7 +33658,7 @@ }; E6FE5F0C28188004540F2E6718CA7118 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 424B5272FA663E6E06C5D1F1E5A726F4 /* UMFontInterface.debug.xcconfig */; + baseConfigurationReference = A20791D8CF65FC8D4B181535E1C5068A /* UMFontInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33460,7 +33726,7 @@ }; EA3DBFB4B5A87A1B65EDBDCC4650219C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A706FB427D8B0B810C195000A76DD26 /* React-RCTImage.debug.xcconfig */; + baseConfigurationReference = 7628631F91838F3AF268C253391DCA15 /* React-RCTImage.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33485,6 +33751,31 @@ }; name = Debug; }; + EA7158F10C7AAA9E738990E5BE4D76B7 /* 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; + }; EAB03702F370FA460859FE38D0AD63E9 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 2497EEA28E40FB179B015BA59BEEFD30 /* CocoaLibEvent.release.xcconfig */; @@ -33503,7 +33794,7 @@ }; EB5A9D6EF2E1CC8C62AC6282ADEC9309 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6FF883FD05920DC5D11E10AF337F704F /* UMCore.release.xcconfig */; + baseConfigurationReference = 863AA3927423F2F05661F4E2C322C366 /* UMCore.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33531,7 +33822,7 @@ }; EC8846B90307E5484E81E85591A52732 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 11F0798C2CE3B8FA8FC0CBC2DBF33686 /* RNFBAnalytics.release.xcconfig */; + baseConfigurationReference = 5A75DE24AA744AEDDDF35FAC73F54424 /* RNFBAnalytics.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33558,7 +33849,7 @@ }; EE3FE35E3129F966BB78F038C9D40EE7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 80AF3550A306A8563FDB94F8C035175B /* react-native-document-picker.release.xcconfig */; + baseConfigurationReference = 63A82734214174AAF5DC005C4FAE784A /* react-native-document-picker.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33585,7 +33876,7 @@ }; EECE463DBC7906B9C5F572429BF2FD36 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A1C73AD44C809A7DB22A5F187106DA39 /* ReactNativeKeyboardInput.debug.xcconfig */; + baseConfigurationReference = DD350B40E0B83DB2FF78D7475D3EBBFA /* ReactNativeKeyboardInput.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33636,7 +33927,7 @@ }; F1B898BB128EA55E2AA6FF7B14192F3A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C99A858C6E2FA0F9908159864A40BD93 /* UMPermissionsInterface.debug.xcconfig */; + baseConfigurationReference = 58203A38AFFE86B2CEEBFE7378DC805B /* UMPermissionsInterface.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33663,7 +33954,7 @@ }; F2707C8800F8985D4ADFB31C444579B6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7D73CFEE36A84DAC62307E1903F2E9B5 /* React-Core.debug.xcconfig */; + baseConfigurationReference = 4FC5015413CFC22C82916293D25C96C1 /* React-Core.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33690,7 +33981,7 @@ }; F3092F5C70CB32423DDAFCB15C440C15 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8D93BD1146A4C0A236F966A6F6838A6E /* React-CoreModules.release.xcconfig */; + baseConfigurationReference = 7BC78FC76B9EEACD75A3FCA6393FB96C /* React-CoreModules.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33718,7 +34009,7 @@ }; F3CBC59BD83FE8FFAE663C7E4E011B7E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1D03C8F4266CCCDE032C086B8FEE0576 /* RNCAsyncStorage.debug.xcconfig */; + baseConfigurationReference = 687AF7A5C2C866DD4C8607C40C22EC6B /* RNCAsyncStorage.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33744,7 +34035,7 @@ }; F6F72F3C1705BCB7FDF787ADB8733918 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 158702D57A31386B362AC76FE0879CDB /* react-native-cameraroll.debug.xcconfig */; + baseConfigurationReference = 0AFF9BF65B24F35A2D5C5A62B3E47808 /* react-native-cameraroll.debug.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33770,7 +34061,7 @@ }; F72CC633A9C668B5FA0A17287F8C6379 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C7D772435F16A21FE7465CF7022B14B4 /* React-RCTText.release.xcconfig */; + baseConfigurationReference = 951567F288583437515CCC2E4F51CFF0 /* React-RCTText.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33798,7 +34089,7 @@ }; F74A9A46655AB7E1E7B45BE4AB31FD81 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3EDCE04080CFB56239F3DD49B3A44CAC /* EXPermissions.release.xcconfig */; + baseConfigurationReference = 743836857F32F8AB1DDAE440AFBE4F64 /* EXPermissions.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33853,7 +34144,7 @@ }; F7C3A0403701565D0E723267ED3889BC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 702F2E714218881514A976B01F2C42CB /* UMFontInterface.release.xcconfig */; + baseConfigurationReference = 30A4838546B593A586413B8973B63CB4 /* UMFontInterface.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -33885,7 +34176,7 @@ }; FC4AF7AB980222A1625253BCB46369C3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 44E4B88B3C6C4AA9F2152965ED147C56 /* RCTRequired.release.xcconfig */; + baseConfigurationReference = EF5B04B8AC4E9345914B2A352153ECAC /* RCTRequired.release.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -34155,6 +34446,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 3AD2263D27A2FE42696548A3F8E496CC /* Build configuration list for PBXNativeTarget "react-native-simple-crypto" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 2F5E010D70DE5EA55E065E690A87AF6C /* Debug */, + 9940A5425832093E3CC9B43B72656911 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 3C065B1FF114AFE27896C99D445001C2 /* Build configuration list for PBXNativeTarget "DoubleConversion" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -34623,15 +34923,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A9FDC4BD6357D1474D9AA0988E9DD337 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 38953EEB263E51D29897E6F8F0CFBDB9 /* Debug */, - 10ED031356ACF69DA7825854CAC16BF6 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; AA7E2A94EA5CCBD5E7C7F8ECD2CC7D25 /* Build configuration list for PBXNativeTarget "RNFastImage" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -34920,6 +35211,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + EF2000D2E749B8A2E3D374F3B77AAD2D /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + EA7158F10C7AAA9E738990E5BE4D76B7 /* Debug */, + E0D64D31F36DE81F152C5D2306BF9672 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; F1776E52FEA103CF28C3992DC4DD90F2 /* Build configuration list for PBXNativeTarget "EXKeepAwake" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -34956,20 +35256,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F8E74138128FFB01CAC85D542269B22B /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { + F9E52FBD8BDFC370D1B49A570A54C345 /* Build configuration list for PBXNativeTarget "PromisesObjC" */ = { isa = XCConfigurationList; buildConfigurations = ( - A8E70A4BC8C9C720581403483498218D /* Debug */, - 8AAAF81E4B21D86C82E5E15BBF6D2954 /* Release */, + 3E6FF8E4D77B21650EBF5E5BD1BE9849 /* Debug */, + C69E7609A8E485A8D499FAECA5524FDB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F9E52FBD8BDFC370D1B49A570A54C345 /* Build configuration list for PBXNativeTarget "PromisesObjC" */ = { + FDA3793208D6B89FE379E0EBF5D90AE1 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3E6FF8E4D77B21650EBF5E5BD1BE9849 /* Debug */, - C69E7609A8E485A8D499FAECA5524FDB /* Release */, + 83A16164D66568DDBE0F43D1A092D012 /* Debug */, + 65040CEA3CE35AD97ED87810F69E3ADA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown index 403fa66140..a36622d374 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown @@ -4116,6 +4116,31 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## react-native-simple-crypto + +MIT License + +Copyright (c) 2018 Pedro Gomes + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + ## react-native-webview MIT License diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.plist index 4680e68500..3a3a0ee945 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.plist +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.plist @@ -4497,6 +4497,37 @@ SOFTWARE. FooterText MIT License +Copyright (c) 2018 Pedro Gomes + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + License + MIT + Title + react-native-simple-crypto + Type + PSGroupSpecifier + + + FooterText + MIT License + Copyright (c) 2015-present, Facebook, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy 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 e8d264d022..6d6eba1aec 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}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FB_SONARKIT_ENABLED=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/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/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/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/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/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/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/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/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-simple-crypto" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/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}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/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}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/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}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/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}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/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-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${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"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"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 "FIRAnalyticsConnector" -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"FirebaseCrashlytics" -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"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -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-simple-crypto" -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 "FIRAnalyticsConnector" -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" -Xcc -DFB_SONARKIT_ENABLED=1 PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig index c79443996a..22a89531ec 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}/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/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/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/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/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/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/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/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/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-simple-crypto" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/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}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/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}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/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}/FirebaseCrashlytics" "${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}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/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-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${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"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"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 "FIRAnalyticsConnector" -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"FirebaseCrashlytics" -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"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -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-simple-crypto" -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 "FIRAnalyticsConnector" -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-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.markdown index 403fa66140..a36622d374 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.markdown +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.markdown @@ -4116,6 +4116,31 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## react-native-simple-crypto + +MIT License + +Copyright (c) 2018 Pedro Gomes + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + ## react-native-webview MIT License diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.plist index 4680e68500..3a3a0ee945 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.plist +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.plist @@ -4497,6 +4497,37 @@ SOFTWARE. FooterText MIT License +Copyright (c) 2018 Pedro Gomes + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + License + MIT + Title + react-native-simple-crypto + Type + PSGroupSpecifier + + + FooterText + MIT License + Copyright (c) 2015-present, Facebook, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy 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 ff81e86b2f..12099f6753 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}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 FB_SONARKIT_ENABLED=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/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/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/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/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/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/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/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/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-simple-crypto" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/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}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/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}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/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}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/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}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/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-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${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"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"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 "FIRAnalyticsConnector" -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"FirebaseCrashlytics" -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"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -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-simple-crypto" -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 "FIRAnalyticsConnector" -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" -Xcc -DFB_SONARKIT_ENABLED=1 PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig index ed966ac64b..5f41aa7be5 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}/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/EXAppleAuthentication" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXVideoThumbnails" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/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/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/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/FirebaseCrashlytics" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/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/RNFBAnalytics" "${PODS_ROOT}/Headers/Public/RNFBApp" "${PODS_ROOT}/Headers/Public/RNFBCrashlytics" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/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-simple-crypto" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/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}/EXAppleAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXVideoThumbnails" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/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}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/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}/FirebaseCrashlytics" "${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}/RNFBAnalytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBApp" "${PODS_CONFIGURATION_BUILD_DIR}/RNFBCrashlytics" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/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-simple-crypto" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${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"EXAppleAuthentication" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXVideoThumbnails" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseCrashlytics" -l"FirebaseInstallations" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"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 "FIRAnalyticsConnector" -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"FirebaseCrashlytics" -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"RNFBAnalytics" -l"RNFBApp" -l"RNFBCrashlytics" -l"RNFastImage" -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-simple-crypto" -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 "FIRAnalyticsConnector" -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/react-native-simple-crypto/react-native-simple-crypto-dummy.m b/ios/Pods/Target Support Files/react-native-simple-crypto/react-native-simple-crypto-dummy.m new file mode 100644 index 0000000000..a838df7e09 --- /dev/null +++ b/ios/Pods/Target Support Files/react-native-simple-crypto/react-native-simple-crypto-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_react_native_simple_crypto : NSObject +@end +@implementation PodsDummy_react_native_simple_crypto +@end diff --git a/ios/Pods/Target Support Files/react-native-simple-crypto/react-native-simple-crypto-prefix.pch b/ios/Pods/Target Support Files/react-native-simple-crypto/react-native-simple-crypto-prefix.pch new file mode 100644 index 0000000000..beb2a24418 --- /dev/null +++ b/ios/Pods/Target Support Files/react-native-simple-crypto/react-native-simple-crypto-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/react-native-simple-crypto/react-native-simple-crypto.debug.xcconfig b/ios/Pods/Target Support Files/react-native-simple-crypto/react-native-simple-crypto.debug.xcconfig new file mode 100644 index 0000000000..8630d95d12 --- /dev/null +++ b/ios/Pods/Target Support Files/react-native-simple-crypto/react-native-simple-crypto.debug.xcconfig @@ -0,0 +1,12 @@ +APPLICATION_EXTENSION_API_ONLY = YES +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/react-native-simple-crypto" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/react-native-simple-crypto" +OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/react-native-simple-crypto +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/react-native-simple-crypto/react-native-simple-crypto.release.xcconfig b/ios/Pods/Target Support Files/react-native-simple-crypto/react-native-simple-crypto.release.xcconfig new file mode 100644 index 0000000000..8630d95d12 --- /dev/null +++ b/ios/Pods/Target Support Files/react-native-simple-crypto/react-native-simple-crypto.release.xcconfig @@ -0,0 +1,12 @@ +APPLICATION_EXTENSION_API_ONLY = YES +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/react-native-simple-crypto +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/react-native-simple-crypto" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-callinvoker" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/react-native-simple-crypto" +OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/react-native-simple-crypto +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/package.json b/package.json index 057689a00e..45e5a30dcb 100644 --- a/package.json +++ b/package.json @@ -99,6 +99,7 @@ "react-native-screens": "2.9.0", "react-native-scroll-bottom-sheet": "0.6.2", "react-native-scrollable-tab-view": "^1.0.0", + "react-native-simple-crypto": "^0.2.13", "react-native-slowlog": "^1.0.2", "react-native-unimodules": "0.10.1", "react-native-vector-icons": "7.0.0", diff --git a/yarn.lock b/yarn.lock index 7a7a307b8a..09c17ae458 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4207,7 +4207,7 @@ base-64@0.1.0: resolved "https://registry.yarnpkg.com/base-64/-/base-64-0.1.0.tgz#780a99c84e7d600260361511c4877613bf24f6bb" integrity sha1-eAqZyE59YAJgNhURxId2E78k9rs= -base64-js@^1.0.2, base64-js@^1.1.2, base64-js@^1.2.3: +base64-js@^1.0.2, base64-js@^1.1.2, base64-js@^1.2.3, base64-js@^1.3.0: version "1.3.1" resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1" integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g== @@ -7840,6 +7840,11 @@ hermes-engine@~0.5.0: resolved "https://registry.yarnpkg.com/hermes-engine/-/hermes-engine-0.5.0.tgz#d914acce72e9657b3c98875ad3f9094d8643f327" integrity sha512-jSuHiOhdh2+IF3bH2gLpQ37eMkdUrEb9GK6PoG3rLRaUDK3Zn2Y9fXM+wyDfoUTA3gz9EET0/IIWk5k21qp4kw== +hex-lite@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/hex-lite/-/hex-lite-1.5.0.tgz#482db64f673dcacdb8be93c629a799ce5a76b24d" + integrity sha512-bXFMCFoKcksmJ1kDRq6B0+Go5Wgq84Dq/3rX99+0OzBQZKUBEMLguPd1lZSpvmzJACb516n07eyswF4KHAF9cg== + highlight.js@~9.13.0: version "9.13.1" resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.13.1.tgz#054586d53a6863311168488a0f58d6c505ce641e" @@ -12928,6 +12933,14 @@ react-native-scrollable-tab-view@^1.0.0: prop-types "^15.6.0" react-timer-mixin "^0.13.3" +react-native-simple-crypto@^0.2.13: + version "0.2.13" + resolved "https://registry.yarnpkg.com/react-native-simple-crypto/-/react-native-simple-crypto-0.2.13.tgz#6e17d88751a1a5a59d23ce9670a9a4e3bd52ad7b" + integrity sha512-SFIDLMxtydirsCM64uS6x9EN5b920aX6MNVgMJBNohBg+7ys5rzRWAq5XvXyJ1Oq59zBPopHpsxX9bSceu6ddQ== + dependencies: + base64-js "^1.3.0" + hex-lite "^1.5.0" + react-native-slowlog@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/react-native-slowlog/-/react-native-slowlog-1.0.2.tgz#5520979e3ef9d5273495d431ff3be34f02e35c89" From 0e029c6cfe7e3590cd7446d4f2b4da96b04f0613 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Thu, 6 Aug 2020 15:43:30 -0300 Subject: [PATCH 003/158] Install bytebuffer --- package.json | 1 + yarn.lock | 12 ++++++++++++ 2 files changed, 13 insertions(+) diff --git a/package.json b/package.json index 45e5a30dcb..3e4c182868 100644 --- a/package.json +++ b/package.json @@ -42,6 +42,7 @@ "@rocket.chat/sdk": "djorkaeffalexandre/Rocket.Chat.js.SDK#test.fix-ddp", "@rocket.chat/ui-kit": "0.13.0", "bugsnag-react-native": "2.23.10", + "bytebuffer": "^5.0.1", "commonmark": "git+https://github.com/RocketChat/commonmark.js.git", "commonmark-react-renderer": "git+https://github.com/RocketChat/commonmark-react-renderer.git", "deep-equal": "2.0.3", diff --git a/yarn.lock b/yarn.lock index 09c17ae458..b3cc83fc8f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4595,6 +4595,13 @@ bunyan@^1.8.12: mv "~2" safe-json-stringify "~1" +bytebuffer@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/bytebuffer/-/bytebuffer-5.0.1.tgz#582eea4b1a873b6d020a48d58df85f0bba6cfddd" + integrity sha1-WC7qSxqHO20CCkjVjfhfC7ps/d0= + dependencies: + long "~3" + bytes@3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" @@ -10283,6 +10290,11 @@ lolex@^5.0.0: dependencies: "@sinonjs/commons" "^1.7.0" +long@~3: + version "3.2.0" + resolved "https://registry.yarnpkg.com/long/-/long-3.2.0.tgz#d821b7138ca1cb581c172990ef14db200b5c474b" + integrity sha1-2CG3E4yhy1gcFymQ7xTbIAtcR0s= + loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1, loose-envify@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" From dfab3f9f3ed1b9bfea84ceb4807ae131f5732acf Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Mon, 10 Aug 2020 16:02:35 -0300 Subject: [PATCH 004/158] Add translations --- app/i18n/locales/en.js | 1 + app/i18n/locales/pt-BR.js | 1 + 2 files changed, 2 insertions(+) diff --git a/app/i18n/locales/en.js b/app/i18n/locales/en.js index 72ebbdb4ef..ee9dcbc979 100644 --- a/app/i18n/locales/en.js +++ b/app/i18n/locales/en.js @@ -204,6 +204,7 @@ export default { Empty_title: 'Empty title', Enable_Auto_Translate: 'Enable Auto-Translate', Enable_notifications: 'Enable notifications', + Encrypted: 'Encrypted', Everyone_can_access_this_channel: 'Everyone can access this channel', Error_uploading: 'Error uploading', Expiration_Days: 'Expiration (Days)', diff --git a/app/i18n/locales/pt-BR.js b/app/i18n/locales/pt-BR.js index 8ed4e76da6..525bd1c281 100644 --- a/app/i18n/locales/pt-BR.js +++ b/app/i18n/locales/pt-BR.js @@ -197,6 +197,7 @@ export default { Empty_title: 'Título vazio', Enable_Auto_Translate: 'Ativar a tradução automática', Enable_notifications: 'Habilitar notificações', + Encrypted: 'Criptografado', Everyone_can_access_this_channel: 'Todos podem acessar este canal', Error_uploading: 'Erro subindo', Expiration_Days: 'Expira em (dias)', From 88ad198ae06768efd9c84792a3e5d82ebcc39486 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Mon, 10 Aug 2020 16:03:01 -0300 Subject: [PATCH 005/158] CreateChannel Encrypted toggle --- app/views/CreateChannelView.js | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/app/views/CreateChannelView.js b/app/views/CreateChannelView.js index c4f2c54072..d7472043fa 100644 --- a/app/views/CreateChannelView.js +++ b/app/views/CreateChannelView.js @@ -97,12 +97,13 @@ class CreateChannelView extends React.Component { channelName: '', type: true, readOnly: false, + encrypted: false, broadcast: false } shouldComponentUpdate(nextProps, nextState) { const { - channelName, type, readOnly, broadcast + channelName, type, readOnly, broadcast, encrypted } = this.state; const { users, isFetching, theme } = this.props; if (nextProps.theme !== theme) { @@ -117,6 +118,9 @@ class CreateChannelView extends React.Component { if (nextState.readOnly !== readOnly) { return true; } + if (nextState.encrypted !== encrypted) { + return true; + } if (nextState.broadcast !== broadcast) { return true; } @@ -217,6 +221,20 @@ class CreateChannelView extends React.Component { }); } + renderEncrypted() { + const { encrypted } = this.state; + return this.renderSwitch({ + id: 'encrypted', + value: encrypted, + label: 'Encrypted', + onValueChange: (value) => { + // TODO: Log event + // logEvent(); + this.setState({ encrypted: value }); + } + }); + } + renderBroadcast() { const { broadcast, readOnly } = this.state; return this.renderSwitch({ @@ -315,6 +333,8 @@ class CreateChannelView extends React.Component { {this.renderFormSeparator()} {this.renderReadOnly()} {this.renderFormSeparator()} + {this.renderEncrypted()} + {this.renderFormSeparator()} {this.renderBroadcast()} From 3e1a20713e9b126125b4e016a10019eb108b8a48 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Mon, 10 Aug 2020 16:03:40 -0300 Subject: [PATCH 006/158] Request E2E_Enabled setting --- app/constants/settings.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/constants/settings.js b/app/constants/settings.js index 4c2030c0cc..be43be3d9b 100644 --- a/app/constants/settings.js +++ b/app/constants/settings.js @@ -68,6 +68,9 @@ export default { DirectMesssage_maxUsers: { type: 'valueAsNumber' }, + E2E_Enable: { + type: 'valueAsBoolean' + }, Accounts_Directory_DefaultView: { type: 'valueAsString' }, From e0057715e7dc483d93919408f5cdb46fa4a67a3d Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Mon, 10 Aug 2020 16:05:37 -0300 Subject: [PATCH 007/158] Add some E2E API methods --- app/lib/rocketchat.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/app/lib/rocketchat.js b/app/lib/rocketchat.js index 52c09f93f3..1168c6349c 100644 --- a/app/lib/rocketchat.js +++ b/app/lib/rocketchat.js @@ -335,6 +335,15 @@ const RocketChat = { reduxStore.dispatch(shareSetUser({})); }, + e2eFetchMyKeys() { + // RC 0.70.0 + return this.sdk.get('e2e.fetchMyKeys'); + }, + e2eSetUserPublicAndPrivateKeys(public_key, private_key) { + // RC 2.2.0 + return this.post('e2e.setUserPublicAndPrivateKeys', { public_key, private_key }); + }, + updateJitsiTimeout(roomId) { // RC 0.74.0 return this.post('video-conference/jitsi.update-timeout', { roomId }); From 81881e0708ff0a9e653e49603198b2c7d1a9bde5 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Tue, 11 Aug 2020 14:58:27 -0300 Subject: [PATCH 008/158] POC E2E Encryption --- app/lib/encryption/constants.js | 3 + app/lib/encryption/e2e.js | 174 ++++++++++++++++++ app/lib/encryption/e2e.room.js | 65 +++++++ app/lib/encryption/utils.js | 23 +++ .../helpers/mergeSubscriptionsRooms.js | 9 + app/lib/methods/subscriptions/room.js | 8 + app/lib/methods/subscriptions/rooms.js | 8 + app/lib/methods/updateMessages.js | 6 + ios/Encryption.m | 25 +++ ios/Encryption.swift | 79 ++++++++ ios/RocketChatRN-Bridging-Header.h | 3 + ios/RocketChatRN.xcodeproj/project.pbxproj | 8 + patches/base64-js+1.3.1.patch | 17 ++ .../react-native-simple-crypto+0.2.13.patch | 54 ++++++ 14 files changed, 482 insertions(+) create mode 100644 app/lib/encryption/constants.js create mode 100644 app/lib/encryption/e2e.js create mode 100644 app/lib/encryption/e2e.room.js create mode 100644 app/lib/encryption/utils.js create mode 100644 ios/Encryption.m create mode 100644 ios/Encryption.swift create mode 100644 patches/base64-js+1.3.1.patch create mode 100644 patches/react-native-simple-crypto+0.2.13.patch diff --git a/app/lib/encryption/constants.js b/app/lib/encryption/constants.js new file mode 100644 index 0000000000..d2d52948f6 --- /dev/null +++ b/app/lib/encryption/constants.js @@ -0,0 +1,3 @@ +export const E2E_PUBLIC_KEY = 'RC_E2E_PUBLIC_KEY'; +export const E2E_PRIVATE_KEY = 'RC_E2E_PRIVATE_KEY'; +export const E2E_RANDOM_PASSWORD_KEY = 'RC_E2E_RANDOM_PASSWORD_KEY'; diff --git a/app/lib/encryption/e2e.js b/app/lib/encryption/e2e.js new file mode 100644 index 0000000000..e99e95e89a --- /dev/null +++ b/app/lib/encryption/e2e.js @@ -0,0 +1,174 @@ +import EJSON from 'ejson'; +import SimpleCrypto from 'react-native-simple-crypto'; +import prompt from 'react-native-prompt-android'; +import RNUserDefaults from 'rn-user-defaults'; + +import { + toString, + utf8ToBuffer, + splitVectorData, + randomPassword, + jwkToPkcs1 +} from './utils'; +import { + E2E_PUBLIC_KEY, + E2E_PRIVATE_KEY, + E2E_RANDOM_PASSWORD_KEY +} from './constants'; +import RocketChat from '../rocketchat'; +import E2ERoom from './e2e.room'; +import store from '../createStore'; + +class E2E { + constructor() { + this.started = false; + this.roomInstances = {}; + + // TODO: Await login success + setTimeout(this.start, 5000); + } + + start = async() => { + // TODO: Check if E2E is enabled + if (this.started) { + return; + } + + // TODO: Do this better + this.userId = store.getState().login.user.id; + + this.started = true; + + await RNUserDefaults.clear(E2E_PUBLIC_KEY); + await RNUserDefaults.clear(E2E_PRIVATE_KEY); + const storedPublicKey = await RNUserDefaults.get(E2E_PUBLIC_KEY); + const storedPrivateKey = await RNUserDefaults.get(E2E_PRIVATE_KEY); + + const { publicKey, privateKey } = await this.fetchMyKeys(); + + const pubKey = EJSON.parse(storedPublicKey || publicKey); + let privKey = storedPrivateKey; + if (!storedPrivateKey && privateKey) { + privKey = await this.decodePrivateKey(privateKey); + } + + if (pubKey && privKey) { + this.loadKeys(pubKey, privKey); + } + } + + stop = () => { + this.started = false; + this.roomInstances = {}; + } + + loadKeys = async(publicKey, privateKey) => { + try { + await RNUserDefaults.set(E2E_PUBLIC_KEY, EJSON.stringify(publicKey)); + + this.privateKey = await jwkToPkcs1(EJSON.parse(privateKey)); + await RNUserDefaults.set(E2E_PRIVATE_KEY, privateKey); + } catch { + // Do nothing + } + } + + fetchMyKeys = async() => { + try { + const result = await RocketChat.e2eFetchMyKeys(); + if (result.success) { + const { public_key, private_key } = result; + return { + publicKey: public_key, + privateKey: private_key + }; + } + } catch { + // Do nothing + } + return {}; + } + + requestPassword = () => new Promise((resolve, reject) => prompt( + 'Enter_your_E2E_password', + 'E2E_password_request_text', + [ + { + text: 'I_ll_do_it_later', + onPress: reject, + style: 'cancel' + }, + { + text: 'Decode_Key', + onPress: pw => resolve(pw) + } + ], + { + cancelable: true + } + )) + + decodePrivateKey = async(privateKey) => { + // TODO: Handle reject when user doesn't provide a password + const password = await this.requestPassword(); + const masterKey = await this.getMasterKey(password); + const [vector, cipherText] = splitVectorData(EJSON.parse(privateKey)); + + const privKey = await SimpleCrypto.AES.decrypt( + cipherText, + masterKey, + vector + ); + + return toString(privKey); + } + + getMasterKey = async(password) => { + const iterations = 1000; + const hash = 'SHA256'; + const keyLen = 32; + + const passwordBuffer = utf8ToBuffer(password); + const saltBuffer = utf8ToBuffer(this.userId); + try { + const masterKey = await SimpleCrypto.PBKDF2.hash( + passwordBuffer, + saltBuffer, + iterations, + keyLen, + hash + ); + + return masterKey; + } catch { + // Do nothing + } + } + + createRandomPassword = async() => { + const password = randomPassword(); + await RNUserDefaults.set(E2E_RANDOM_PASSWORD_KEY, password); + return password; + } + + getRoomInstance = async(rid) => { + if (this.roomInstances[rid]) { + return this.roomInstances[rid]; + } + + const roomE2E = new E2ERoom(rid); + this.roomInstances[rid] = roomE2E; + await roomE2E.handshake(); + + return roomE2E; + } + + // Decrypt messages + decrypt = async(message) => { + const roomE2E = await this.getRoomInstance(message.rid); + return roomE2E.decrypt(message); + } +} + +const e2e = new E2E(); +export default e2e; diff --git a/app/lib/encryption/e2e.room.js b/app/lib/encryption/e2e.room.js new file mode 100644 index 0000000000..d9333c5365 --- /dev/null +++ b/app/lib/encryption/e2e.room.js @@ -0,0 +1,65 @@ +import EJSON from 'ejson'; +import { Base64 } from 'js-base64'; +import SimpleCrypto from 'react-native-simple-crypto'; + +import { + toString, + b64ToBuffer, + bufferToUtf8, + splitVectorData +} from './utils'; +import database from '../database'; +import e2e from './e2e'; + +export default class E2ERoom { + constructor(roomId) { + this.roomId = roomId; + } + + // Initialize the E2E room + handshake = async() => { + const db = database.active; + const subCollection = db.collections.get('subscriptions'); + const subscription = await subCollection.find(this.roomId); + + await this.importRoomKey(subscription.E2EKey); + } + + // Import roomKey as an AES Decrypt key + importRoomKey = async(E2EKey) => { + const roomE2EKey = E2EKey.slice(12); + const decryptedKey = await SimpleCrypto.RSA.decrypt(roomE2EKey, e2e.privateKey); + const sessionKey = toString(decryptedKey); + + this.keyID = Base64.encode(sessionKey).slice(0, 12); + + const { k } = EJSON.parse(sessionKey); + this.roomKey = b64ToBuffer(k); + } + + // Decrypt messages + decrypt = async(message) => { + try { + const { t } = message; + + if (t === 'e2e') { + let { msg } = message; + msg = b64ToBuffer(msg.slice(12)); + const [vector, cipherText] = splitVectorData(msg); + + const decrypted = await SimpleCrypto.AES.decrypt( + cipherText, + this.roomKey, + vector + ); + + const m = EJSON.parse(bufferToUtf8(decrypted)); + return { ...message, msg: m.text, e2e: 'done' }; + } + } catch { + // Do nothing + } + + return message; + } +} diff --git a/app/lib/encryption/utils.js b/app/lib/encryption/utils.js new file mode 100644 index 0000000000..ca6bc5b460 --- /dev/null +++ b/app/lib/encryption/utils.js @@ -0,0 +1,23 @@ +/* eslint-disable new-cap, no-proto */ +import ByteBuffer from 'bytebuffer'; +import SimpleCrypto from 'react-native-simple-crypto'; +import { NativeModules } from 'react-native'; + +import random from '../../utils/random'; + +export const { jwkToPkcs1 } = NativeModules.Encryption; +export const b64ToBuffer = SimpleCrypto.utils.convertBase64ToArrayBuffer; +export const bufferToUtf8 = SimpleCrypto.utils.convertArrayBufferToUtf8; +export const utf8ToBuffer = SimpleCrypto.utils.convertUtf8ToArrayBuffer; +export const splitVectorData = (text) => { + const vector = text.slice(0, 16); + const data = text.slice(16); + return [vector, data]; +}; +export const toString = (thing) => { + if (typeof thing === 'string') { + return thing; + } + return new ByteBuffer.wrap(thing).toString('binary'); +}; +export const randomPassword = () => `${ random(3) }-${ random(3) }-${ random(3) }`.toLowerCase(); diff --git a/app/lib/methods/helpers/mergeSubscriptionsRooms.js b/app/lib/methods/helpers/mergeSubscriptionsRooms.js index c4d3acd405..38291772a8 100644 --- a/app/lib/methods/helpers/mergeSubscriptionsRooms.js +++ b/app/lib/methods/helpers/mergeSubscriptionsRooms.js @@ -2,6 +2,7 @@ import EJSON from 'ejson'; import normalizeMessage from './normalizeMessage'; import findSubscriptionsRooms from './findSubscriptionsRooms'; +import E2E from '../../encryption/e2e'; // TODO: delete and update export const merge = (subscription, room) => { @@ -72,6 +73,14 @@ export default async(subscriptions = [], rooms = []) => { rooms = rooms.update; } + try { + rooms = await Promise.all(rooms.map(async(r) => { + const lastMessage = await E2E.decrypt(r.lastMessage); + return { ...r, lastMessage }; + })); + } catch { + // Do nothing + } ({ subscriptions, rooms } = await findSubscriptionsRooms(subscriptions, rooms)); return { diff --git a/app/lib/methods/subscriptions/room.js b/app/lib/methods/subscriptions/room.js index 320aab52ea..5bdea8b290 100644 --- a/app/lib/methods/subscriptions/room.js +++ b/app/lib/methods/subscriptions/room.js @@ -11,6 +11,7 @@ import { addUserTyping, removeUserTyping, clearUserTyping } from '../../../actio import debounce from '../../../utils/debounce'; import RocketChat from '../../rocketchat'; import { subscribeRoom, unsubscribeRoom } from '../../../actions/room'; +import E2E from '../../encryption/e2e'; const WINDOW_TIME = 1000; @@ -163,6 +164,13 @@ export default class RoomSubscription { const threadsCollection = db.collections.get('threads'); const threadMessagesCollection = db.collections.get('thread_messages'); + try { + // Decrypt the message if necessary + message = await E2E.decrypt(message); + } catch { + // Do nothing + } + // Create or update message try { const messageRecord = await msgCollection.find(message._id); diff --git a/app/lib/methods/subscriptions/rooms.js b/app/lib/methods/subscriptions/rooms.js index 8347b86ad5..4849a02ca0 100644 --- a/app/lib/methods/subscriptions/rooms.js +++ b/app/lib/methods/subscriptions/rooms.js @@ -16,6 +16,7 @@ import EventEmitter from '../../../utils/events'; import { removedRoom } from '../../../actions/room'; import { setUser } from '../../../actions/login'; import { INAPP_NOTIFICATION_EMITTER } from '../../../containers/InAppNotification'; +import E2E from '../../encryption/e2e'; const removeListener = listener => listener.stop(); @@ -120,6 +121,13 @@ const createOrUpdateSubscription = async(subscription, room) => { } } + // TODO: Check if has a better way to do this + try { + room.lastMessage = await E2E.decrypt(room.lastMessage); + } catch { + // Do nothing + } + const tmp = merge(subscription, room); await db.action(async() => { let sub; diff --git a/app/lib/methods/updateMessages.js b/app/lib/methods/updateMessages.js index 350ece5019..bae1c97bf8 100644 --- a/app/lib/methods/updateMessages.js +++ b/app/lib/methods/updateMessages.js @@ -5,6 +5,7 @@ import buildMessage from './helpers/buildMessage'; import log from '../../utils/log'; import database from '../database'; import protectedFunction from './helpers/protectedFunction'; +import E2E from '../encryption/e2e'; export default function updateMessages({ rid, update = [], remove = [] }) { try { @@ -13,6 +14,11 @@ export default function updateMessages({ rid, update = [], remove = [] }) { } const db = database.active; return db.action(async() => { + try { + update = await Promise.all(update.map(m => E2E.decrypt(m))); + } catch { + // Do nothing + } const subCollection = db.collections.get('subscriptions'); let sub; try { diff --git a/ios/Encryption.m b/ios/Encryption.m new file mode 100644 index 0000000000..5508624c50 --- /dev/null +++ b/ios/Encryption.m @@ -0,0 +1,25 @@ +// +// Encryption.m +// RocketChatRN +// +// Created by Djorkaeff Alexandre Vilela Pereira on 8/11/20. +// Copyright © 2020 Facebook. All rights reserved. +// + +//#import "Encryption.h" + +//@implementation Encryption +// +//RCT_EXPORT_MODULE() +// +//RCT_EXPORT_METHOD(jwkToPkcs1:(NSDictionary *)jwk resolver:(RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject) { +// resolve(@"oi"); +//} +// +//@end + +#import + +@interface RCT_EXTERN_MODULE(Encryption, NSObject) +RCT_EXTERN_METHOD(jwkToPkcs1:(NSDictionary *)jwk resolver:(RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject) +@end diff --git a/ios/Encryption.swift b/ios/Encryption.swift new file mode 100644 index 0000000000..f51a17171d --- /dev/null +++ b/ios/Encryption.swift @@ -0,0 +1,79 @@ +// +// Encryption.swift +// RocketChatRN +// +// Created by Djorkaeff Alexandre Vilela Pereira on 8/11/20. +// Copyright © 2020 Facebook. All rights reserved. +// + +import Foundation + +public extension String { + + func base64URLDecode() -> Data? { + var str = self + str = str.padding(toLength: ((str.count+3)/4)*4, withPad: "=", startingAt: 0) + str = str.replacingOccurrences(of: "-", with: "+").replacingOccurrences(of: "_", with: "/") + let d = Data(base64Encoded: str) + + return d + } +} + +@objc(Encryption) +class Encryption: NSObject { + + @objc + func jwkToPkcs1(_ jwk: NSDictionary, resolver resolve: RCTPromiseResolveBlock, rejecter reject: RCTPromiseRejectBlock) -> Void { + let rsakey = RSA_new() + + rsakey?.pointee.n = try! base64URLToBignum(jwk["n"] as! String) + rsakey?.pointee.e = try! base64URLToBignum(jwk["e"] as! String) + + if let d = jwk["d"] as? String { + rsakey?.pointee.d = try! base64URLToBignum(d) + } + if let p = jwk["p"] as? String { + rsakey?.pointee.p = try! base64URLToBignum(p) + } + if let q = jwk["q"] as? String { + rsakey?.pointee.q = try! base64URLToBignum(q) + } + if let dq = jwk["dq"] as? String { + rsakey?.pointee.dmq1 = try! base64URLToBignum(dq) + } + if let dp = jwk["dp"] as? String { + rsakey?.pointee.dmp1 = try! base64URLToBignum(dp) + } + if let qi = jwk["qi"] as? String { + rsakey?.pointee.iqmp = try! base64URLToBignum(qi) + } + + let bio = BIO_new(BIO_s_mem()) + let retval = PEM_write_bio_RSAPrivateKey(bio, rsakey, nil, nil, 0, nil, nil); + let publicKeyLen = BIO_ctrl(bio, BIO_CTRL_PENDING, 0, nil) + + guard retval == 1, publicKeyLen > 0 else { + let error = NSError(domain: "", code: 200, userInfo: nil) + reject("E_DECODING", "impossible to decode", error) + return + } + + let publicKey: UnsafeMutablePointer? = UnsafeMutablePointer.allocate(capacity: Int(publicKeyLen)) + BIO_read(bio, publicKey, Int32(publicKeyLen)); + let pk = Data(bytes: publicKey!, count: Int(publicKeyLen)) + resolve(String(data: pk, encoding: .utf8)) + } + + private func base64URLToBignum(_ str: String) throws -> UnsafeMutablePointer { + + guard let data = str.base64URLDecode() else { + throw NSError(domain: "", code: 200, userInfo: nil) + } + let array = [UInt8](data) + return array.withUnsafeBufferPointer { p in + let bn: UnsafeMutablePointer = BN_bin2bn(p.baseAddress, Int32(p.count), nil) + return bn + } + } +} diff --git a/ios/RocketChatRN-Bridging-Header.h b/ios/RocketChatRN-Bridging-Header.h index 1b2cb5d6d0..01ee29eef1 100644 --- a/ios/RocketChatRN-Bridging-Header.h +++ b/ios/RocketChatRN-Bridging-Header.h @@ -2,3 +2,6 @@ // Use this file to import your target's public headers that you would like to expose to Swift. // +#import +#import +#import diff --git a/ios/RocketChatRN.xcodeproj/project.pbxproj b/ios/RocketChatRN.xcodeproj/project.pbxproj index b19ec75f86..bf72459704 100644 --- a/ios/RocketChatRN.xcodeproj/project.pbxproj +++ b/ios/RocketChatRN.xcodeproj/project.pbxproj @@ -23,6 +23,8 @@ 1E1EA81A2326CD5100E22452 /* libsqlite3.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E1EA8192326CD5100E22452 /* libsqlite3.tbd */; }; 1E25743422CBA2CF005A877F /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7ACD4853222860DE00442C55 /* JavaScriptCore.framework */; }; 1E55FDB32320675C0048D2F9 /* libWatermelonDB.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7AAA749B23043AD300F1ADE9 /* libWatermelonDB.a */; }; + 1EB9070124E306840067B14A /* Encryption.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EB9070024E306840067B14A /* Encryption.m */; }; + 1EB9070624E308470067B14A /* Encryption.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EB9070524E308470067B14A /* Encryption.swift */; }; 1EC6ACB722CB9FC300A41C61 /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 1EC6ACB522CB9FC300A41C61 /* MainInterface.storyboard */; }; 1EC6ACBB22CB9FC300A41C61 /* ShareRocketChatRN.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = 1EC6ACB022CB9FC300A41C61 /* ShareRocketChatRN.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; }; 1EC6ACF622CBA01500A41C61 /* ShareRocketChatRN.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EC6ACF522CBA01500A41C61 /* ShareRocketChatRN.m */; }; @@ -101,6 +103,8 @@ 1E1EA8152326CD4500E22452 /* VideoToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = VideoToolbox.framework; path = System/Library/Frameworks/VideoToolbox.framework; sourceTree = SDKROOT; }; 1E1EA8172326CD4B00E22452 /* libc.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libc.tbd; path = usr/lib/libc.tbd; sourceTree = SDKROOT; }; 1E1EA8192326CD5100E22452 /* libsqlite3.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; }; + 1EB9070024E306840067B14A /* Encryption.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Encryption.m; sourceTree = ""; }; + 1EB9070524E308470067B14A /* Encryption.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Encryption.swift; sourceTree = ""; }; 1EC6ACB022CB9FC300A41C61 /* ShareRocketChatRN.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = ShareRocketChatRN.appex; sourceTree = BUILT_PRODUCTS_DIR; }; 1EC6ACB622CB9FC300A41C61 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/MainInterface.storyboard; sourceTree = ""; }; 1EC6ACB822CB9FC300A41C61 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; @@ -184,6 +188,8 @@ 7AAA749D23043B1E00F1ADE9 /* Watermelon.swift */, 7AAA749C23043B1D00F1ADE9 /* RocketChatRN-Bridging-Header.h */, 7A0D62D1242AB187006D5C06 /* LaunchScreen.storyboard */, + 1EB9070024E306840067B14A /* Encryption.m */, + 1EB9070524E308470067B14A /* Encryption.swift */, ); name = RocketChatRN; sourceTree = ""; @@ -772,6 +778,8 @@ files = ( 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 7AAA749E23043B1E00F1ADE9 /* Watermelon.swift in Sources */, + 1EB9070124E306840067B14A /* Encryption.m in Sources */, + 1EB9070624E308470067B14A /* Encryption.swift in Sources */, 13B07FC11A68108700A75B9A /* main.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; diff --git a/patches/base64-js+1.3.1.patch b/patches/base64-js+1.3.1.patch new file mode 100644 index 0000000000..18f740bd0d --- /dev/null +++ b/patches/base64-js+1.3.1.patch @@ -0,0 +1,17 @@ +diff --git a/node_modules/base64-js/index.js b/node_modules/base64-js/index.js +index f087f5b..c070546 100644 +--- a/node_modules/base64-js/index.js ++++ b/node_modules/base64-js/index.js +@@ -22,9 +22,9 @@ revLookup['_'.charCodeAt(0)] = 63 + function getLens (b64) { + var len = b64.length + +- if (len % 4 > 0) { +- throw new Error('Invalid string. Length must be a multiple of 4') +- } ++ // if (len % 4 > 0) { ++ // throw new Error('Invalid string. Length must be a multiple of 4') ++ // } + + // Trim off extra bytes after placeholder bytes are found + // See: https://github.com/beatgammit/base64-js/issues/42 diff --git a/patches/react-native-simple-crypto+0.2.13.patch b/patches/react-native-simple-crypto+0.2.13.patch new file mode 100644 index 0000000000..dc26688ddc --- /dev/null +++ b/patches/react-native-simple-crypto+0.2.13.patch @@ -0,0 +1,54 @@ +diff --git a/node_modules/react-native-simple-crypto/android/src/main/java/com/pedrouid/crypto/RSA.java b/node_modules/react-native-simple-crypto/android/src/main/java/com/pedrouid/crypto/RSA.java +index c835eaf..db8d281 100644 +--- a/node_modules/react-native-simple-crypto/android/src/main/java/com/pedrouid/crypto/RSA.java ++++ b/node_modules/react-native-simple-crypto/android/src/main/java/com/pedrouid/crypto/RSA.java +@@ -122,7 +122,7 @@ public class RSA { + // This function will be called by encrypt and encrypt64 + private byte[] encrypt(byte[] data) throws NoSuchAlgorithmException, InvalidKeySpecException, IllegalBlockSizeException, BadPaddingException, NoSuchPaddingException, InvalidKeyException { + String encodedMessage = null; +- final Cipher cipher = Cipher.getInstance("RSA/NONE/PKCS1Padding"); ++ final Cipher cipher = Cipher.getInstance("RSA/ECB/OAEPWithSHA-256AndMGF1Padding"); + cipher.init(Cipher.ENCRYPT_MODE, this.publicKey); + byte[] cipherBytes = cipher.doFinal(data); + return cipherBytes; +@@ -144,7 +144,7 @@ public class RSA { + + private byte[] decrypt(byte[] cipherBytes) throws NoSuchAlgorithmException, InvalidKeySpecException, IllegalBlockSizeException, BadPaddingException, NoSuchPaddingException, InvalidKeyException { + String message = null; +- final Cipher cipher = Cipher.getInstance("RSA/NONE/PKCS1Padding"); ++ final Cipher cipher = Cipher.getInstance("RSA/ECB/OAEPWithSHA-256AndMGF1Padding"); + cipher.init(Cipher.DECRYPT_MODE, this.privateKey); + byte[] data = cipher.doFinal(cipherBytes); + return data; +diff --git a/node_modules/react-native-simple-crypto/ios/RCTCrypto/lib/Rsa.m b/node_modules/react-native-simple-crypto/ios/RCTCrypto/lib/Rsa.m +index d31bc6b..70dce8b 100644 +--- a/node_modules/react-native-simple-crypto/ios/RCTCrypto/lib/Rsa.m ++++ b/node_modules/react-native-simple-crypto/ios/RCTCrypto/lib/Rsa.m +@@ -99,11 +99,11 @@ - (NSData *)_encrypt:(NSData *)data { + void(^encryptor)(SecKeyRef) = ^(SecKeyRef publicKey) { + BOOL canEncrypt = SecKeyIsAlgorithmSupported(publicKey, + kSecKeyOperationTypeEncrypt, +- kSecKeyAlgorithmRSAEncryptionPKCS1); ++ kSecKeyAlgorithmRSAEncryptionOAEPSHA256); + if (canEncrypt) { + CFErrorRef error = NULL; + cipherText = (NSData *)CFBridgingRelease(SecKeyCreateEncryptedData(publicKey, +- kSecKeyAlgorithmRSAEncryptionPKCS1, ++ kSecKeyAlgorithmRSAEncryptionOAEPSHA256, + (__bridge CFDataRef)data, + &error)); + if (!cipherText) { +@@ -136,11 +136,11 @@ - (NSData *)_decrypt:(NSData *)data { + + BOOL canDecrypt = SecKeyIsAlgorithmSupported(privateKey, + kSecKeyOperationTypeDecrypt, +- kSecKeyAlgorithmRSAEncryptionPKCS1); ++ kSecKeyAlgorithmRSAEncryptionOAEPSHA256); + if (canDecrypt) { + CFErrorRef error = NULL; + clearText = (NSData *)CFBridgingRelease(SecKeyCreateDecryptedData(privateKey, +- kSecKeyAlgorithmRSAEncryptionPKCS1, ++ kSecKeyAlgorithmRSAEncryptionOAEPSHA256, + (__bridge CFDataRef)data, + &error)); + if (!clearText) { From f91258d2f18e3d7195ef82508748e901c5a3e685 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Tue, 11 Aug 2020 15:25:31 -0300 Subject: [PATCH 009/158] Garbage remove --- ios/Encryption.m | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/ios/Encryption.m b/ios/Encryption.m index 5508624c50..afd3283d4a 100644 --- a/ios/Encryption.m +++ b/ios/Encryption.m @@ -6,20 +6,10 @@ // Copyright © 2020 Facebook. All rights reserved. // -//#import "Encryption.h" - -//@implementation Encryption -// -//RCT_EXPORT_MODULE() -// -//RCT_EXPORT_METHOD(jwkToPkcs1:(NSDictionary *)jwk resolver:(RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject) { -// resolve(@"oi"); -//} -// -//@end - #import @interface RCT_EXTERN_MODULE(Encryption, NSObject) + RCT_EXTERN_METHOD(jwkToPkcs1:(NSDictionary *)jwk resolver:(RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject) + @end From 5e027b1269463537f59ecfd365724e4ef1b23af3 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Tue, 11 Aug 2020 17:17:38 -0300 Subject: [PATCH 010/158] Remove keys cleaner --- app/lib/encryption/e2e.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/lib/encryption/e2e.js b/app/lib/encryption/e2e.js index e99e95e89a..a9d39e1468 100644 --- a/app/lib/encryption/e2e.js +++ b/app/lib/encryption/e2e.js @@ -39,8 +39,6 @@ class E2E { this.started = true; - await RNUserDefaults.clear(E2E_PUBLIC_KEY); - await RNUserDefaults.clear(E2E_PRIVATE_KEY); const storedPublicKey = await RNUserDefaults.get(E2E_PUBLIC_KEY); const storedPrivateKey = await RNUserDefaults.get(E2E_PRIVATE_KEY); From e63118c902f35eb65ec2bb58ae580db5c10504d3 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Wed, 12 Aug 2020 10:56:23 -0300 Subject: [PATCH 011/158] Android cast JWK -> PKCS1 --- android/app/build.gradle | 5 ++ .../chat/rocket/reactnative/Encryption.java | 89 +++++++++++++++++++ .../rocket/reactnative/EncryptionPackage.java | 28 ++++++ .../rocket/reactnative/MainApplication.java | 1 + 4 files changed, 123 insertions(+) create mode 100644 android/app/src/main/java/chat/rocket/reactnative/Encryption.java create mode 100644 android/app/src/main/java/chat/rocket/reactnative/EncryptionPackage.java diff --git a/android/app/build.gradle b/android/app/build.gradle index 3eaaf01bbd..837d4ded81 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -240,6 +240,11 @@ dependencies { implementation "com.google.code.gson:gson:2.8.5" implementation "com.github.bumptech.glide:glide:4.9.0" annotationProcessor "com.github.bumptech.glide:compiler:4.9.0" + + implementation "com.madgag.spongycastle:core:1.58.0.0" + implementation "com.madgag.spongycastle:prov:1.54.0.0" + implementation "com.madgag.spongycastle:pkix:1.54.0.0" + implementation "com.madgag.spongycastle:pg:1.54.0.0" } // Run this once to be able to run the application with BUCK diff --git a/android/app/src/main/java/chat/rocket/reactnative/Encryption.java b/android/app/src/main/java/chat/rocket/reactnative/Encryption.java new file mode 100644 index 0000000000..fdec97c730 --- /dev/null +++ b/android/app/src/main/java/chat/rocket/reactnative/Encryption.java @@ -0,0 +1,89 @@ +package chat.rocket.reactnative; + +import android.util.Base64; + +import java.io.IOException; +import java.io.StringWriter; +import java.math.BigInteger; +import java.security.PrivateKey; +import java.security.KeyFactory; +import java.security.interfaces.RSAPrivateKey; +import java.security.spec.RSAPrivateCrtKeySpec; + +import com.facebook.react.bridge.ReactApplicationContext; +import com.facebook.react.bridge.ReactContextBaseJavaModule; +import com.facebook.react.bridge.ReactMethod; +import com.facebook.react.bridge.ReadableMap; +import com.facebook.react.bridge.Promise; + +import org.spongycastle.util.io.pem.PemObject; +import org.spongycastle.util.io.pem.PemWriter; +import org.spongycastle.asn1.pkcs.PrivateKeyInfo; +import org.spongycastle.asn1.ASN1Encodable; +import org.spongycastle.asn1.ASN1Primitive; + +public class Encryption extends ReactContextBaseJavaModule { + + private final ReactApplicationContext reactContext; + + public Encryption(ReactApplicationContext reactContext) { + super(reactContext); + this.reactContext = reactContext; + } + + @Override + public String getName() { + return "Encryption"; + } + + @ReactMethod + public void jwkToPkcs1(final ReadableMap jwk, final Promise promise) { + BigInteger modulus = toBigInteger(decodeSequence(jwk.getString("n"))); + BigInteger publicExponent = toBigInteger(decodeSequence(jwk.getString("e"))); + BigInteger privateExponent = toBigInteger(decodeSequence(jwk.getString("d"))); + BigInteger primeP = toBigInteger(decodeSequence(jwk.getString("p"))); + BigInteger primeQ = toBigInteger(decodeSequence(jwk.getString("q"))); + BigInteger primeExpP = toBigInteger(decodeSequence(jwk.getString("dp"))); + BigInteger primeExpQ = toBigInteger(decodeSequence(jwk.getString("dq"))); + BigInteger crtCoefficient = toBigInteger(decodeSequence(jwk.getString("qi"))); + + try { + KeyFactory factory = KeyFactory.getInstance("RSA"); + RSAPrivateKey key = (RSAPrivateKey) factory.generatePrivate(new RSAPrivateCrtKeySpec( + modulus, + publicExponent, + privateExponent, + primeP, + primeQ, + primeExpP, + primeExpQ, + crtCoefficient + )); + + PemObject pemObject = new PemObject("RSA PRIVATE KEY", privateKeyToPkcs1(key)); + StringWriter stringWriter = new StringWriter(); + PemWriter pemWriter = new PemWriter(stringWriter); + pemWriter.writeObject(pemObject); + pemWriter.close(); + + promise.resolve(stringWriter.toString()); + } catch (Exception ex) { + promise.reject(ex); + } + } + + private static byte[] privateKeyToPkcs1(PrivateKey privateKey) throws IOException { + PrivateKeyInfo pkInfo = PrivateKeyInfo.getInstance(privateKey.getEncoded()); + ASN1Encodable encodeable = pkInfo.parsePrivateKey(); + ASN1Primitive primitive = encodeable.toASN1Primitive(); + return primitive.getEncoded(); + } + + private static BigInteger toBigInteger(byte[] bytes) { + return new BigInteger(1, bytes); + } + + public static byte[] decodeSequence(String encodedSequence) { + return Base64.decode(encodedSequence, Base64.URL_SAFE); + } +} \ No newline at end of file diff --git a/android/app/src/main/java/chat/rocket/reactnative/EncryptionPackage.java b/android/app/src/main/java/chat/rocket/reactnative/EncryptionPackage.java new file mode 100644 index 0000000000..95571d9c0a --- /dev/null +++ b/android/app/src/main/java/chat/rocket/reactnative/EncryptionPackage.java @@ -0,0 +1,28 @@ +package chat.rocket.reactnative; + +import com.facebook.react.ReactPackage; +import com.facebook.react.bridge.NativeModule; +import com.facebook.react.bridge.ReactApplicationContext; +import com.facebook.react.uimanager.ViewManager; + +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; + +public class EncryptionPackage implements ReactPackage { + + @Override + public List createViewManagers(ReactApplicationContext reactContext) { + return Collections.emptyList(); + } + + @Override + public List createNativeModules(ReactApplicationContext reactContext) { + List modules = new ArrayList<>(); + + modules.add(new Encryption(reactContext)); + + return modules; + } + +} \ No newline at end of file diff --git a/android/app/src/main/java/chat/rocket/reactnative/MainApplication.java b/android/app/src/main/java/chat/rocket/reactnative/MainApplication.java index 6bcc62be87..660e66af41 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/MainApplication.java +++ b/android/app/src/main/java/chat/rocket/reactnative/MainApplication.java @@ -53,6 +53,7 @@ protected List getPackages() { packages.add(new RNNotificationsPackage(MainApplication.this)); packages.add(new WatermelonDBPackage()); packages.add(new RNCViewPagerPackage()); + packages.add(new EncryptionPackage()); // packages.add(new ModuleRegistryAdapter(mModuleRegistryProvider)); List unimodules = Arrays.asList( new ModuleRegistryAdapter(mModuleRegistryProvider) From 8b75842b5830ae825dd500f329f3a1cf74f8d4fb Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Wed, 12 Aug 2020 11:14:02 -0300 Subject: [PATCH 012/158] Initialize E2E when Login Success --- app/lib/encryption/e2e.js | 3 --- app/sagas/login.js | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/app/lib/encryption/e2e.js b/app/lib/encryption/e2e.js index a9d39e1468..9f2edbf777 100644 --- a/app/lib/encryption/e2e.js +++ b/app/lib/encryption/e2e.js @@ -23,9 +23,6 @@ class E2E { constructor() { this.started = false; this.roomInstances = {}; - - // TODO: Await login success - setTimeout(this.start, 5000); } start = async() => { diff --git a/app/sagas/login.js b/app/sagas/login.js index 01ab284539..ef6da87462 100644 --- a/app/sagas/login.js +++ b/app/sagas/login.js @@ -26,6 +26,7 @@ import { inviteLinksRequest } from '../actions/inviteLinks'; import { showErrorAlert } from '../utils/info'; import { localAuthenticate } from '../utils/localAuthentication'; import { setActiveUsers } from '../actions/activeUsers'; +import E2E from '../lib/encryption/e2e'; const getServer = state => state.server.server; const loginWithPasswordCall = args => RocketChat.loginWithPassword(args); @@ -101,6 +102,7 @@ const handleLoginSuccess = function* handleLoginSuccess({ user }) { yield fork(fetchSlashCommands); yield fork(registerPushToken); yield fork(fetchUsersPresence); + E2E.start(); I18n.locale = user.language; moment.locale(toMomentLocale(user.language)); From f7b10d17fa1a533893894c106687a2460536dff4 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Wed, 12 Aug 2020 11:25:30 -0300 Subject: [PATCH 013/158] Add some translations --- app/i18n/locales/en.js | 3 +++ app/i18n/locales/pt-BR.js | 3 +++ app/lib/encryption/e2e.js | 9 +++++---- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/app/i18n/locales/en.js b/app/i18n/locales/en.js index ee9dcbc979..628a7e7474 100644 --- a/app/i18n/locales/en.js +++ b/app/i18n/locales/en.js @@ -170,6 +170,7 @@ export default { Custom_Status: 'Custom Status', Dark: 'Dark', Dark_level: 'Dark Level', + Decode_Key: 'Decode Key', Default: 'Default', Default_browser: 'Default browser', Delete_Room_Warning: 'Deleting a room will delete all messages posted within the room. This cannot be undone.', @@ -205,6 +206,7 @@ export default { Enable_Auto_Translate: 'Enable Auto-Translate', Enable_notifications: 'Enable notifications', Encrypted: 'Encrypted', + Enter_your_E2E_password: 'Enter your E2E password', Everyone_can_access_this_channel: 'Everyone can access this channel', Error_uploading: 'Error uploading', Expiration_Days: 'Expiration (Days)', @@ -259,6 +261,7 @@ export default { Invalid_server_version: 'The server you\'re trying to connect is using a version that\'s not supported by the app anymore: {{currentVersion}}.\n\nWe require version {{minVersion}}', Invite_Link: 'Invite Link', Invite_users: 'Invite users', + I_ll_do_it_later: 'I\'ll do it later', Join: 'Join', Join_our_open_workspace: 'Join our open workspace', Join_your_workspace: 'Join your workspace', diff --git a/app/i18n/locales/pt-BR.js b/app/i18n/locales/pt-BR.js index 525bd1c281..17e3ceaae8 100644 --- a/app/i18n/locales/pt-BR.js +++ b/app/i18n/locales/pt-BR.js @@ -176,6 +176,7 @@ export default { Direct_Messages: 'Mensagens Diretas', DESKTOP_OPTIONS: 'OPÇÕES DE ÁREA DE TRABALHO', Directory: 'Diretório', + Decode_Key: 'Chave de decodificação', description: 'descrição', Description: 'Descrição', Disable_notifications: 'Desabilitar notificações', @@ -198,6 +199,7 @@ export default { Enable_Auto_Translate: 'Ativar a tradução automática', Enable_notifications: 'Habilitar notificações', Encrypted: 'Criptografado', + Enter_your_E2E_password: 'Digite sua senha E2E', Everyone_can_access_this_channel: 'Todos podem acessar este canal', Error_uploading: 'Erro subindo', Expiration_Days: 'Expira em (dias)', @@ -247,6 +249,7 @@ export default { Invalid_server_version: 'O servidor que você está conectando não é suportado mais por esta versão do aplicativo: {{currentVersion}}.\n\nEsta versão do aplicativo requer a versão {{minVersion}} do servidor para funcionar corretamente.', Invite_Link: 'Link de Convite', Invite_users: 'Convidar usuários', + I_ll_do_it_later: 'Eu vou fazer isso mais tarde', Join: 'Entrar', Join_our_open_workspace: 'Entra na nossa workspace pública', Join_your_workspace: 'Entre na sua workspace', diff --git a/app/lib/encryption/e2e.js b/app/lib/encryption/e2e.js index 9f2edbf777..e4cb7491a7 100644 --- a/app/lib/encryption/e2e.js +++ b/app/lib/encryption/e2e.js @@ -18,6 +18,7 @@ import { import RocketChat from '../rocketchat'; import E2ERoom from './e2e.room'; import store from '../createStore'; +import I18n from '../../i18n'; class E2E { constructor() { @@ -85,16 +86,16 @@ class E2E { } requestPassword = () => new Promise((resolve, reject) => prompt( - 'Enter_your_E2E_password', - 'E2E_password_request_text', + I18n.t('Enter_your_E2E_password'), + '', [ { - text: 'I_ll_do_it_later', + text: I18n.t('I_ll_do_it_later'), onPress: reject, style: 'cancel' }, { - text: 'Decode_Key', + text: I18n.t('Decode_Key'), onPress: pw => resolve(pw) } ], From 859c0edde72d1ba7bda38b262fc0cbe371a5c552 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Wed, 12 Aug 2020 11:55:41 -0300 Subject: [PATCH 014/158] Add e2e property to Message model --- app/lib/database/model/Message.js | 2 ++ app/lib/database/model/Thread.js | 2 ++ app/lib/database/model/ThreadMessage.js | 2 ++ app/lib/database/model/migrations.js | 18 ++++++++++++++++++ app/lib/database/schema/app.js | 9 ++++++--- app/lib/encryption/constants.js | 5 +++++ app/lib/encryption/e2e.js | 8 +++++++- app/lib/encryption/e2e.room.js | 5 +++-- 8 files changed, 45 insertions(+), 6 deletions(-) diff --git a/app/lib/database/model/Message.js b/app/lib/database/model/Message.js index 22dfec731f..c41bad26b2 100644 --- a/app/lib/database/model/Message.js +++ b/app/lib/database/model/Message.js @@ -77,4 +77,6 @@ export default class Message extends Model { @field('tmsg') tmsg; @json('blocks', sanitizer) blocks; + + @field('e2e') e2e; } diff --git a/app/lib/database/model/Thread.js b/app/lib/database/model/Thread.js index fca0122ff1..e0179fc350 100644 --- a/app/lib/database/model/Thread.js +++ b/app/lib/database/model/Thread.js @@ -73,4 +73,6 @@ export default class Thread extends Model { @field('auto_translate') autoTranslate; @json('translations', sanitizer) translations; + + @field('e2e') e2e; } diff --git a/app/lib/database/model/ThreadMessage.js b/app/lib/database/model/ThreadMessage.js index 842f222856..b3b4216b52 100644 --- a/app/lib/database/model/ThreadMessage.js +++ b/app/lib/database/model/ThreadMessage.js @@ -75,4 +75,6 @@ export default class ThreadMessage extends Model { @json('translations', sanitizer) translations; @field('draft_message') draftMessage; + + @field('e2e') e2e; } diff --git a/app/lib/database/model/migrations.js b/app/lib/database/model/migrations.js index 62473189e6..576f3d93d5 100644 --- a/app/lib/database/model/migrations.js +++ b/app/lib/database/model/migrations.js @@ -138,6 +138,24 @@ export default schemaMigrations({ columns: [ { name: 'e2e_key', type: 'string', isOptional: true } ] + }), + addColumns({ + table: 'messages', + columns: [ + { name: 'e2e', type: 'string', isOptional: true } + ] + }), + addColumns({ + table: 'thread_messages', + columns: [ + { name: 'e2e', type: 'string', isOptional: true } + ] + }), + addColumns({ + table: 'threads', + columns: [ + { name: 'e2e', type: 'string', isOptional: true } + ] }) ] } diff --git a/app/lib/database/schema/app.js b/app/lib/database/schema/app.js index 6e4b9b7818..1439072ea2 100644 --- a/app/lib/database/schema/app.js +++ b/app/lib/database/schema/app.js @@ -102,7 +102,8 @@ export default appSchema({ { name: 'auto_translate', type: 'boolean', isOptional: true }, { name: 'translations', type: 'string', isOptional: true }, { name: 'tmsg', type: 'string', isOptional: true }, - { name: 'blocks', type: 'string', isOptional: true } + { name: 'blocks', type: 'string', isOptional: true }, + { name: 'e2e', type: 'string', isOptional: true } ] }), tableSchema({ @@ -138,7 +139,8 @@ export default appSchema({ { name: 'channels', type: 'string', isOptional: true }, { name: 'unread', type: 'boolean', isOptional: true }, { name: 'auto_translate', type: 'boolean', isOptional: true }, - { name: 'translations', type: 'string', isOptional: true } + { name: 'translations', type: 'string', isOptional: true }, + { name: 'e2e', type: 'string', isOptional: true } ] }), tableSchema({ @@ -174,7 +176,8 @@ export default appSchema({ { name: 'channels', type: 'string', isOptional: true }, { name: 'unread', type: 'boolean', isOptional: true }, { name: 'auto_translate', type: 'boolean', isOptional: true }, - { name: 'translations', type: 'string', isOptional: true } + { name: 'translations', type: 'string', isOptional: true }, + { name: 'e2e', type: 'string', isOptional: true } ] }), tableSchema({ diff --git a/app/lib/encryption/constants.js b/app/lib/encryption/constants.js index d2d52948f6..77d23f666d 100644 --- a/app/lib/encryption/constants.js +++ b/app/lib/encryption/constants.js @@ -1,3 +1,8 @@ +export const E2E_MESSAGE_TYPE = 'e2e'; export const E2E_PUBLIC_KEY = 'RC_E2E_PUBLIC_KEY'; export const E2E_PRIVATE_KEY = 'RC_E2E_PRIVATE_KEY'; export const E2E_RANDOM_PASSWORD_KEY = 'RC_E2E_RANDOM_PASSWORD_KEY'; +export const E2E_STATUS = { + PENDING: 'pending', + DONE: 'done' +}; diff --git a/app/lib/encryption/e2e.js b/app/lib/encryption/e2e.js index e4cb7491a7..2bb66b9715 100644 --- a/app/lib/encryption/e2e.js +++ b/app/lib/encryption/e2e.js @@ -27,7 +27,12 @@ class E2E { } start = async() => { - // TODO: Check if E2E is enabled + // TODO: Do this better + const { E2E_Enable } = store.getState().settings; + if (!E2E_Enable) { + return; + } + if (this.started) { return; } @@ -161,6 +166,7 @@ class E2E { // Decrypt messages decrypt = async(message) => { + // TODO: We should await room instance handshake and this class ready const roomE2E = await this.getRoomInstance(message.rid); return roomE2E.decrypt(message); } diff --git a/app/lib/encryption/e2e.room.js b/app/lib/encryption/e2e.room.js index d9333c5365..14492ce51b 100644 --- a/app/lib/encryption/e2e.room.js +++ b/app/lib/encryption/e2e.room.js @@ -9,6 +9,7 @@ import { splitVectorData } from './utils'; import database from '../database'; +import { E2E_MESSAGE_TYPE, E2E_STATUS } from './constants'; import e2e from './e2e'; export default class E2ERoom { @@ -42,7 +43,7 @@ export default class E2ERoom { try { const { t } = message; - if (t === 'e2e') { + if (t === E2E_MESSAGE_TYPE) { let { msg } = message; msg = b64ToBuffer(msg.slice(12)); const [vector, cipherText] = splitVectorData(msg); @@ -54,7 +55,7 @@ export default class E2ERoom { ); const m = EJSON.parse(bufferToUtf8(decrypted)); - return { ...message, msg: m.text, e2e: 'done' }; + return { ...message, msg: m.text, e2e: E2E_STATUS.DONE }; } } catch { // Do nothing From e4ed14c71976e8784137281c7fc0f4db1222d6e0 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Wed, 12 Aug 2020 12:51:09 -0300 Subject: [PATCH 015/158] Send Encrypted messages --- app/lib/database/model/Subscription.js | 2 + app/lib/database/model/migrations.js | 3 +- app/lib/database/schema/app.js | 3 +- app/lib/encryption/e2e.js | 7 +++ app/lib/encryption/e2e.room.js | 47 +++++++++++++++++-- app/lib/encryption/utils.js | 7 +++ .../methods/helpers/findSubscriptionsRooms.js | 1 + .../helpers/mergeSubscriptionsRooms.js | 1 + app/lib/methods/sendMessage.js | 10 ++-- app/lib/methods/subscriptions/rooms.js | 1 + 10 files changed, 71 insertions(+), 11 deletions(-) diff --git a/app/lib/database/model/Subscription.js b/app/lib/database/model/Subscription.js index 9219b502a6..ddb560c889 100644 --- a/app/lib/database/model/Subscription.js +++ b/app/lib/database/model/Subscription.js @@ -111,4 +111,6 @@ export default class Subscription extends Model { @json('tags', sanitizer) tags; @field('e2e_key') E2EKey; + + @field('encrypted') encrypted; } diff --git a/app/lib/database/model/migrations.js b/app/lib/database/model/migrations.js index 576f3d93d5..bf9a1ba8ea 100644 --- a/app/lib/database/model/migrations.js +++ b/app/lib/database/model/migrations.js @@ -136,7 +136,8 @@ export default schemaMigrations({ addColumns({ table: 'subscriptions', columns: [ - { name: 'e2e_key', type: 'string', isOptional: true } + { name: 'e2e_key', type: 'string', isOptional: true }, + { name: 'encrypted', type: 'boolean', isOptional: true } ] }), addColumns({ diff --git a/app/lib/database/schema/app.js b/app/lib/database/schema/app.js index 1439072ea2..21ad187f24 100644 --- a/app/lib/database/schema/app.js +++ b/app/lib/database/schema/app.js @@ -50,7 +50,8 @@ export default appSchema({ { name: 'served_by', type: 'string', isOptional: true }, { name: 'livechat_data', type: 'string', isOptional: true }, { name: 'tags', type: 'string', isOptional: true }, - { name: 'e2e_key', type: 'string', isOptional: true } + { name: 'e2e_key', type: 'string', isOptional: true }, + { name: 'encrypted', type: 'boolean', isOptional: true } ] }), tableSchema({ diff --git a/app/lib/encryption/e2e.js b/app/lib/encryption/e2e.js index 2bb66b9715..edce2b712c 100644 --- a/app/lib/encryption/e2e.js +++ b/app/lib/encryption/e2e.js @@ -164,6 +164,13 @@ class E2E { return roomE2E; } + // Encrypt messages + encrypt = async(message) => { + // TODO: We should await room instance handshake and this class ready + const roomE2E = await this.getRoomInstance(message.rid); + return roomE2E.encrypt(message); + } + // Decrypt messages decrypt = async(message) => { // TODO: We should await room instance handshake and this class ready diff --git a/app/lib/encryption/e2e.room.js b/app/lib/encryption/e2e.room.js index 14492ce51b..511c076421 100644 --- a/app/lib/encryption/e2e.room.js +++ b/app/lib/encryption/e2e.room.js @@ -6,7 +6,10 @@ import { toString, b64ToBuffer, bufferToUtf8, - splitVectorData + bufferToB64, + utf8ToBuffer, + splitVectorData, + joinVectorData } from './utils'; import database from '../database'; import { E2E_MESSAGE_TYPE, E2E_STATUS } from './constants'; @@ -21,9 +24,10 @@ export default class E2ERoom { handshake = async() => { const db = database.active; const subCollection = db.collections.get('subscriptions'); - const subscription = await subCollection.find(this.roomId); + // TODO: Should be an observable to check encrypted property + this.subscription = await subCollection.find(this.roomId); - await this.importRoomKey(subscription.E2EKey); + await this.importRoomKey(this.subscription.E2EKey); } // Import roomKey as an AES Decrypt key @@ -38,6 +42,37 @@ export default class E2ERoom { this.roomKey = b64ToBuffer(k); } + // Encrypt messages + encrypt = async(message) => { + if (!this.subscription.encrypted) { + return message; + } + + try { + const text = utf8ToBuffer(EJSON.stringify({ + _id: message._id, + text: message.msg, + userId: this.userId, + ts: new Date() + })); + const vector = await SimpleCrypto.utils.randomBytes(16); + const data = await SimpleCrypto.AES.encrypt( + text, + this.roomKey, + vector + ); + return { + ...message, + t: E2E_MESSAGE_TYPE, + e2e: E2E_STATUS.PENDING, + msg: this.keyID + bufferToB64(joinVectorData(vector, data)) + }; + } catch { + // Do nothing + } + return message; + } + // Decrypt messages decrypt = async(message) => { try { @@ -55,7 +90,11 @@ export default class E2ERoom { ); const m = EJSON.parse(bufferToUtf8(decrypted)); - return { ...message, msg: m.text, e2e: E2E_STATUS.DONE }; + return { + ...message, + msg: m.text, + e2e: E2E_STATUS.DONE + }; } } catch { // Do nothing diff --git a/app/lib/encryption/utils.js b/app/lib/encryption/utils.js index ca6bc5b460..757f6ecf8d 100644 --- a/app/lib/encryption/utils.js +++ b/app/lib/encryption/utils.js @@ -9,11 +9,18 @@ export const { jwkToPkcs1 } = NativeModules.Encryption; export const b64ToBuffer = SimpleCrypto.utils.convertBase64ToArrayBuffer; export const bufferToUtf8 = SimpleCrypto.utils.convertArrayBufferToUtf8; export const utf8ToBuffer = SimpleCrypto.utils.convertUtf8ToArrayBuffer; +export const bufferToB64 = SimpleCrypto.utils.convertArrayBufferToBase64; export const splitVectorData = (text) => { const vector = text.slice(0, 16); const data = text.slice(16); return [vector, data]; }; +export const joinVectorData = (vector, data) => { + const output = new Uint8Array(vector.byteLength + data.byteLength); + output.set(new Uint8Array(vector), 0); + output.set(new Uint8Array(data), vector.byteLength); + return output.buffer; +}; export const toString = (thing) => { if (typeof thing === 'string') { return thing; diff --git a/app/lib/methods/helpers/findSubscriptionsRooms.js b/app/lib/methods/helpers/findSubscriptionsRooms.js index bdcb1a6fb6..3d42fd32eb 100644 --- a/app/lib/methods/helpers/findSubscriptionsRooms.js +++ b/app/lib/methods/helpers/findSubscriptionsRooms.js @@ -36,6 +36,7 @@ export default async(subscriptions = [], rooms = []) => { joinCodeRequired: s.joinCodeRequired, muted: s.muted, broadcast: s.broadcast, + encrypted: s.encrypted, prid: s.prid, draftMessage: s.draftMessage, lastThreadSync: s.lastThreadSync, diff --git a/app/lib/methods/helpers/mergeSubscriptionsRooms.js b/app/lib/methods/helpers/mergeSubscriptionsRooms.js index 38291772a8..91ec25c5ef 100644 --- a/app/lib/methods/helpers/mergeSubscriptionsRooms.js +++ b/app/lib/methods/helpers/mergeSubscriptionsRooms.js @@ -28,6 +28,7 @@ export const merge = (subscription, room) => { } subscription.ro = room.ro; subscription.broadcast = room.broadcast; + subscription.encrypted = room.encrypted; if (!subscription.roles || !subscription.roles.length) { subscription.roles = []; } diff --git a/app/lib/methods/sendMessage.js b/app/lib/methods/sendMessage.js index 2a91637a92..57902b8bab 100644 --- a/app/lib/methods/sendMessage.js +++ b/app/lib/methods/sendMessage.js @@ -4,6 +4,7 @@ import messagesStatus from '../../constants/messagesStatus'; import database from '../database'; import log from '../../utils/log'; import random from '../../utils/random'; +import E2E from '../encryption/e2e'; const changeMessageStatus = async(id, tmid, status, message) => { const db = database.active; @@ -49,12 +50,11 @@ export async function sendMessageCall(message) { } = message; try { const sdk = this.shareSDK || this.sdk; - // RC 0.60.0 - const result = await sdk.post('chat.sendMessage', { - message: { - _id, rid, msg, tmid - } + message = await E2E.encrypt({ + _id, rid, msg, tmid }); + // RC 0.60.0 + const result = await sdk.post('chat.sendMessage', { message }); if (result.success) { return changeMessageStatus(_id, tmid, messagesStatus.SENT, result.message); } diff --git a/app/lib/methods/subscriptions/rooms.js b/app/lib/methods/subscriptions/rooms.js index 4849a02ca0..f5494fe4c4 100644 --- a/app/lib/methods/subscriptions/rooms.js +++ b/app/lib/methods/subscriptions/rooms.js @@ -68,6 +68,7 @@ const createOrUpdateSubscription = async(subscription, room) => { joinCodeRequired: s.joinCodeRequired, muted: s.muted, broadcast: s.broadcast, + encrypted: s.encrypted, prid: s.prid, draftMessage: s.draftMessage, lastThreadSync: s.lastThreadSync, From c3889be05d5fb3bdc6856ebbdaaee991aed2ab09 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Wed, 12 Aug 2020 17:15:54 -0300 Subject: [PATCH 016/158] (iOS) PKCS1 -> JWK & e2e.setUserPublicAndPrivateKeys --- app/lib/encryption/e2e.js | 51 ++++++++++++++++++++--- app/lib/encryption/e2e.room.js | 8 ++++ app/lib/encryption/utils.js | 2 +- ios/Encryption.m | 1 + ios/Encryption.swift | 74 ++++++++++++++++++++++++++++++---- 5 files changed, 122 insertions(+), 14 deletions(-) diff --git a/app/lib/encryption/e2e.js b/app/lib/encryption/e2e.js index edce2b712c..571d9806eb 100644 --- a/app/lib/encryption/e2e.js +++ b/app/lib/encryption/e2e.js @@ -7,8 +7,10 @@ import { toString, utf8ToBuffer, splitVectorData, + joinVectorData, randomPassword, - jwkToPkcs1 + jwkToPkcs1, + pkcs1ToJwk } from './utils'; import { E2E_PUBLIC_KEY, @@ -38,12 +40,13 @@ class E2E { } // TODO: Do this better + this.server = store.getState().server.server; this.userId = store.getState().login.user.id; this.started = true; - const storedPublicKey = await RNUserDefaults.get(E2E_PUBLIC_KEY); - const storedPrivateKey = await RNUserDefaults.get(E2E_PRIVATE_KEY); + const storedPublicKey = await RNUserDefaults.get(`${ this.server }-${ E2E_PUBLIC_KEY }`); + const storedPrivateKey = await RNUserDefaults.get(`${ this.server }-${ E2E_PRIVATE_KEY }`); const { publicKey, privateKey } = await this.fetchMyKeys(); @@ -55,6 +58,8 @@ class E2E { if (pubKey && privKey) { this.loadKeys(pubKey, privKey); + } else { + this.createKeys(); } } @@ -63,12 +68,29 @@ class E2E { this.roomInstances = {}; } + // Load stored or sought on server keys loadKeys = async(publicKey, privateKey) => { try { - await RNUserDefaults.set(E2E_PUBLIC_KEY, EJSON.stringify(publicKey)); + await RNUserDefaults.set(`${ this.server }-${ E2E_PUBLIC_KEY }`, EJSON.stringify(publicKey)); this.privateKey = await jwkToPkcs1(EJSON.parse(privateKey)); - await RNUserDefaults.set(E2E_PRIVATE_KEY, privateKey); + await RNUserDefaults.set(`${ this.server }-${ E2E_PRIVATE_KEY }`, privateKey); + } catch { + // Do nothing + } + } + + // Could not obtain public-private keypair from server. + createKeys = async() => { + const key = await SimpleCrypto.RSA.generateKeys(2048); + const publicKey = await pkcs1ToJwk(key.public); + const privateKey = await pkcs1ToJwk(key.private); + + this.loadKeys(publicKey, EJSON.stringify(privateKey)); + try { + const password = await this.createRandomPassword(); + const encodedPrivateKey = await this.encodePrivateKey(EJSON.stringify(privateKey), password); + await RocketChat.e2eSetUserPublicAndPrivateKeys(EJSON.stringify(publicKey), encodedPrivateKey); } catch { // Do nothing } @@ -90,6 +112,23 @@ class E2E { return {}; } + encodePrivateKey = async(privateKey, password) => { + const masterKey = await this.getMasterKey(password); + + try { + const vector = await SimpleCrypto.utils.randomBytes(16); + const data = await SimpleCrypto.AES.encrypt( + utf8ToBuffer(privateKey), + masterKey, + vector + ); + + return EJSON.stringify(new Uint8Array(joinVectorData(vector, data))); + } catch { + // Do nothing + } + } + requestPassword = () => new Promise((resolve, reject) => prompt( I18n.t('Enter_your_E2E_password'), '', @@ -148,7 +187,7 @@ class E2E { createRandomPassword = async() => { const password = randomPassword(); - await RNUserDefaults.set(E2E_RANDOM_PASSWORD_KEY, password); + await RNUserDefaults.set(`${ this.server }-${ E2E_RANDOM_PASSWORD_KEY }`, password); return password; } diff --git a/app/lib/encryption/e2e.room.js b/app/lib/encryption/e2e.room.js index 511c076421..ecf7973bf1 100644 --- a/app/lib/encryption/e2e.room.js +++ b/app/lib/encryption/e2e.room.js @@ -48,6 +48,10 @@ export default class E2ERoom { return message; } + if (!this.roomKey) { + return message; + } + try { const text = utf8ToBuffer(EJSON.stringify({ _id: message._id, @@ -75,6 +79,10 @@ export default class E2ERoom { // Decrypt messages decrypt = async(message) => { + if (!this.roomKey) { + return message; + } + try { const { t } = message; diff --git a/app/lib/encryption/utils.js b/app/lib/encryption/utils.js index 757f6ecf8d..b59cfa51ca 100644 --- a/app/lib/encryption/utils.js +++ b/app/lib/encryption/utils.js @@ -5,7 +5,7 @@ import { NativeModules } from 'react-native'; import random from '../../utils/random'; -export const { jwkToPkcs1 } = NativeModules.Encryption; +export const { jwkToPkcs1, pkcs1ToJwk } = NativeModules.Encryption; export const b64ToBuffer = SimpleCrypto.utils.convertBase64ToArrayBuffer; export const bufferToUtf8 = SimpleCrypto.utils.convertArrayBufferToUtf8; export const utf8ToBuffer = SimpleCrypto.utils.convertUtf8ToArrayBuffer; diff --git a/ios/Encryption.m b/ios/Encryption.m index afd3283d4a..eb0e436caa 100644 --- a/ios/Encryption.m +++ b/ios/Encryption.m @@ -11,5 +11,6 @@ @interface RCT_EXTERN_MODULE(Encryption, NSObject) RCT_EXTERN_METHOD(jwkToPkcs1:(NSDictionary *)jwk resolver:(RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject) +RCT_EXTERN_METHOD(pkcs1ToJwk:(NSString *)pkcs1 resolver:(RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject) @end diff --git a/ios/Encryption.swift b/ios/Encryption.swift index f51a17171d..26133fba79 100644 --- a/ios/Encryption.swift +++ b/ios/Encryption.swift @@ -12,11 +12,18 @@ public extension String { func base64URLDecode() -> Data? { var str = self - str = str.padding(toLength: ((str.count+3)/4)*4, withPad: "=", startingAt: 0) + str = str.padding(toLength: ((str.count + 3) / 4) * 4, withPad: "=", startingAt: 0) str = str.replacingOccurrences(of: "-", with: "+").replacingOccurrences(of: "_", with: "/") - let d = Data(base64Encoded: str) - - return d + return Data(base64Encoded: str) + } +} + +extension Data { + + func base64URLEncode() -> String { + let d = self + let str = d.base64EncodedString() + return str.replacingOccurrences(of: "+", with: "-").replacingOccurrences(of: "/", with: "_").replacingOccurrences(of: "=", with: "") } } @@ -26,6 +33,7 @@ class Encryption: NSObject { @objc func jwkToPkcs1(_ jwk: NSDictionary, resolver resolve: RCTPromiseResolveBlock, rejecter reject: RCTPromiseRejectBlock) -> Void { let rsakey = RSA_new() + defer { RSA_free(rsakey) } rsakey?.pointee.n = try! base64URLToBignum(jwk["n"] as! String) rsakey?.pointee.e = try! base64URLToBignum(jwk["e"] as! String) @@ -50,7 +58,9 @@ class Encryption: NSObject { } let bio = BIO_new(BIO_s_mem()) - let retval = PEM_write_bio_RSAPrivateKey(bio, rsakey, nil, nil, 0, nil, nil); + defer { BIO_free(bio) } + + let retval = PEM_write_bio_RSAPrivateKey(bio, rsakey, nil, nil, 0, nil, nil) let publicKeyLen = BIO_ctrl(bio, BIO_CTRL_PENDING, 0, nil) guard retval == 1, publicKeyLen > 0 else { @@ -60,13 +70,63 @@ class Encryption: NSObject { } let publicKey: UnsafeMutablePointer? = UnsafeMutablePointer.allocate(capacity: Int(publicKeyLen)) - BIO_read(bio, publicKey, Int32(publicKeyLen)); + BIO_read(bio, publicKey, Int32(publicKeyLen)) let pk = Data(bytes: publicKey!, count: Int(publicKeyLen)) + resolve(String(data: pk, encoding: .utf8)) } + @objc + func pkcs1ToJwk(_ pkcs1: NSString, resolver resolve: RCTPromiseResolveBlock, rejecter reject: RCTPromiseRejectBlock) -> Void { + let bio = BIO_new_mem_buf(pkcs1.utf8String, Int32(pkcs1.length)) + defer { BIO_free(bio) } + + let isPublic = pkcs1.contains("PUBLIC") + let reader = isPublic ? PEM_read_bio_RSAPublicKey : PEM_read_bio_RSAPrivateKey + let rsaKey = reader(bio, nil, nil, nil) + + var jwk = [ + "alg": "RSA-OAEP-256", + "ext": true, + "key_ops": [isPublic ? "encrypt" : "decrypt"], + "kty": "RSA" + ] as [String : Any] + + if let d = rsaKey?.pointee.d { + jwk["d"] = bigNumToBase64(d) + } + if let e = rsaKey?.pointee.e { + jwk["e"] = bigNumToBase64(e) + } + if let n = rsaKey?.pointee.n { + jwk["n"] = bigNumToBase64(n) + } + if let p = rsaKey?.pointee.p { + jwk["p"] = bigNumToBase64(p) + } + if let q = rsaKey?.pointee.q { + jwk["q"] = bigNumToBase64(q) + } + if let dp = rsaKey?.pointee.dmp1 { + jwk["dp"] = bigNumToBase64(dp) + } + if let dq = rsaKey?.pointee.dmq1 { + jwk["dq"] = bigNumToBase64(dq) + } + if let qi = rsaKey?.pointee.iqmp { + jwk["qi"] = bigNumToBase64(qi) + } + + resolve(jwk) + } + + private func bigNumToBase64(_ bn: UnsafeMutablePointer) -> String { + var bytes = [UInt8](repeating: 0, count: Int(BN_num_bits(bn) + 7) / 8) + BN_bn2bin(bn, &bytes) + return Data(bytes: bytes, count: bytes.count).base64URLEncode() + } + private func base64URLToBignum(_ str: String) throws -> UnsafeMutablePointer { - guard let data = str.base64URLDecode() else { throw NSError(domain: "", code: 200, userInfo: nil) } From 0ab82785e5612e1defea0a26e681032ef9c4a9f6 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Thu, 13 Aug 2020 15:37:31 -0300 Subject: [PATCH 017/158] (Android) PKCS1 -> JWK & e2e.setUserPublicAndPrivateKeys --- .../chat/rocket/reactnative/Encryption.java | 85 +++++++++++++++++-- .../rocket/reactnative/EncryptionPackage.java | 2 +- app/lib/encryption/e2e.js | 14 +-- app/lib/methods/logout.js | 8 ++ app/lib/rocketchat.js | 4 + 5 files changed, 96 insertions(+), 17 deletions(-) diff --git a/android/app/src/main/java/chat/rocket/reactnative/Encryption.java b/android/app/src/main/java/chat/rocket/reactnative/Encryption.java index fdec97c730..8dd56cde3f 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/Encryption.java +++ b/android/app/src/main/java/chat/rocket/reactnative/Encryption.java @@ -3,34 +3,33 @@ import android.util.Base64; import java.io.IOException; +import java.io.Reader; +import java.io.StringReader; import java.io.StringWriter; import java.math.BigInteger; import java.security.PrivateKey; import java.security.KeyFactory; import java.security.interfaces.RSAPrivateKey; import java.security.spec.RSAPrivateCrtKeySpec; +import java.util.Arrays; -import com.facebook.react.bridge.ReactApplicationContext; +import com.facebook.react.bridge.Arguments; import com.facebook.react.bridge.ReactContextBaseJavaModule; import com.facebook.react.bridge.ReactMethod; import com.facebook.react.bridge.ReadableMap; import com.facebook.react.bridge.Promise; +import com.facebook.react.bridge.WritableArray; +import com.facebook.react.bridge.WritableMap; +import org.spongycastle.asn1.ASN1InputStream; import org.spongycastle.util.io.pem.PemObject; +import org.spongycastle.util.io.pem.PemReader; import org.spongycastle.util.io.pem.PemWriter; import org.spongycastle.asn1.pkcs.PrivateKeyInfo; import org.spongycastle.asn1.ASN1Encodable; import org.spongycastle.asn1.ASN1Primitive; public class Encryption extends ReactContextBaseJavaModule { - - private final ReactApplicationContext reactContext; - - public Encryption(ReactApplicationContext reactContext) { - super(reactContext); - this.reactContext = reactContext; - } - @Override public String getName() { return "Encryption"; @@ -72,6 +71,59 @@ public void jwkToPkcs1(final ReadableMap jwk, final Promise promise) { } } + @ReactMethod + public void pkcs1ToJwk(final String pem, final Promise promise) { + try { + byte[] pkcs1PrivateKey = pemToData(pem); + ASN1InputStream in = new ASN1InputStream(pkcs1PrivateKey); + ASN1Primitive obj = in.readObject(); + Boolean isPublic = pem.contains("PUBLIC"); + + WritableMap jwk = isPublic ? pkcs1ToPublicKey(obj) : pkcs1ToPrivateKey(obj); + jwk.putString("kty", "RSA"); + jwk.putString("alg", "RSA-OAEP-256"); + jwk.putBoolean("ext", true); + + WritableArray keyOps = Arguments.createArray(); + if (isPublic) { + keyOps.pushString("encrypt"); + } else { + keyOps.pushString("decrypt"); + } + jwk.putArray("key_ops", keyOps); + + promise.resolve(jwk); + } catch (Exception e) { + promise.reject(e); + } + } + + private WritableMap pkcs1ToPublicKey(ASN1Primitive obj) { + org.spongycastle.asn1.pkcs.RSAPublicKey keyStruct = org.spongycastle.asn1.pkcs.RSAPublicKey.getInstance(obj); + + WritableMap jwk = Arguments.createMap(); + jwk.putString("n", toString(keyStruct.getModulus(), true)); + jwk.putString("e", toString(keyStruct.getPublicExponent(), false)); + + return jwk; + } + + private WritableMap pkcs1ToPrivateKey(ASN1Primitive obj) { + org.spongycastle.asn1.pkcs.RSAPrivateKey keyStruct = org.spongycastle.asn1.pkcs.RSAPrivateKey.getInstance(obj); + + WritableMap jwk = Arguments.createMap(); + jwk.putString("n", toString(keyStruct.getModulus(), true)); + jwk.putString("e", toString(keyStruct.getPublicExponent(), false)); + jwk.putString("d", toString(keyStruct.getPrivateExponent(), false)); + jwk.putString("p", toString(keyStruct.getPrime1(), true)); + jwk.putString("q", toString(keyStruct.getPrime2(), true)); + jwk.putString("dp", toString(keyStruct.getExponent1(), true)); + jwk.putString("dq", toString(keyStruct.getExponent2(), true)); + jwk.putString("qi", toString(keyStruct.getCoefficient(), false)); + + return jwk; + } + private static byte[] privateKeyToPkcs1(PrivateKey privateKey) throws IOException { PrivateKeyInfo pkInfo = PrivateKeyInfo.getInstance(privateKey.getEncoded()); ASN1Encodable encodeable = pkInfo.parsePrivateKey(); @@ -79,6 +131,21 @@ private static byte[] privateKeyToPkcs1(PrivateKey privateKey) throws IOExceptio return primitive.getEncoded(); } + private String toString(BigInteger bigInteger, Boolean positive) { + byte[] array = bigInteger.toByteArray(); + if (positive) { + array = Arrays.copyOfRange(array, 1, array.length); + } + return Base64.encodeToString(array, Base64.URL_SAFE | Base64.NO_PADDING | Base64.NO_WRAP); + } + + private byte[] pemToData(String pemKey) throws IOException { + Reader keyReader = new StringReader(pemKey); + PemReader pemReader = new PemReader(keyReader); + PemObject pemObject = pemReader.readPemObject(); + return pemObject.getContent(); + } + private static BigInteger toBigInteger(byte[] bytes) { return new BigInteger(1, bytes); } diff --git a/android/app/src/main/java/chat/rocket/reactnative/EncryptionPackage.java b/android/app/src/main/java/chat/rocket/reactnative/EncryptionPackage.java index 95571d9c0a..6eda41c882 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/EncryptionPackage.java +++ b/android/app/src/main/java/chat/rocket/reactnative/EncryptionPackage.java @@ -20,7 +20,7 @@ public List createViewManagers(ReactApplicationContext reactContext public List createNativeModules(ReactApplicationContext reactContext) { List modules = new ArrayList<>(); - modules.add(new Encryption(reactContext)); + modules.add(new Encryption()); return modules; } diff --git a/app/lib/encryption/e2e.js b/app/lib/encryption/e2e.js index 571d9806eb..d88d202918 100644 --- a/app/lib/encryption/e2e.js +++ b/app/lib/encryption/e2e.js @@ -50,7 +50,7 @@ class E2E { const { publicKey, privateKey } = await this.fetchMyKeys(); - const pubKey = EJSON.parse(storedPublicKey || publicKey); + const pubKey = storedPublicKey || publicKey; let privKey = storedPrivateKey; if (!storedPrivateKey && privateKey) { privKey = await this.decodePrivateKey(privateKey); @@ -72,7 +72,6 @@ class E2E { loadKeys = async(publicKey, privateKey) => { try { await RNUserDefaults.set(`${ this.server }-${ E2E_PUBLIC_KEY }`, EJSON.stringify(publicKey)); - this.privateKey = await jwkToPkcs1(EJSON.parse(privateKey)); await RNUserDefaults.set(`${ this.server }-${ E2E_PRIVATE_KEY }`, privateKey); } catch { @@ -82,15 +81,16 @@ class E2E { // Could not obtain public-private keypair from server. createKeys = async() => { - const key = await SimpleCrypto.RSA.generateKeys(2048); - const publicKey = await pkcs1ToJwk(key.public); - const privateKey = await pkcs1ToJwk(key.private); - - this.loadKeys(publicKey, EJSON.stringify(privateKey)); try { + const key = await SimpleCrypto.RSA.generateKeys(2048); + const publicKey = await pkcs1ToJwk(key.public); + const privateKey = await pkcs1ToJwk(key.private); + + this.loadKeys(publicKey, EJSON.stringify(privateKey)); const password = await this.createRandomPassword(); const encodedPrivateKey = await this.encodePrivateKey(EJSON.stringify(privateKey), password); await RocketChat.e2eSetUserPublicAndPrivateKeys(EJSON.stringify(publicKey), encodedPrivateKey); + await RocketChat.e2eRequestSubscriptionKeys(); } catch { // Do nothing } diff --git a/app/lib/methods/logout.js b/app/lib/methods/logout.js index 4064362de2..1a68ba6ed7 100644 --- a/app/lib/methods/logout.js +++ b/app/lib/methods/logout.js @@ -9,11 +9,19 @@ import { BASIC_AUTH_KEY } from '../../utils/fetch'; import database, { getDatabase } from '../database'; import RocketChat from '../rocketchat'; import { useSsl } from '../../utils/url'; +import { + E2E_PUBLIC_KEY, + E2E_PRIVATE_KEY, + E2E_RANDOM_PASSWORD_KEY +} from '../encryption/constants'; async function removeServerKeys({ server, userId }) { await RNUserDefaults.clear(`${ RocketChat.TOKEN_KEY }-${ server }`); await RNUserDefaults.clear(`${ RocketChat.TOKEN_KEY }-${ userId }`); await RNUserDefaults.clear(`${ BASIC_AUTH_KEY }-${ server }`); + await RNUserDefaults.clear(`${ server }-${ E2E_PUBLIC_KEY }`); + await RNUserDefaults.clear(`${ server }-${ E2E_PRIVATE_KEY }`); + await RNUserDefaults.clear(`${ server }-${ E2E_RANDOM_PASSWORD_KEY }`); } async function removeSharedCredentials({ server }) { diff --git a/app/lib/rocketchat.js b/app/lib/rocketchat.js index 1168c6349c..9aa2fc03c1 100644 --- a/app/lib/rocketchat.js +++ b/app/lib/rocketchat.js @@ -343,6 +343,10 @@ const RocketChat = { // RC 2.2.0 return this.post('e2e.setUserPublicAndPrivateKeys', { public_key, private_key }); }, + e2eRequestSubscriptionKeys() { + // RC 0.72.0 + return this.methodCallWrapper('e2e.requestSubscriptionKeys'); + }, updateJitsiTimeout(roomId) { // RC 0.74.0 From e9fee013f088f9ac2eda461f3a6162e3aff3e45b Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Thu, 13 Aug 2020 17:08:02 -0300 Subject: [PATCH 018/158] Create an encrypted channel --- app/lib/rocketchat.js | 16 ++++++++++++++-- app/sagas/createChannel.js | 14 ++++++++++++-- app/views/CreateChannelView.js | 4 ++-- 3 files changed, 28 insertions(+), 6 deletions(-) diff --git a/app/lib/rocketchat.js b/app/lib/rocketchat.js index 9aa2fc03c1..0cec3d37bc 100644 --- a/app/lib/rocketchat.js +++ b/app/lib/rocketchat.js @@ -84,10 +84,10 @@ const RocketChat = { }, canOpenRoom, createChannel({ - name, users, type, readOnly, broadcast + name, users, type, readOnly, broadcast, encrypted }) { // RC 0.51.0 - return this.methodCallWrapper(type ? 'createPrivateGroup' : 'createChannel', name, users, readOnly, {}, { broadcast }); + return this.methodCallWrapper(type ? 'createPrivateGroup' : 'createChannel', name, users, readOnly, {}, { broadcast, encrypted }); }, async getUserToken() { try { @@ -347,6 +347,18 @@ const RocketChat = { // RC 0.72.0 return this.methodCallWrapper('e2e.requestSubscriptionKeys'); }, + e2eGetUsersOfRoomWithoutKey(rid) { + // RC 0.70.0 + return this.sdk.get('e2e.getUsersOfRoomWithoutKey', { rid }); + }, + e2eSetRoomKeyID(rid, keyID) { + // RC 0.70.0 + return this.post('e2e.setRoomKeyID', { rid, keyID }); + }, + e2eUpdateGroupKey(uid, rid, key) { + // RC 0.70.0 + return this.post('e2e.updateGroupKey', { uid, rid, key }); + }, updateJitsiTimeout(roomId) { // RC 0.74.0 diff --git a/app/sagas/createChannel.js b/app/sagas/createChannel.js index 2c642006c1..ca4bcb9fe0 100644 --- a/app/sagas/createChannel.js +++ b/app/sagas/createChannel.js @@ -36,8 +36,18 @@ const handleRequest = function* handleRequest({ data }) { ({ room: sub } = result); } } else { - const { type, readOnly, broadcast } = data; - logEvent(events.CREATE_CHANNEL_CREATE, { type: type ? 'private' : 'public', readOnly, broadcast }); + const { + type, + readOnly, + broadcast, + encrypted + } = data; + logEvent(events.CREATE_CHANNEL_CREATE, { + type: type ? 'private' : 'public', + readOnly, + broadcast, + encrypted + }); sub = yield call(createChannel, data); } diff --git a/app/views/CreateChannelView.js b/app/views/CreateChannelView.js index d7472043fa..891e0704cb 100644 --- a/app/views/CreateChannelView.js +++ b/app/views/CreateChannelView.js @@ -151,7 +151,7 @@ class CreateChannelView extends React.Component { submit = () => { const { - channelName, type, readOnly, broadcast + channelName, type, readOnly, broadcast, encrypted } = this.state; const { users: usersProps, isFetching, create } = this.props; @@ -164,7 +164,7 @@ class CreateChannelView extends React.Component { // create channel create({ - name: channelName, users, type, readOnly, broadcast + name: channelName, users, type, readOnly, broadcast, encrypted }); Review.pushPositiveEvent(); From 6229e8f6670210eab9d256c3288eef3f8ddb229b Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Thu, 13 Aug 2020 17:36:34 -0300 Subject: [PATCH 019/158] Fix app crashing on RoomsList --- app/lib/encryption/e2e.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/lib/encryption/e2e.js b/app/lib/encryption/e2e.js index d88d202918..ca3ec37139 100644 --- a/app/lib/encryption/e2e.js +++ b/app/lib/encryption/e2e.js @@ -50,7 +50,7 @@ class E2E { const { publicKey, privateKey } = await this.fetchMyKeys(); - const pubKey = storedPublicKey || publicKey; + const pubKey = EJSON.parse(storedPublicKey || publicKey || '{}'); let privKey = storedPrivateKey; if (!storedPrivateKey && privateKey) { privKey = await this.decodePrivateKey(privateKey); @@ -71,8 +71,8 @@ class E2E { // Load stored or sought on server keys loadKeys = async(publicKey, privateKey) => { try { - await RNUserDefaults.set(`${ this.server }-${ E2E_PUBLIC_KEY }`, EJSON.stringify(publicKey)); this.privateKey = await jwkToPkcs1(EJSON.parse(privateKey)); + await RNUserDefaults.set(`${ this.server }-${ E2E_PUBLIC_KEY }`, EJSON.stringify(publicKey)); await RNUserDefaults.set(`${ this.server }-${ E2E_PRIVATE_KEY }`, privateKey); } catch { // Do nothing From fae72b2dcf2cfe888e5c8e0a685b221b3976ae4f Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Thu, 13 Aug 2020 20:21:42 -0300 Subject: [PATCH 020/158] Create room key --- app/lib/encryption/e2e.room.js | 82 ++++++++++++++++++++++++++++++++-- ios/Encryption.swift | 9 +++- 2 files changed, 86 insertions(+), 5 deletions(-) diff --git a/app/lib/encryption/e2e.room.js b/app/lib/encryption/e2e.room.js index ecf7973bf1..18719f3e81 100644 --- a/app/lib/encryption/e2e.room.js +++ b/app/lib/encryption/e2e.room.js @@ -9,30 +9,57 @@ import { bufferToB64, utf8ToBuffer, splitVectorData, - joinVectorData + joinVectorData, + jwkToPkcs1 } from './utils'; import database from '../database'; import { E2E_MESSAGE_TYPE, E2E_STATUS } from './constants'; +import RocketChat from '../rocketchat'; import e2e from './e2e'; export default class E2ERoom { constructor(roomId) { this.roomId = roomId; + this.ready = false; } // Initialize the E2E room handshake = async() => { const db = database.active; const subCollection = db.collections.get('subscriptions'); - // TODO: Should be an observable to check encrypted property - this.subscription = await subCollection.find(this.roomId); + try { + // TODO: Should be an observable to check encrypted property + this.subscription = await subCollection.find(this.roomId); + + const { E2EKey, e2eKeyId, encrypted } = this.subscription; + + if (!encrypted) { + return; + } + + if (E2EKey) { + await this.importRoomKey(E2EKey); + return; + } + + if (!e2eKeyId) { + await this.createRoomKey(); + } - await this.importRoomKey(this.subscription.E2EKey); + // Notifications.notifyUsersOfRoom(this.roomId, 'e2ekeyRequest', this.roomId, e2eKeyId); + } catch { + // Do nothing + } } // Import roomKey as an AES Decrypt key importRoomKey = async(E2EKey) => { const roomE2EKey = E2EKey.slice(12); + + if (!roomE2EKey || !e2e.privateKey) { + return; + } + const decryptedKey = await SimpleCrypto.RSA.decrypt(roomE2EKey, e2e.privateKey); const sessionKey = toString(decryptedKey); @@ -42,6 +69,53 @@ export default class E2ERoom { this.roomKey = b64ToBuffer(k); } + // Create a key to a room + createRoomKey = async() => { + try { + const key = await SimpleCrypto.utils.randomBytes(16); + this.roomKey = key; + + const sessionKeyExported = { + alg: 'A128CBC', + ext: true, + k: bufferToB64(this.roomKey).replace(/=/g, ''), + key_ops: ['encrypt', 'decrypt'], + kty: 'oct' + }; + + this.sessionKeyExportedString = EJSON.stringify(sessionKeyExported); + this.keyID = Base64.encode(this.sessionKeyExportedString).slice(0, 12); + + await RocketChat.e2eSetRoomKeyID(this.roomId, this.keyID); + + await this.encryptRoomKey(); + } catch { + // Do nothing + } + } + + encryptRoomKey = async() => { + const result = await RocketChat.e2eGetUsersOfRoomWithoutKey(this.roomId); + if (result.success) { + const { users } = result; + await Promise.all(users.map(user => this.encryptRoomKeyForUser(user))); + } + } + + encryptRoomKeyForUser = async(user) => { + if (user?.e2e?.public_key) { + const { public_key: publicKey } = user.e2e; + try { + const userKey = await jwkToPkcs1(EJSON.parse(publicKey)); + const encryptedUserKey = await SimpleCrypto.RSA.encrypt(this.sessionKeyExportedString, userKey); + // these replaces are a trick that I need to see if I can do better + await RocketChat.e2eUpdateGroupKey(user._id, this.roomId, this.keyID + encryptedUserKey.replaceAll('\n', '').replaceAll('\r', '')); + } catch { + // Do nothing + } + } + } + // Encrypt messages encrypt = async(message) => { if (!this.subscription.encrypted) { diff --git a/ios/Encryption.swift b/ios/Encryption.swift index 26133fba79..13a0c29563 100644 --- a/ios/Encryption.swift +++ b/ios/Encryption.swift @@ -34,12 +34,14 @@ class Encryption: NSObject { func jwkToPkcs1(_ jwk: NSDictionary, resolver resolve: RCTPromiseResolveBlock, rejecter reject: RCTPromiseRejectBlock) -> Void { let rsakey = RSA_new() defer { RSA_free(rsakey) } + var isPublic = true rsakey?.pointee.n = try! base64URLToBignum(jwk["n"] as! String) rsakey?.pointee.e = try! base64URLToBignum(jwk["e"] as! String) if let d = jwk["d"] as? String { rsakey?.pointee.d = try! base64URLToBignum(d) + isPublic = false } if let p = jwk["p"] as? String { rsakey?.pointee.p = try! base64URLToBignum(p) @@ -60,7 +62,12 @@ class Encryption: NSObject { let bio = BIO_new(BIO_s_mem()) defer { BIO_free(bio) } - let retval = PEM_write_bio_RSAPrivateKey(bio, rsakey, nil, nil, 0, nil, nil) + var retval: Int32 + if isPublic { + retval = PEM_write_bio_RSAPublicKey(bio, rsakey) + } else { + retval = PEM_write_bio_RSAPrivateKey(bio, rsakey, nil, nil, 0, nil, nil) + } let publicKeyLen = BIO_ctrl(bio, BIO_CTRL_PENDING, 0, nil) guard retval == 1, publicKeyLen > 0 else { From a9ec9fdf9442fa7dc2ee259c2ff7f28cbaaabd06 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Fri, 14 Aug 2020 10:31:29 -0300 Subject: [PATCH 021/158] Set Room E2E Key (Android) --- .../chat/rocket/reactnative/Encryption.java | 93 +++++++++++++------ app/lib/encryption/e2e.room.js | 16 +++- 2 files changed, 79 insertions(+), 30 deletions(-) diff --git a/android/app/src/main/java/chat/rocket/reactnative/Encryption.java b/android/app/src/main/java/chat/rocket/reactnative/Encryption.java index 8dd56cde3f..39769b6ab5 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/Encryption.java +++ b/android/app/src/main/java/chat/rocket/reactnative/Encryption.java @@ -9,8 +9,10 @@ import java.math.BigInteger; import java.security.PrivateKey; import java.security.KeyFactory; +import java.security.PublicKey; import java.security.interfaces.RSAPrivateKey; import java.security.spec.RSAPrivateCrtKeySpec; +import java.security.spec.RSAPublicKeySpec; import java.util.Arrays; import com.facebook.react.bridge.Arguments; @@ -22,6 +24,7 @@ import com.facebook.react.bridge.WritableMap; import org.spongycastle.asn1.ASN1InputStream; +import org.spongycastle.asn1.x509.SubjectPublicKeyInfo; import org.spongycastle.util.io.pem.PemObject; import org.spongycastle.util.io.pem.PemReader; import org.spongycastle.util.io.pem.PemWriter; @@ -37,35 +40,18 @@ public String getName() { @ReactMethod public void jwkToPkcs1(final ReadableMap jwk, final Promise promise) { - BigInteger modulus = toBigInteger(decodeSequence(jwk.getString("n"))); - BigInteger publicExponent = toBigInteger(decodeSequence(jwk.getString("e"))); - BigInteger privateExponent = toBigInteger(decodeSequence(jwk.getString("d"))); - BigInteger primeP = toBigInteger(decodeSequence(jwk.getString("p"))); - BigInteger primeQ = toBigInteger(decodeSequence(jwk.getString("q"))); - BigInteger primeExpP = toBigInteger(decodeSequence(jwk.getString("dp"))); - BigInteger primeExpQ = toBigInteger(decodeSequence(jwk.getString("dq"))); - BigInteger crtCoefficient = toBigInteger(decodeSequence(jwk.getString("qi"))); + Boolean isPrivate = jwk.hasKey("d"); try { - KeyFactory factory = KeyFactory.getInstance("RSA"); - RSAPrivateKey key = (RSAPrivateKey) factory.generatePrivate(new RSAPrivateCrtKeySpec( - modulus, - publicExponent, - privateExponent, - primeP, - primeQ, - primeExpP, - primeExpQ, - crtCoefficient - )); - - PemObject pemObject = new PemObject("RSA PRIVATE KEY", privateKeyToPkcs1(key)); - StringWriter stringWriter = new StringWriter(); - PemWriter pemWriter = new PemWriter(stringWriter); - pemWriter.writeObject(pemObject); - pemWriter.close(); - - promise.resolve(stringWriter.toString()); + String pkcs1; + + if (isPrivate) { + pkcs1 = jwkToPrivatePkcs1(jwk); + } else { + pkcs1 = jwkToPublicPkcs1(jwk); + } + + promise.resolve(pkcs1); } catch (Exception ex) { promise.reject(ex); } @@ -98,6 +84,53 @@ public void pkcs1ToJwk(final String pem, final Promise promise) { } } + private String jwkToPublicPkcs1(final ReadableMap jwk) throws Exception { + BigInteger modulus = toBigInteger(decodeSequence(jwk.getString("n"))); + BigInteger publicExponent = toBigInteger(decodeSequence(jwk.getString("e"))); + + KeyFactory factory = KeyFactory.getInstance("RSA"); + PublicKey key = factory.generatePublic(new RSAPublicKeySpec(modulus, publicExponent)); + + PemObject pemObject = new PemObject("RSA PUBLIC KEY", publicKeyToPkcs1(key)); + StringWriter stringWriter = new StringWriter(); + PemWriter pemWriter = new PemWriter(stringWriter); + pemWriter.writeObject(pemObject); + pemWriter.close(); + + return stringWriter.toString(); + } + + private String jwkToPrivatePkcs1(final ReadableMap jwk) throws Exception { + BigInteger modulus = toBigInteger(decodeSequence(jwk.getString("n"))); + BigInteger publicExponent = toBigInteger(decodeSequence(jwk.getString("e"))); + BigInteger privateExponent = toBigInteger(decodeSequence(jwk.getString("d"))); + BigInteger primeP = toBigInteger(decodeSequence(jwk.getString("p"))); + BigInteger primeQ = toBigInteger(decodeSequence(jwk.getString("q"))); + BigInteger primeExpP = toBigInteger(decodeSequence(jwk.getString("dp"))); + BigInteger primeExpQ = toBigInteger(decodeSequence(jwk.getString("dq"))); + BigInteger crtCoefficient = toBigInteger(decodeSequence(jwk.getString("qi"))); + + KeyFactory factory = KeyFactory.getInstance("RSA"); + RSAPrivateKey key = (RSAPrivateKey) factory.generatePrivate(new RSAPrivateCrtKeySpec( + modulus, + publicExponent, + privateExponent, + primeP, + primeQ, + primeExpP, + primeExpQ, + crtCoefficient + )); + + PemObject pemObject = new PemObject("RSA PRIVATE KEY", privateKeyToPkcs1(key)); + StringWriter stringWriter = new StringWriter(); + PemWriter pemWriter = new PemWriter(stringWriter); + pemWriter.writeObject(pemObject); + pemWriter.close(); + + return stringWriter.toString(); + } + private WritableMap pkcs1ToPublicKey(ASN1Primitive obj) { org.spongycastle.asn1.pkcs.RSAPublicKey keyStruct = org.spongycastle.asn1.pkcs.RSAPublicKey.getInstance(obj); @@ -124,6 +157,12 @@ private WritableMap pkcs1ToPrivateKey(ASN1Primitive obj) { return jwk; } + private byte[] publicKeyToPkcs1(PublicKey publicKey) throws IOException { + SubjectPublicKeyInfo spkInfo = SubjectPublicKeyInfo.getInstance(publicKey.getEncoded()); + ASN1Primitive primitive = spkInfo.parsePublicKey(); + return primitive.getEncoded(); + } + private static byte[] privateKeyToPkcs1(PrivateKey privateKey) throws IOException { PrivateKeyInfo pkInfo = PrivateKeyInfo.getInstance(privateKey.getEncoded()); ASN1Encodable encodeable = pkInfo.parsePrivateKey(); diff --git a/app/lib/encryption/e2e.room.js b/app/lib/encryption/e2e.room.js index 18719f3e81..443f012a04 100644 --- a/app/lib/encryption/e2e.room.js +++ b/app/lib/encryption/e2e.room.js @@ -16,6 +16,7 @@ import database from '../database'; import { E2E_MESSAGE_TYPE, E2E_STATUS } from './constants'; import RocketChat from '../rocketchat'; import e2e from './e2e'; +import { isIOS } from '../../utils/deviceInfo'; export default class E2ERoom { constructor(roomId) { @@ -75,10 +76,12 @@ export default class E2ERoom { const key = await SimpleCrypto.utils.randomBytes(16); this.roomKey = key; + let k = bufferToB64(this.roomKey); + k = k.replace(/\+/g, '-').replace(/\//g, '_').replace(/=+$/, ''); const sessionKeyExported = { alg: 'A128CBC', ext: true, - k: bufferToB64(this.roomKey).replace(/=/g, ''), + k, key_ops: ['encrypt', 'decrypt'], kty: 'oct' }; @@ -107,9 +110,16 @@ export default class E2ERoom { const { public_key: publicKey } = user.e2e; try { const userKey = await jwkToPkcs1(EJSON.parse(publicKey)); - const encryptedUserKey = await SimpleCrypto.RSA.encrypt(this.sessionKeyExportedString, userKey); + let encryptedUserKey = await SimpleCrypto.RSA.encrypt(this.sessionKeyExportedString, userKey); // these replaces are a trick that I need to see if I can do better - await RocketChat.e2eUpdateGroupKey(user._id, this.roomId, this.keyID + encryptedUserKey.replaceAll('\n', '').replaceAll('\r', '')); + if (isIOS) { + // replace all doesn't work on Android + encryptedUserKey = encryptedUserKey.replaceAll('\n', '').replaceAll('\r', ''); + } else { + // This is not doing the same thing between iOS and Android + encryptedUserKey = encryptedUserKey.replace(/\n/g, '').replace(/\r/g, ''); + } + await RocketChat.e2eUpdateGroupKey(user._id, this.roomId, this.keyID + encryptedUserKey); } catch { // Do nothing } From 3410be6d0e6272ccf92ff6acf4f13e6e9658f239 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Fri, 14 Aug 2020 11:06:57 -0300 Subject: [PATCH 022/158] Edit room encrypted --- app/i18n/locales/en.js | 1 + app/i18n/locales/pt-BR.js | 1 + app/views/CreateChannelView.js | 7 +++--- app/views/RoomInfoEditView/index.js | 38 +++++++++++++++++++++++------ 4 files changed, 37 insertions(+), 10 deletions(-) diff --git a/app/i18n/locales/en.js b/app/i18n/locales/en.js index 628a7e7474..9a6ba210b3 100644 --- a/app/i18n/locales/en.js +++ b/app/i18n/locales/en.js @@ -198,6 +198,7 @@ export default { Edit: 'Edit', Edit_Status: 'Edit Status', Edit_Invite: 'Edit Invite', + End_to_end_encrypted_room: 'End to end encrypted room', Email_or_password_field_is_empty: 'Email or password field is empty', Email: 'Email', EMAIL: 'EMAIL', diff --git a/app/i18n/locales/pt-BR.js b/app/i18n/locales/pt-BR.js index 17e3ceaae8..8b7dba6cc0 100644 --- a/app/i18n/locales/pt-BR.js +++ b/app/i18n/locales/pt-BR.js @@ -192,6 +192,7 @@ export default { Edit: 'Editar', Edit_Invite: 'Editar convite', Edit_Status: 'Editar Status', + End_to_end_encrypted_room: 'Sala criptografada de ponta a ponta', Email_or_password_field_is_empty: 'Email ou senha estão vazios', Email: 'Email', email: 'e-mail', diff --git a/app/views/CreateChannelView.js b/app/views/CreateChannelView.js index 891e0704cb..701becc3b3 100644 --- a/app/views/CreateChannelView.js +++ b/app/views/CreateChannelView.js @@ -202,7 +202,7 @@ class CreateChannelView extends React.Component { label: 'Private_Channel', onValueChange: (value) => { logEvent(events.CREATE_CHANNEL_TOGGLE_TYPE); - this.setState({ type: value }); + this.setState(({ encrypted }) => ({ type: value, encrypted: value && encrypted })); } }); } @@ -222,7 +222,7 @@ class CreateChannelView extends React.Component { } renderEncrypted() { - const { encrypted } = this.state; + const { type, encrypted } = this.state; return this.renderSwitch({ id: 'encrypted', value: encrypted, @@ -231,7 +231,8 @@ class CreateChannelView extends React.Component { // TODO: Log event // logEvent(); this.setState({ encrypted: value }); - } + }, + disabled: !type }); } diff --git a/app/views/RoomInfoEditView/index.js b/app/views/RoomInfoEditView/index.js index 4d913e1cd0..32a07a1e2f 100644 --- a/app/views/RoomInfoEditView/index.js +++ b/app/views/RoomInfoEditView/index.js @@ -76,7 +76,8 @@ class RoomInfoEditView extends React.Component { reactWhenReadOnly: false, archived: false, systemMessages: [], - enableSysMes: false + enableSysMes: false, + encrypted: false }; this.loadRoom(); } @@ -123,7 +124,7 @@ class RoomInfoEditView extends React.Component { init = (room) => { const { - description, topic, announcement, t, ro, reactWhenReadOnly, joinCodeRequired, sysMes + description, topic, announcement, t, ro, reactWhenReadOnly, joinCodeRequired, sysMes, encrypted } = room; // fake password just to user knows about it this.randomValue = random(15); @@ -139,7 +140,8 @@ class RoomInfoEditView extends React.Component { joinCode: joinCodeRequired ? this.randomValue : '', archived: room.archived, systemMessages: sysMes, - enableSysMes: sysMes && sysMes.length > 0 + enableSysMes: sysMes && sysMes.length > 0, + encrypted }); } @@ -157,7 +159,7 @@ class RoomInfoEditView extends React.Component { formIsChanged = () => { const { - room, name, description, topic, announcement, t, ro, reactWhenReadOnly, joinCode, systemMessages, enableSysMes + room, name, description, topic, announcement, t, ro, reactWhenReadOnly, joinCode, systemMessages, enableSysMes, encrypted } = this.state; const { joinCodeRequired } = room; return !(room.name === name @@ -170,6 +172,7 @@ class RoomInfoEditView extends React.Component { && room.reactWhenReadOnly === reactWhenReadOnly && isEqual(room.sysMes, systemMessages) && enableSysMes === (room.sysMes && room.sysMes.length > 0) + && room.encrypted === encrypted ); } @@ -177,7 +180,7 @@ class RoomInfoEditView extends React.Component { logEvent(events.RI_EDIT_SAVE); Keyboard.dismiss(); const { - room, name, description, topic, announcement, t, ro, reactWhenReadOnly, joinCode, systemMessages + room, name, description, topic, announcement, t, ro, reactWhenReadOnly, joinCode, systemMessages, encrypted } = this.state; this.setState({ saving: true }); @@ -231,6 +234,11 @@ class RoomInfoEditView extends React.Component { params.joinCode = joinCode; } + // Encrypted + if (room.encrypted !== encrypted) { + params.encrypted = encrypted; + } + try { await RocketChat.saveRoomSettings(room.rid, params); } catch (e) { @@ -340,7 +348,7 @@ class RoomInfoEditView extends React.Component { toggleRoomType = (value) => { logEvent(events.RI_EDIT_TOGGLE_ROOM_TYPE); - this.setState({ t: value }); + this.setState(({ encrypted }) => ({ t: value, encrypted: value && encrypted })); } toggleReadOnly = (value) => { @@ -358,9 +366,14 @@ class RoomInfoEditView extends React.Component { this.setState(({ systemMessages }) => ({ enableSysMes: value, systemMessages: value ? systemMessages : [] })); } + toggleEncrypted = (value) => { + // TODO: logEvent + this.setState({ encrypted: value }); + } + render() { const { - name, nameError, description, topic, announcement, t, ro, reactWhenReadOnly, room, joinCode, saving, permissions, archived, enableSysMes + name, nameError, description, topic, announcement, t, ro, reactWhenReadOnly, room, joinCode, saving, permissions, archived, enableSysMes, encrypted } = this.state; const { serverVersion, theme } = this.props; const { dangerColor } = themes[theme]; @@ -487,6 +500,17 @@ class RoomInfoEditView extends React.Component { {this.renderSystemMessages()} ) : null} + Date: Fri, 14 Aug 2020 11:36:06 -0300 Subject: [PATCH 023/158] Show encrypted icon on messages --- app/containers/message/Content.js | 17 ++++++++++++++--- app/containers/message/E2E.js | 26 ++++++++++++++++++++++++++ app/containers/message/styles.js | 6 ++++++ storybook/stories/Message.js | 3 +++ 4 files changed, 49 insertions(+), 3 deletions(-) create mode 100644 app/containers/message/E2E.js diff --git a/app/containers/message/Content.js b/app/containers/message/Content.js index 1d2f3012b9..83b0c3f15c 100644 --- a/app/containers/message/Content.js +++ b/app/containers/message/Content.js @@ -9,6 +9,7 @@ import Markdown from '../markdown'; import { getInfoMessage } from './utils'; import { themes } from '../../constants/colors'; import MessageContext from './Context'; +import E2E from './E2E'; const Content = React.memo((props) => { if (props.isInfo) { @@ -48,8 +49,14 @@ const Content = React.memo((props) => { } return ( - - {content} + + + {content} + + ); }, (prevProps, nextProps) => { @@ -59,6 +66,9 @@ const Content = React.memo((props) => { if (prevProps.msg !== nextProps.msg) { return false; } + if (prevProps.type !== nextProps.type) { + return false; + } if (prevProps.theme !== nextProps.theme) { return false; } @@ -83,7 +93,8 @@ Content.propTypes = { channels: PropTypes.oneOfType([PropTypes.array, PropTypes.object]), mentions: PropTypes.oneOfType([PropTypes.array, PropTypes.object]), navToRoomInfo: PropTypes.func, - useRealName: PropTypes.bool + useRealName: PropTypes.bool, + type: PropTypes.string }; Content.displayName = 'MessageContent'; diff --git a/app/containers/message/E2E.js b/app/containers/message/E2E.js new file mode 100644 index 0000000000..e3e13a68c9 --- /dev/null +++ b/app/containers/message/E2E.js @@ -0,0 +1,26 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import { View } from 'react-native'; + +import { E2E_MESSAGE_TYPE } from '../../lib/encryption/constants'; +import { CustomIcon } from '../../lib/Icons'; +import { themes } from '../../constants/colors'; +import styles from './styles'; + +const E2E = React.memo(({ type, theme }) => { + if (type !== E2E_MESSAGE_TYPE) { + return null; + } + + return ( + + + + ); +}); +E2E.propTypes = { + type: PropTypes.string, + theme: PropTypes.string +}; + +export default E2E; diff --git a/app/containers/message/styles.js b/app/containers/message/styles.js index 4ee6af08ad..f83c64f0c4 100644 --- a/app/containers/message/styles.js +++ b/app/containers/message/styles.js @@ -13,6 +13,9 @@ export default StyleSheet.create({ paddingHorizontal: 14, flexDirection: 'column' }, + contentContainer: { + flex: 1 + }, messageContent: { flex: 1, marginLeft: 46 @@ -163,5 +166,8 @@ export default StyleSheet.create({ }, readReceipt: { lineHeight: 20 + }, + encrypted: { + justifyContent: 'center' } }); diff --git a/storybook/stories/Message.js b/storybook/stories/Message.js index 6231aa3dff..8173b906c3 100644 --- a/storybook/stories/Message.js +++ b/storybook/stories/Message.js @@ -99,6 +99,9 @@ export default ({ theme }) => { + + + Testing block quote\nTesting block quote'} /> From d5cdcbd8f1dc1d29328ffc99d65b3f92c334911b Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Fri, 14 Aug 2020 11:42:53 -0300 Subject: [PATCH 024/158] logEvents --- app/utils/log/events.js | 2 ++ app/views/CreateChannelView.js | 3 +-- app/views/RoomInfoEditView/index.js | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/app/utils/log/events.js b/app/utils/log/events.js index c6d51d7e21..68494a84bc 100644 --- a/app/utils/log/events.js +++ b/app/utils/log/events.js @@ -103,6 +103,7 @@ export default { CREATE_CHANNEL_TOGGLE_TYPE: 'create_channel_toggle_type', CREATE_CHANNEL_TOGGLE_READ_ONLY: 'create_channel_toggle_read_only', CREATE_CHANNEL_TOGGLE_BROADCAST: 'create_channel_toggle_broadcast', + CREATE_CHANNEL_TOGGLE_ENCRYPTED: 'create_channel_toggle_encrypted', CREATE_CHANNEL_REMOVE_USER: 'create_channel_remove_user', // CREATE DISCUSSION VIEW @@ -242,6 +243,7 @@ export default { RI_EDIT_TOGGLE_READ_ONLY: 'ri_edit_toggle_read_only', RI_EDIT_TOGGLE_REACTIONS: 'ri_edit_toggle_reactions', RI_EDIT_TOGGLE_SYSTEM_MSG: 'ri_edit_toggle_system_msg', + RI_EDIT_TOGGLE_ENCRYPTED: 'ri_edit_toggle_encrypted', RI_EDIT_SAVE: 'ri_edit_save', RI_EDIT_SAVE_F: 'ri_edit_save_f', RI_EDIT_RESET: 'ri_edit_reset', diff --git a/app/views/CreateChannelView.js b/app/views/CreateChannelView.js index 701becc3b3..24de3c9e61 100644 --- a/app/views/CreateChannelView.js +++ b/app/views/CreateChannelView.js @@ -228,8 +228,7 @@ class CreateChannelView extends React.Component { value: encrypted, label: 'Encrypted', onValueChange: (value) => { - // TODO: Log event - // logEvent(); + logEvent(events.CREATE_CHANNEL_TOGGLE_ENCRYPTED); this.setState({ encrypted: value }); }, disabled: !type diff --git a/app/views/RoomInfoEditView/index.js b/app/views/RoomInfoEditView/index.js index 32a07a1e2f..293a1b4822 100644 --- a/app/views/RoomInfoEditView/index.js +++ b/app/views/RoomInfoEditView/index.js @@ -367,7 +367,7 @@ class RoomInfoEditView extends React.Component { } toggleEncrypted = (value) => { - // TODO: logEvent + logEvent(events.RI_EDIT_TOGGLE_ENCRYPTED); this.setState({ encrypted: value }); } From 2f3aad25788edb286dca5b618a85b6237f55da46 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Fri, 14 Aug 2020 16:09:31 -0300 Subject: [PATCH 025/158] Decrypt pending subscriptions & messages --- app/lib/encryption/e2e.js | 110 +++++++++++++++--- app/lib/encryption/e2e.room.js | 50 +++++--- .../helpers/mergeSubscriptionsRooms.js | 2 +- app/lib/methods/sendMessage.js | 2 +- app/lib/methods/subscriptions/encryption.js | 56 +++++++++ app/lib/methods/subscriptions/room.js | 2 +- app/lib/methods/subscriptions/rooms.js | 2 +- app/lib/methods/updateMessages.js | 2 +- app/lib/rocketchat.js | 15 +++ 9 files changed, 202 insertions(+), 39 deletions(-) create mode 100644 app/lib/methods/subscriptions/encryption.js diff --git a/app/lib/encryption/e2e.js b/app/lib/encryption/e2e.js index ca3ec37139..91d0a2c279 100644 --- a/app/lib/encryption/e2e.js +++ b/app/lib/encryption/e2e.js @@ -2,6 +2,7 @@ import EJSON from 'ejson'; import SimpleCrypto from 'react-native-simple-crypto'; import prompt from 'react-native-prompt-android'; import RNUserDefaults from 'rn-user-defaults'; +import { Q } from '@nozbe/watermelondb'; import { toString, @@ -15,11 +16,14 @@ import { import { E2E_PUBLIC_KEY, E2E_PRIVATE_KEY, - E2E_RANDOM_PASSWORD_KEY + E2E_RANDOM_PASSWORD_KEY, + E2E_STATUS, + E2E_MESSAGE_TYPE } from './constants'; import RocketChat from '../rocketchat'; import E2ERoom from './e2e.room'; import store from '../createStore'; +import database from '../database'; import I18n from '../../i18n'; class E2E { @@ -39,12 +43,12 @@ class E2E { return; } + this.started = true; + // TODO: Do this better this.server = store.getState().server.server; this.userId = store.getState().login.user.id; - this.started = true; - const storedPublicKey = await RNUserDefaults.get(`${ this.server }-${ E2E_PUBLIC_KEY }`); const storedPrivateKey = await RNUserDefaults.get(`${ this.server }-${ E2E_PRIVATE_KEY }`); @@ -57,10 +61,15 @@ class E2E { } if (pubKey && privKey) { - this.loadKeys(pubKey, privKey); + await this.loadKeys(pubKey, privKey); } else { - this.createKeys(); + await this.createKeys(); } + + RocketChat.subscribeEncryption(); + + this.decryptPendingSubscriptions(); + this.decryptPendingMessages(); } stop = () => { @@ -68,6 +77,18 @@ class E2E { this.roomInstances = {}; } + provideRoomKeyToUser = async(keyId, roomId) => { + try { + const roomE2E = await this.getRoomInstance(roomId); + if (!roomE2E) { + return; + } + roomE2E.provideKeyToUser(keyId); + } catch { + // Do nothing + } + } + // Load stored or sought on server keys loadKeys = async(publicKey, privateKey) => { try { @@ -197,24 +218,79 @@ class E2E { } const roomE2E = new E2ERoom(rid); - this.roomInstances[rid] = roomE2E; await roomE2E.handshake(); - + this.roomInstances[rid] = roomE2E; return roomE2E; } - // Encrypt messages - encrypt = async(message) => { - // TODO: We should await room instance handshake and this class ready - const roomE2E = await this.getRoomInstance(message.rid); - return roomE2E.encrypt(message); + decryptPendingMessages = async() => { + const db = database.active; + // TODO: We should do the same to thread messages + const messagesCollection = db.collections.get('messages'); + try { + const messagesToDecrypt = await messagesCollection.query(Q.where('e2e', E2E_STATUS.PENDING), Q.where('t', E2E_MESSAGE_TYPE)).fetch(); + messagesToDecrypt.forEach(async(message) => { + try { + // We should do this to don't try to update the database object + const { rid, t, msg } = message; + const decryptedMessage = await this.decryptMessage({ rid, t, msg }); + db.action(() => message.update((m) => { + Object.assign(m, decryptedMessage); + })); + } catch { + // Do nothing + } + }); + } catch { + // Do nothing + } + } + + decryptPendingSubscriptions = async() => { + const db = database.active; + const subCollection = db.collections.get('subscriptions'); + try { + const subsEncrypted = await subCollection.query(Q.where('encrypted', true)).fetch(); + // We can't do this on database level since lastMessage is not a database object + const subsToDecrypt = subsEncrypted.filter(sub => sub?.lastMessage?.e2e === E2E_STATUS.PENDING); + subsToDecrypt.forEach(async(sub) => { + try { + const { lastMessage } = sub; + const decryptedMessage = await this.decryptMessage(lastMessage); + db.action(() => sub.update((s) => { + s.lastMessage = decryptedMessage; + })); + } catch { + // Do nothing + } + }); + } catch { + // Do nothing + } } - // Decrypt messages - decrypt = async(message) => { - // TODO: We should await room instance handshake and this class ready - const roomE2E = await this.getRoomInstance(message.rid); - return roomE2E.decrypt(message); + encryptMessage = async(message) => { + try { + // TODO: We should await room instance handshake and this class ready + const roomE2E = await this.getRoomInstance(message.rid); + return roomE2E.encrypt(message); + } catch { + // Do nothing + } + + return message; + } + + decryptMessage = async(message) => { + try { + // TODO: We should await room instance handshake and this class ready + const roomE2E = await this.getRoomInstance(message.rid); + return roomE2E.decrypt(message); + } catch { + // Do nothing + } + + return message; } } diff --git a/app/lib/encryption/e2e.room.js b/app/lib/encryption/e2e.room.js index 443f012a04..1db9f3203f 100644 --- a/app/lib/encryption/e2e.room.js +++ b/app/lib/encryption/e2e.room.js @@ -28,29 +28,30 @@ export default class E2ERoom { handshake = async() => { const db = database.active; const subCollection = db.collections.get('subscriptions'); - try { - // TODO: Should be an observable to check encrypted property - this.subscription = await subCollection.find(this.roomId); + // TODO: Should be an observable to check encrypted property + this.subscription = await subCollection.find(this.roomId); - const { E2EKey, e2eKeyId, encrypted } = this.subscription; + const { E2EKey, e2eKeyId, encrypted } = this.subscription; - if (!encrypted) { - return; - } + if (!encrypted) { + return; + } - if (E2EKey) { - await this.importRoomKey(E2EKey); - return; - } + if (!e2e.privateKey) { + return Promise.reject(); + } - if (!e2eKeyId) { - await this.createRoomKey(); - } + if (E2EKey) { + await this.importRoomKey(E2EKey); + return; + } - // Notifications.notifyUsersOfRoom(this.roomId, 'e2ekeyRequest', this.roomId, e2eKeyId); - } catch { - // Do nothing + if (!e2eKeyId) { + await this.createRoomKey(); } + + // notify-room-users + // Notifications.notifyUsersOfRoom(this.roomId, 'e2ekeyRequest', this.roomId, e2eKeyId); } // Import roomKey as an AES Decrypt key @@ -97,6 +98,7 @@ export default class E2ERoom { } } + // Create a encrypted key to this room base on users encryptRoomKey = async() => { const result = await RocketChat.e2eGetUsersOfRoomWithoutKey(this.roomId); if (result.success) { @@ -105,6 +107,7 @@ export default class E2ERoom { } } + // Encrypt the room key to each user in encryptRoomKeyForUser = async(user) => { if (user?.e2e?.public_key) { const { public_key: publicKey } = user.e2e; @@ -126,6 +129,19 @@ export default class E2ERoom { } } + // Provide this room key to a user + provideKeyToUser = async(keyId) => { + if (this.keyID !== keyId) { + return; + } + + try { + await this.encryptRoomKey(); + } catch { + // Do nothing + } + } + // Encrypt messages encrypt = async(message) => { if (!this.subscription.encrypted) { diff --git a/app/lib/methods/helpers/mergeSubscriptionsRooms.js b/app/lib/methods/helpers/mergeSubscriptionsRooms.js index 91ec25c5ef..d80de9058f 100644 --- a/app/lib/methods/helpers/mergeSubscriptionsRooms.js +++ b/app/lib/methods/helpers/mergeSubscriptionsRooms.js @@ -76,7 +76,7 @@ export default async(subscriptions = [], rooms = []) => { try { rooms = await Promise.all(rooms.map(async(r) => { - const lastMessage = await E2E.decrypt(r.lastMessage); + const lastMessage = await E2E.decryptMessage(r.lastMessage); return { ...r, lastMessage }; })); } catch { diff --git a/app/lib/methods/sendMessage.js b/app/lib/methods/sendMessage.js index 57902b8bab..f75b5377b0 100644 --- a/app/lib/methods/sendMessage.js +++ b/app/lib/methods/sendMessage.js @@ -50,7 +50,7 @@ export async function sendMessageCall(message) { } = message; try { const sdk = this.shareSDK || this.sdk; - message = await E2E.encrypt({ + message = await E2E.encryptMessage({ _id, rid, msg, tmid }); // RC 0.60.0 diff --git a/app/lib/methods/subscriptions/encryption.js b/app/lib/methods/subscriptions/encryption.js new file mode 100644 index 0000000000..01ca16fb74 --- /dev/null +++ b/app/lib/methods/subscriptions/encryption.js @@ -0,0 +1,56 @@ +// import log from '../../../utils/log'; +// import store from '../../createStore'; +// import E2E from '../../encryption/e2e'; + +const removeListener = listener => listener.stop(); + +let connectedListener; +let disconnectedListener; +let e2eKeyRequest; + +const streamTopic = 'stream-notify-user'; +// const streamEvent = 'e2eKeyRequest'; + +export default function subscribeEncryption() { + const handleConnection = () => { + console.log('connected'); + }; + + const handleE2EKeyRequestReceived = () => { + // const data = ddpMessage.fields.args; + // E2E.provideRoomKeyToUser(keyId, roomId); + }; + + const stop = () => { + if (connectedListener) { + connectedListener.then(removeListener); + connectedListener = false; + } + if (disconnectedListener) { + disconnectedListener.then(removeListener); + disconnectedListener = false; + } + if (e2eKeyRequest) { + e2eKeyRequest.then(removeListener); + e2eKeyRequest = false; + } + }; + + connectedListener = this.sdk.onStreamData('connected', handleConnection); + disconnectedListener = this.sdk.onStreamData('close', handleConnection); + // TODO: Can we receive only stream data about a specific event? + e2eKeyRequest = this.sdk.onStreamData(streamTopic, handleE2EKeyRequestReceived); + + try { + // const { user: { id: userId } } = store.getState().login; + // this.subscribe('stream-notify-user', `${ userId }/${ streamEvent }`).catch(e => console.log(e)); + + return { + stop: () => stop() + }; + // eslint-disable-next-line no-unreachable + } catch (e) { + // log(e); + // return Promise.reject(); + } +} diff --git a/app/lib/methods/subscriptions/room.js b/app/lib/methods/subscriptions/room.js index 5bdea8b290..e5426c4cfe 100644 --- a/app/lib/methods/subscriptions/room.js +++ b/app/lib/methods/subscriptions/room.js @@ -166,7 +166,7 @@ export default class RoomSubscription { try { // Decrypt the message if necessary - message = await E2E.decrypt(message); + message = await E2E.decryptMessage(message); } catch { // Do nothing } diff --git a/app/lib/methods/subscriptions/rooms.js b/app/lib/methods/subscriptions/rooms.js index f5494fe4c4..d37cc959f2 100644 --- a/app/lib/methods/subscriptions/rooms.js +++ b/app/lib/methods/subscriptions/rooms.js @@ -124,7 +124,7 @@ const createOrUpdateSubscription = async(subscription, room) => { // TODO: Check if has a better way to do this try { - room.lastMessage = await E2E.decrypt(room.lastMessage); + room.lastMessage = await E2E.decryptMessage(room.lastMessage); } catch { // Do nothing } diff --git a/app/lib/methods/updateMessages.js b/app/lib/methods/updateMessages.js index bae1c97bf8..a4efd29b95 100644 --- a/app/lib/methods/updateMessages.js +++ b/app/lib/methods/updateMessages.js @@ -15,7 +15,7 @@ export default function updateMessages({ rid, update = [], remove = [] }) { const db = database.active; return db.action(async() => { try { - update = await Promise.all(update.map(m => E2E.decrypt(m))); + update = await Promise.all(update.map(m => E2E.decryptMessage(m))); } catch { // Do nothing } diff --git a/app/lib/rocketchat.js b/app/lib/rocketchat.js index 0cec3d37bc..429543c542 100644 --- a/app/lib/rocketchat.js +++ b/app/lib/rocketchat.js @@ -21,6 +21,7 @@ import { import subscribeRooms from './methods/subscriptions/rooms'; import subscribeInquiry from './methods/subscriptions/inquiry'; +import subscribeEncryption from './methods/subscriptions/encryption'; import getUsersPresence, { getUserPresence, subscribeUsersPresence } from './methods/getUsersPresence'; import protectedFunction from './methods/helpers/protectedFunction'; @@ -82,6 +83,15 @@ const RocketChat = { } } }, + async subscribeEncryption() { + if (!this.encryptionSub) { + try { + this.encryptionSub = await subscribeEncryption.call(this); + } catch (e) { + log(e); + } + } + }, canOpenRoom, createChannel({ name, users, type, readOnly, broadcast, encrypted @@ -218,6 +228,11 @@ const RocketChat = { this.inquirySub = null; } + if (this.encryptionSub) { + this.encryptionSub.stop(); + this.encryptionSub = null; + } + if (this.sdk) { this.sdk.disconnect(); this.sdk = null; From 21dd5aeb8e03fc411daf16945ba8bb028502008b Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Fri, 14 Aug 2020 16:15:08 -0300 Subject: [PATCH 026/158] Handle user cancel e2e password entry --- app/lib/encryption/e2e.js | 36 ++++++++++++++++++++---------------- 1 file changed, 20 insertions(+), 16 deletions(-) diff --git a/app/lib/encryption/e2e.js b/app/lib/encryption/e2e.js index 91d0a2c279..ed31c6a7c3 100644 --- a/app/lib/encryption/e2e.js +++ b/app/lib/encryption/e2e.js @@ -49,27 +49,31 @@ class E2E { this.server = store.getState().server.server; this.userId = store.getState().login.user.id; - const storedPublicKey = await RNUserDefaults.get(`${ this.server }-${ E2E_PUBLIC_KEY }`); - const storedPrivateKey = await RNUserDefaults.get(`${ this.server }-${ E2E_PRIVATE_KEY }`); + try { + const storedPublicKey = await RNUserDefaults.get(`${ this.server }-${ E2E_PUBLIC_KEY }`); + const storedPrivateKey = await RNUserDefaults.get(`${ this.server }-${ E2E_PRIVATE_KEY }`); - const { publicKey, privateKey } = await this.fetchMyKeys(); + const { publicKey, privateKey } = await this.fetchMyKeys(); - const pubKey = EJSON.parse(storedPublicKey || publicKey || '{}'); - let privKey = storedPrivateKey; - if (!storedPrivateKey && privateKey) { - privKey = await this.decodePrivateKey(privateKey); - } + const pubKey = EJSON.parse(storedPublicKey || publicKey || '{}'); + let privKey = storedPrivateKey; + if (!storedPrivateKey && privateKey) { + privKey = await this.decodePrivateKey(privateKey); + } - if (pubKey && privKey) { - await this.loadKeys(pubKey, privKey); - } else { - await this.createKeys(); - } + if (pubKey && privKey) { + await this.loadKeys(pubKey, privKey); + } else { + await this.createKeys(); + } - RocketChat.subscribeEncryption(); + RocketChat.subscribeEncryption(); - this.decryptPendingSubscriptions(); - this.decryptPendingMessages(); + this.decryptPendingSubscriptions(); + this.decryptPendingMessages(); + } catch { + // Do nothing + } } stop = () => { From dbd4e9e0b572849107b404785a01b72ee9cfcbbc Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Fri, 14 Aug 2020 17:04:06 -0300 Subject: [PATCH 027/158] E2ESavePasswordView --- app/i18n/locales/en.js | 1 + app/i18n/locales/pt-BR.js | 1 + app/stacks/InsideStack.js | 24 ++++++ app/stacks/MasterDetailStack/index.js | 6 ++ app/utils/log/events.js | 1 + app/views/E2ESavePasswordView.js | 104 ++++++++++++++++++++++++++ app/views/RoomsListView/index.js | 17 +++++ 7 files changed, 154 insertions(+) create mode 100644 app/views/E2ESavePasswordView.js diff --git a/app/i18n/locales/en.js b/app/i18n/locales/en.js index 9a6ba210b3..1ba08b8858 100644 --- a/app/i18n/locales/en.js +++ b/app/i18n/locales/en.js @@ -433,6 +433,7 @@ export default { saving_profile: 'saving profile', saving_settings: 'saving settings', saved_to_gallery: 'Saved to gallery', + Save_Your_E2E_Password: 'Save Your E2E Password', Search_Messages: 'Search Messages', Search: 'Search', Search_by: 'Search by', diff --git a/app/i18n/locales/pt-BR.js b/app/i18n/locales/pt-BR.js index 8b7dba6cc0..0074b2f6c1 100644 --- a/app/i18n/locales/pt-BR.js +++ b/app/i18n/locales/pt-BR.js @@ -404,6 +404,7 @@ export default { saving_profile: 'salvando perfil', saving_settings: 'salvando configurações', saved_to_gallery: 'Salvo na galeria', + Save_Your_E2E_Password: 'Salve sua senha E2E', Search_Messages: 'Buscar Mensagens', Search: 'Buscar', Search_by: 'Buscar por', diff --git a/app/stacks/InsideStack.js b/app/stacks/InsideStack.js index e9a4a7a741..d98cee2814 100644 --- a/app/stacks/InsideStack.js +++ b/app/stacks/InsideStack.js @@ -49,6 +49,9 @@ import AdminPanelView from '../views/AdminPanelView'; import NewMessageView from '../views/NewMessageView'; import CreateChannelView from '../views/CreateChannelView'; +// E2ESavePassword Stack +import E2ESavePasswordView from '../views/E2ESavePasswordView'; + // InsideStackNavigator import AttachmentView from '../views/AttachmentView'; import ModalBlockView from '../views/ModalBlockView'; @@ -284,6 +287,22 @@ const NewMessageStackNavigator = () => { ); }; +// E2ESavePasswordStackNavigator +const E2ESavePasswordStack = createStackNavigator(); +const E2ESavePasswordStackNavigator = () => { + const { theme } = React.useContext(ThemeContext); + + return ( + + + + ); +}; + // InsideStackNavigator const InsideStack = createStackNavigator(); const InsideStackNavigator = () => { @@ -301,6 +320,11 @@ const InsideStackNavigator = () => { component={NewMessageStackNavigator} options={{ headerShown: false }} /> + { name='CreateDiscussionView' component={CreateDiscussionView} /> + ); diff --git a/app/utils/log/events.js b/app/utils/log/events.js index 68494a84bc..83c8aaf435 100644 --- a/app/utils/log/events.js +++ b/app/utils/log/events.js @@ -58,6 +58,7 @@ export default { RL_ADD_SERVER: 'rl_add_server', RL_CHANGE_SERVER: 'rl_change_server', RL_GO_NEW_MSG: 'rl_go_new_msg', + RL_GO_E2E_SAVE_PASSWORD: 'rl_go_e2e_save_password', RL_SEARCH: 'rl_search', RL_GO_DIRECTORY: 'rl_go_directory', RL_GO_QUEUE: 'rl_go_queue', diff --git a/app/views/E2ESavePasswordView.js b/app/views/E2ESavePasswordView.js new file mode 100644 index 0000000000..968a08d9b1 --- /dev/null +++ b/app/views/E2ESavePasswordView.js @@ -0,0 +1,104 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import { connect } from 'react-redux'; +import RNUserDefaults from 'rn-user-defaults'; +import { ScrollView, Text } from 'react-native'; + +import { E2E_RANDOM_PASSWORD_KEY } from '../lib/encryption/constants'; +import { CloseModalButton } from '../containers/HeaderButton'; +import scrollPersistTaps from '../utils/scrollPersistTaps'; +import SafeAreaView from '../containers/SafeAreaView'; +import StatusBar from '../containers/StatusBar'; +import { themes } from '../constants/colors'; +import Button from '../containers/Button'; +import { withTheme } from '../theme'; +import I18n from '../i18n'; + +class E2ESavePasswordView extends React.Component { + static navigationOptions = ({ navigation }) => ({ + headerLeft: () => , + title: I18n.t('Save_Your_E2E_Password') + }) + + static propTypes = { + server: PropTypes.string, + navigation: PropTypes.object, + theme: PropTypes.string + } + + constructor(props) { + super(props); + this.mounted = false; + this.state = { password: '' }; + this.init(); + } + + componentDidMount() { + this.mounted = true; + } + + init = async() => { + const { server } = this.props; + try { + const password = await RNUserDefaults.get(`${ server }-${ E2E_RANDOM_PASSWORD_KEY }`); + if (this.mounted) { + this.setState({ password }); + } else { + this.state.password = password; + } + } catch { + // Do nothing + } + } + + onSaved = async() => { + const { navigation, server } = this.props; + try { + await RNUserDefaults.clear(`${ server }-${ E2E_RANDOM_PASSWORD_KEY }`); + } catch { + // Do nothing + } + navigation.pop(); + } + + render() { + const { password } = this.state; + const { theme } = this.props; + return ( + + + + {password} +