firebase / firebase-ios-sdk

Firebase SDK for Apple App Development
https://firebase.google.com
Apache License 2.0
5.68k stars 1.49k forks source link

The Code signature validation failed on v10.24.0 #12740

Closed psbss closed 7 months ago

psbss commented 7 months ago

Description

Hi

Today, I updated firebase-ios-sdk v10.24.0 from v10.22.0 using Zip file. I faced XCFramework signature error. I did downgrade to v10.22.0 and rebuild again but it is failed same error.

Does anyone have ideas to fix this issue?

image

image

image

Script file is here

Expand download-firebase.sh snippet
```bash #!/bin/sh version=`cat .firebase-version` curl -L https://github.com/firebase/firebase-ios-sdk/releases/download/${version}/Firebase.zip -o .firebase/Firebase.zip --create-dirs unzip -o .firebase/Firebase.zip -d .firebase # FirebaseCrashlytics cp -rf .firebase/Firebase/FirebaseCrashlytics MyAppPackage/XCFrameworks cp -f .firebase/Firebase/FirebaseCrashlytics/upload-symbols scripts/FirebaseCrashlytics/upload-symbols cp -f .firebase/Firebase/FirebaseCrashlytics/run scripts/FirebaseCrashlytics/run # FirebaseAnalytics cp -rf .firebase/Firebase/FirebaseAnalytics MyAppPackage/XCFrameworks # FirebaseInAppMessaging cp -rf .firebase/Firebase/FirebaseInAppMessaging MyAppPackage/XCFrameworks cp -rf .firebase/Firebase/FirebaseMessaging MyAppPackage/XCFrameworks ## FirebaseRemoteConfig cp -rf .firebase/Firebase/FirebaseRemoteConfig MyAppPackage/XCFrameworks # FirebaseAuth cp -rf .firebase/Firebase/FirebaseAuth MyAppPackage/XCFrameworks # FirebasePerformance cp -rf .firebase/Firebase/FirebasePerformance MyAppPackage/XCFrameworks ```

Reproducing the issue

Just update to v10.24.0 from v10.22.0

Firebase SDK Version

10.24.0

Xcode Version

15.3

Installation Method

Zip

Firebase Product(s)

AB Testing, Analytics, Authentication, Crashlytics, In-App Messaging, Performance, Remote Config

Targeted Platforms

iOS

Relevant Log Output

No response

If using Swift Package Manager, the project's Package.resolved

Expand Package.resolved snippet
```json N/A ```

If using CocoaPods, the project's Podfile.lock

Expand Podfile.lock snippet
```yml N/A ```
google-oss-bot commented 7 months ago

I couldn't figure out how to label this issue, so I've labeled it for a human to triage. Hang tight.

tristan-warner-smith commented 7 months ago

We're also seeing this behaviour but in Xcode 15.2.

ncooke3 commented 7 months ago

Thanks for reporting. @tristan-warner-smith, are you also using a script to process the Firebase.zip?

ncooke3 commented 7 months ago

@psbss, when downgrading, try to delete the directory containing the XCFrameworks and all references to the framework paths. I would also clean Xcode's cache. The fact that the same error appears after downgrading could mean that Xcode is remembering some state from the 10.24 installation.

tristan-warner-smith commented 7 months ago

Thanks for reporting. @tristan-warner-smith, are you also using a script to process the Firebase.zip?

We're not processing it, we've been using this to generate binary target frameworks for a couple of years. I haven't checked recently to see if you now support all of the frameworks we use, so we might be able to go back to main on this?

ncooke3 commented 7 months ago

I suspect this issue may be caused by the introduction of symlinks within XCFrameworks in 10.24.0. If the XCFrameworks are copied, it's possible that the symlinks are not preserved which would break the code signature.

@psbss, instead of cp -rf, try rsync -a

psbss commented 7 months ago

Hi @ncooke3 I tried your suggestion but still failed verification.

  1. Remove XCframeworks from my app package.
  2. Run rm -rf ~/Library/Developer/Xcode/DerivedData/
  3. Run my download-firebase script

image

some libraries signature verified image

but these libraries are not.

image

- FBLPromises.xcframework
- FirebaseCore.xcframework
- FirebaseCoreInternal.xcframework
- FirebaseInstallations.xcframework
- GoogleUtilities.xcframework
- nanopb.xcframework
- FirebaseAuth.xcframework
- GTMSessionFetcher.xcframework
- FirebaseCoreExtension.xcframework
- FirebaseCrashlytics.xcframework
- GoogleDataTransport.xcframework
- Promises.xcframework
- FirebaseABTesting.xcframework
- FirebaseMessaging.xcframework
- GoogleDataTransport.xcframework
- FirebaseABTesting.xcframework
- FirebaseCoreExtension.xcframework
- FirebaseRemoteConfig.xcframework
- GoogleDataTransport.xcframework
- Promises.xcframework
- FirebaseABTesting.xcframework
- FirebaseRemoteConfig.xcframework
Expand download-firebase.sh snippet ```bash #!/bin/sh version=`cat .firebase-version` curl -L https://github.com/firebase/firebase-ios-sdk/releases/download/${version}/Firebase.zip -o .firebase/Firebase.zip --create-dirs unzip -o .firebase/Firebase.zip -d .firebase # Options for rsync: # -a, --archive archive mode; equals -rlptgoD (no -H,-A,-X) # -v, --verbose increase verbosity # -r, --recursive recurse into directories # --ignore-existing skip updating files that exist on receiver # FirebaseCrashlytics rsync -av .firebase/Firebase/FirebaseCrashlytics/ MyAppPackage/XCFrameworks/FirebaseCrashlytics/ rsync -av .firebase/Firebase/FirebaseCrashlytics/upload-symbols scripts/FirebaseCrashlytics/ rsync -av .firebase/Firebase/FirebaseCrashlytics/run scripts/FirebaseCrashlytics/ # FirebaseAnalytics rsync -av .firebase/Firebase/FirebaseAnalytics/ MyAppPackage/XCFrameworks/FirebaseAnalytics/ # FirebaseInAppMessaging and FirebaseMessaging rsync -av .firebase/Firebase/FirebaseInAppMessaging/ MyAppPackage/XCFrameworks/FirebaseInAppMessaging/ rsync -av .firebase/Firebase/FirebaseMessaging/ MyAppPackage/XCFrameworks/FirebaseMessaging/ ## FirebaseRemoteConfig rsync -av .firebase/Firebase/FirebaseRemoteConfig/ MyAppPackage/XCFrameworks/FirebaseRemoteConfig/ # FirebaseAuth rsync -av .firebase/Firebase/FirebaseAuth/ MyAppPackage/XCFrameworks/FirebaseAuth/ # FirebasePerformance rsync -av .firebase/Firebase/FirebasePerformance/ MyAppPackage/XCFrameworks/FirebasePerformance/ ```
bforrose commented 7 months ago

The platform ios-arm64_x86_64-maccatalyst, macos-arm64_x86_64 includes a symlink. When copying files with the cp -rf option, the symlink breaks, causing validation to fail. The issue can be resolved by using the cp -rfP option to copy files and folders while preserving the symlink.

스크린샷 2024-04-11 15 12 47
psbss commented 7 months ago

Hi @bforrose I tried your suggestion but it did not work well.

Script file ```bash #!/bin/sh version=`cat .firebase-version` curl -L https://github.com/firebase/firebase-ios-sdk/releases/download/${version}/Firebase.zip -o .firebase/Firebase.zip --create-dirs unzip -o .firebase/Firebase.zip -d .firebase # FirebaseCrashlytics cp -rfp .firebase/Firebase/FirebaseCrashlytics/ MyAppPackage/XCFrameworks/FirebaseCrashlytics/ cp -rfp .firebase/Firebase/FirebaseCrashlytics/upload-symbols scripts/FirebaseCrashlytics/ cp -rfp .firebase/Firebase/FirebaseCrashlytics/run scripts/FirebaseCrashlytics/ # FirebaseAnalytics cp -rfp .firebase/Firebase/FirebaseAnalytics/ MyAppPackage/XCFrameworks/FirebaseAnalytics/ # FirebaseInAppMessaging and FirebaseMessaging cp -rfp .firebase/Firebase/FirebaseInAppMessaging/ MyAppPackage/XCFrameworks/FirebaseInAppMessaging/ cp -rfp .firebase/Firebase/FirebaseMessaging/ MyAppPackage/XCFrameworks/FirebaseMessaging/ ## FirebaseRemoteConfig cp -rfp .firebase/Firebase/FirebaseRemoteConfig/ MyAppPackage/XCFrameworks/FirebaseRemoteConfig/ # FirebaseAuth cp -rfp .firebase/Firebase/FirebaseAuth/ MyAppPackage/XCFrameworks/FirebaseAuth/ # FirebasePerformance cp -rfp .firebase/Firebase/FirebasePerformance/ MyAppPackage/XCFrameworks/FirebasePerformance/ ```
bforrose commented 7 months ago

Hi @psbss Need to add the capital P option. The lowercase p does not copy while preserving symbolic links. cp -rfP

psbss commented 7 months ago

Thank you replay! but still failed signature verification 😢 The same as this one. https://github.com/firebase/firebase-ios-sdk/issues/12740#issuecomment-2048844227

IAlexe commented 7 months ago

This should be treated with high priority, we are also encountering the same issue on multiple projects using various script systems, please remove the symlinks as it's causing only problems.

paulb777 commented 7 months ago

We recently added the symlinks because Apple started blocking App Store submission without them. Details in #12668

ncooke3 commented 7 months ago

@psbss, could you share a screenshot of one of the copied XCFrameworks that is not working (similar to the screenshot in https://github.com/firebase/firebase-ios-sdk/issues/12740#issuecomment-2049001825)?

psbss commented 7 months ago

Hi @ncooke3 Directory tree is here (no edit).

FirebaseAnalytics ``` ./MyAppPackage/XCFrameworks/FirebaseAnalytics/ ├── FBLPromises.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── FBLPromises.framework │   │   ├── FBLPromises │   │   ├── FBLPromises_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FBLPromise+All.h │   │   │   ├── FBLPromise+Always.h │   │   │   ├── FBLPromise+Any.h │   │   │   ├── FBLPromise+Async.h │   │   │   ├── FBLPromise+Await.h │   │   │   ├── FBLPromise+Catch.h │   │   │   ├── FBLPromise+Delay.h │   │   │   ├── FBLPromise+Do.h │   │   │   ├── FBLPromise+Race.h │   │   │   ├── FBLPromise+Recover.h │   │   │   ├── FBLPromise+Reduce.h │   │   │   ├── FBLPromise+Retry.h │   │   │   ├── FBLPromise+Testing.h │   │   │   ├── FBLPromise+Then.h │   │   │   ├── FBLPromise+Timeout.h │   │   │   ├── FBLPromise+Validate.h │   │   │   ├── FBLPromise+Wrap.h │   │   │   ├── FBLPromise.h │   │   │   ├── FBLPromiseError.h │   │   │   ├── FBLPromises.h │   │   │   └── PromisesObjC-umbrella.h │   │   ├── Info.plist │   │   ├── Modules │   │   │   └── module.modulemap │   │   └── PrivateHeaders │   │   └── FBLPromisePrivate.h │   ├── ios-arm64_x86_64-maccatalyst │   │   └── FBLPromises.framework │   │   ├── FBLPromises -> Versions/Current/FBLPromises │   │   ├── FBLPromises_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── PrivateHeaders -> Versions/Current/PrivateHeaders │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FBLPromises │   │   │   ├── Headers │   │   │   │   ├── FBLPromise+All.h │   │   │   │   ├── FBLPromise+Always.h │   │   │   │   ├── FBLPromise+Any.h │   │   │   │   ├── FBLPromise+Async.h │   │   │   │   ├── FBLPromise+Await.h │   │   │   │   ├── FBLPromise+Catch.h │   │   │   │   ├── FBLPromise+Delay.h │   │   │   │   ├── FBLPromise+Do.h │   │   │   │   ├── FBLPromise+Race.h │   │   │   │   ├── FBLPromise+Recover.h │   │   │   │   ├── FBLPromise+Reduce.h │   │   │   │   ├── FBLPromise+Retry.h │   │   │   │   ├── FBLPromise+Testing.h │   │   │   │   ├── FBLPromise+Then.h │   │   │   │   ├── FBLPromise+Timeout.h │   │   │   │   ├── FBLPromise+Validate.h │   │   │   │   ├── FBLPromise+Wrap.h │   │   │   │   ├── FBLPromise.h │   │   │   │   ├── FBLPromiseError.h │   │   │   │   ├── FBLPromises.h │   │   │   │   └── PromisesObjC-umbrella.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   ├── PrivateHeaders │   │   │   │   └── FBLPromisePrivate.h │   │   │   └── Resources │   │   │   ├── FBLPromises_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── FBLPromises.framework │   │   ├── FBLPromises │   │   ├── FBLPromises_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FBLPromise+All.h │   │   │   ├── FBLPromise+Always.h │   │   │   ├── FBLPromise+Any.h │   │   │   ├── FBLPromise+Async.h │   │   │   ├── FBLPromise+Await.h │   │   │   ├── FBLPromise+Catch.h │   │   │   ├── FBLPromise+Delay.h │   │   │   ├── FBLPromise+Do.h │   │   │   ├── FBLPromise+Race.h │   │   │   ├── FBLPromise+Recover.h │   │   │   ├── FBLPromise+Reduce.h │   │   │   ├── FBLPromise+Retry.h │   │   │   ├── FBLPromise+Testing.h │   │   │   ├── FBLPromise+Then.h │   │   │   ├── FBLPromise+Timeout.h │   │   │   ├── FBLPromise+Validate.h │   │   │   ├── FBLPromise+Wrap.h │   │   │   ├── FBLPromise.h │   │   │   ├── FBLPromiseError.h │   │   │   ├── FBLPromises.h │   │   │   └── PromisesObjC-umbrella.h │   │   ├── Info.plist │   │   ├── Modules │   │   │   └── module.modulemap │   │   └── PrivateHeaders │   │   └── FBLPromisePrivate.h │   ├── macos-arm64_x86_64 │   │   └── FBLPromises.framework │   │   ├── FBLPromises -> Versions/Current/FBLPromises │   │   ├── FBLPromises_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── PrivateHeaders -> Versions/Current/PrivateHeaders │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FBLPromises │   │   │   ├── Headers │   │   │   │   ├── FBLPromise+All.h │   │   │   │   ├── FBLPromise+Always.h │   │   │   │   ├── FBLPromise+Any.h │   │   │   │   ├── FBLPromise+Async.h │   │   │   │   ├── FBLPromise+Await.h │   │   │   │   ├── FBLPromise+Catch.h │   │   │   │   ├── FBLPromise+Delay.h │   │   │   │   ├── FBLPromise+Do.h │   │   │   │   ├── FBLPromise+Race.h │   │   │   │   ├── FBLPromise+Recover.h │   │   │   │   ├── FBLPromise+Reduce.h │   │   │   │   ├── FBLPromise+Retry.h │   │   │   │   ├── FBLPromise+Testing.h │   │   │   │   ├── FBLPromise+Then.h │   │   │   │   ├── FBLPromise+Timeout.h │   │   │   │   ├── FBLPromise+Validate.h │   │   │   │   ├── FBLPromise+Wrap.h │   │   │   │   ├── FBLPromise.h │   │   │   │   ├── FBLPromiseError.h │   │   │   │   ├── FBLPromises.h │   │   │   │   └── PromisesObjC-umbrella.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   ├── PrivateHeaders │   │   │   │   └── FBLPromisePrivate.h │   │   │   └── Resources │   │   │   ├── FBLPromises_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── FBLPromises.framework │   │   ├── FBLPromises │   │   ├── FBLPromises_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FBLPromise+All.h │   │   │   ├── FBLPromise+Always.h │   │   │   ├── FBLPromise+Any.h │   │   │   ├── FBLPromise+Async.h │   │   │   ├── FBLPromise+Await.h │   │   │   ├── FBLPromise+Catch.h │   │   │   ├── FBLPromise+Delay.h │   │   │   ├── FBLPromise+Do.h │   │   │   ├── FBLPromise+Race.h │   │   │   ├── FBLPromise+Recover.h │   │   │   ├── FBLPromise+Reduce.h │   │   │   ├── FBLPromise+Retry.h │   │   │   ├── FBLPromise+Testing.h │   │   │   ├── FBLPromise+Then.h │   │   │   ├── FBLPromise+Timeout.h │   │   │   ├── FBLPromise+Validate.h │   │   │   ├── FBLPromise+Wrap.h │   │   │   ├── FBLPromise.h │   │   │   ├── FBLPromiseError.h │   │   │   ├── FBLPromises.h │   │   │   └── PromisesObjC-umbrella.h │   │   ├── Info.plist │   │   ├── Modules │   │   │   └── module.modulemap │   │   └── PrivateHeaders │   │   └── FBLPromisePrivate.h │   ├── tvos-arm64_x86_64-simulator │   │   └── FBLPromises.framework │   │   ├── FBLPromises │   │   ├── FBLPromises_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FBLPromise+All.h │   │   │   ├── FBLPromise+Always.h │   │   │   ├── FBLPromise+Any.h │   │   │   ├── FBLPromise+Async.h │   │   │   ├── FBLPromise+Await.h │   │   │   ├── FBLPromise+Catch.h │   │   │   ├── FBLPromise+Delay.h │   │   │   ├── FBLPromise+Do.h │   │   │   ├── FBLPromise+Race.h │   │   │   ├── FBLPromise+Recover.h │   │   │   ├── FBLPromise+Reduce.h │   │   │   ├── FBLPromise+Retry.h │   │   │   ├── FBLPromise+Testing.h │   │   │   ├── FBLPromise+Then.h │   │   │   ├── FBLPromise+Timeout.h │   │   │   ├── FBLPromise+Validate.h │   │   │   ├── FBLPromise+Wrap.h │   │   │   ├── FBLPromise.h │   │   │   ├── FBLPromiseError.h │   │   │   ├── FBLPromises.h │   │   │   └── PromisesObjC-umbrella.h │   │   ├── Info.plist │   │   ├── Modules │   │   │   └── module.modulemap │   │   └── PrivateHeaders │   │   └── FBLPromisePrivate.h │   ├── watchos-arm64_arm64_32 │   │   └── FBLPromises.framework │   │   ├── FBLPromises │   │   ├── FBLPromises_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FBLPromise+All.h │   │   │   ├── FBLPromise+Always.h │   │   │   ├── FBLPromise+Any.h │   │   │   ├── FBLPromise+Async.h │   │   │   ├── FBLPromise+Await.h │   │   │   ├── FBLPromise+Catch.h │   │   │   ├── FBLPromise+Delay.h │   │   │   ├── FBLPromise+Do.h │   │   │   ├── FBLPromise+Race.h │   │   │   ├── FBLPromise+Recover.h │   │   │   ├── FBLPromise+Reduce.h │   │   │   ├── FBLPromise+Retry.h │   │   │   ├── FBLPromise+Testing.h │   │   │   ├── FBLPromise+Then.h │   │   │   ├── FBLPromise+Timeout.h │   │   │   ├── FBLPromise+Validate.h │   │   │   ├── FBLPromise+Wrap.h │   │   │   ├── FBLPromise.h │   │   │   ├── FBLPromiseError.h │   │   │   ├── FBLPromises.h │   │   │   └── PromisesObjC-umbrella.h │   │   ├── Info.plist │   │   ├── Modules │   │   │   └── module.modulemap │   │   └── PrivateHeaders │   │   └── FBLPromisePrivate.h │   └── watchos-arm64_x86_64-simulator │   └── FBLPromises.framework │   ├── FBLPromises │   ├── FBLPromises_Privacy.bundle │   │   ├── Info.plist │   │   └── PrivacyInfo.xcprivacy │   ├── Headers │   │   ├── FBLPromise+All.h │   │   ├── FBLPromise+Always.h │   │   ├── FBLPromise+Any.h │   │   ├── FBLPromise+Async.h │   │   ├── FBLPromise+Await.h │   │   ├── FBLPromise+Catch.h │   │   ├── FBLPromise+Delay.h │   │   ├── FBLPromise+Do.h │   │   ├── FBLPromise+Race.h │   │   ├── FBLPromise+Recover.h │   │   ├── FBLPromise+Reduce.h │   │   ├── FBLPromise+Retry.h │   │   ├── FBLPromise+Testing.h │   │   ├── FBLPromise+Then.h │   │   ├── FBLPromise+Timeout.h │   │   ├── FBLPromise+Validate.h │   │   ├── FBLPromise+Wrap.h │   │   ├── FBLPromise.h │   │   ├── FBLPromiseError.h │   │   ├── FBLPromises.h │   │   └── PromisesObjC-umbrella.h │   ├── Info.plist │   ├── Modules │   │   └── module.modulemap │   └── PrivateHeaders │   └── FBLPromisePrivate.h ├── FirebaseAnalytics.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── FirebaseAnalytics.framework │   │   ├── FirebaseAnalytics │   │   ├── Headers │   │   │   ├── FIRAnalytics+AppDelegate.h │   │   │   ├── FIRAnalytics+Consent.h │   │   │   ├── FIRAnalytics+OnDevice.h │   │   │   ├── FIRAnalytics.h │   │   │   ├── FIREventNames.h │   │   │   ├── FIRParameterNames.h │   │   │   ├── FIRUserPropertyNames.h │   │   │   ├── FirebaseAnalytics-Swift.h │   │   │   ├── FirebaseAnalytics-umbrella.h │   │   │   └── FirebaseAnalytics.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseAnalytics.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-ios.swiftsourceinfo │   │   │   ├── arm64-apple-ios.abi.json │   │   │   ├── arm64-apple-ios.private.swiftinterface │   │   │   ├── arm64-apple-ios.swiftdoc │   │   │   └── arm64-apple-ios.swiftinterface │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── FirebaseAnalytics.framework │   │   ├── FirebaseAnalytics -> Versions/Current/FirebaseAnalytics │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseAnalytics │   │   │   ├── Headers │   │   │   │   ├── FIRAnalytics+AppDelegate.h │   │   │   │   ├── FIRAnalytics+Consent.h │   │   │   │   ├── FIRAnalytics+OnDevice.h │   │   │   │   ├── FIRAnalytics.h │   │   │   │   ├── FIREventNames.h │   │   │   │   ├── FIRParameterNames.h │   │   │   │   ├── FIRUserPropertyNames.h │   │   │   │   ├── FirebaseAnalytics-Swift.h │   │   │   │   ├── FirebaseAnalytics-umbrella.h │   │   │   │   └── FirebaseAnalytics.h │   │   │   ├── Modules │   │   │   │   ├── FirebaseAnalytics.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-ios-macabi.abi.json │   │   │   │   │   ├── arm64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftdoc │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.abi.json │   │   │   │   │   ├── x86_64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.swiftdoc │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftinterface │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── FirebaseAnalytics.framework │   │   ├── FirebaseAnalytics │   │   ├── Headers │   │   │   ├── FIRAnalytics+AppDelegate.h │   │   │   ├── FIRAnalytics+Consent.h │   │   │   ├── FIRAnalytics+OnDevice.h │   │   │   ├── FIRAnalytics.h │   │   │   ├── FIREventNames.h │   │   │   ├── FIRParameterNames.h │   │   │   ├── FIRUserPropertyNames.h │   │   │   ├── FirebaseAnalytics-Swift.h │   │   │   ├── FirebaseAnalytics-umbrella.h │   │   │   └── FirebaseAnalytics.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseAnalytics.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-ios-simulator.swiftsourceinfo │   │   │   │   └── x86_64-apple-ios-simulator.swiftsourceinfo │   │   │   ├── arm64-apple-ios-simulator.abi.json │   │   │   ├── arm64-apple-ios-simulator.private.swiftinterface │   │   │   ├── arm64-apple-ios-simulator.swiftdoc │   │   │   ├── arm64-apple-ios-simulator.swiftinterface │   │   │   ├── x86_64-apple-ios-simulator.abi.json │   │   │   ├── x86_64-apple-ios-simulator.private.swiftinterface │   │   │   ├── x86_64-apple-ios-simulator.swiftdoc │   │   │   └── x86_64-apple-ios-simulator.swiftinterface │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── FirebaseAnalytics.framework │   │   ├── FirebaseAnalytics -> Versions/Current/FirebaseAnalytics │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseAnalytics │   │   │   ├── Headers │   │   │   │   ├── FIRAnalytics+AppDelegate.h │   │   │   │   ├── FIRAnalytics+Consent.h │   │   │   │   ├── FIRAnalytics+OnDevice.h │   │   │   │   ├── FIRAnalytics.h │   │   │   │   ├── FIREventNames.h │   │   │   │   ├── FIRParameterNames.h │   │   │   │   ├── FIRUserPropertyNames.h │   │   │   │   ├── FirebaseAnalytics-Swift.h │   │   │   │   ├── FirebaseAnalytics-umbrella.h │   │   │   │   └── FirebaseAnalytics.h │   │   │   ├── Modules │   │   │   │   ├── FirebaseAnalytics.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-macos.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-macos.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-macos.abi.json │   │   │   │   │   ├── arm64-apple-macos.private.swiftinterface │   │   │   │   │   ├── arm64-apple-macos.swiftdoc │   │   │   │   │   ├── arm64-apple-macos.swiftinterface │   │   │   │   │   ├── x86_64-apple-macos.abi.json │   │   │   │   │   ├── x86_64-apple-macos.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-macos.swiftdoc │   │   │   │   │   └── x86_64-apple-macos.swiftinterface │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── FirebaseAnalytics.framework │   │   ├── FirebaseAnalytics │   │   ├── Headers │   │   │   ├── FIRAnalytics+AppDelegate.h │   │   │   ├── FIRAnalytics+Consent.h │   │   │   ├── FIRAnalytics+OnDevice.h │   │   │   ├── FIRAnalytics.h │   │   │   ├── FIREventNames.h │   │   │   ├── FIRParameterNames.h │   │   │   ├── FIRUserPropertyNames.h │   │   │   ├── FirebaseAnalytics-Swift.h │   │   │   ├── FirebaseAnalytics-umbrella.h │   │   │   └── FirebaseAnalytics.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseAnalytics.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-tvos.swiftsourceinfo │   │   │   ├── arm64-apple-tvos.abi.json │   │   │   ├── arm64-apple-tvos.private.swiftinterface │   │   │   ├── arm64-apple-tvos.swiftdoc │   │   │   └── arm64-apple-tvos.swiftinterface │   │   └── module.modulemap │   └── tvos-arm64_x86_64-simulator │   └── FirebaseAnalytics.framework │   ├── FirebaseAnalytics │   ├── Headers │   │   ├── FIRAnalytics+AppDelegate.h │   │   ├── FIRAnalytics+Consent.h │   │   ├── FIRAnalytics+OnDevice.h │   │   ├── FIRAnalytics.h │   │   ├── FIREventNames.h │   │   ├── FIRParameterNames.h │   │   ├── FIRUserPropertyNames.h │   │   ├── FirebaseAnalytics-Swift.h │   │   ├── FirebaseAnalytics-umbrella.h │   │   └── FirebaseAnalytics.h │   ├── Info.plist │   └── Modules │   ├── FirebaseAnalytics.swiftmodule │   │   ├── Project │   │   │   ├── arm64-apple-tvos-simulator.swiftsourceinfo │   │   │   └── x86_64-apple-tvos-simulator.swiftsourceinfo │   │   ├── arm64-apple-tvos-simulator.abi.json │   │   ├── arm64-apple-tvos-simulator.private.swiftinterface │   │   ├── arm64-apple-tvos-simulator.swiftdoc │   │   ├── arm64-apple-tvos-simulator.swiftinterface │   │   ├── x86_64-apple-tvos-simulator.abi.json │   │   ├── x86_64-apple-tvos-simulator.private.swiftinterface │   │   ├── x86_64-apple-tvos-simulator.swiftdoc │   │   └── x86_64-apple-tvos-simulator.swiftinterface │   └── module.modulemap ├── FirebaseCore.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── FirebaseCore.framework │   │   ├── FirebaseCore │   │   ├── FirebaseCore_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRApp.h │   │   │   ├── FIRConfiguration.h │   │   │   ├── FIRLoggerLevel.h │   │   │   ├── FIROptions.h │   │   │   ├── FIRVersion.h │   │   │   ├── FirebaseCore-umbrella.h │   │   │   └── FirebaseCore.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── FirebaseCore.framework │   │   ├── FirebaseCore -> Versions/Current/FirebaseCore │   │   ├── FirebaseCore_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseCore │   │   │   ├── Headers │   │   │   │   ├── FIRApp.h │   │   │   │   ├── FIRConfiguration.h │   │   │   │   ├── FIRLoggerLevel.h │   │   │   │   ├── FIROptions.h │   │   │   │   ├── FIRVersion.h │   │   │   │   ├── FirebaseCore-umbrella.h │   │   │   │   └── FirebaseCore.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── FirebaseCore_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── FirebaseCore.framework │   │   ├── FirebaseCore │   │   ├── FirebaseCore_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRApp.h │   │   │   ├── FIRConfiguration.h │   │   │   ├── FIRLoggerLevel.h │   │   │   ├── FIROptions.h │   │   │   ├── FIRVersion.h │   │   │   ├── FirebaseCore-umbrella.h │   │   │   └── FirebaseCore.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── FirebaseCore.framework │   │   ├── FirebaseCore -> Versions/Current/FirebaseCore │   │   ├── FirebaseCore_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseCore │   │   │   ├── Headers │   │   │   │   ├── FIRApp.h │   │   │   │   ├── FIRConfiguration.h │   │   │   │   ├── FIRLoggerLevel.h │   │   │   │   ├── FIROptions.h │   │   │   │   ├── FIRVersion.h │   │   │   │   ├── FirebaseCore-umbrella.h │   │   │   │   └── FirebaseCore.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── FirebaseCore_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── FirebaseCore.framework │   │   ├── FirebaseCore │   │   ├── FirebaseCore_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRApp.h │   │   │   ├── FIRConfiguration.h │   │   │   ├── FIRLoggerLevel.h │   │   │   ├── FIROptions.h │   │   │   ├── FIRVersion.h │   │   │   ├── FirebaseCore-umbrella.h │   │   │   └── FirebaseCore.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── tvos-arm64_x86_64-simulator │   │   └── FirebaseCore.framework │   │   ├── FirebaseCore │   │   ├── FirebaseCore_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRApp.h │   │   │   ├── FIRConfiguration.h │   │   │   ├── FIRLoggerLevel.h │   │   │   ├── FIROptions.h │   │   │   ├── FIRVersion.h │   │   │   ├── FirebaseCore-umbrella.h │   │   │   └── FirebaseCore.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── watchos-arm64_arm64_32 │   │   └── FirebaseCore.framework │   │   ├── FirebaseCore │   │   ├── FirebaseCore_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRApp.h │   │   │   ├── FIRConfiguration.h │   │   │   ├── FIRLoggerLevel.h │   │   │   ├── FIROptions.h │   │   │   ├── FIRVersion.h │   │   │   ├── FirebaseCore-umbrella.h │   │   │   └── FirebaseCore.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   └── watchos-arm64_x86_64-simulator │   └── FirebaseCore.framework │   ├── FirebaseCore │   ├── FirebaseCore_Privacy.bundle │   │   ├── Info.plist │   │   └── PrivacyInfo.xcprivacy │   ├── Headers │   │   ├── FIRApp.h │   │   ├── FIRConfiguration.h │   │   ├── FIRLoggerLevel.h │   │   ├── FIROptions.h │   │   ├── FIRVersion.h │   │   ├── FirebaseCore-umbrella.h │   │   └── FirebaseCore.h │   ├── Info.plist │   └── Modules │   └── module.modulemap ├── FirebaseCoreInternal.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── FirebaseCoreInternal.framework │   │   ├── FirebaseCoreInternal │   │   ├── FirebaseCoreInternal_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FirebaseCoreInternal-Swift.h │   │   │   └── FirebaseCoreInternal-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseCoreInternal.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-ios.swiftsourceinfo │   │   │   ├── arm64-apple-ios.abi.json │   │   │   ├── arm64-apple-ios.private.swiftinterface │   │   │   ├── arm64-apple-ios.swiftdoc │   │   │   └── arm64-apple-ios.swiftinterface │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── FirebaseCoreInternal.framework │   │   ├── FirebaseCoreInternal -> Versions/Current/FirebaseCoreInternal │   │   ├── FirebaseCoreInternal_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseCoreInternal │   │   │   ├── Headers │   │   │   │   ├── FirebaseCoreInternal-Swift.h │   │   │   │   └── FirebaseCoreInternal-umbrella.h │   │   │   ├── Modules │   │   │   │   ├── FirebaseCoreInternal.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-ios-macabi.abi.json │   │   │   │   │   ├── arm64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftdoc │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.abi.json │   │   │   │   │   ├── x86_64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.swiftdoc │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftinterface │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── FirebaseCoreInternal_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── FirebaseCoreInternal.framework │   │   ├── FirebaseCoreInternal │   │   ├── FirebaseCoreInternal_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FirebaseCoreInternal-Swift.h │   │   │   └── FirebaseCoreInternal-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseCoreInternal.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-ios-simulator.swiftsourceinfo │   │   │   │   └── x86_64-apple-ios-simulator.swiftsourceinfo │   │   │   ├── arm64-apple-ios-simulator.abi.json │   │   │   ├── arm64-apple-ios-simulator.private.swiftinterface │   │   │   ├── arm64-apple-ios-simulator.swiftdoc │   │   │   ├── arm64-apple-ios-simulator.swiftinterface │   │   │   ├── x86_64-apple-ios-simulator.abi.json │   │   │   ├── x86_64-apple-ios-simulator.private.swiftinterface │   │   │   ├── x86_64-apple-ios-simulator.swiftdoc │   │   │   └── x86_64-apple-ios-simulator.swiftinterface │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── FirebaseCoreInternal.framework │   │   ├── FirebaseCoreInternal -> Versions/Current/FirebaseCoreInternal │   │   ├── FirebaseCoreInternal_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseCoreInternal │   │   │   ├── Headers │   │   │   │   ├── FirebaseCoreInternal-Swift.h │   │   │   │   └── FirebaseCoreInternal-umbrella.h │   │   │   ├── Modules │   │   │   │   ├── FirebaseCoreInternal.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-macos.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-macos.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-macos.abi.json │   │   │   │   │   ├── arm64-apple-macos.private.swiftinterface │   │   │   │   │   ├── arm64-apple-macos.swiftdoc │   │   │   │   │   ├── arm64-apple-macos.swiftinterface │   │   │   │   │   ├── x86_64-apple-macos.abi.json │   │   │   │   │   ├── x86_64-apple-macos.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-macos.swiftdoc │   │   │   │   │   └── x86_64-apple-macos.swiftinterface │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── FirebaseCoreInternal_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── FirebaseCoreInternal.framework │   │   ├── FirebaseCoreInternal │   │   ├── FirebaseCoreInternal_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FirebaseCoreInternal-Swift.h │   │   │   └── FirebaseCoreInternal-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseCoreInternal.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-tvos.swiftsourceinfo │   │   │   ├── arm64-apple-tvos.abi.json │   │   │   ├── arm64-apple-tvos.private.swiftinterface │   │   │   ├── arm64-apple-tvos.swiftdoc │   │   │   └── arm64-apple-tvos.swiftinterface │   │   └── module.modulemap │   ├── tvos-arm64_x86_64-simulator │   │   └── FirebaseCoreInternal.framework │   │   ├── FirebaseCoreInternal │   │   ├── FirebaseCoreInternal_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FirebaseCoreInternal-Swift.h │   │   │   └── FirebaseCoreInternal-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseCoreInternal.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-tvos-simulator.swiftsourceinfo │   │   │   │   └── x86_64-apple-tvos-simulator.swiftsourceinfo │   │   │   ├── arm64-apple-tvos-simulator.abi.json │   │   │   ├── arm64-apple-tvos-simulator.private.swiftinterface │   │   │   ├── arm64-apple-tvos-simulator.swiftdoc │   │   │   ├── arm64-apple-tvos-simulator.swiftinterface │   │   │   ├── x86_64-apple-tvos-simulator.abi.json │   │   │   ├── x86_64-apple-tvos-simulator.private.swiftinterface │   │   │   ├── x86_64-apple-tvos-simulator.swiftdoc │   │   │   └── x86_64-apple-tvos-simulator.swiftinterface │   │   └── module.modulemap │   ├── watchos-arm64_arm64_32 │   │   └── FirebaseCoreInternal.framework │   │   ├── FirebaseCoreInternal │   │   ├── FirebaseCoreInternal_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FirebaseCoreInternal-Swift.h │   │   │   └── FirebaseCoreInternal-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseCoreInternal.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-watchos.swiftsourceinfo │   │   │   │   └── arm64_32-apple-watchos.swiftsourceinfo │   │   │   ├── arm64-apple-watchos.abi.json │   │   │   ├── arm64-apple-watchos.private.swiftinterface │   │   │   ├── arm64-apple-watchos.swiftdoc │   │   │   ├── arm64-apple-watchos.swiftinterface │   │   │   ├── arm64_32-apple-watchos.abi.json │   │   │   ├── arm64_32-apple-watchos.private.swiftinterface │   │   │   ├── arm64_32-apple-watchos.swiftdoc │   │   │   └── arm64_32-apple-watchos.swiftinterface │   │   └── module.modulemap │   └── watchos-arm64_x86_64-simulator │   └── FirebaseCoreInternal.framework │   ├── FirebaseCoreInternal │   ├── FirebaseCoreInternal_Privacy.bundle │   │   ├── Info.plist │   │   └── PrivacyInfo.xcprivacy │   ├── Headers │   │   ├── FirebaseCoreInternal-Swift.h │   │   └── FirebaseCoreInternal-umbrella.h │   ├── Info.plist │   └── Modules │   ├── FirebaseCoreInternal.swiftmodule │   │   ├── Project │   │   │   ├── arm64-apple-watchos-simulator.swiftsourceinfo │   │   │   └── x86_64-apple-watchos-simulator.swiftsourceinfo │   │   ├── arm64-apple-watchos-simulator.abi.json │   │   ├── arm64-apple-watchos-simulator.private.swiftinterface │   │   ├── arm64-apple-watchos-simulator.swiftdoc │   │   ├── arm64-apple-watchos-simulator.swiftinterface │   │   ├── x86_64-apple-watchos-simulator.abi.json │   │   ├── x86_64-apple-watchos-simulator.private.swiftinterface │   │   ├── x86_64-apple-watchos-simulator.swiftdoc │   │   └── x86_64-apple-watchos-simulator.swiftinterface │   └── module.modulemap ├── FirebaseInstallations.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── FirebaseInstallations.framework │   │   ├── FirebaseInstallations │   │   ├── FirebaseInstallations_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRInstallations.h │   │   │   ├── FIRInstallationsAuthTokenResult.h │   │   │   ├── FIRInstallationsErrors.h │   │   │   ├── FirebaseInstallations-umbrella.h │   │   │   └── FirebaseInstallations.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── FirebaseInstallations.framework │   │   ├── FirebaseInstallations -> Versions/Current/FirebaseInstallations │   │   ├── FirebaseInstallations_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseInstallations │   │   │   ├── Headers │   │   │   │   ├── FIRInstallations.h │   │   │   │   ├── FIRInstallationsAuthTokenResult.h │   │   │   │   ├── FIRInstallationsErrors.h │   │   │   │   ├── FirebaseInstallations-umbrella.h │   │   │   │   └── FirebaseInstallations.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── FirebaseInstallations_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── FirebaseInstallations.framework │   │   ├── FirebaseInstallations │   │   ├── FirebaseInstallations_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRInstallations.h │   │   │   ├── FIRInstallationsAuthTokenResult.h │   │   │   ├── FIRInstallationsErrors.h │   │   │   ├── FirebaseInstallations-umbrella.h │   │   │   └── FirebaseInstallations.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── FirebaseInstallations.framework │   │   ├── FirebaseInstallations -> Versions/Current/FirebaseInstallations │   │   ├── FirebaseInstallations_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseInstallations │   │   │   ├── Headers │   │   │   │   ├── FIRInstallations.h │   │   │   │   ├── FIRInstallationsAuthTokenResult.h │   │   │   │   ├── FIRInstallationsErrors.h │   │   │   │   ├── FirebaseInstallations-umbrella.h │   │   │   │   └── FirebaseInstallations.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── FirebaseInstallations_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── FirebaseInstallations.framework │   │   ├── FirebaseInstallations │   │   ├── FirebaseInstallations_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRInstallations.h │   │   │   ├── FIRInstallationsAuthTokenResult.h │   │   │   ├── FIRInstallationsErrors.h │   │   │   ├── FirebaseInstallations-umbrella.h │   │   │   └── FirebaseInstallations.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── tvos-arm64_x86_64-simulator │   │   └── FirebaseInstallations.framework │   │   ├── FirebaseInstallations │   │   ├── FirebaseInstallations_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRInstallations.h │   │   │   ├── FIRInstallationsAuthTokenResult.h │   │   │   ├── FIRInstallationsErrors.h │   │   │   ├── FirebaseInstallations-umbrella.h │   │   │   └── FirebaseInstallations.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── watchos-arm64_arm64_32 │   │   └── FirebaseInstallations.framework │   │   ├── FirebaseInstallations │   │   ├── FirebaseInstallations_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRInstallations.h │   │   │   ├── FIRInstallationsAuthTokenResult.h │   │   │   ├── FIRInstallationsErrors.h │   │   │   ├── FirebaseInstallations-umbrella.h │   │   │   └── FirebaseInstallations.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   └── watchos-arm64_x86_64-simulator │   └── FirebaseInstallations.framework │   ├── FirebaseInstallations │   ├── FirebaseInstallations_Privacy.bundle │   │   ├── Info.plist │   │   └── PrivacyInfo.xcprivacy │   ├── Headers │   │   ├── FIRInstallations.h │   │   ├── FIRInstallationsAuthTokenResult.h │   │   ├── FIRInstallationsErrors.h │   │   ├── FirebaseInstallations-umbrella.h │   │   └── FirebaseInstallations.h │   ├── Info.plist │   └── Modules │   └── module.modulemap ├── GoogleAppMeasurement.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── GoogleAppMeasurement.framework │   │   ├── GoogleAppMeasurement │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── GoogleAppMeasurement.framework │   │   ├── GoogleAppMeasurement -> Versions/Current/GoogleAppMeasurement │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── GoogleAppMeasurement │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── GoogleAppMeasurement.framework │   │   ├── GoogleAppMeasurement │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── GoogleAppMeasurement.framework │   │   ├── GoogleAppMeasurement -> Versions/Current/GoogleAppMeasurement │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── GoogleAppMeasurement │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── GoogleAppMeasurement.framework │   │   ├── GoogleAppMeasurement │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   └── tvos-arm64_x86_64-simulator │   └── GoogleAppMeasurement.framework │   ├── GoogleAppMeasurement │   ├── Info.plist │   └── Modules │   └── module.modulemap ├── GoogleAppMeasurementIdentitySupport.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── GoogleAppMeasurementIdentitySupport.framework │   │   ├── GoogleAppMeasurementIdentitySupport │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── GoogleAppMeasurementIdentitySupport.framework │   │   ├── GoogleAppMeasurementIdentitySupport -> Versions/Current/GoogleAppMeasurementIdentitySupport │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── GoogleAppMeasurementIdentitySupport │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── GoogleAppMeasurementIdentitySupport.framework │   │   ├── GoogleAppMeasurementIdentitySupport │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── GoogleAppMeasurementIdentitySupport.framework │   │   ├── GoogleAppMeasurementIdentitySupport -> Versions/Current/GoogleAppMeasurementIdentitySupport │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── GoogleAppMeasurementIdentitySupport │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── GoogleAppMeasurementIdentitySupport.framework │   │   ├── GoogleAppMeasurementIdentitySupport │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   └── tvos-arm64_x86_64-simulator │   └── GoogleAppMeasurementIdentitySupport.framework │   ├── GoogleAppMeasurementIdentitySupport │   ├── Info.plist │   └── Modules │   └── module.modulemap ├── GoogleUtilities.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── GoogleUtilities.framework │   │   ├── GoogleUtilities │   │   ├── GoogleUtilities_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── GULAppDelegateSwizzler.h │   │   │   ├── GULAppEnvironmentUtil.h │   │   │   ├── GULApplication.h │   │   │   ├── GULHeartbeatDateStorable.h │   │   │   ├── GULHeartbeatDateStorage.h │   │   │   ├── GULHeartbeatDateStorageUserDefaults.h │   │   │   ├── GULKeychainStorage.h │   │   │   ├── GULKeychainUtils.h │   │   │   ├── GULLogger.h │   │   │   ├── GULLoggerLevel.h │   │   │   ├── GULMutableDictionary.h │   │   │   ├── GULNSData+zlib.h │   │   │   ├── GULNetwork.h │   │   │   ├── GULNetworkConstants.h │   │   │   ├── GULNetworkInfo.h │   │   │   ├── GULNetworkLoggerProtocol.h │   │   │   ├── GULNetworkMessageCode.h │   │   │   ├── GULNetworkURLSession.h │   │   │   ├── GULObjectSwizzler.h │   │   │   ├── GULOriginalIMPConvenienceMacros.h │   │   │   ├── GULReachabilityChecker.h │   │   │   ├── GULSceneDelegateSwizzler.h │   │   │   ├── GULSecureCoding.h │   │   │   ├── GULSwizzledObject.h │   │   │   ├── GULSwizzler.h │   │   │   ├── GULURLSessionDataResponse.h │   │   │   ├── GULUserDefaults.h │   │   │   ├── GoogleUtilities-umbrella.h │   │   │   └── NSURLSession+GULPromises.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── GoogleUtilities.framework │   │   ├── GoogleUtilities -> Versions/Current/GoogleUtilities │   │   ├── GoogleUtilities_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── GoogleUtilities │   │   │   ├── Headers │   │   │   │   ├── GULAppDelegateSwizzler.h │   │   │   │   ├── GULAppEnvironmentUtil.h │   │   │   │   ├── GULApplication.h │   │   │   │   ├── GULHeartbeatDateStorable.h │   │   │   │   ├── GULHeartbeatDateStorage.h │   │   │   │   ├── GULHeartbeatDateStorageUserDefaults.h │   │   │   │   ├── GULKeychainStorage.h │   │   │   │   ├── GULKeychainUtils.h │   │   │   │   ├── GULLogger.h │   │   │   │   ├── GULLoggerLevel.h │   │   │   │   ├── GULMutableDictionary.h │   │   │   │   ├── GULNSData+zlib.h │   │   │   │   ├── GULNetwork.h │   │   │   │   ├── GULNetworkConstants.h │   │   │   │   ├── GULNetworkInfo.h │   │   │   │   ├── GULNetworkLoggerProtocol.h │   │   │   │   ├── GULNetworkMessageCode.h │   │   │   │   ├── GULNetworkURLSession.h │   │   │   │   ├── GULObjectSwizzler.h │   │   │   │   ├── GULOriginalIMPConvenienceMacros.h │   │   │   │   ├── GULReachabilityChecker.h │   │   │   │   ├── GULSceneDelegateSwizzler.h │   │   │   │   ├── GULSecureCoding.h │   │   │   │   ├── GULSwizzledObject.h │   │   │   │   ├── GULSwizzler.h │   │   │   │   ├── GULURLSessionDataResponse.h │   │   │   │   ├── GULUserDefaults.h │   │   │   │   ├── GoogleUtilities-umbrella.h │   │   │   │   └── NSURLSession+GULPromises.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── GoogleUtilities_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── GoogleUtilities.framework │   │   ├── GoogleUtilities │   │   ├── GoogleUtilities_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── GULAppDelegateSwizzler.h │   │   │   ├── GULAppEnvironmentUtil.h │   │   │   ├── GULApplication.h │   │   │   ├── GULHeartbeatDateStorable.h │   │   │   ├── GULHeartbeatDateStorage.h │   │   │   ├── GULHeartbeatDateStorageUserDefaults.h │   │   │   ├── GULKeychainStorage.h │   │   │   ├── GULKeychainUtils.h │   │   │   ├── GULLogger.h │   │   │   ├── GULLoggerLevel.h │   │   │   ├── GULMutableDictionary.h │   │   │   ├── GULNSData+zlib.h │   │   │   ├── GULNetwork.h │   │   │   ├── GULNetworkConstants.h │   │   │   ├── GULNetworkInfo.h │   │   │   ├── GULNetworkLoggerProtocol.h │   │   │   ├── GULNetworkMessageCode.h │   │   │   ├── GULNetworkURLSession.h │   │   │   ├── GULObjectSwizzler.h │   │   │   ├── GULOriginalIMPConvenienceMacros.h │   │   │   ├── GULReachabilityChecker.h │   │   │   ├── GULSceneDelegateSwizzler.h │   │   │   ├── GULSecureCoding.h │   │   │   ├── GULSwizzledObject.h │   │   │   ├── GULSwizzler.h │   │   │   ├── GULURLSessionDataResponse.h │   │   │   ├── GULUserDefaults.h │   │   │   ├── GoogleUtilities-umbrella.h │   │   │   └── NSURLSession+GULPromises.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── GoogleUtilities.framework │   │   ├── GoogleUtilities -> Versions/Current/GoogleUtilities │   │   ├── GoogleUtilities_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── GoogleUtilities │   │   │   ├── Headers │   │   │   │   ├── GULAppDelegateSwizzler.h │   │   │   │   ├── GULAppEnvironmentUtil.h │   │   │   │   ├── GULApplication.h │   │   │   │   ├── GULHeartbeatDateStorable.h │   │   │   │   ├── GULHeartbeatDateStorage.h │   │   │   │   ├── GULHeartbeatDateStorageUserDefaults.h │   │   │   │   ├── GULKeychainStorage.h │   │   │   │   ├── GULKeychainUtils.h │   │   │   │   ├── GULLogger.h │   │   │   │   ├── GULLoggerLevel.h │   │   │   │   ├── GULMutableDictionary.h │   │   │   │   ├── GULNSData+zlib.h │   │   │   │   ├── GULNetwork.h │   │   │   │   ├── GULNetworkConstants.h │   │   │   │   ├── GULNetworkInfo.h │   │   │   │   ├── GULNetworkLoggerProtocol.h │   │   │   │   ├── GULNetworkMessageCode.h │   │   │   │   ├── GULNetworkURLSession.h │   │   │   │   ├── GULOriginalIMPConvenienceMacros.h │   │   │   │   ├── GULReachabilityChecker.h │   │   │   │   ├── GULSceneDelegateSwizzler.h │   │   │   │   ├── GULSecureCoding.h │   │   │   │   ├── GULSwizzler.h │   │   │   │   ├── GULURLSessionDataResponse.h │   │   │   │   ├── GULUserDefaults.h │   │   │   │   ├── GoogleUtilities-umbrella.h │   │   │   │   └── NSURLSession+GULPromises.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── GoogleUtilities_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── GoogleUtilities.framework │   │   ├── GoogleUtilities │   │   ├── GoogleUtilities_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── GULAppDelegateSwizzler.h │   │   │   ├── GULAppEnvironmentUtil.h │   │   │   ├── GULApplication.h │   │   │   ├── GULHeartbeatDateStorable.h │   │   │   ├── GULHeartbeatDateStorage.h │   │   │   ├── GULHeartbeatDateStorageUserDefaults.h │   │   │   ├── GULKeychainStorage.h │   │   │   ├── GULKeychainUtils.h │   │   │   ├── GULLogger.h │   │   │   ├── GULLoggerLevel.h │   │   │   ├── GULMutableDictionary.h │   │   │   ├── GULNSData+zlib.h │   │   │   ├── GULNetwork.h │   │   │   ├── GULNetworkConstants.h │   │   │   ├── GULNetworkInfo.h │   │   │   ├── GULNetworkLoggerProtocol.h │   │   │   ├── GULNetworkMessageCode.h │   │   │   ├── GULNetworkURLSession.h │   │   │   ├── GULObjectSwizzler.h │   │   │   ├── GULOriginalIMPConvenienceMacros.h │   │   │   ├── GULReachabilityChecker.h │   │   │   ├── GULSceneDelegateSwizzler.h │   │   │   ├── GULSecureCoding.h │   │   │   ├── GULSwizzledObject.h │   │   │   ├── GULSwizzler.h │   │   │   ├── GULURLSessionDataResponse.h │   │   │   ├── GULUserDefaults.h │   │   │   ├── GoogleUtilities-umbrella.h │   │   │   └── NSURLSession+GULPromises.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── tvos-arm64_x86_64-simulator │   │   └── GoogleUtilities.framework │   │   ├── GoogleUtilities │   │   ├── GoogleUtilities_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── GULAppDelegateSwizzler.h │   │   │   ├── GULAppEnvironmentUtil.h │   │   │   ├── GULApplication.h │   │   │   ├── GULHeartbeatDateStorable.h │   │   │   ├── GULHeartbeatDateStorage.h │   │   │   ├── GULHeartbeatDateStorageUserDefaults.h │   │   │   ├── GULKeychainStorage.h │   │   │   ├── GULKeychainUtils.h │   │   │   ├── GULLogger.h │   │   │   ├── GULLoggerLevel.h │   │   │   ├── GULMutableDictionary.h │   │   │   ├── GULNSData+zlib.h │   │   │   ├── GULNetwork.h │   │   │   ├── GULNetworkConstants.h │   │   │   ├── GULNetworkInfo.h │   │   │   ├── GULNetworkLoggerProtocol.h │   │   │   ├── GULNetworkMessageCode.h │   │   │   ├── GULNetworkURLSession.h │   │   │   ├── GULObjectSwizzler.h │   │   │   ├── GULOriginalIMPConvenienceMacros.h │   │   │   ├── GULReachabilityChecker.h │   │   │   ├── GULSceneDelegateSwizzler.h │   │   │   ├── GULSecureCoding.h │   │   │   ├── GULSwizzledObject.h │   │   │   ├── GULSwizzler.h │   │   │   ├── GULURLSessionDataResponse.h │   │   │   ├── GULUserDefaults.h │   │   │   ├── GoogleUtilities-umbrella.h │   │   │   └── NSURLSession+GULPromises.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── watchos-arm64_arm64_32 │   │   └── GoogleUtilities.framework │   │   ├── GoogleUtilities │   │   ├── GoogleUtilities_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── GULAppDelegateSwizzler.h │   │   │   ├── GULAppEnvironmentUtil.h │   │   │   ├── GULApplication.h │   │   │   ├── GULHeartbeatDateStorable.h │   │   │   ├── GULHeartbeatDateStorage.h │   │   │   ├── GULHeartbeatDateStorageUserDefaults.h │   │   │   ├── GULKeychainStorage.h │   │   │   ├── GULKeychainUtils.h │   │   │   ├── GULLogger.h │   │   │   ├── GULLoggerLevel.h │   │   │   ├── GULMutableDictionary.h │   │   │   ├── GULNSData+zlib.h │   │   │   ├── GULNetwork.h │   │   │   ├── GULNetworkConstants.h │   │   │   ├── GULNetworkInfo.h │   │   │   ├── GULNetworkLoggerProtocol.h │   │   │   ├── GULNetworkMessageCode.h │   │   │   ├── GULNetworkURLSession.h │   │   │   ├── GULReachabilityChecker.h │   │   │   ├── GULSceneDelegateSwizzler.h │   │   │   ├── GULSecureCoding.h │   │   │   ├── GULURLSessionDataResponse.h │   │   │   ├── GULUserDefaults.h │   │   │   ├── GoogleUtilities-umbrella.h │   │   │   └── NSURLSession+GULPromises.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   └── watchos-arm64_x86_64-simulator │   └── GoogleUtilities.framework │   ├── GoogleUtilities │   ├── GoogleUtilities_Privacy.bundle │   │   ├── Info.plist │   │   └── PrivacyInfo.xcprivacy │   ├── Headers │   │   ├── GULAppDelegateSwizzler.h │   │   ├── GULAppEnvironmentUtil.h │   │   ├── GULApplication.h │   │   ├── GULHeartbeatDateStorable.h │   │   ├── GULHeartbeatDateStorage.h │   │   ├── GULHeartbeatDateStorageUserDefaults.h │   │   ├── GULKeychainStorage.h │   │   ├── GULKeychainUtils.h │   │   ├── GULLogger.h │   │   ├── GULLoggerLevel.h │   │   ├── GULMutableDictionary.h │   │   ├── GULNSData+zlib.h │   │   ├── GULNetwork.h │   │   ├── GULNetworkConstants.h │   │   ├── GULNetworkInfo.h │   │   ├── GULNetworkLoggerProtocol.h │   │   ├── GULNetworkMessageCode.h │   │   ├── GULNetworkURLSession.h │   │   ├── GULReachabilityChecker.h │   │   ├── GULSceneDelegateSwizzler.h │   │   ├── GULSecureCoding.h │   │   ├── GULURLSessionDataResponse.h │   │   ├── GULUserDefaults.h │   │   ├── GoogleUtilities-umbrella.h │   │   └── NSURLSession+GULPromises.h │   ├── Info.plist │   └── Modules │   └── module.modulemap └── nanopb.xcframework ├── Info.plist ├── _CodeSignature │   ├── CodeDirectory │   ├── CodeRequirements │   ├── CodeRequirements-1 │   ├── CodeResources │   └── CodeSignature ├── ios-arm64 │   └── nanopb.framework │   ├── Headers │   │   ├── nanopb-umbrella.h │   │   ├── pb.h │   │   ├── pb_common.h │   │   ├── pb_decode.h │   │   └── pb_encode.h │   ├── Info.plist │   ├── Modules │   │   └── module.modulemap │   ├── nanopb │   └── nanopb_Privacy.bundle │   ├── Info.plist │   └── PrivacyInfo.xcprivacy ├── ios-arm64_x86_64-maccatalyst │   └── nanopb.framework │   ├── Headers -> Versions/Current/Headers │   ├── Modules -> Versions/Current/Modules │   ├── Resources -> Versions/Current/Resources │   ├── Versions │   │   ├── A │   │   │   ├── Headers │   │   │   │   ├── nanopb-umbrella.h │   │   │   │   ├── pb.h │   │   │   │   ├── pb_common.h │   │   │   │   ├── pb_decode.h │   │   │   │   └── pb_encode.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   ├── Resources │   │   │   │   ├── Info.plist │   │   │   │   └── nanopb_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── nanopb │   │   └── Current -> A │   ├── nanopb -> Versions/Current/nanopb │   └── nanopb_Privacy.bundle │   └── Contents │   ├── Info.plist │   └── Resources │   └── PrivacyInfo.xcprivacy ├── ios-arm64_x86_64-simulator │   └── nanopb.framework │   ├── Headers │   │   ├── nanopb-umbrella.h │   │   ├── pb.h │   │   ├── pb_common.h │   │   ├── pb_decode.h │   │   └── pb_encode.h │   ├── Info.plist │   ├── Modules │   │   └── module.modulemap │   ├── nanopb │   └── nanopb_Privacy.bundle │   ├── Info.plist │   └── PrivacyInfo.xcprivacy ├── macos-arm64_x86_64 │   └── nanopb.framework │   ├── Headers -> Versions/Current/Headers │   ├── Modules -> Versions/Current/Modules │   ├── Resources -> Versions/Current/Resources │   ├── Versions │   │   ├── A │   │   │   ├── Headers │   │   │   │   ├── nanopb-umbrella.h │   │   │   │   ├── pb.h │   │   │   │   ├── pb_common.h │   │   │   │   ├── pb_decode.h │   │   │   │   └── pb_encode.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   ├── Resources │   │   │   │   ├── Info.plist │   │   │   │   └── nanopb_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── nanopb │   │   └── Current -> A │   ├── nanopb -> Versions/Current/nanopb │   └── nanopb_Privacy.bundle │   └── Contents │   ├── Info.plist │   └── Resources │   └── PrivacyInfo.xcprivacy ├── tvos-arm64 │   └── nanopb.framework │   ├── Headers │   │   ├── nanopb-umbrella.h │   │   ├── pb.h │   │   ├── pb_common.h │   │   ├── pb_decode.h │   │   └── pb_encode.h │   ├── Info.plist │   ├── Modules │   │   └── module.modulemap │   ├── nanopb │   └── nanopb_Privacy.bundle │   ├── Info.plist │   └── PrivacyInfo.xcprivacy ├── tvos-arm64_x86_64-simulator │   └── nanopb.framework │   ├── Headers │   │   ├── nanopb-umbrella.h │   │   ├── pb.h │   │   ├── pb_common.h │   │   ├── pb_decode.h │   │   └── pb_encode.h │   ├── Info.plist │   ├── Modules │   │   └── module.modulemap │   ├── nanopb │   └── nanopb_Privacy.bundle │   ├── Info.plist │   └── PrivacyInfo.xcprivacy ├── watchos-arm64_arm64_32 │   └── nanopb.framework │   ├── Headers │   │   ├── nanopb-umbrella.h │   │   ├── pb.h │   │   ├── pb_common.h │   │   ├── pb_decode.h │   │   └── pb_encode.h │   ├── Info.plist │   ├── Modules │   │   └── module.modulemap │   ├── nanopb │   └── nanopb_Privacy.bundle │   ├── Info.plist │   └── PrivacyInfo.xcprivacy └── watchos-arm64_x86_64-simulator └── nanopb.framework ├── Headers │   ├── nanopb-umbrella.h │   ├── pb.h │   ├── pb_common.h │   ├── pb_decode.h │   └── pb_encode.h ├── Info.plist ├── Modules │   └── module.modulemap ├── nanopb └── nanopb_Privacy.bundle ├── Info.plist └── PrivacyInfo.xcprivacy 539 directories, 1120 files ```
FirebaseAuth ``` ./MyPackage/XCFrameworks/FirebaseAuth/ ├── FirebaseAppCheckInterop.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── FirebaseAppCheckInterop.framework │   │   ├── FirebaseAppCheckInterop │   │   ├── Headers │   │   │   ├── FIRAppCheckInterop.h │   │   │   ├── FIRAppCheckProtocol.h │   │   │   ├── FIRAppCheckTokenResultInterop.h │   │   │   ├── FirebaseAppCheckInterop-umbrella.h │   │   │   └── FirebaseAppCheckInterop.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── FirebaseAppCheckInterop.framework │   │   ├── FirebaseAppCheckInterop -> Versions/Current/FirebaseAppCheckInterop │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseAppCheckInterop │   │   │   ├── Headers │   │   │   │   ├── FIRAppCheckInterop.h │   │   │   │   ├── FIRAppCheckProtocol.h │   │   │   │   ├── FIRAppCheckTokenResultInterop.h │   │   │   │   ├── FirebaseAppCheckInterop-umbrella.h │   │   │   │   └── FirebaseAppCheckInterop.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── FirebaseAppCheckInterop.framework │   │   ├── FirebaseAppCheckInterop │   │   ├── Headers │   │   │   ├── FIRAppCheckInterop.h │   │   │   ├── FIRAppCheckProtocol.h │   │   │   ├── FIRAppCheckTokenResultInterop.h │   │   │   ├── FirebaseAppCheckInterop-umbrella.h │   │   │   └── FirebaseAppCheckInterop.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── FirebaseAppCheckInterop.framework │   │   ├── FirebaseAppCheckInterop -> Versions/Current/FirebaseAppCheckInterop │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseAppCheckInterop │   │   │   ├── Headers │   │   │   │   ├── FIRAppCheckInterop.h │   │   │   │   ├── FIRAppCheckProtocol.h │   │   │   │   ├── FIRAppCheckTokenResultInterop.h │   │   │   │   ├── FirebaseAppCheckInterop-umbrella.h │   │   │   │   └── FirebaseAppCheckInterop.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── FirebaseAppCheckInterop.framework │   │   ├── FirebaseAppCheckInterop │   │   ├── Headers │   │   │   ├── FIRAppCheckInterop.h │   │   │   ├── FIRAppCheckProtocol.h │   │   │   ├── FIRAppCheckTokenResultInterop.h │   │   │   ├── FirebaseAppCheckInterop-umbrella.h │   │   │   └── FirebaseAppCheckInterop.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── tvos-arm64_x86_64-simulator │   │   └── FirebaseAppCheckInterop.framework │   │   ├── FirebaseAppCheckInterop │   │   ├── Headers │   │   │   ├── FIRAppCheckInterop.h │   │   │   ├── FIRAppCheckProtocol.h │   │   │   ├── FIRAppCheckTokenResultInterop.h │   │   │   ├── FirebaseAppCheckInterop-umbrella.h │   │   │   └── FirebaseAppCheckInterop.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── watchos-arm64_arm64_32 │   │   └── FirebaseAppCheckInterop.framework │   │   ├── FirebaseAppCheckInterop │   │   ├── Headers │   │   │   ├── FIRAppCheckInterop.h │   │   │   ├── FIRAppCheckProtocol.h │   │   │   ├── FIRAppCheckTokenResultInterop.h │   │   │   ├── FirebaseAppCheckInterop-umbrella.h │   │   │   └── FirebaseAppCheckInterop.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   └── watchos-arm64_x86_64-simulator │   └── FirebaseAppCheckInterop.framework │   ├── FirebaseAppCheckInterop │   ├── Headers │   │   ├── FIRAppCheckInterop.h │   │   ├── FIRAppCheckProtocol.h │   │   ├── FIRAppCheckTokenResultInterop.h │   │   ├── FirebaseAppCheckInterop-umbrella.h │   │   └── FirebaseAppCheckInterop.h │   ├── Info.plist │   └── Modules │   └── module.modulemap ├── FirebaseAuth.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── FirebaseAuth.framework │   │   ├── FirebaseAuth │   │   ├── FirebaseAuth_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRActionCodeSettings.h │   │   │   ├── FIRAdditionalUserInfo.h │   │   │   ├── FIRAuth.h │   │   │   ├── FIRAuthAPNSTokenType.h │   │   │   ├── FIRAuthCredential.h │   │   │   ├── FIRAuthDataResult.h │   │   │   ├── FIRAuthErrors.h │   │   │   ├── FIRAuthSettings.h │   │   │   ├── FIRAuthTokenResult.h │   │   │   ├── FIRAuthUIDelegate.h │   │   │   ├── FIREmailAuthProvider.h │   │   │   ├── FIRFacebookAuthProvider.h │   │   │   ├── FIRFederatedAuthProvider.h │   │   │   ├── FIRGameCenterAuthProvider.h │   │   │   ├── FIRGitHubAuthProvider.h │   │   │   ├── FIRGoogleAuthProvider.h │   │   │   ├── FIRMultiFactor.h │   │   │   ├── FIRMultiFactorAssertion.h │   │   │   ├── FIRMultiFactorInfo.h │   │   │   ├── FIRMultiFactorResolver.h │   │   │   ├── FIRMultiFactorSession.h │   │   │   ├── FIROAuthCredential.h │   │   │   ├── FIROAuthProvider.h │   │   │   ├── FIRPhoneAuthCredential.h │   │   │   ├── FIRPhoneAuthProvider.h │   │   │   ├── FIRPhoneMultiFactorAssertion.h │   │   │   ├── FIRPhoneMultiFactorGenerator.h │   │   │   ├── FIRPhoneMultiFactorInfo.h │   │   │   ├── FIRTOTPMultiFactorAssertion.h │   │   │   ├── FIRTOTPMultiFactorGenerator.h │   │   │   ├── FIRTOTPSecret.h │   │   │   ├── FIRTwitterAuthProvider.h │   │   │   ├── FIRUser.h │   │   │   ├── FIRUserInfo.h │   │   │   ├── FIRUserMetadata.h │   │   │   ├── FirebaseAuth-umbrella.h │   │   │   └── FirebaseAuth.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── FirebaseAuth.framework │   │   ├── FirebaseAuth -> Versions/Current/FirebaseAuth │   │   ├── FirebaseAuth_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseAuth │   │   │   ├── Headers │   │   │   │   ├── FIRActionCodeSettings.h │   │   │   │   ├── FIRAdditionalUserInfo.h │   │   │   │   ├── FIRAuth.h │   │   │   │   ├── FIRAuthAPNSTokenType.h │   │   │   │   ├── FIRAuthCredential.h │   │   │   │   ├── FIRAuthDataResult.h │   │   │   │   ├── FIRAuthErrors.h │   │   │   │   ├── FIRAuthSettings.h │   │   │   │   ├── FIRAuthTokenResult.h │   │   │   │   ├── FIRAuthUIDelegate.h │   │   │   │   ├── FIREmailAuthProvider.h │   │   │   │   ├── FIRFacebookAuthProvider.h │   │   │   │   ├── FIRFederatedAuthProvider.h │   │   │   │   ├── FIRGameCenterAuthProvider.h │   │   │   │   ├── FIRGitHubAuthProvider.h │   │   │   │   ├── FIRGoogleAuthProvider.h │   │   │   │   ├── FIRMultiFactor.h │   │   │   │   ├── FIRMultiFactorAssertion.h │   │   │   │   ├── FIRMultiFactorInfo.h │   │   │   │   ├── FIRMultiFactorResolver.h │   │   │   │   ├── FIRMultiFactorSession.h │   │   │   │   ├── FIROAuthCredential.h │   │   │   │   ├── FIROAuthProvider.h │   │   │   │   ├── FIRPhoneAuthCredential.h │   │   │   │   ├── FIRPhoneAuthProvider.h │   │   │   │   ├── FIRPhoneMultiFactorAssertion.h │   │   │   │   ├── FIRPhoneMultiFactorGenerator.h │   │   │   │   ├── FIRPhoneMultiFactorInfo.h │   │   │   │   ├── FIRTOTPMultiFactorAssertion.h │   │   │   │   ├── FIRTOTPMultiFactorGenerator.h │   │   │   │   ├── FIRTOTPSecret.h │   │   │   │   ├── FIRTwitterAuthProvider.h │   │   │   │   ├── FIRUser.h │   │   │   │   ├── FIRUserInfo.h │   │   │   │   ├── FIRUserMetadata.h │   │   │   │   ├── FirebaseAuth-umbrella.h │   │   │   │   └── FirebaseAuth.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── FirebaseAuth_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── FirebaseAuth.framework │   │   ├── FirebaseAuth │   │   ├── FirebaseAuth_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRActionCodeSettings.h │   │   │   ├── FIRAdditionalUserInfo.h │   │   │   ├── FIRAuth.h │   │   │   ├── FIRAuthAPNSTokenType.h │   │   │   ├── FIRAuthCredential.h │   │   │   ├── FIRAuthDataResult.h │   │   │   ├── FIRAuthErrors.h │   │   │   ├── FIRAuthSettings.h │   │   │   ├── FIRAuthTokenResult.h │   │   │   ├── FIRAuthUIDelegate.h │   │   │   ├── FIREmailAuthProvider.h │   │   │   ├── FIRFacebookAuthProvider.h │   │   │   ├── FIRFederatedAuthProvider.h │   │   │   ├── FIRGameCenterAuthProvider.h │   │   │   ├── FIRGitHubAuthProvider.h │   │   │   ├── FIRGoogleAuthProvider.h │   │   │   ├── FIRMultiFactor.h │   │   │   ├── FIRMultiFactorAssertion.h │   │   │   ├── FIRMultiFactorInfo.h │   │   │   ├── FIRMultiFactorResolver.h │   │   │   ├── FIRMultiFactorSession.h │   │   │   ├── FIROAuthCredential.h │   │   │   ├── FIROAuthProvider.h │   │   │   ├── FIRPhoneAuthCredential.h │   │   │   ├── FIRPhoneAuthProvider.h │   │   │   ├── FIRPhoneMultiFactorAssertion.h │   │   │   ├── FIRPhoneMultiFactorGenerator.h │   │   │   ├── FIRPhoneMultiFactorInfo.h │   │   │   ├── FIRTOTPMultiFactorAssertion.h │   │   │   ├── FIRTOTPMultiFactorGenerator.h │   │   │   ├── FIRTOTPSecret.h │   │   │   ├── FIRTwitterAuthProvider.h │   │   │   ├── FIRUser.h │   │   │   ├── FIRUserInfo.h │   │   │   ├── FIRUserMetadata.h │   │   │   ├── FirebaseAuth-umbrella.h │   │   │   └── FirebaseAuth.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── FirebaseAuth.framework │   │   ├── FirebaseAuth -> Versions/Current/FirebaseAuth │   │   ├── FirebaseAuth_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseAuth │   │   │   ├── Headers │   │   │   │   ├── FIRActionCodeSettings.h │   │   │   │   ├── FIRAdditionalUserInfo.h │   │   │   │   ├── FIRAuth.h │   │   │   │   ├── FIRAuthAPNSTokenType.h │   │   │   │   ├── FIRAuthCredential.h │   │   │   │   ├── FIRAuthDataResult.h │   │   │   │   ├── FIRAuthErrors.h │   │   │   │   ├── FIRAuthSettings.h │   │   │   │   ├── FIRAuthTokenResult.h │   │   │   │   ├── FIRAuthUIDelegate.h │   │   │   │   ├── FIREmailAuthProvider.h │   │   │   │   ├── FIRFacebookAuthProvider.h │   │   │   │   ├── FIRFederatedAuthProvider.h │   │   │   │   ├── FIRGameCenterAuthProvider.h │   │   │   │   ├── FIRGitHubAuthProvider.h │   │   │   │   ├── FIRGoogleAuthProvider.h │   │   │   │   ├── FIRMultiFactor.h │   │   │   │   ├── FIRMultiFactorAssertion.h │   │   │   │   ├── FIRMultiFactorInfo.h │   │   │   │   ├── FIRMultiFactorResolver.h │   │   │   │   ├── FIRMultiFactorSession.h │   │   │   │   ├── FIROAuthCredential.h │   │   │   │   ├── FIROAuthProvider.h │   │   │   │   ├── FIRPhoneAuthCredential.h │   │   │   │   ├── FIRPhoneAuthProvider.h │   │   │   │   ├── FIRPhoneMultiFactorAssertion.h │   │   │   │   ├── FIRPhoneMultiFactorGenerator.h │   │   │   │   ├── FIRPhoneMultiFactorInfo.h │   │   │   │   ├── FIRTOTPMultiFactorAssertion.h │   │   │   │   ├── FIRTOTPMultiFactorGenerator.h │   │   │   │   ├── FIRTOTPSecret.h │   │   │   │   ├── FIRTwitterAuthProvider.h │   │   │   │   ├── FIRUser.h │   │   │   │   ├── FIRUserInfo.h │   │   │   │   ├── FIRUserMetadata.h │   │   │   │   ├── FirebaseAuth-umbrella.h │   │   │   │   └── FirebaseAuth.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── FirebaseAuth_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── FirebaseAuth.framework │   │   ├── FirebaseAuth │   │   ├── FirebaseAuth_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRActionCodeSettings.h │   │   │   ├── FIRAdditionalUserInfo.h │   │   │   ├── FIRAuth.h │   │   │   ├── FIRAuthAPNSTokenType.h │   │   │   ├── FIRAuthCredential.h │   │   │   ├── FIRAuthDataResult.h │   │   │   ├── FIRAuthErrors.h │   │   │   ├── FIRAuthSettings.h │   │   │   ├── FIRAuthTokenResult.h │   │   │   ├── FIRAuthUIDelegate.h │   │   │   ├── FIREmailAuthProvider.h │   │   │   ├── FIRFacebookAuthProvider.h │   │   │   ├── FIRFederatedAuthProvider.h │   │   │   ├── FIRGameCenterAuthProvider.h │   │   │   ├── FIRGitHubAuthProvider.h │   │   │   ├── FIRGoogleAuthProvider.h │   │   │   ├── FIRMultiFactor.h │   │   │   ├── FIRMultiFactorAssertion.h │   │   │   ├── FIRMultiFactorInfo.h │   │   │   ├── FIRMultiFactorResolver.h │   │   │   ├── FIRMultiFactorSession.h │   │   │   ├── FIROAuthCredential.h │   │   │   ├── FIROAuthProvider.h │   │   │   ├── FIRPhoneAuthCredential.h │   │   │   ├── FIRPhoneAuthProvider.h │   │   │   ├── FIRPhoneMultiFactorAssertion.h │   │   │   ├── FIRPhoneMultiFactorGenerator.h │   │   │   ├── FIRPhoneMultiFactorInfo.h │   │   │   ├── FIRTOTPMultiFactorAssertion.h │   │   │   ├── FIRTOTPMultiFactorGenerator.h │   │   │   ├── FIRTOTPSecret.h │   │   │   ├── FIRTwitterAuthProvider.h │   │   │   ├── FIRUser.h │   │   │   ├── FIRUserInfo.h │   │   │   ├── FIRUserMetadata.h │   │   │   ├── FirebaseAuth-umbrella.h │   │   │   └── FirebaseAuth.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── tvos-arm64_x86_64-simulator │   │   └── FirebaseAuth.framework │   │   ├── FirebaseAuth │   │   ├── FirebaseAuth_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRActionCodeSettings.h │   │   │   ├── FIRAdditionalUserInfo.h │   │   │   ├── FIRAuth.h │   │   │   ├── FIRAuthAPNSTokenType.h │   │   │   ├── FIRAuthCredential.h │   │   │   ├── FIRAuthDataResult.h │   │   │   ├── FIRAuthErrors.h │   │   │   ├── FIRAuthSettings.h │   │   │   ├── FIRAuthTokenResult.h │   │   │   ├── FIRAuthUIDelegate.h │   │   │   ├── FIREmailAuthProvider.h │   │   │   ├── FIRFacebookAuthProvider.h │   │   │   ├── FIRFederatedAuthProvider.h │   │   │   ├── FIRGameCenterAuthProvider.h │   │   │   ├── FIRGitHubAuthProvider.h │   │   │   ├── FIRGoogleAuthProvider.h │   │   │   ├── FIRMultiFactor.h │   │   │   ├── FIRMultiFactorAssertion.h │   │   │   ├── FIRMultiFactorInfo.h │   │   │   ├── FIRMultiFactorResolver.h │   │   │   ├── FIRMultiFactorSession.h │   │   │   ├── FIROAuthCredential.h │   │   │   ├── FIROAuthProvider.h │   │   │   ├── FIRPhoneAuthCredential.h │   │   │   ├── FIRPhoneAuthProvider.h │   │   │   ├── FIRPhoneMultiFactorAssertion.h │   │   │   ├── FIRPhoneMultiFactorGenerator.h │   │   │   ├── FIRPhoneMultiFactorInfo.h │   │   │   ├── FIRTOTPMultiFactorAssertion.h │   │   │   ├── FIRTOTPMultiFactorGenerator.h │   │   │   ├── FIRTOTPSecret.h │   │   │   ├── FIRTwitterAuthProvider.h │   │   │   ├── FIRUser.h │   │   │   ├── FIRUserInfo.h │   │   │   ├── FIRUserMetadata.h │   │   │   ├── FirebaseAuth-umbrella.h │   │   │   └── FirebaseAuth.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── watchos-arm64_arm64_32 │   │   └── FirebaseAuth.framework │   │   ├── FirebaseAuth │   │   ├── FirebaseAuth_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRActionCodeSettings.h │   │   │   ├── FIRAdditionalUserInfo.h │   │   │   ├── FIRAuth.h │   │   │   ├── FIRAuthAPNSTokenType.h │   │   │   ├── FIRAuthCredential.h │   │   │   ├── FIRAuthDataResult.h │   │   │   ├── FIRAuthErrors.h │   │   │   ├── FIRAuthSettings.h │   │   │   ├── FIRAuthTokenResult.h │   │   │   ├── FIRAuthUIDelegate.h │   │   │   ├── FIREmailAuthProvider.h │   │   │   ├── FIRFacebookAuthProvider.h │   │   │   ├── FIRFederatedAuthProvider.h │   │   │   ├── FIRGameCenterAuthProvider.h │   │   │   ├── FIRGitHubAuthProvider.h │   │   │   ├── FIRGoogleAuthProvider.h │   │   │   ├── FIRMultiFactor.h │   │   │   ├── FIRMultiFactorAssertion.h │   │   │   ├── FIRMultiFactorInfo.h │   │   │   ├── FIRMultiFactorResolver.h │   │   │   ├── FIRMultiFactorSession.h │   │   │   ├── FIROAuthCredential.h │   │   │   ├── FIROAuthProvider.h │   │   │   ├── FIRPhoneAuthCredential.h │   │   │   ├── FIRPhoneAuthProvider.h │   │   │   ├── FIRPhoneMultiFactorAssertion.h │   │   │   ├── FIRPhoneMultiFactorGenerator.h │   │   │   ├── FIRPhoneMultiFactorInfo.h │   │   │   ├── FIRTOTPMultiFactorAssertion.h │   │   │   ├── FIRTOTPMultiFactorGenerator.h │   │   │   ├── FIRTOTPSecret.h │   │   │   ├── FIRTwitterAuthProvider.h │   │   │   ├── FIRUser.h │   │   │   ├── FIRUserInfo.h │   │   │   ├── FIRUserMetadata.h │   │   │   ├── FirebaseAuth-umbrella.h │   │   │   └── FirebaseAuth.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   └── watchos-arm64_x86_64-simulator │   └── FirebaseAuth.framework │   ├── FirebaseAuth │   ├── FirebaseAuth_Privacy.bundle │   │   ├── Info.plist │   │   └── PrivacyInfo.xcprivacy │   ├── Headers │   │   ├── FIRActionCodeSettings.h │   │   ├── FIRAdditionalUserInfo.h │   │   ├── FIRAuth.h │   │   ├── FIRAuthAPNSTokenType.h │   │   ├── FIRAuthCredential.h │   │   ├── FIRAuthDataResult.h │   │   ├── FIRAuthErrors.h │   │   ├── FIRAuthSettings.h │   │   ├── FIRAuthTokenResult.h │   │   ├── FIRAuthUIDelegate.h │   │   ├── FIREmailAuthProvider.h │   │   ├── FIRFacebookAuthProvider.h │   │   ├── FIRFederatedAuthProvider.h │   │   ├── FIRGameCenterAuthProvider.h │   │   ├── FIRGitHubAuthProvider.h │   │   ├── FIRGoogleAuthProvider.h │   │   ├── FIRMultiFactor.h │   │   ├── FIRMultiFactorAssertion.h │   │   ├── FIRMultiFactorInfo.h │   │   ├── FIRMultiFactorResolver.h │   │   ├── FIRMultiFactorSession.h │   │   ├── FIROAuthCredential.h │   │   ├── FIROAuthProvider.h │   │   ├── FIRPhoneAuthCredential.h │   │   ├── FIRPhoneAuthProvider.h │   │   ├── FIRPhoneMultiFactorAssertion.h │   │   ├── FIRPhoneMultiFactorGenerator.h │   │   ├── FIRPhoneMultiFactorInfo.h │   │   ├── FIRTOTPMultiFactorAssertion.h │   │   ├── FIRTOTPMultiFactorGenerator.h │   │   ├── FIRTOTPSecret.h │   │   ├── FIRTwitterAuthProvider.h │   │   ├── FIRUser.h │   │   ├── FIRUserInfo.h │   │   ├── FIRUserMetadata.h │   │   ├── FirebaseAuth-umbrella.h │   │   └── FirebaseAuth.h │   ├── Info.plist │   └── Modules │   └── module.modulemap ├── GTMSessionFetcher.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── GTMSessionFetcher.framework │   │   ├── GTMSessionFetcher │   │   ├── GTMSessionFetcher_Core_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── GTMSessionFetcher-umbrella.h │   │   │   ├── GTMSessionFetcher.h │   │   │   ├── GTMSessionFetcherLogging.h │   │   │   ├── GTMSessionFetcherService.h │   │   │   └── GTMSessionUploadFetcher.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── GTMSessionFetcher.framework │   │   ├── GTMSessionFetcher -> Versions/Current/GTMSessionFetcher │   │   ├── GTMSessionFetcher_Core_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── GTMSessionFetcher │   │   │   ├── Headers │   │   │   │   ├── GTMSessionFetcher-umbrella.h │   │   │   │   ├── GTMSessionFetcher.h │   │   │   │   ├── GTMSessionFetcherLogging.h │   │   │   │   ├── GTMSessionFetcherService.h │   │   │   │   └── GTMSessionUploadFetcher.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── GTMSessionFetcher_Core_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── GTMSessionFetcher.framework │   │   ├── GTMSessionFetcher │   │   ├── GTMSessionFetcher_Core_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── GTMSessionFetcher-umbrella.h │   │   │   ├── GTMSessionFetcher.h │   │   │   ├── GTMSessionFetcherLogging.h │   │   │   ├── GTMSessionFetcherService.h │   │   │   └── GTMSessionUploadFetcher.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── GTMSessionFetcher.framework │   │   ├── GTMSessionFetcher -> Versions/Current/GTMSessionFetcher │   │   ├── GTMSessionFetcher_Core_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── GTMSessionFetcher │   │   │   ├── Headers │   │   │   │   ├── GTMSessionFetcher-umbrella.h │   │   │   │   ├── GTMSessionFetcher.h │   │   │   │   ├── GTMSessionFetcherLogging.h │   │   │   │   ├── GTMSessionFetcherService.h │   │   │   │   └── GTMSessionUploadFetcher.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── GTMSessionFetcher_Core_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── GTMSessionFetcher.framework │   │   ├── GTMSessionFetcher │   │   ├── GTMSessionFetcher_Core_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── GTMSessionFetcher-umbrella.h │   │   │   ├── GTMSessionFetcher.h │   │   │   ├── GTMSessionFetcherLogging.h │   │   │   ├── GTMSessionFetcherService.h │   │   │   └── GTMSessionUploadFetcher.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── tvos-arm64_x86_64-simulator │   │   └── GTMSessionFetcher.framework │   │   ├── GTMSessionFetcher │   │   ├── GTMSessionFetcher_Core_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── GTMSessionFetcher-umbrella.h │   │   │   ├── GTMSessionFetcher.h │   │   │   ├── GTMSessionFetcherLogging.h │   │   │   ├── GTMSessionFetcherService.h │   │   │   └── GTMSessionUploadFetcher.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── watchos-arm64_arm64_32 │   │   └── GTMSessionFetcher.framework │   │   ├── GTMSessionFetcher │   │   ├── GTMSessionFetcher_Core_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── GTMSessionFetcher-umbrella.h │   │   │   ├── GTMSessionFetcher.h │   │   │   ├── GTMSessionFetcherLogging.h │   │   │   ├── GTMSessionFetcherService.h │   │   │   └── GTMSessionUploadFetcher.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   └── watchos-arm64_x86_64-simulator │   └── GTMSessionFetcher.framework │   ├── GTMSessionFetcher │   ├── GTMSessionFetcher_Core_Privacy.bundle │   │   ├── Info.plist │   │   └── PrivacyInfo.xcprivacy │   ├── Headers │   │   ├── GTMSessionFetcher-umbrella.h │   │   ├── GTMSessionFetcher.h │   │   ├── GTMSessionFetcherLogging.h │   │   ├── GTMSessionFetcherService.h │   │   └── GTMSessionUploadFetcher.h │   ├── Info.plist │   └── Modules │   └── module.modulemap └── RecaptchaInterop.xcframework ├── Info.plist ├── _CodeSignature │   ├── CodeDirectory │   ├── CodeRequirements │   ├── CodeRequirements-1 │   ├── CodeResources │   └── CodeSignature ├── ios-arm64 │   └── RecaptchaInterop.framework │   ├── Headers │   │   ├── RCAActionProtocol.h │   │   ├── RCARecaptchaClientProtocol.h │   │   ├── RCARecaptchaProtocol.h │   │   ├── RecaptchaInterop-umbrella.h │   │   └── RecaptchaInterop.h │   ├── Info.plist │   ├── Modules │   │   └── module.modulemap │   └── RecaptchaInterop ├── ios-arm64_x86_64-maccatalyst │   └── RecaptchaInterop.framework │   ├── Headers -> Versions/Current/Headers │   ├── Modules -> Versions/Current/Modules │   ├── RecaptchaInterop -> Versions/Current/RecaptchaInterop │   ├── Resources -> Versions/Current/Resources │   └── Versions │   ├── A │   │   ├── Headers │   │   │   ├── RCAActionProtocol.h │   │   │   ├── RCARecaptchaClientProtocol.h │   │   │   ├── RCARecaptchaProtocol.h │   │   │   ├── RecaptchaInterop-umbrella.h │   │   │   └── RecaptchaInterop.h │   │   ├── Modules │   │   │   └── module.modulemap │   │   ├── RecaptchaInterop │   │   └── Resources │   │   └── Info.plist │   └── Current -> A └── ios-arm64_x86_64-simulator └── RecaptchaInterop.framework ├── Headers │   ├── RCAActionProtocol.h │   ├── RCARecaptchaClientProtocol.h │   ├── RCARecaptchaProtocol.h │   ├── RecaptchaInterop-umbrella.h │   └── RecaptchaInterop.h ├── Info.plist ├── Modules │   └── module.modulemap └── RecaptchaInterop 202 directories, 543 files ```
FirebaseCrashlytics ``` ./MyPackage/XCFrameworks/FirebaseCrashlytics/ ├── FirebaseCoreExtension.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── FirebaseCoreExtension.framework │   │   ├── FirebaseCoreExtension │   │   ├── FirebaseCoreExtension_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRAppInternal.h │   │   │   ├── FIRComponent.h │   │   │   ├── FIRComponentContainer.h │   │   │   ├── FIRComponentType.h │   │   │   ├── FIRDependency.h │   │   │   ├── FIRHeartbeatLogger.h │   │   │   ├── FIRLibrary.h │   │   │   ├── FIRLogger.h │   │   │   ├── FIROptionsInternal.h │   │   │   ├── FirebaseCoreExtension-umbrella.h │   │   │   └── FirebaseCoreInternal.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── FirebaseCoreExtension.framework │   │   ├── FirebaseCoreExtension -> Versions/Current/FirebaseCoreExtension │   │   ├── FirebaseCoreExtension_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseCoreExtension │   │   │   ├── Headers │   │   │   │   ├── FIRAppInternal.h │   │   │   │   ├── FIRComponent.h │   │   │   │   ├── FIRComponentContainer.h │   │   │   │   ├── FIRComponentType.h │   │   │   │   ├── FIRDependency.h │   │   │   │   ├── FIRHeartbeatLogger.h │   │   │   │   ├── FIRLibrary.h │   │   │   │   ├── FIRLogger.h │   │   │   │   ├── FIROptionsInternal.h │   │   │   │   ├── FirebaseCoreExtension-umbrella.h │   │   │   │   └── FirebaseCoreInternal.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── FirebaseCoreExtension_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── FirebaseCoreExtension.framework │   │   ├── FirebaseCoreExtension │   │   ├── FirebaseCoreExtension_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRAppInternal.h │   │   │   ├── FIRComponent.h │   │   │   ├── FIRComponentContainer.h │   │   │   ├── FIRComponentType.h │   │   │   ├── FIRDependency.h │   │   │   ├── FIRHeartbeatLogger.h │   │   │   ├── FIRLibrary.h │   │   │   ├── FIRLogger.h │   │   │   ├── FIROptionsInternal.h │   │   │   ├── FirebaseCoreExtension-umbrella.h │   │   │   └── FirebaseCoreInternal.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── FirebaseCoreExtension.framework │   │   ├── FirebaseCoreExtension -> Versions/Current/FirebaseCoreExtension │   │   ├── FirebaseCoreExtension_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseCoreExtension │   │   │   ├── Headers │   │   │   │   ├── FIRAppInternal.h │   │   │   │   ├── FIRComponent.h │   │   │   │   ├── FIRComponentContainer.h │   │   │   │   ├── FIRComponentType.h │   │   │   │   ├── FIRDependency.h │   │   │   │   ├── FIRHeartbeatLogger.h │   │   │   │   ├── FIRLibrary.h │   │   │   │   ├── FIRLogger.h │   │   │   │   ├── FIROptionsInternal.h │   │   │   │   ├── FirebaseCoreExtension-umbrella.h │   │   │   │   └── FirebaseCoreInternal.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── FirebaseCoreExtension_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── FirebaseCoreExtension.framework │   │   ├── FirebaseCoreExtension │   │   ├── FirebaseCoreExtension_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRAppInternal.h │   │   │   ├── FIRComponent.h │   │   │   ├── FIRComponentContainer.h │   │   │   ├── FIRComponentType.h │   │   │   ├── FIRDependency.h │   │   │   ├── FIRHeartbeatLogger.h │   │   │   ├── FIRLibrary.h │   │   │   ├── FIRLogger.h │   │   │   ├── FIROptionsInternal.h │   │   │   ├── FirebaseCoreExtension-umbrella.h │   │   │   └── FirebaseCoreInternal.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── tvos-arm64_x86_64-simulator │   │   └── FirebaseCoreExtension.framework │   │   ├── FirebaseCoreExtension │   │   ├── FirebaseCoreExtension_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRAppInternal.h │   │   │   ├── FIRComponent.h │   │   │   ├── FIRComponentContainer.h │   │   │   ├── FIRComponentType.h │   │   │   ├── FIRDependency.h │   │   │   ├── FIRHeartbeatLogger.h │   │   │   ├── FIRLibrary.h │   │   │   ├── FIRLogger.h │   │   │   ├── FIROptionsInternal.h │   │   │   ├── FirebaseCoreExtension-umbrella.h │   │   │   └── FirebaseCoreInternal.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── watchos-arm64_arm64_32 │   │   └── FirebaseCoreExtension.framework │   │   ├── FirebaseCoreExtension │   │   ├── FirebaseCoreExtension_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRAppInternal.h │   │   │   ├── FIRComponent.h │   │   │   ├── FIRComponentContainer.h │   │   │   ├── FIRComponentType.h │   │   │   ├── FIRDependency.h │   │   │   ├── FIRHeartbeatLogger.h │   │   │   ├── FIRLibrary.h │   │   │   ├── FIRLogger.h │   │   │   ├── FIROptionsInternal.h │   │   │   ├── FirebaseCoreExtension-umbrella.h │   │   │   └── FirebaseCoreInternal.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   └── watchos-arm64_x86_64-simulator │   └── FirebaseCoreExtension.framework │   ├── FirebaseCoreExtension │   ├── FirebaseCoreExtension_Privacy.bundle │   │   ├── Info.plist │   │   └── PrivacyInfo.xcprivacy │   ├── Headers │   │   ├── FIRAppInternal.h │   │   ├── FIRComponent.h │   │   ├── FIRComponentContainer.h │   │   ├── FIRComponentType.h │   │   ├── FIRDependency.h │   │   ├── FIRHeartbeatLogger.h │   │   ├── FIRLibrary.h │   │   ├── FIRLogger.h │   │   ├── FIROptionsInternal.h │   │   ├── FirebaseCoreExtension-umbrella.h │   │   └── FirebaseCoreInternal.h │   ├── Info.plist │   └── Modules │   └── module.modulemap ├── FirebaseCrashlytics.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── FirebaseCrashlytics.framework │   │   ├── FirebaseCrashlytics │   │   ├── FirebaseCrashlytics_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRCrashlytics.h │   │   │   ├── FIRCrashlyticsReport.h │   │   │   ├── FIRExceptionModel.h │   │   │   ├── FIRStackFrame.h │   │   │   ├── FirebaseCrashlytics-Swift.h │   │   │   ├── FirebaseCrashlytics-umbrella.h │   │   │   └── FirebaseCrashlytics.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseCrashlytics.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-ios.swiftsourceinfo │   │   │   ├── arm64-apple-ios.abi.json │   │   │   ├── arm64-apple-ios.private.swiftinterface │   │   │   ├── arm64-apple-ios.swiftdoc │   │   │   └── arm64-apple-ios.swiftinterface │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── FirebaseCrashlytics.framework │   │   ├── FirebaseCrashlytics -> Versions/Current/FirebaseCrashlytics │   │   ├── FirebaseCrashlytics_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseCrashlytics │   │   │   ├── Headers │   │   │   │   ├── FIRCrashlytics.h │   │   │   │   ├── FIRCrashlyticsReport.h │   │   │   │   ├── FIRExceptionModel.h │   │   │   │   ├── FIRStackFrame.h │   │   │   │   ├── FirebaseCrashlytics-Swift.h │   │   │   │   ├── FirebaseCrashlytics-umbrella.h │   │   │   │   └── FirebaseCrashlytics.h │   │   │   ├── Modules │   │   │   │   ├── FirebaseCrashlytics.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-ios-macabi.abi.json │   │   │   │   │   ├── arm64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftdoc │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.abi.json │   │   │   │   │   ├── x86_64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.swiftdoc │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftinterface │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── FirebaseCrashlytics_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── FirebaseCrashlytics.framework │   │   ├── FirebaseCrashlytics │   │   ├── FirebaseCrashlytics_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRCrashlytics.h │   │   │   ├── FIRCrashlyticsReport.h │   │   │   ├── FIRExceptionModel.h │   │   │   ├── FIRStackFrame.h │   │   │   ├── FirebaseCrashlytics-Swift.h │   │   │   ├── FirebaseCrashlytics-umbrella.h │   │   │   └── FirebaseCrashlytics.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseCrashlytics.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-ios-simulator.swiftsourceinfo │   │   │   │   └── x86_64-apple-ios-simulator.swiftsourceinfo │   │   │   ├── arm64-apple-ios-simulator.abi.json │   │   │   ├── arm64-apple-ios-simulator.private.swiftinterface │   │   │   ├── arm64-apple-ios-simulator.swiftdoc │   │   │   ├── arm64-apple-ios-simulator.swiftinterface │   │   │   ├── x86_64-apple-ios-simulator.abi.json │   │   │   ├── x86_64-apple-ios-simulator.private.swiftinterface │   │   │   ├── x86_64-apple-ios-simulator.swiftdoc │   │   │   └── x86_64-apple-ios-simulator.swiftinterface │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── FirebaseCrashlytics.framework │   │   ├── FirebaseCrashlytics -> Versions/Current/FirebaseCrashlytics │   │   ├── FirebaseCrashlytics_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseCrashlytics │   │   │   ├── Headers │   │   │   │   ├── FIRCrashlytics.h │   │   │   │   ├── FIRCrashlyticsReport.h │   │   │   │   ├── FIRExceptionModel.h │   │   │   │   ├── FIRStackFrame.h │   │   │   │   ├── FirebaseCrashlytics-Swift.h │   │   │   │   ├── FirebaseCrashlytics-umbrella.h │   │   │   │   └── FirebaseCrashlytics.h │   │   │   ├── Modules │   │   │   │   ├── FirebaseCrashlytics.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-macos.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-macos.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-macos.abi.json │   │   │   │   │   ├── arm64-apple-macos.private.swiftinterface │   │   │   │   │   ├── arm64-apple-macos.swiftdoc │   │   │   │   │   ├── arm64-apple-macos.swiftinterface │   │   │   │   │   ├── x86_64-apple-macos.abi.json │   │   │   │   │   ├── x86_64-apple-macos.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-macos.swiftdoc │   │   │   │   │   └── x86_64-apple-macos.swiftinterface │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── FirebaseCrashlytics_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── FirebaseCrashlytics.framework │   │   ├── FirebaseCrashlytics │   │   ├── FirebaseCrashlytics_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRCrashlytics.h │   │   │   ├── FIRCrashlyticsReport.h │   │   │   ├── FIRExceptionModel.h │   │   │   ├── FIRStackFrame.h │   │   │   ├── FirebaseCrashlytics-Swift.h │   │   │   ├── FirebaseCrashlytics-umbrella.h │   │   │   └── FirebaseCrashlytics.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseCrashlytics.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-tvos.swiftsourceinfo │   │   │   ├── arm64-apple-tvos.abi.json │   │   │   ├── arm64-apple-tvos.private.swiftinterface │   │   │   ├── arm64-apple-tvos.swiftdoc │   │   │   └── arm64-apple-tvos.swiftinterface │   │   └── module.modulemap │   ├── tvos-arm64_x86_64-simulator │   │   └── FirebaseCrashlytics.framework │   │   ├── FirebaseCrashlytics │   │   ├── FirebaseCrashlytics_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRCrashlytics.h │   │   │   ├── FIRCrashlyticsReport.h │   │   │   ├── FIRExceptionModel.h │   │   │   ├── FIRStackFrame.h │   │   │   ├── FirebaseCrashlytics-Swift.h │   │   │   ├── FirebaseCrashlytics-umbrella.h │   │   │   └── FirebaseCrashlytics.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseCrashlytics.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-tvos-simulator.swiftsourceinfo │   │   │   │   └── x86_64-apple-tvos-simulator.swiftsourceinfo │   │   │   ├── arm64-apple-tvos-simulator.abi.json │   │   │   ├── arm64-apple-tvos-simulator.private.swiftinterface │   │   │   ├── arm64-apple-tvos-simulator.swiftdoc │   │   │   ├── arm64-apple-tvos-simulator.swiftinterface │   │   │   ├── x86_64-apple-tvos-simulator.abi.json │   │   │   ├── x86_64-apple-tvos-simulator.private.swiftinterface │   │   │   ├── x86_64-apple-tvos-simulator.swiftdoc │   │   │   └── x86_64-apple-tvos-simulator.swiftinterface │   │   └── module.modulemap │   ├── watchos-arm64_arm64_32 │   │   └── FirebaseCrashlytics.framework │   │   ├── FirebaseCrashlytics │   │   ├── FirebaseCrashlytics_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRCrashlytics.h │   │   │   ├── FIRCrashlyticsReport.h │   │   │   ├── FIRExceptionModel.h │   │   │   ├── FIRStackFrame.h │   │   │   ├── FirebaseCrashlytics-Swift.h │   │   │   ├── FirebaseCrashlytics-umbrella.h │   │   │   └── FirebaseCrashlytics.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseCrashlytics.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-watchos.swiftsourceinfo │   │   │   │   └── arm64_32-apple-watchos.swiftsourceinfo │   │   │   ├── arm64-apple-watchos.abi.json │   │   │   ├── arm64-apple-watchos.private.swiftinterface │   │   │   ├── arm64-apple-watchos.swiftdoc │   │   │   ├── arm64-apple-watchos.swiftinterface │   │   │   ├── arm64_32-apple-watchos.abi.json │   │   │   ├── arm64_32-apple-watchos.private.swiftinterface │   │   │   ├── arm64_32-apple-watchos.swiftdoc │   │   │   └── arm64_32-apple-watchos.swiftinterface │   │   └── module.modulemap │   └── watchos-arm64_x86_64-simulator │   └── FirebaseCrashlytics.framework │   ├── FirebaseCrashlytics │   ├── FirebaseCrashlytics_Privacy.bundle │   │   ├── Info.plist │   │   └── PrivacyInfo.xcprivacy │   ├── Headers │   │   ├── FIRCrashlytics.h │   │   ├── FIRCrashlyticsReport.h │   │   ├── FIRExceptionModel.h │   │   ├── FIRStackFrame.h │   │   ├── FirebaseCrashlytics-Swift.h │   │   ├── FirebaseCrashlytics-umbrella.h │   │   └── FirebaseCrashlytics.h │   ├── Info.plist │   └── Modules │   ├── FirebaseCrashlytics.swiftmodule │   │   ├── Project │   │   │   ├── arm64-apple-watchos-simulator.swiftsourceinfo │   │   │   └── x86_64-apple-watchos-simulator.swiftsourceinfo │   │   ├── arm64-apple-watchos-simulator.abi.json │   │   ├── arm64-apple-watchos-simulator.private.swiftinterface │   │   ├── arm64-apple-watchos-simulator.swiftdoc │   │   ├── arm64-apple-watchos-simulator.swiftinterface │   │   ├── x86_64-apple-watchos-simulator.abi.json │   │   ├── x86_64-apple-watchos-simulator.private.swiftinterface │   │   ├── x86_64-apple-watchos-simulator.swiftdoc │   │   └── x86_64-apple-watchos-simulator.swiftinterface │   └── module.modulemap ├── FirebaseRemoteConfigInterop.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── FirebaseRemoteConfigInterop.framework │   │   ├── FirebaseRemoteConfigInterop │   │   ├── Headers │   │   │   ├── FirebaseRemoteConfigInterop-Swift.h │   │   │   └── FirebaseRemoteConfigInterop-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfigInterop.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-ios.swiftsourceinfo │   │   │   ├── arm64-apple-ios.abi.json │   │   │   ├── arm64-apple-ios.private.swiftinterface │   │   │   ├── arm64-apple-ios.swiftdoc │   │   │   └── arm64-apple-ios.swiftinterface │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── FirebaseRemoteConfigInterop.framework │   │   ├── FirebaseRemoteConfigInterop -> Versions/Current/FirebaseRemoteConfigInterop │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseRemoteConfigInterop │   │   │   ├── Headers │   │   │   │   ├── FirebaseRemoteConfigInterop-Swift.h │   │   │   │   └── FirebaseRemoteConfigInterop-umbrella.h │   │   │   ├── Modules │   │   │   │   ├── FirebaseRemoteConfigInterop.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-ios-macabi.abi.json │   │   │   │   │   ├── arm64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftdoc │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.abi.json │   │   │   │   │   ├── x86_64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.swiftdoc │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftinterface │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── FirebaseRemoteConfigInterop.framework │   │   ├── FirebaseRemoteConfigInterop │   │   ├── Headers │   │   │   ├── FirebaseRemoteConfigInterop-Swift.h │   │   │   └── FirebaseRemoteConfigInterop-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfigInterop.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-ios-simulator.swiftsourceinfo │   │   │   │   └── x86_64-apple-ios-simulator.swiftsourceinfo │   │   │   ├── arm64-apple-ios-simulator.abi.json │   │   │   ├── arm64-apple-ios-simulator.private.swiftinterface │   │   │   ├── arm64-apple-ios-simulator.swiftdoc │   │   │   ├── arm64-apple-ios-simulator.swiftinterface │   │   │   ├── x86_64-apple-ios-simulator.abi.json │   │   │   ├── x86_64-apple-ios-simulator.private.swiftinterface │   │   │   ├── x86_64-apple-ios-simulator.swiftdoc │   │   │   └── x86_64-apple-ios-simulator.swiftinterface │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── FirebaseRemoteConfigInterop.framework │   │   ├── FirebaseRemoteConfigInterop -> Versions/Current/FirebaseRemoteConfigInterop │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseRemoteConfigInterop │   │   │   ├── Headers │   │   │   │   ├── FirebaseRemoteConfigInterop-Swift.h │   │   │   │   └── FirebaseRemoteConfigInterop-umbrella.h │   │   │   ├── Modules │   │   │   │   ├── FirebaseRemoteConfigInterop.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-macos.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-macos.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-macos.abi.json │   │   │   │   │   ├── arm64-apple-macos.private.swiftinterface │   │   │   │   │   ├── arm64-apple-macos.swiftdoc │   │   │   │   │   ├── arm64-apple-macos.swiftinterface │   │   │   │   │   ├── x86_64-apple-macos.abi.json │   │   │   │   │   ├── x86_64-apple-macos.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-macos.swiftdoc │   │   │   │   │   └── x86_64-apple-macos.swiftinterface │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── FirebaseRemoteConfigInterop.framework │   │   ├── FirebaseRemoteConfigInterop │   │   ├── Headers │   │   │   ├── FirebaseRemoteConfigInterop-Swift.h │   │   │   └── FirebaseRemoteConfigInterop-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfigInterop.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-tvos.swiftsourceinfo │   │   │   ├── arm64-apple-tvos.abi.json │   │   │   ├── arm64-apple-tvos.private.swiftinterface │   │   │   ├── arm64-apple-tvos.swiftdoc │   │   │   └── arm64-apple-tvos.swiftinterface │   │   └── module.modulemap │   ├── tvos-arm64_x86_64-simulator │   │   └── FirebaseRemoteConfigInterop.framework │   │   ├── FirebaseRemoteConfigInterop │   │   ├── Headers │   │   │   ├── FirebaseRemoteConfigInterop-Swift.h │   │   │   └── FirebaseRemoteConfigInterop-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfigInterop.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-tvos-simulator.swiftsourceinfo │   │   │   │   └── x86_64-apple-tvos-simulator.swiftsourceinfo │   │   │   ├── arm64-apple-tvos-simulator.abi.json │   │   │   ├── arm64-apple-tvos-simulator.private.swiftinterface │   │   │   ├── arm64-apple-tvos-simulator.swiftdoc │   │   │   ├── arm64-apple-tvos-simulator.swiftinterface │   │   │   ├── x86_64-apple-tvos-simulator.abi.json │   │   │   ├── x86_64-apple-tvos-simulator.private.swiftinterface │   │   │   ├── x86_64-apple-tvos-simulator.swiftdoc │   │   │   └── x86_64-apple-tvos-simulator.swiftinterface │   │   └── module.modulemap │   ├── watchos-arm64_arm64_32 │   │   └── FirebaseRemoteConfigInterop.framework │   │   ├── FirebaseRemoteConfigInterop │   │   ├── Headers │   │   │   ├── FirebaseRemoteConfigInterop-Swift.h │   │   │   └── FirebaseRemoteConfigInterop-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfigInterop.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-watchos.swiftsourceinfo │   │   │   │   └── arm64_32-apple-watchos.swiftsourceinfo │   │   │   ├── arm64-apple-watchos.abi.json │   │   │   ├── arm64-apple-watchos.private.swiftinterface │   │   │   ├── arm64-apple-watchos.swiftdoc │   │   │   ├── arm64-apple-watchos.swiftinterface │   │   │   ├── arm64_32-apple-watchos.abi.json │   │   │   ├── arm64_32-apple-watchos.private.swiftinterface │   │   │   ├── arm64_32-apple-watchos.swiftdoc │   │   │   └── arm64_32-apple-watchos.swiftinterface │   │   └── module.modulemap │   └── watchos-arm64_x86_64-simulator │   └── FirebaseRemoteConfigInterop.framework │   ├── FirebaseRemoteConfigInterop │   ├── Headers │   │   ├── FirebaseRemoteConfigInterop-Swift.h │   │   └── FirebaseRemoteConfigInterop-umbrella.h │   ├── Info.plist │   └── Modules │   ├── FirebaseRemoteConfigInterop.swiftmodule │   │   ├── Project │   │   │   ├── arm64-apple-watchos-simulator.swiftsourceinfo │   │   │   └── x86_64-apple-watchos-simulator.swiftsourceinfo │   │   ├── arm64-apple-watchos-simulator.abi.json │   │   ├── arm64-apple-watchos-simulator.private.swiftinterface │   │   ├── arm64-apple-watchos-simulator.swiftdoc │   │   ├── arm64-apple-watchos-simulator.swiftinterface │   │   ├── x86_64-apple-watchos-simulator.abi.json │   │   ├── x86_64-apple-watchos-simulator.private.swiftinterface │   │   ├── x86_64-apple-watchos-simulator.swiftdoc │   │   └── x86_64-apple-watchos-simulator.swiftinterface │   └── module.modulemap ├── FirebaseSessions.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── FirebaseSessions.framework │   │   ├── FirebaseSessions │   │   ├── Headers │   │   │   ├── FIRSESNanoPBHelpers.h │   │   │   ├── FirebaseSessions-Swift.h │   │   │   ├── FirebaseSessions-umbrella.h │   │   │   └── sessions.nanopb.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseSessions.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-ios.swiftsourceinfo │   │   │   ├── arm64-apple-ios.abi.json │   │   │   ├── arm64-apple-ios.private.swiftinterface │   │   │   ├── arm64-apple-ios.swiftdoc │   │   │   └── arm64-apple-ios.swiftinterface │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── FirebaseSessions.framework │   │   ├── FirebaseSessions -> Versions/Current/FirebaseSessions │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseSessions │   │   │   ├── Headers │   │   │   │   ├── FIRSESNanoPBHelpers.h │   │   │   │   ├── FirebaseSessions-Swift.h │   │   │   │   ├── FirebaseSessions-umbrella.h │   │   │   │   └── sessions.nanopb.h │   │   │   ├── Modules │   │   │   │   ├── FirebaseSessions.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-ios-macabi.abi.json │   │   │   │   │   ├── arm64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftdoc │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.abi.json │   │   │   │   │   ├── x86_64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.swiftdoc │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftinterface │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── FirebaseSessions.framework │   │   ├── FirebaseSessions │   │   ├── Headers │   │   │   ├── FIRSESNanoPBHelpers.h │   │   │   ├── FirebaseSessions-Swift.h │   │   │   ├── FirebaseSessions-umbrella.h │   │   │   └── sessions.nanopb.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseSessions.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-ios-simulator.swiftsourceinfo │   │   │   │   └── x86_64-apple-ios-simulator.swiftsourceinfo │   │   │   ├── arm64-apple-ios-simulator.abi.json │   │   │   ├── arm64-apple-ios-simulator.private.swiftinterface │   │   │   ├── arm64-apple-ios-simulator.swiftdoc │   │   │   ├── arm64-apple-ios-simulator.swiftinterface │   │   │   ├── x86_64-apple-ios-simulator.abi.json │   │   │   ├── x86_64-apple-ios-simulator.private.swiftinterface │   │   │   ├── x86_64-apple-ios-simulator.swiftdoc │   │   │   └── x86_64-apple-ios-simulator.swiftinterface │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── FirebaseSessions.framework │   │   ├── FirebaseSessions -> Versions/Current/FirebaseSessions │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseSessions │   │   │   ├── Headers │   │   │   │   ├── FIRSESNanoPBHelpers.h │   │   │   │   ├── FirebaseSessions-Swift.h │   │   │   │   ├── FirebaseSessions-umbrella.h │   │   │   │   └── sessions.nanopb.h │   │   │   ├── Modules │   │   │   │   ├── FirebaseSessions.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-macos.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-macos.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-macos.abi.json │   │   │   │   │   ├── arm64-apple-macos.private.swiftinterface │   │   │   │   │   ├── arm64-apple-macos.swiftdoc │   │   │   │   │   ├── arm64-apple-macos.swiftinterface │   │   │   │   │   ├── x86_64-apple-macos.abi.json │   │   │   │   │   ├── x86_64-apple-macos.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-macos.swiftdoc │   │   │   │   │   └── x86_64-apple-macos.swiftinterface │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── FirebaseSessions.framework │   │   ├── FirebaseSessions │   │   ├── Headers │   │   │   ├── FIRSESNanoPBHelpers.h │   │   │   ├── FirebaseSessions-Swift.h │   │   │   ├── FirebaseSessions-umbrella.h │   │   │   └── sessions.nanopb.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseSessions.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-tvos.swiftsourceinfo │   │   │   ├── arm64-apple-tvos.abi.json │   │   │   ├── arm64-apple-tvos.private.swiftinterface │   │   │   ├── arm64-apple-tvos.swiftdoc │   │   │   └── arm64-apple-tvos.swiftinterface │   │   └── module.modulemap │   ├── tvos-arm64_x86_64-simulator │   │   └── FirebaseSessions.framework │   │   ├── FirebaseSessions │   │   ├── Headers │   │   │   ├── FIRSESNanoPBHelpers.h │   │   │   ├── FirebaseSessions-Swift.h │   │   │   ├── FirebaseSessions-umbrella.h │   │   │   └── sessions.nanopb.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseSessions.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-tvos-simulator.swiftsourceinfo │   │   │   │   └── x86_64-apple-tvos-simulator.swiftsourceinfo │   │   │   ├── arm64-apple-tvos-simulator.abi.json │   │   │   ├── arm64-apple-tvos-simulator.private.swiftinterface │   │   │   ├── arm64-apple-tvos-simulator.swiftdoc │   │   │   ├── arm64-apple-tvos-simulator.swiftinterface │   │   │   ├── x86_64-apple-tvos-simulator.abi.json │   │   │   ├── x86_64-apple-tvos-simulator.private.swiftinterface │   │   │   ├── x86_64-apple-tvos-simulator.swiftdoc │   │   │   └── x86_64-apple-tvos-simulator.swiftinterface │   │   └── module.modulemap │   ├── watchos-arm64_arm64_32 │   │   └── FirebaseSessions.framework │   │   ├── FirebaseSessions │   │   ├── Headers │   │   │   ├── FIRSESNanoPBHelpers.h │   │   │   ├── FirebaseSessions-Swift.h │   │   │   ├── FirebaseSessions-umbrella.h │   │   │   └── sessions.nanopb.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseSessions.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-watchos.swiftsourceinfo │   │   │   │   └── arm64_32-apple-watchos.swiftsourceinfo │   │   │   ├── arm64-apple-watchos.abi.json │   │   │   ├── arm64-apple-watchos.private.swiftinterface │   │   │   ├── arm64-apple-watchos.swiftdoc │   │   │   ├── arm64-apple-watchos.swiftinterface │   │   │   ├── arm64_32-apple-watchos.abi.json │   │   │   ├── arm64_32-apple-watchos.private.swiftinterface │   │   │   ├── arm64_32-apple-watchos.swiftdoc │   │   │   └── arm64_32-apple-watchos.swiftinterface │   │   └── module.modulemap │   └── watchos-arm64_x86_64-simulator │   └── FirebaseSessions.framework │   ├── FirebaseSessions │   ├── Headers │   │   ├── FIRSESNanoPBHelpers.h │   │   ├── FirebaseSessions-Swift.h │   │   ├── FirebaseSessions-umbrella.h │   │   └── sessions.nanopb.h │   ├── Info.plist │   └── Modules │   ├── FirebaseSessions.swiftmodule │   │   ├── Project │   │   │   ├── arm64-apple-watchos-simulator.swiftsourceinfo │   │   │   └── x86_64-apple-watchos-simulator.swiftsourceinfo │   │   ├── arm64-apple-watchos-simulator.abi.json │   │   ├── arm64-apple-watchos-simulator.private.swiftinterface │   │   ├── arm64-apple-watchos-simulator.swiftdoc │   │   ├── arm64-apple-watchos-simulator.swiftinterface │   │   ├── x86_64-apple-watchos-simulator.abi.json │   │   ├── x86_64-apple-watchos-simulator.private.swiftinterface │   │   ├── x86_64-apple-watchos-simulator.swiftdoc │   │   └── x86_64-apple-watchos-simulator.swiftinterface │   └── module.modulemap ├── GoogleDataTransport.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── GoogleDataTransport.framework │   │   ├── GoogleDataTransport │   │   ├── GoogleDataTransport_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── GDTCORClock.h │   │   │   ├── GDTCORConsoleLogger.h │   │   │   ├── GDTCOREndpoints.h │   │   │   ├── GDTCOREvent.h │   │   │   ├── GDTCOREventDataObject.h │   │   │   ├── GDTCOREventTransformer.h │   │   │   ├── GDTCORProductData.h │   │   │   ├── GDTCORTargets.h │   │   │   ├── GDTCORTransport.h │   │   │   ├── GoogleDataTransport-umbrella.h │   │   │   └── GoogleDataTransport.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── GoogleDataTransport.framework │   │   ├── GoogleDataTransport -> Versions/Current/GoogleDataTransport │   │   ├── GoogleDataTransport_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── GoogleDataTransport │   │   │   ├── Headers │   │   │   │   ├── GDTCORClock.h │   │   │   │   ├── GDTCORConsoleLogger.h │   │   │   │   ├── GDTCOREndpoints.h │   │   │   │   ├── GDTCOREvent.h │   │   │   │   ├── GDTCOREventDataObject.h │   │   │   │   ├── GDTCOREventTransformer.h │   │   │   │   ├── GDTCORProductData.h │   │   │   │   ├── GDTCORTargets.h │   │   │   │   ├── GDTCORTransport.h │   │   │   │   ├── GoogleDataTransport-umbrella.h │   │   │   │   └── GoogleDataTransport.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── GoogleDataTransport_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── GoogleDataTransport.framework │   │   ├── GoogleDataTransport │   │   ├── GoogleDataTransport_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── GDTCORClock.h │   │   │   ├── GDTCORConsoleLogger.h │   │   │   ├── GDTCOREndpoints.h │   │   │   ├── GDTCOREvent.h │   │   │   ├── GDTCOREventDataObject.h │   │   │   ├── GDTCOREventTransformer.h │   │   │   ├── GDTCORProductData.h │   │   │   ├── GDTCORTargets.h │   │   │   ├── GDTCORTransport.h │   │   │   ├── GoogleDataTransport-umbrella.h │   │   │   └── GoogleDataTransport.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── GoogleDataTransport.framework │   │   ├── GoogleDataTransport -> Versions/Current/GoogleDataTransport │   │   ├── GoogleDataTransport_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── GoogleDataTransport │   │   │   ├── Headers │   │   │   │   ├── GDTCORClock.h │   │   │   │   ├── GDTCORConsoleLogger.h │   │   │   │   ├── GDTCOREndpoints.h │   │   │   │   ├── GDTCOREvent.h │   │   │   │   ├── GDTCOREventDataObject.h │   │   │   │   ├── GDTCOREventTransformer.h │   │   │   │   ├── GDTCORProductData.h │   │   │   │   ├── GDTCORTargets.h │   │   │   │   ├── GDTCORTransport.h │   │   │   │   ├── GoogleDataTransport-umbrella.h │   │   │   │   └── GoogleDataTransport.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── GoogleDataTransport_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── GoogleDataTransport.framework │   │   ├── GoogleDataTransport │   │   ├── GoogleDataTransport_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── GDTCORClock.h │   │   │   ├── GDTCORConsoleLogger.h │   │   │   ├── GDTCOREndpoints.h │   │   │   ├── GDTCOREvent.h │   │   │   ├── GDTCOREventDataObject.h │   │   │   ├── GDTCOREventTransformer.h │   │   │   ├── GDTCORProductData.h │   │   │   ├── GDTCORTargets.h │   │   │   ├── GDTCORTransport.h │   │   │   ├── GoogleDataTransport-umbrella.h │   │   │   └── GoogleDataTransport.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── tvos-arm64_x86_64-simulator │   │   └── GoogleDataTransport.framework │   │   ├── GoogleDataTransport │   │   ├── GoogleDataTransport_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── GDTCORClock.h │   │   │   ├── GDTCORConsoleLogger.h │   │   │   ├── GDTCOREndpoints.h │   │   │   ├── GDTCOREvent.h │   │   │   ├── GDTCOREventDataObject.h │   │   │   ├── GDTCOREventTransformer.h │   │   │   ├── GDTCORProductData.h │   │   │   ├── GDTCORTargets.h │   │   │   ├── GDTCORTransport.h │   │   │   ├── GoogleDataTransport-umbrella.h │   │   │   └── GoogleDataTransport.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── watchos-arm64_arm64_32 │   │   └── GoogleDataTransport.framework │   │   ├── GoogleDataTransport │   │   ├── GoogleDataTransport_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── GDTCORClock.h │   │   │   ├── GDTCORConsoleLogger.h │   │   │   ├── GDTCOREndpoints.h │   │   │   ├── GDTCOREvent.h │   │   │   ├── GDTCOREventDataObject.h │   │   │   ├── GDTCOREventTransformer.h │   │   │   ├── GDTCORProductData.h │   │   │   ├── GDTCORTargets.h │   │   │   ├── GDTCORTransport.h │   │   │   ├── GoogleDataTransport-umbrella.h │   │   │   └── GoogleDataTransport.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   └── watchos-arm64_x86_64-simulator │   └── GoogleDataTransport.framework │   ├── GoogleDataTransport │   ├── GoogleDataTransport_Privacy.bundle │   │   ├── Info.plist │   │   └── PrivacyInfo.xcprivacy │   ├── Headers │   │   ├── GDTCORClock.h │   │   ├── GDTCORConsoleLogger.h │   │   ├── GDTCOREndpoints.h │   │   ├── GDTCOREvent.h │   │   ├── GDTCOREventDataObject.h │   │   ├── GDTCOREventTransformer.h │   │   ├── GDTCORProductData.h │   │   ├── GDTCORTargets.h │   │   ├── GDTCORTransport.h │   │   ├── GoogleDataTransport-umbrella.h │   │   └── GoogleDataTransport.h │   ├── Info.plist │   └── Modules │   └── module.modulemap ├── Promises.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── Promises.framework │   │   ├── Headers │   │   │   ├── Promises-Swift.h │   │   │   └── PromisesSwift-umbrella.h │   │   ├── Info.plist │   │   ├── Modules │   │   │   ├── Promises.swiftmodule │   │   │   │   ├── Project │   │   │   │   │   └── arm64-apple-ios.swiftsourceinfo │   │   │   │   ├── arm64-apple-ios.abi.json │   │   │   │   ├── arm64-apple-ios.private.swiftinterface │   │   │   │   ├── arm64-apple-ios.swiftdoc │   │   │   │   └── arm64-apple-ios.swiftinterface │   │   │   └── module.modulemap │   │   ├── Promises │   │   └── Promises_Privacy.bundle │   │   ├── Info.plist │   │   └── PrivacyInfo.xcprivacy │   ├── ios-arm64_x86_64-maccatalyst │   │   └── Promises.framework │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Promises -> Versions/Current/Promises │   │   ├── Promises_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── Headers │   │   │   │   ├── Promises-Swift.h │   │   │   │   └── PromisesSwift-umbrella.h │   │   │   ├── Modules │   │   │   │   ├── Promises.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-ios-macabi.abi.json │   │   │   │   │   ├── arm64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftdoc │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.abi.json │   │   │   │   │   ├── x86_64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.swiftdoc │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftinterface │   │   │   │   └── module.modulemap │   │   │   ├── Promises │   │   │   └── Resources │   │   │   ├── Info.plist │   │   │   └── Promises_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── Promises.framework │   │   ├── Headers │   │   │   ├── Promises-Swift.h │   │   │   └── PromisesSwift-umbrella.h │   │   ├── Info.plist │   │   ├── Modules │   │   │   ├── Promises.swiftmodule │   │   │   │   ├── Project │   │   │   │   │   ├── arm64-apple-ios-simulator.swiftsourceinfo │   │   │   │   │   └── x86_64-apple-ios-simulator.swiftsourceinfo │   │   │   │   ├── arm64-apple-ios-simulator.abi.json │   │   │   │   ├── arm64-apple-ios-simulator.private.swiftinterface │   │   │   │   ├── arm64-apple-ios-simulator.swiftdoc │   │   │   │   ├── arm64-apple-ios-simulator.swiftinterface │   │   │   │   ├── x86_64-apple-ios-simulator.abi.json │   │   │   │   ├── x86_64-apple-ios-simulator.private.swiftinterface │   │   │   │   ├── x86_64-apple-ios-simulator.swiftdoc │   │   │   │   └── x86_64-apple-ios-simulator.swiftinterface │   │   │   └── module.modulemap │   │   ├── Promises │   │   └── Promises_Privacy.bundle │   │   ├── Info.plist │   │   └── PrivacyInfo.xcprivacy │   ├── macos-arm64_x86_64 │   │   └── Promises.framework │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Promises -> Versions/Current/Promises │   │   ├── Promises_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── Headers │   │   │   │   ├── Promises-Swift.h │   │   │   │   └── PromisesSwift-umbrella.h │   │   │   ├── Modules │   │   │   │   ├── Promises.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-macos.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-macos.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-macos.abi.json │   │   │   │   │   ├── arm64-apple-macos.private.swiftinterface │   │   │   │   │   ├── arm64-apple-macos.swiftdoc │   │   │   │   │   ├── arm64-apple-macos.swiftinterface │   │   │   │   │   ├── x86_64-apple-macos.abi.json │   │   │   │   │   ├── x86_64-apple-macos.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-macos.swiftdoc │   │   │   │   │   └── x86_64-apple-macos.swiftinterface │   │   │   │   └── module.modulemap │   │   │   ├── Promises │   │   │   └── Resources │   │   │   ├── Info.plist │   │   │   └── Promises_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── Promises.framework │   │   ├── Headers │   │   │   ├── Promises-Swift.h │   │   │   └── PromisesSwift-umbrella.h │   │   ├── Info.plist │   │   ├── Modules │   │   │   ├── Promises.swiftmodule │   │   │   │   ├── Project │   │   │   │   │   └── arm64-apple-tvos.swiftsourceinfo │   │   │   │   ├── arm64-apple-tvos.abi.json │   │   │   │   ├── arm64-apple-tvos.private.swiftinterface │   │   │   │   ├── arm64-apple-tvos.swiftdoc │   │   │   │   └── arm64-apple-tvos.swiftinterface │   │   │   └── module.modulemap │   │   ├── Promises │   │   └── Promises_Privacy.bundle │   │   ├── Info.plist │   │   └── PrivacyInfo.xcprivacy │   ├── tvos-arm64_x86_64-simulator │   │   └── Promises.framework │   │   ├── Headers │   │   │   ├── Promises-Swift.h │   │   │   └── PromisesSwift-umbrella.h │   │   ├── Info.plist │   │   ├── Modules │   │   │   ├── Promises.swiftmodule │   │   │   │   ├── Project │   │   │   │   │   ├── arm64-apple-tvos-simulator.swiftsourceinfo │   │   │   │   │   └── x86_64-apple-tvos-simulator.swiftsourceinfo │   │   │   │   ├── arm64-apple-tvos-simulator.abi.json │   │   │   │   ├── arm64-apple-tvos-simulator.private.swiftinterface │   │   │   │   ├── arm64-apple-tvos-simulator.swiftdoc │   │   │   │   ├── arm64-apple-tvos-simulator.swiftinterface │   │   │   │   ├── x86_64-apple-tvos-simulator.abi.json │   │   │   │   ├── x86_64-apple-tvos-simulator.private.swiftinterface │   │   │   │   ├── x86_64-apple-tvos-simulator.swiftdoc │   │   │   │   └── x86_64-apple-tvos-simulator.swiftinterface │   │   │   └── module.modulemap │   │   ├── Promises │   │   └── Promises_Privacy.bundle │   │   ├── Info.plist │   │   └── PrivacyInfo.xcprivacy │   ├── watchos-arm64_arm64_32 │   │   └── Promises.framework │   │   ├── Headers │   │   │   ├── Promises-Swift.h │   │   │   └── PromisesSwift-umbrella.h │   │   ├── Info.plist │   │   ├── Modules │   │   │   ├── Promises.swiftmodule │   │   │   │   ├── Project │   │   │   │   │   ├── arm64-apple-watchos.swiftsourceinfo │   │   │   │   │   └── arm64_32-apple-watchos.swiftsourceinfo │   │   │   │   ├── arm64-apple-watchos.abi.json │   │   │   │   ├── arm64-apple-watchos.private.swiftinterface │   │   │   │   ├── arm64-apple-watchos.swiftdoc │   │   │   │   ├── arm64-apple-watchos.swiftinterface │   │   │   │   ├── arm64_32-apple-watchos.abi.json │   │   │   │   ├── arm64_32-apple-watchos.private.swiftinterface │   │   │   │   ├── arm64_32-apple-watchos.swiftdoc │   │   │   │   └── arm64_32-apple-watchos.swiftinterface │   │   │   └── module.modulemap │   │   ├── Promises │   │   └── Promises_Privacy.bundle │   │   ├── Info.plist │   │   └── PrivacyInfo.xcprivacy │   └── watchos-arm64_x86_64-simulator │   └── Promises.framework │   ├── Headers │   │   ├── Promises-Swift.h │   │   └── PromisesSwift-umbrella.h │   ├── Info.plist │   ├── Modules │   │   ├── Promises.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-watchos-simulator.swiftsourceinfo │   │   │   │   └── x86_64-apple-watchos-simulator.swiftsourceinfo │   │   │   ├── arm64-apple-watchos-simulator.abi.json │   │   │   ├── arm64-apple-watchos-simulator.private.swiftinterface │   │   │   ├── arm64-apple-watchos-simulator.swiftdoc │   │   │   ├── arm64-apple-watchos-simulator.swiftinterface │   │   │   ├── x86_64-apple-watchos-simulator.abi.json │   │   │   ├── x86_64-apple-watchos-simulator.private.swiftinterface │   │   │   ├── x86_64-apple-watchos-simulator.swiftdoc │   │   │   └── x86_64-apple-watchos-simulator.swiftinterface │   │   └── module.modulemap │   ├── Promises │   └── Promises_Privacy.bundle │   ├── Info.plist │   └── PrivacyInfo.xcprivacy ├── run └── upload-symbols 425 directories, 850 files ```
psbss commented 7 months ago
FirebaseInAppMessaging ``` ./MyAppPackage/XCFrameworks/FirebaseInAppMessaging/ ├── FirebaseABTesting.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── FirebaseABTesting.framework │   │   ├── FirebaseABTesting │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRExperimentController.h │   │   │   ├── FIRLifecycleEvents.h │   │   │   ├── FirebaseABTesting-umbrella.h │   │   │   └── FirebaseABTesting.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── FirebaseABTesting.framework │   │   ├── FirebaseABTesting -> Versions/Current/FirebaseABTesting │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseABTesting │   │   │   ├── Headers │   │   │   │   ├── FIRExperimentController.h │   │   │   │   ├── FIRLifecycleEvents.h │   │   │   │   ├── FirebaseABTesting-umbrella.h │   │   │   │   └── FirebaseABTesting.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── FirebaseABTesting.framework │   │   ├── FirebaseABTesting │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRExperimentController.h │   │   │   ├── FIRLifecycleEvents.h │   │   │   ├── FirebaseABTesting-umbrella.h │   │   │   └── FirebaseABTesting.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── FirebaseABTesting.framework │   │   ├── FirebaseABTesting -> Versions/Current/FirebaseABTesting │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseABTesting │   │   │   ├── Headers │   │   │   │   ├── FIRExperimentController.h │   │   │   │   ├── FIRLifecycleEvents.h │   │   │   │   ├── FirebaseABTesting-umbrella.h │   │   │   │   └── FirebaseABTesting.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── FirebaseABTesting.framework │   │   ├── FirebaseABTesting │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRExperimentController.h │   │   │   ├── FIRLifecycleEvents.h │   │   │   ├── FirebaseABTesting-umbrella.h │   │   │   └── FirebaseABTesting.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── tvos-arm64_x86_64-simulator │   │   └── FirebaseABTesting.framework │   │   ├── FirebaseABTesting │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRExperimentController.h │   │   │   ├── FIRLifecycleEvents.h │   │   │   ├── FirebaseABTesting-umbrella.h │   │   │   └── FirebaseABTesting.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── watchos-arm64_arm64_32 │   │   └── FirebaseABTesting.framework │   │   ├── FirebaseABTesting │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRExperimentController.h │   │   │   ├── FIRLifecycleEvents.h │   │   │   ├── FirebaseABTesting-umbrella.h │   │   │   └── FirebaseABTesting.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   └── watchos-arm64_x86_64-simulator │   └── FirebaseABTesting.framework │   ├── FirebaseABTesting │   ├── FirebaseABTesting_Privacy.bundle │   │   ├── Info.plist │   │   └── PrivacyInfo.xcprivacy │   ├── Headers │   │   ├── FIRExperimentController.h │   │   ├── FIRLifecycleEvents.h │   │   ├── FirebaseABTesting-umbrella.h │   │   └── FirebaseABTesting.h │   ├── Info.plist │   └── Modules │   └── module.modulemap ├── FirebaseInAppMessaging.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── FirebaseInAppMessaging.framework │   │   ├── FirebaseInAppMessaging │   │   ├── Headers │   │   │   ├── FIRInAppMessaging.h │   │   │   ├── FIRInAppMessagingRendering.h │   │   │   ├── FirebaseInAppMessaging-Swift.h │   │   │   ├── FirebaseInAppMessaging-umbrella.h │   │   │   └── FirebaseInAppMessaging.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseInAppMessaging.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-ios.swiftsourceinfo │   │   │   ├── arm64-apple-ios.abi.json │   │   │   ├── arm64-apple-ios.private.swiftinterface │   │   │   ├── arm64-apple-ios.swiftdoc │   │   │   └── arm64-apple-ios.swiftinterface │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── FirebaseInAppMessaging.framework │   │   ├── FirebaseInAppMessaging -> Versions/Current/FirebaseInAppMessaging │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseInAppMessaging │   │   │   ├── Headers │   │   │   │   ├── FIRInAppMessaging.h │   │   │   │   ├── FIRInAppMessagingRendering.h │   │   │   │   ├── FirebaseInAppMessaging-Swift.h │   │   │   │   ├── FirebaseInAppMessaging-umbrella.h │   │   │   │   └── FirebaseInAppMessaging.h │   │   │   ├── Modules │   │   │   │   ├── FirebaseInAppMessaging.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-ios-macabi.abi.json │   │   │   │   │   ├── arm64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftdoc │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.abi.json │   │   │   │   │   ├── x86_64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.swiftdoc │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftinterface │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   └── Info.plist │   │   └── Current -> A │   └── ios-arm64_x86_64-simulator │   └── FirebaseInAppMessaging.framework │   ├── FirebaseInAppMessaging │   ├── Headers │   │   ├── FIRInAppMessaging.h │   │   ├── FIRInAppMessagingRendering.h │   │   ├── FirebaseInAppMessaging-Swift.h │   │   ├── FirebaseInAppMessaging-umbrella.h │   │   └── FirebaseInAppMessaging.h │   ├── Info.plist │   └── Modules │   ├── FirebaseInAppMessaging.swiftmodule │   │   ├── Project │   │   │   ├── arm64-apple-ios-simulator.swiftsourceinfo │   │   │   └── x86_64-apple-ios-simulator.swiftsourceinfo │   │   ├── arm64-apple-ios-simulator.abi.json │   │   ├── arm64-apple-ios-simulator.private.swiftinterface │   │   ├── arm64-apple-ios-simulator.swiftdoc │   │   ├── arm64-apple-ios-simulator.swiftinterface │   │   ├── x86_64-apple-ios-simulator.abi.json │   │   ├── x86_64-apple-ios-simulator.private.swiftinterface │   │   ├── x86_64-apple-ios-simulator.swiftdoc │   │   └── x86_64-apple-ios-simulator.swiftinterface │   └── module.modulemap └── Resources └── InAppMessagingDisplayResources.bundle ├── FIRInAppMessageDisplayStoryboard.storyboardc │   ├── Info.plist │   ├── banner-view-vc.nib │   ├── card-view-vc.nib │   ├── image-only-vc.nib │   ├── lGH-bl-7Xw-view-ef6-R8-q1S.nib │   ├── lbb-HM-tHJ-view-vRb-yf-OWE.nib │   ├── modal-view-vc.nib │   ├── oTF-1C-LZP-view-SM1-hn-m3n.nib │   └── x01-lq-3r6-view-1pz-BP-O6T.nib ├── Info.plist ├── close-with-transparency.png └── close-with-transparency@2x.png 97 directories, 152 files ```
FirebasePerformance ``` ./MyAppPackage/XCFrameworks/FirebasePerformance/ ├── FirebaseABTesting.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── FirebaseABTesting.framework │   │   ├── FirebaseABTesting │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRExperimentController.h │   │   │   ├── FIRLifecycleEvents.h │   │   │   ├── FirebaseABTesting-umbrella.h │   │   │   └── FirebaseABTesting.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── FirebaseABTesting.framework │   │   ├── FirebaseABTesting -> Versions/Current/FirebaseABTesting │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseABTesting │   │   │   ├── Headers │   │   │   │   ├── FIRExperimentController.h │   │   │   │   ├── FIRLifecycleEvents.h │   │   │   │   ├── FirebaseABTesting-umbrella.h │   │   │   │   └── FirebaseABTesting.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── FirebaseABTesting.framework │   │   ├── FirebaseABTesting │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRExperimentController.h │   │   │   ├── FIRLifecycleEvents.h │   │   │   ├── FirebaseABTesting-umbrella.h │   │   │   └── FirebaseABTesting.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── FirebaseABTesting.framework │   │   ├── FirebaseABTesting -> Versions/Current/FirebaseABTesting │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseABTesting │   │   │   ├── Headers │   │   │   │   ├── FIRExperimentController.h │   │   │   │   ├── FIRLifecycleEvents.h │   │   │   │   ├── FirebaseABTesting-umbrella.h │   │   │   │   └── FirebaseABTesting.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── FirebaseABTesting.framework │   │   ├── FirebaseABTesting │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRExperimentController.h │   │   │   ├── FIRLifecycleEvents.h │   │   │   ├── FirebaseABTesting-umbrella.h │   │   │   └── FirebaseABTesting.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── tvos-arm64_x86_64-simulator │   │   └── FirebaseABTesting.framework │   │   ├── FirebaseABTesting │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRExperimentController.h │   │   │   ├── FIRLifecycleEvents.h │   │   │   ├── FirebaseABTesting-umbrella.h │   │   │   └── FirebaseABTesting.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── watchos-arm64_arm64_32 │   │   └── FirebaseABTesting.framework │   │   ├── FirebaseABTesting │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRExperimentController.h │   │   │   ├── FIRLifecycleEvents.h │   │   │   ├── FirebaseABTesting-umbrella.h │   │   │   └── FirebaseABTesting.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   └── watchos-arm64_x86_64-simulator │   └── FirebaseABTesting.framework │   ├── FirebaseABTesting │   ├── FirebaseABTesting_Privacy.bundle │   │   ├── Info.plist │   │   └── PrivacyInfo.xcprivacy │   ├── Headers │   │   ├── FIRExperimentController.h │   │   ├── FIRLifecycleEvents.h │   │   ├── FirebaseABTesting-umbrella.h │   │   └── FirebaseABTesting.h │   ├── Info.plist │   └── Modules │   └── module.modulemap ├── FirebaseCoreExtension.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── FirebaseCoreExtension.framework │   │   ├── FirebaseCoreExtension │   │   ├── FirebaseCoreExtension_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRAppInternal.h │   │   │   ├── FIRComponent.h │   │   │   ├── FIRComponentContainer.h │   │   │   ├── FIRComponentType.h │   │   │   ├── FIRDependency.h │   │   │   ├── FIRHeartbeatLogger.h │   │   │   ├── FIRLibrary.h │   │   │   ├── FIRLogger.h │   │   │   ├── FIROptionsInternal.h │   │   │   ├── FirebaseCoreExtension-umbrella.h │   │   │   └── FirebaseCoreInternal.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── FirebaseCoreExtension.framework │   │   ├── FirebaseCoreExtension -> Versions/Current/FirebaseCoreExtension │   │   ├── FirebaseCoreExtension_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseCoreExtension │   │   │   ├── Headers │   │   │   │   ├── FIRAppInternal.h │   │   │   │   ├── FIRComponent.h │   │   │   │   ├── FIRComponentContainer.h │   │   │   │   ├── FIRComponentType.h │   │   │   │   ├── FIRDependency.h │   │   │   │   ├── FIRHeartbeatLogger.h │   │   │   │   ├── FIRLibrary.h │   │   │   │   ├── FIRLogger.h │   │   │   │   ├── FIROptionsInternal.h │   │   │   │   ├── FirebaseCoreExtension-umbrella.h │   │   │   │   └── FirebaseCoreInternal.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── FirebaseCoreExtension_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── FirebaseCoreExtension.framework │   │   ├── FirebaseCoreExtension │   │   ├── FirebaseCoreExtension_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRAppInternal.h │   │   │   ├── FIRComponent.h │   │   │   ├── FIRComponentContainer.h │   │   │   ├── FIRComponentType.h │   │   │   ├── FIRDependency.h │   │   │   ├── FIRHeartbeatLogger.h │   │   │   ├── FIRLibrary.h │   │   │   ├── FIRLogger.h │   │   │   ├── FIROptionsInternal.h │   │   │   ├── FirebaseCoreExtension-umbrella.h │   │   │   └── FirebaseCoreInternal.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── FirebaseCoreExtension.framework │   │   ├── FirebaseCoreExtension -> Versions/Current/FirebaseCoreExtension │   │   ├── FirebaseCoreExtension_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseCoreExtension │   │   │   ├── Headers │   │   │   │   ├── FIRAppInternal.h │   │   │   │   ├── FIRComponent.h │   │   │   │   ├── FIRComponentContainer.h │   │   │   │   ├── FIRComponentType.h │   │   │   │   ├── FIRDependency.h │   │   │   │   ├── FIRHeartbeatLogger.h │   │   │   │   ├── FIRLibrary.h │   │   │   │   ├── FIRLogger.h │   │   │   │   ├── FIROptionsInternal.h │   │   │   │   ├── FirebaseCoreExtension-umbrella.h │   │   │   │   └── FirebaseCoreInternal.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── FirebaseCoreExtension_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── FirebaseCoreExtension.framework │   │   ├── FirebaseCoreExtension │   │   ├── FirebaseCoreExtension_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRAppInternal.h │   │   │   ├── FIRComponent.h │   │   │   ├── FIRComponentContainer.h │   │   │   ├── FIRComponentType.h │   │   │   ├── FIRDependency.h │   │   │   ├── FIRHeartbeatLogger.h │   │   │   ├── FIRLibrary.h │   │   │   ├── FIRLogger.h │   │   │   ├── FIROptionsInternal.h │   │   │   ├── FirebaseCoreExtension-umbrella.h │   │   │   └── FirebaseCoreInternal.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── tvos-arm64_x86_64-simulator │   │   └── FirebaseCoreExtension.framework │   │   ├── FirebaseCoreExtension │   │   ├── FirebaseCoreExtension_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRAppInternal.h │   │   │   ├── FIRComponent.h │   │   │   ├── FIRComponentContainer.h │   │   │   ├── FIRComponentType.h │   │   │   ├── FIRDependency.h │   │   │   ├── FIRHeartbeatLogger.h │   │   │   ├── FIRLibrary.h │   │   │   ├── FIRLogger.h │   │   │   ├── FIROptionsInternal.h │   │   │   ├── FirebaseCoreExtension-umbrella.h │   │   │   └── FirebaseCoreInternal.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── watchos-arm64_arm64_32 │   │   └── FirebaseCoreExtension.framework │   │   ├── FirebaseCoreExtension │   │   ├── FirebaseCoreExtension_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRAppInternal.h │   │   │   ├── FIRComponent.h │   │   │   ├── FIRComponentContainer.h │   │   │   ├── FIRComponentType.h │   │   │   ├── FIRDependency.h │   │   │   ├── FIRHeartbeatLogger.h │   │   │   ├── FIRLibrary.h │   │   │   ├── FIRLogger.h │   │   │   ├── FIROptionsInternal.h │   │   │   ├── FirebaseCoreExtension-umbrella.h │   │   │   └── FirebaseCoreInternal.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   └── watchos-arm64_x86_64-simulator │   └── FirebaseCoreExtension.framework │   ├── FirebaseCoreExtension │   ├── FirebaseCoreExtension_Privacy.bundle │   │   ├── Info.plist │   │   └── PrivacyInfo.xcprivacy │   ├── Headers │   │   ├── FIRAppInternal.h │   │   ├── FIRComponent.h │   │   ├── FIRComponentContainer.h │   │   ├── FIRComponentType.h │   │   ├── FIRDependency.h │   │   ├── FIRHeartbeatLogger.h │   │   ├── FIRLibrary.h │   │   ├── FIRLogger.h │   │   ├── FIROptionsInternal.h │   │   ├── FirebaseCoreExtension-umbrella.h │   │   └── FirebaseCoreInternal.h │   ├── Info.plist │   └── Modules │   └── module.modulemap ├── FirebasePerformance.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── FirebasePerformance.framework │   │   ├── FirebasePerformance │   │   ├── Headers │   │   │   ├── FIRHTTPMetric.h │   │   │   ├── FIRPerformance.h │   │   │   ├── FIRPerformanceAttributable.h │   │   │   ├── FIRTrace.h │   │   │   ├── FirebasePerformance-umbrella.h │   │   │   └── FirebasePerformance.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── FirebasePerformance.framework │   │   ├── FirebasePerformance -> Versions/Current/FirebasePerformance │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebasePerformance │   │   │   ├── Headers │   │   │   │   ├── FIRHTTPMetric.h │   │   │   │   ├── FIRPerformance.h │   │   │   │   ├── FIRPerformanceAttributable.h │   │   │   │   ├── FIRTrace.h │   │   │   │   ├── FirebasePerformance-umbrella.h │   │   │   │   └── FirebasePerformance.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── FirebasePerformance.framework │   │   ├── FirebasePerformance │   │   ├── Headers │   │   │   ├── FIRHTTPMetric.h │   │   │   ├── FIRPerformance.h │   │   │   ├── FIRPerformanceAttributable.h │   │   │   ├── FIRTrace.h │   │   │   ├── FirebasePerformance-umbrella.h │   │   │   └── FirebasePerformance.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── tvos-arm64 │   │   └── FirebasePerformance.framework │   │   ├── FirebasePerformance │   │   ├── Headers │   │   │   ├── FIRHTTPMetric.h │   │   │   ├── FIRPerformance.h │   │   │   ├── FIRPerformanceAttributable.h │   │   │   ├── FIRTrace.h │   │   │   ├── FirebasePerformance-umbrella.h │   │   │   └── FirebasePerformance.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   └── tvos-arm64_x86_64-simulator │   └── FirebasePerformance.framework │   ├── FirebasePerformance │   ├── Headers │   │   ├── FIRHTTPMetric.h │   │   ├── FIRPerformance.h │   │   ├── FIRPerformanceAttributable.h │   │   ├── FIRTrace.h │   │   ├── FirebasePerformance-umbrella.h │   │   └── FirebasePerformance.h │   ├── Info.plist │   └── Modules │   └── module.modulemap ├── FirebaseRemoteConfig.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── FirebaseRemoteConfig.framework │   │   ├── FirebaseRemoteConfig │   │   ├── FirebaseRemoteConfig_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRRemoteConfig.h │   │   │   ├── FirebaseRemoteConfig-Swift.h │   │   │   ├── FirebaseRemoteConfig-umbrella.h │   │   │   └── FirebaseRemoteConfig.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfig.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-ios.swiftsourceinfo │   │   │   ├── arm64-apple-ios.abi.json │   │   │   ├── arm64-apple-ios.private.swiftinterface │   │   │   ├── arm64-apple-ios.swiftdoc │   │   │   └── arm64-apple-ios.swiftinterface │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── FirebaseRemoteConfig.framework │   │   ├── FirebaseRemoteConfig -> Versions/Current/FirebaseRemoteConfig │   │   ├── FirebaseRemoteConfig_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseRemoteConfig │   │   │   ├── Headers │   │   │   │   ├── FIRRemoteConfig.h │   │   │   │   ├── FirebaseRemoteConfig-Swift.h │   │   │   │   ├── FirebaseRemoteConfig-umbrella.h │   │   │   │   └── FirebaseRemoteConfig.h │   │   │   ├── Modules │   │   │   │   ├── FirebaseRemoteConfig.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-ios-macabi.abi.json │   │   │   │   │   ├── arm64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftdoc │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.abi.json │   │   │   │   │   ├── x86_64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.swiftdoc │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftinterface │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── FirebaseRemoteConfig_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── FirebaseRemoteConfig.framework │   │   ├── FirebaseRemoteConfig │   │   ├── FirebaseRemoteConfig_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRRemoteConfig.h │   │   │   ├── FirebaseRemoteConfig-Swift.h │   │   │   ├── FirebaseRemoteConfig-umbrella.h │   │   │   └── FirebaseRemoteConfig.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfig.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-ios-simulator.swiftsourceinfo │   │   │   │   └── x86_64-apple-ios-simulator.swiftsourceinfo │   │   │   ├── arm64-apple-ios-simulator.abi.json │   │   │   ├── arm64-apple-ios-simulator.private.swiftinterface │   │   │   ├── arm64-apple-ios-simulator.swiftdoc │   │   │   ├── arm64-apple-ios-simulator.swiftinterface │   │   │   ├── x86_64-apple-ios-simulator.abi.json │   │   │   ├── x86_64-apple-ios-simulator.private.swiftinterface │   │   │   ├── x86_64-apple-ios-simulator.swiftdoc │   │   │   └── x86_64-apple-ios-simulator.swiftinterface │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── FirebaseRemoteConfig.framework │   │   ├── FirebaseRemoteConfig -> Versions/Current/FirebaseRemoteConfig │   │   ├── FirebaseRemoteConfig_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseRemoteConfig │   │   │   ├── Headers │   │   │   │   ├── FIRRemoteConfig.h │   │   │   │   ├── FirebaseRemoteConfig-Swift.h │   │   │   │   ├── FirebaseRemoteConfig-umbrella.h │   │   │   │   └── FirebaseRemoteConfig.h │   │   │   ├── Modules │   │   │   │   ├── FirebaseRemoteConfig.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-macos.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-macos.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-macos.abi.json │   │   │   │   │   ├── arm64-apple-macos.private.swiftinterface │   │   │   │   │   ├── arm64-apple-macos.swiftdoc │   │   │   │   │   ├── arm64-apple-macos.swiftinterface │   │   │   │   │   ├── x86_64-apple-macos.abi.json │   │   │   │   │   ├── x86_64-apple-macos.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-macos.swiftdoc │   │   │   │   │   └── x86_64-apple-macos.swiftinterface │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── FirebaseRemoteConfig_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── FirebaseRemoteConfig.framework │   │   ├── FirebaseRemoteConfig │   │   ├── FirebaseRemoteConfig_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRRemoteConfig.h │   │   │   ├── FirebaseRemoteConfig-Swift.h │   │   │   ├── FirebaseRemoteConfig-umbrella.h │   │   │   └── FirebaseRemoteConfig.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfig.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-tvos.swiftsourceinfo │   │   │   ├── arm64-apple-tvos.abi.json │   │   │   ├── arm64-apple-tvos.private.swiftinterface │   │   │   ├── arm64-apple-tvos.swiftdoc │   │   │   └── arm64-apple-tvos.swiftinterface │   │   └── module.modulemap │   ├── tvos-arm64_x86_64-simulator │   │   └── FirebaseRemoteConfig.framework │   │   ├── FirebaseRemoteConfig │   │   ├── FirebaseRemoteConfig_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRRemoteConfig.h │   │   │   ├── FirebaseRemoteConfig-Swift.h │   │   │   ├── FirebaseRemoteConfig-umbrella.h │   │   │   └── FirebaseRemoteConfig.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfig.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-tvos-simulator.swiftsourceinfo │   │   │   │   └── x86_64-apple-tvos-simulator.swiftsourceinfo │   │   │   ├── arm64-apple-tvos-simulator.abi.json │   │   │   ├── arm64-apple-tvos-simulator.private.swiftinterface │   │   │   ├── arm64-apple-tvos-simulator.swiftdoc │   │   │   ├── arm64-apple-tvos-simulator.swiftinterface │   │   │   ├── x86_64-apple-tvos-simulator.abi.json │   │   │   ├── x86_64-apple-tvos-simulator.private.swiftinterface │   │   │   ├── x86_64-apple-tvos-simulator.swiftdoc │   │   │   └── x86_64-apple-tvos-simulator.swiftinterface │   │   └── module.modulemap │   ├── watchos-arm64_arm64_32 │   │   └── FirebaseRemoteConfig.framework │   │   ├── FirebaseRemoteConfig │   │   ├── FirebaseRemoteConfig_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRRemoteConfig.h │   │   │   ├── FirebaseRemoteConfig-Swift.h │   │   │   ├── FirebaseRemoteConfig-umbrella.h │   │   │   └── FirebaseRemoteConfig.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfig.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-watchos.swiftsourceinfo │   │   │   │   └── arm64_32-apple-watchos.swiftsourceinfo │   │   │   ├── arm64-apple-watchos.abi.json │   │   │   ├── arm64-apple-watchos.private.swiftinterface │   │   │   ├── arm64-apple-watchos.swiftdoc │   │   │   ├── arm64-apple-watchos.swiftinterface │   │   │   ├── arm64_32-apple-watchos.abi.json │   │   │   ├── arm64_32-apple-watchos.private.swiftinterface │   │   │   ├── arm64_32-apple-watchos.swiftdoc │   │   │   └── arm64_32-apple-watchos.swiftinterface │   │   └── module.modulemap │   └── watchos-arm64_x86_64-simulator │   └── FirebaseRemoteConfig.framework │   ├── FirebaseRemoteConfig │   ├── FirebaseRemoteConfig_Privacy.bundle │   │   ├── Info.plist │   │   └── PrivacyInfo.xcprivacy │   ├── Headers │   │   ├── FIRRemoteConfig.h │   │   ├── FirebaseRemoteConfig-Swift.h │   │   ├── FirebaseRemoteConfig-umbrella.h │   │   └── FirebaseRemoteConfig.h │   ├── Info.plist │   └── Modules │   ├── FirebaseRemoteConfig.swiftmodule │   │   ├── Project │   │   │   ├── arm64-apple-watchos-simulator.swiftsourceinfo │   │   │   └── x86_64-apple-watchos-simulator.swiftsourceinfo │   │   ├── arm64-apple-watchos-simulator.abi.json │   │   ├── arm64-apple-watchos-simulator.private.swiftinterface │   │   ├── arm64-apple-watchos-simulator.swiftdoc │   │   ├── arm64-apple-watchos-simulator.swiftinterface │   │   ├── x86_64-apple-watchos-simulator.abi.json │   │   ├── x86_64-apple-watchos-simulator.private.swiftinterface │   │   ├── x86_64-apple-watchos-simulator.swiftdoc │   │   └── x86_64-apple-watchos-simulator.swiftinterface │   └── module.modulemap ├── FirebaseRemoteConfigInterop.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── FirebaseRemoteConfigInterop.framework │   │   ├── FirebaseRemoteConfigInterop │   │   ├── Headers │   │   │   ├── FirebaseRemoteConfigInterop-Swift.h │   │   │   └── FirebaseRemoteConfigInterop-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfigInterop.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-ios.swiftsourceinfo │   │   │   ├── arm64-apple-ios.abi.json │   │   │   ├── arm64-apple-ios.private.swiftinterface │   │   │   ├── arm64-apple-ios.swiftdoc │   │   │   └── arm64-apple-ios.swiftinterface │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── FirebaseRemoteConfigInterop.framework │   │   ├── FirebaseRemoteConfigInterop -> Versions/Current/FirebaseRemoteConfigInterop │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseRemoteConfigInterop │   │   │   ├── Headers │   │   │   │   ├── FirebaseRemoteConfigInterop-Swift.h │   │   │   │   └── FirebaseRemoteConfigInterop-umbrella.h │   │   │   ├── Modules │   │   │   │   ├── FirebaseRemoteConfigInterop.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-ios-macabi.abi.json │   │   │   │   │   ├── arm64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftdoc │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.abi.json │   │   │   │   │   ├── x86_64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.swiftdoc │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftinterface │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── FirebaseRemoteConfigInterop.framework │   │   ├── FirebaseRemoteConfigInterop │   │   ├── Headers │   │   │   ├── FirebaseRemoteConfigInterop-Swift.h │   │   │   └── FirebaseRemoteConfigInterop-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfigInterop.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-ios-simulator.swiftsourceinfo │   │   │   │   └── x86_64-apple-ios-simulator.swiftsourceinfo │   │   │   ├── arm64-apple-ios-simulator.abi.json │   │   │   ├── arm64-apple-ios-simulator.private.swiftinterface │   │   │   ├── arm64-apple-ios-simulator.swiftdoc │   │   │   ├── arm64-apple-ios-simulator.swiftinterface │   │   │   ├── x86_64-apple-ios-simulator.abi.json │   │   │   ├── x86_64-apple-ios-simulator.private.swiftinterface │   │   │   ├── x86_64-apple-ios-simulator.swiftdoc │   │   │   └── x86_64-apple-ios-simulator.swiftinterface │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── FirebaseRemoteConfigInterop.framework │   │   ├── FirebaseRemoteConfigInterop -> Versions/Current/FirebaseRemoteConfigInterop │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseRemoteConfigInterop │   │   │   ├── Headers │   │   │   │   ├── FirebaseRemoteConfigInterop-Swift.h │   │   │   │   └── FirebaseRemoteConfigInterop-umbrella.h │   │   │   ├── Modules │   │   │   │   ├── FirebaseRemoteConfigInterop.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-macos.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-macos.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-macos.abi.json │   │   │   │   │   ├── arm64-apple-macos.private.swiftinterface │   │   │   │   │   ├── arm64-apple-macos.swiftdoc │   │   │   │   │   ├── arm64-apple-macos.swiftinterface │   │   │   │   │   ├── x86_64-apple-macos.abi.json │   │   │   │   │   ├── x86_64-apple-macos.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-macos.swiftdoc │   │   │   │   │   └── x86_64-apple-macos.swiftinterface │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── FirebaseRemoteConfigInterop.framework │   │   ├── FirebaseRemoteConfigInterop │   │   ├── Headers │   │   │   ├── FirebaseRemoteConfigInterop-Swift.h │   │   │   └── FirebaseRemoteConfigInterop-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfigInterop.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-tvos.swiftsourceinfo │   │   │   ├── arm64-apple-tvos.abi.json │   │   │   ├── arm64-apple-tvos.private.swiftinterface │   │   │   ├── arm64-apple-tvos.swiftdoc │   │   │   └── arm64-apple-tvos.swiftinterface │   │   └── module.modulemap │   ├── tvos-arm64_x86_64-simulator │   │   └── FirebaseRemoteConfigInterop.framework │   │   ├── FirebaseRemoteConfigInterop │   │   ├── Headers │   │   │   ├── FirebaseRemoteConfigInterop-Swift.h │   │   │   └── FirebaseRemoteConfigInterop-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfigInterop.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-tvos-simulator.swiftsourceinfo │   │   │   │   └── x86_64-apple-tvos-simulator.swiftsourceinfo │   │   │   ├── arm64-apple-tvos-simulator.abi.json │   │   │   ├── arm64-apple-tvos-simulator.private.swiftinterface │   │   │   ├── arm64-apple-tvos-simulator.swiftdoc │   │   │   ├── arm64-apple-tvos-simulator.swiftinterface │   │   │   ├── x86_64-apple-tvos-simulator.abi.json │   │   │   ├── x86_64-apple-tvos-simulator.private.swiftinterface │   │   │   ├── x86_64-apple-tvos-simulator.swiftdoc │   │   │   └── x86_64-apple-tvos-simulator.swiftinterface │   │   └── module.modulemap │   ├── watchos-arm64_arm64_32 │   │   └── FirebaseRemoteConfigInterop.framework │   │   ├── FirebaseRemoteConfigInterop │   │   ├── Headers │   │   │   ├── FirebaseRemoteConfigInterop-Swift.h │   │   │   └── FirebaseRemoteConfigInterop-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfigInterop.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-watchos.swiftsourceinfo │   │   │   │   └── arm64_32-apple-watchos.swiftsourceinfo │   │   │   ├── arm64-apple-watchos.abi.json │   │   │   ├── arm64-apple-watchos.private.swiftinterface │   │   │   ├── arm64-apple-watchos.swiftdoc │   │   │   ├── arm64-apple-watchos.swiftinterface │   │   │   ├── arm64_32-apple-watchos.abi.json │   │   │   ├── arm64_32-apple-watchos.private.swiftinterface │   │   │   ├── arm64_32-apple-watchos.swiftdoc │   │   │   └── arm64_32-apple-watchos.swiftinterface │   │   └── module.modulemap │   └── watchos-arm64_x86_64-simulator │   └── FirebaseRemoteConfigInterop.framework │   ├── FirebaseRemoteConfigInterop │   ├── Headers │   │   ├── FirebaseRemoteConfigInterop-Swift.h │   │   └── FirebaseRemoteConfigInterop-umbrella.h │   ├── Info.plist │   └── Modules │   ├── FirebaseRemoteConfigInterop.swiftmodule │   │   ├── Project │   │   │   ├── arm64-apple-watchos-simulator.swiftsourceinfo │   │   │   └── x86_64-apple-watchos-simulator.swiftsourceinfo │   │   ├── arm64-apple-watchos-simulator.abi.json │   │   ├── arm64-apple-watchos-simulator.private.swiftinterface │   │   ├── arm64-apple-watchos-simulator.swiftdoc │   │   ├── arm64-apple-watchos-simulator.swiftinterface │   │   ├── x86_64-apple-watchos-simulator.abi.json │   │   ├── x86_64-apple-watchos-simulator.private.swiftinterface │   │   ├── x86_64-apple-watchos-simulator.swiftdoc │   │   └── x86_64-apple-watchos-simulator.swiftinterface │   └── module.modulemap ├── FirebaseSessions.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── FirebaseSessions.framework │   │   ├── FirebaseSessions │   │   ├── Headers │   │   │   ├── FIRSESNanoPBHelpers.h │   │   │   ├── FirebaseSessions-Swift.h │   │   │   ├── FirebaseSessions-umbrella.h │   │   │   └── sessions.nanopb.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseSessions.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-ios.swiftsourceinfo │   │   │   ├── arm64-apple-ios.abi.json │   │   │   ├── arm64-apple-ios.private.swiftinterface │   │   │   ├── arm64-apple-ios.swiftdoc │   │   │   └── arm64-apple-ios.swiftinterface │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── FirebaseSessions.framework │   │   ├── FirebaseSessions -> Versions/Current/FirebaseSessions │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseSessions │   │   │   ├── Headers │   │   │   │   ├── FIRSESNanoPBHelpers.h │   │   │   │   ├── FirebaseSessions-Swift.h │   │   │   │   ├── FirebaseSessions-umbrella.h │   │   │   │   └── sessions.nanopb.h │   │   │   ├── Modules │   │   │   │   ├── FirebaseSessions.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-ios-macabi.abi.json │   │   │   │   │   ├── arm64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftdoc │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.abi.json │   │   │   │   │   ├── x86_64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.swiftdoc │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftinterface │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── FirebaseSessions.framework │   │   ├── FirebaseSessions │   │   ├── Headers │   │   │   ├── FIRSESNanoPBHelpers.h │   │   │   ├── FirebaseSessions-Swift.h │   │   │   ├── FirebaseSessions-umbrella.h │   │   │   └── sessions.nanopb.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseSessions.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-ios-simulator.swiftsourceinfo │   │   │   │   └── x86_64-apple-ios-simulator.swiftsourceinfo │   │   │   ├── arm64-apple-ios-simulator.abi.json │   │   │   ├── arm64-apple-ios-simulator.private.swiftinterface │   │   │   ├── arm64-apple-ios-simulator.swiftdoc │   │   │   ├── arm64-apple-ios-simulator.swiftinterface │   │   │   ├── x86_64-apple-ios-simulator.abi.json │   │   │   ├── x86_64-apple-ios-simulator.private.swiftinterface │   │   │   ├── x86_64-apple-ios-simulator.swiftdoc │   │   │   └── x86_64-apple-ios-simulator.swiftinterface │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── FirebaseSessions.framework │   │   ├── FirebaseSessions -> Versions/Current/FirebaseSessions │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseSessions │   │   │   ├── Headers │   │   │   │   ├── FIRSESNanoPBHelpers.h │   │   │   │   ├── FirebaseSessions-Swift.h │   │   │   │   ├── FirebaseSessions-umbrella.h │   │   │   │   └── sessions.nanopb.h │   │   │   ├── Modules │   │   │   │   ├── FirebaseSessions.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-macos.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-macos.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-macos.abi.json │   │   │   │   │   ├── arm64-apple-macos.private.swiftinterface │   │   │   │   │   ├── arm64-apple-macos.swiftdoc │   │   │   │   │   ├── arm64-apple-macos.swiftinterface │   │   │   │   │   ├── x86_64-apple-macos.abi.json │   │   │   │   │   ├── x86_64-apple-macos.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-macos.swiftdoc │   │   │   │   │   └── x86_64-apple-macos.swiftinterface │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── FirebaseSessions.framework │   │   ├── FirebaseSessions │   │   ├── Headers │   │   │   ├── FIRSESNanoPBHelpers.h │   │   │   ├── FirebaseSessions-Swift.h │   │   │   ├── FirebaseSessions-umbrella.h │   │   │   └── sessions.nanopb.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseSessions.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-tvos.swiftsourceinfo │   │   │   ├── arm64-apple-tvos.abi.json │   │   │   ├── arm64-apple-tvos.private.swiftinterface │   │   │   ├── arm64-apple-tvos.swiftdoc │   │   │   └── arm64-apple-tvos.swiftinterface │   │   └── module.modulemap │   ├── tvos-arm64_x86_64-simulator │   │   └── FirebaseSessions.framework │   │   ├── FirebaseSessions │   │   ├── Headers │   │   │   ├── FIRSESNanoPBHelpers.h │   │   │   ├── FirebaseSessions-Swift.h │   │   │   ├── FirebaseSessions-umbrella.h │   │   │   └── sessions.nanopb.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseSessions.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-tvos-simulator.swiftsourceinfo │   │   │   │   └── x86_64-apple-tvos-simulator.swiftsourceinfo │   │   │   ├── arm64-apple-tvos-simulator.abi.json │   │   │   ├── arm64-apple-tvos-simulator.private.swiftinterface │   │   │   ├── arm64-apple-tvos-simulator.swiftdoc │   │   │   ├── arm64-apple-tvos-simulator.swiftinterface │   │   │   ├── x86_64-apple-tvos-simulator.abi.json │   │   │   ├── x86_64-apple-tvos-simulator.private.swiftinterface │   │   │   ├── x86_64-apple-tvos-simulator.swiftdoc │   │   │   └── x86_64-apple-tvos-simulator.swiftinterface │   │   └── module.modulemap │   ├── watchos-arm64_arm64_32 │   │   └── FirebaseSessions.framework │   │   ├── FirebaseSessions │   │   ├── Headers │   │   │   ├── FIRSESNanoPBHelpers.h │   │   │   ├── FirebaseSessions-Swift.h │   │   │   ├── FirebaseSessions-umbrella.h │   │   │   └── sessions.nanopb.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseSessions.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-watchos.swiftsourceinfo │   │   │   │   └── arm64_32-apple-watchos.swiftsourceinfo │   │   │   ├── arm64-apple-watchos.abi.json │   │   │   ├── arm64-apple-watchos.private.swiftinterface │   │   │   ├── arm64-apple-watchos.swiftdoc │   │   │   ├── arm64-apple-watchos.swiftinterface │   │   │   ├── arm64_32-apple-watchos.abi.json │   │   │   ├── arm64_32-apple-watchos.private.swiftinterface │   │   │   ├── arm64_32-apple-watchos.swiftdoc │   │   │   └── arm64_32-apple-watchos.swiftinterface │   │   └── module.modulemap │   └── watchos-arm64_x86_64-simulator │   └── FirebaseSessions.framework │   ├── FirebaseSessions │   ├── Headers │   │   ├── FIRSESNanoPBHelpers.h │   │   ├── FirebaseSessions-Swift.h │   │   ├── FirebaseSessions-umbrella.h │   │   └── sessions.nanopb.h │   ├── Info.plist │   └── Modules │   ├── FirebaseSessions.swiftmodule │   │   ├── Project │   │   │   ├── arm64-apple-watchos-simulator.swiftsourceinfo │   │   │   └── x86_64-apple-watchos-simulator.swiftsourceinfo │   │   ├── arm64-apple-watchos-simulator.abi.json │   │   ├── arm64-apple-watchos-simulator.private.swiftinterface │   │   ├── arm64-apple-watchos-simulator.swiftdoc │   │   ├── arm64-apple-watchos-simulator.swiftinterface │   │   ├── x86_64-apple-watchos-simulator.abi.json │   │   ├── x86_64-apple-watchos-simulator.private.swiftinterface │   │   ├── x86_64-apple-watchos-simulator.swiftdoc │   │   └── x86_64-apple-watchos-simulator.swiftinterface │   └── module.modulemap ├── FirebaseSharedSwift.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── FirebaseSharedSwift.framework │   │   ├── FirebaseSharedSwift │   │   ├── Headers │   │   │   ├── FirebaseSharedSwift-Swift.h │   │   │   └── FirebaseSharedSwift-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseSharedSwift.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-ios.swiftsourceinfo │   │   │   ├── arm64-apple-ios.abi.json │   │   │   ├── arm64-apple-ios.private.swiftinterface │   │   │   ├── arm64-apple-ios.swiftdoc │   │   │   └── arm64-apple-ios.swiftinterface │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── FirebaseSharedSwift.framework │   │   ├── FirebaseSharedSwift -> Versions/Current/FirebaseSharedSwift │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseSharedSwift │   │   │   ├── Headers │   │   │   │   ├── FirebaseSharedSwift-Swift.h │   │   │   │   └── FirebaseSharedSwift-umbrella.h │   │   │   ├── Modules │   │   │   │   ├── FirebaseSharedSwift.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-ios-macabi.abi.json │   │   │   │   │   ├── arm64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftdoc │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.abi.json │   │   │   │   │   ├── x86_64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.swiftdoc │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftinterface │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── FirebaseSharedSwift.framework │   │   ├── FirebaseSharedSwift │   │   ├── Headers │   │   │   ├── FirebaseSharedSwift-Swift.h │   │   │   └── FirebaseSharedSwift-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseSharedSwift.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-ios-simulator.swiftsourceinfo │   │   │   │   └── x86_64-apple-ios-simulator.swiftsourceinfo │   │   │   ├── arm64-apple-ios-simulator.abi.json │   │   │   ├── arm64-apple-ios-simulator.private.swiftinterface │   │   │   ├── arm64-apple-ios-simulator.swiftdoc │   │   │   ├── arm64-apple-ios-simulator.swiftinterface │   │   │   ├── x86_64-apple-ios-simulator.abi.json │   │   │   ├── x86_64-apple-ios-simulator.private.swiftinterface │   │   │   ├── x86_64-apple-ios-simulator.swiftdoc │   │   │   └── x86_64-apple-ios-simulator.swiftinterface │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── FirebaseSharedSwift.framework │   │   ├── FirebaseSharedSwift -> Versions/Current/FirebaseSharedSwift │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseSharedSwift │   │   │   ├── Headers │   │   │   │   ├── FirebaseSharedSwift-Swift.h │   │   │   │   └── FirebaseSharedSwift-umbrella.h │   │   │   ├── Modules │   │   │   │   ├── FirebaseSharedSwift.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-macos.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-macos.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-macos.abi.json │   │   │   │   │   ├── arm64-apple-macos.private.swiftinterface │   │   │   │   │   ├── arm64-apple-macos.swiftdoc │   │   │   │   │   ├── arm64-apple-macos.swiftinterface │   │   │   │   │   ├── x86_64-apple-macos.abi.json │   │   │   │   │   ├── x86_64-apple-macos.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-macos.swiftdoc │   │   │   │   │   └── x86_64-apple-macos.swiftinterface │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── FirebaseSharedSwift.framework │   │   ├── FirebaseSharedSwift │   │   ├── Headers │   │   │   ├── FirebaseSharedSwift-Swift.h │   │   │   └── FirebaseSharedSwift-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseSharedSwift.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-tvos.swiftsourceinfo │   │   │   ├── arm64-apple-tvos.abi.json │   │   │   ├── arm64-apple-tvos.private.swiftinterface │   │   │   ├── arm64-apple-tvos.swiftdoc │   │   │   └── arm64-apple-tvos.swiftinterface │   │   └── module.modulemap │   ├── tvos-arm64_x86_64-simulator │   │   └── FirebaseSharedSwift.framework │   │   ├── FirebaseSharedSwift │   │   ├── Headers │   │   │   ├── FirebaseSharedSwift-Swift.h │   │   │   └── FirebaseSharedSwift-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseSharedSwift.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-tvos-simulator.swiftsourceinfo │   │   │   │   └── x86_64-apple-tvos-simulator.swiftsourceinfo │   │   │   ├── arm64-apple-tvos-simulator.abi.json │   │   │   ├── arm64-apple-tvos-simulator.private.swiftinterface │   │   │   ├── arm64-apple-tvos-simulator.swiftdoc │   │   │   ├── arm64-apple-tvos-simulator.swiftinterface │   │   │   ├── x86_64-apple-tvos-simulator.abi.json │   │   │   ├── x86_64-apple-tvos-simulator.private.swiftinterface │   │   │   ├── x86_64-apple-tvos-simulator.swiftdoc │   │   │   └── x86_64-apple-tvos-simulator.swiftinterface │   │   └── module.modulemap │   ├── watchos-arm64_arm64_32 │   │   └── FirebaseSharedSwift.framework │   │   ├── FirebaseSharedSwift │   │   ├── Headers │   │   │   ├── FirebaseSharedSwift-Swift.h │   │   │   └── FirebaseSharedSwift-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseSharedSwift.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-watchos.swiftsourceinfo │   │   │   │   └── arm64_32-apple-watchos.swiftsourceinfo │   │   │   ├── arm64-apple-watchos.abi.json │   │   │   ├── arm64-apple-watchos.private.swiftinterface │   │   │   ├── arm64-apple-watchos.swiftdoc │   │   │   ├── arm64-apple-watchos.swiftinterface │   │   │   ├── arm64_32-apple-watchos.abi.json │   │   │   ├── arm64_32-apple-watchos.private.swiftinterface │   │   │   ├── arm64_32-apple-watchos.swiftdoc │   │   │   └── arm64_32-apple-watchos.swiftinterface │   │   └── module.modulemap │   └── watchos-arm64_x86_64-simulator │   └── FirebaseSharedSwift.framework │   ├── FirebaseSharedSwift │   ├── Headers │   │   ├── FirebaseSharedSwift-Swift.h │   │   └── FirebaseSharedSwift-umbrella.h │   ├── Info.plist │   └── Modules │   ├── FirebaseSharedSwift.swiftmodule │   │   ├── Project │   │   │   ├── arm64-apple-watchos-simulator.swiftsourceinfo │   │   │   └── x86_64-apple-watchos-simulator.swiftsourceinfo │   │   ├── arm64-apple-watchos-simulator.abi.json │   │   ├── arm64-apple-watchos-simulator.private.swiftinterface │   │   ├── arm64-apple-watchos-simulator.swiftdoc │   │   ├── arm64-apple-watchos-simulator.swiftinterface │   │   ├── x86_64-apple-watchos-simulator.abi.json │   │   ├── x86_64-apple-watchos-simulator.private.swiftinterface │   │   ├── x86_64-apple-watchos-simulator.swiftdoc │   │   └── x86_64-apple-watchos-simulator.swiftinterface │   └── module.modulemap ├── GoogleDataTransport.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── GoogleDataTransport.framework │   │   ├── GoogleDataTransport │   │   ├── GoogleDataTransport_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── GDTCORClock.h │   │   │   ├── GDTCORConsoleLogger.h │   │   │   ├── GDTCOREndpoints.h │   │   │   ├── GDTCOREvent.h │   │   │   ├── GDTCOREventDataObject.h │   │   │   ├── GDTCOREventTransformer.h │   │   │   ├── GDTCORProductData.h │   │   │   ├── GDTCORTargets.h │   │   │   ├── GDTCORTransport.h │   │   │   ├── GoogleDataTransport-umbrella.h │   │   │   └── GoogleDataTransport.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── GoogleDataTransport.framework │   │   ├── GoogleDataTransport -> Versions/Current/GoogleDataTransport │   │   ├── GoogleDataTransport_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── GoogleDataTransport │   │   │   ├── Headers │   │   │   │   ├── GDTCORClock.h │   │   │   │   ├── GDTCORConsoleLogger.h │   │   │   │   ├── GDTCOREndpoints.h │   │   │   │   ├── GDTCOREvent.h │   │   │   │   ├── GDTCOREventDataObject.h │   │   │   │   ├── GDTCOREventTransformer.h │   │   │   │   ├── GDTCORProductData.h │   │   │   │   ├── GDTCORTargets.h │   │   │   │   ├── GDTCORTransport.h │   │   │   │   ├── GoogleDataTransport-umbrella.h │   │   │   │   └── GoogleDataTransport.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── GoogleDataTransport_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── GoogleDataTransport.framework │   │   ├── GoogleDataTransport │   │   ├── GoogleDataTransport_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── GDTCORClock.h │   │   │   ├── GDTCORConsoleLogger.h │   │   │   ├── GDTCOREndpoints.h │   │   │   ├── GDTCOREvent.h │   │   │   ├── GDTCOREventDataObject.h │   │   │   ├── GDTCOREventTransformer.h │   │   │   ├── GDTCORProductData.h │   │   │   ├── GDTCORTargets.h │   │   │   ├── GDTCORTransport.h │   │   │   ├── GoogleDataTransport-umbrella.h │   │   │   └── GoogleDataTransport.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── GoogleDataTransport.framework │   │   ├── GoogleDataTransport -> Versions/Current/GoogleDataTransport │   │   ├── GoogleDataTransport_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── GoogleDataTransport │   │   │   ├── Headers │   │   │   │   ├── GDTCORClock.h │   │   │   │   ├── GDTCORConsoleLogger.h │   │   │   │   ├── GDTCOREndpoints.h │   │   │   │   ├── GDTCOREvent.h │   │   │   │   ├── GDTCOREventDataObject.h │   │   │   │   ├── GDTCOREventTransformer.h │   │   │   │   ├── GDTCORProductData.h │   │   │   │   ├── GDTCORTargets.h │   │   │   │   ├── GDTCORTransport.h │   │   │   │   ├── GoogleDataTransport-umbrella.h │   │   │   │   └── GoogleDataTransport.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── GoogleDataTransport_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── GoogleDataTransport.framework │   │   ├── GoogleDataTransport │   │   ├── GoogleDataTransport_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── GDTCORClock.h │   │   │   ├── GDTCORConsoleLogger.h │   │   │   ├── GDTCOREndpoints.h │   │   │   ├── GDTCOREvent.h │   │   │   ├── GDTCOREventDataObject.h │   │   │   ├── GDTCOREventTransformer.h │   │   │   ├── GDTCORProductData.h │   │   │   ├── GDTCORTargets.h │   │   │   ├── GDTCORTransport.h │   │   │   ├── GoogleDataTransport-umbrella.h │   │   │   └── GoogleDataTransport.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── tvos-arm64_x86_64-simulator │   │   └── GoogleDataTransport.framework │   │   ├── GoogleDataTransport │   │   ├── GoogleDataTransport_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── GDTCORClock.h │   │   │   ├── GDTCORConsoleLogger.h │   │   │   ├── GDTCOREndpoints.h │   │   │   ├── GDTCOREvent.h │   │   │   ├── GDTCOREventDataObject.h │   │   │   ├── GDTCOREventTransformer.h │   │   │   ├── GDTCORProductData.h │   │   │   ├── GDTCORTargets.h │   │   │   ├── GDTCORTransport.h │   │   │   ├── GoogleDataTransport-umbrella.h │   │   │   └── GoogleDataTransport.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── watchos-arm64_arm64_32 │   │   └── GoogleDataTransport.framework │   │   ├── GoogleDataTransport │   │   ├── GoogleDataTransport_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── GDTCORClock.h │   │   │   ├── GDTCORConsoleLogger.h │   │   │   ├── GDTCOREndpoints.h │   │   │   ├── GDTCOREvent.h │   │   │   ├── GDTCOREventDataObject.h │   │   │   ├── GDTCOREventTransformer.h │   │   │   ├── GDTCORProductData.h │   │   │   ├── GDTCORTargets.h │   │   │   ├── GDTCORTransport.h │   │   │   ├── GoogleDataTransport-umbrella.h │   │   │   └── GoogleDataTransport.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   └── watchos-arm64_x86_64-simulator │   └── GoogleDataTransport.framework │   ├── GoogleDataTransport │   ├── GoogleDataTransport_Privacy.bundle │   │   ├── Info.plist │   │   └── PrivacyInfo.xcprivacy │   ├── Headers │   │   ├── GDTCORClock.h │   │   ├── GDTCORConsoleLogger.h │   │   ├── GDTCOREndpoints.h │   │   ├── GDTCOREvent.h │   │   ├── GDTCOREventDataObject.h │   │   ├── GDTCOREventTransformer.h │   │   ├── GDTCORProductData.h │   │   ├── GDTCORTargets.h │   │   ├── GDTCORTransport.h │   │   ├── GoogleDataTransport-umbrella.h │   │   └── GoogleDataTransport.h │   ├── Info.plist │   └── Modules │   └── module.modulemap └── Promises.xcframework ├── Info.plist ├── _CodeSignature │   ├── CodeDirectory │   ├── CodeRequirements │   ├── CodeRequirements-1 │   ├── CodeResources │   └── CodeSignature ├── ios-arm64 │   └── Promises.framework │   ├── Headers │   │   ├── Promises-Swift.h │   │   └── PromisesSwift-umbrella.h │   ├── Info.plist │   ├── Modules │   │   ├── Promises.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-ios.swiftsourceinfo │   │   │   ├── arm64-apple-ios.abi.json │   │   │   ├── arm64-apple-ios.private.swiftinterface │   │   │   ├── arm64-apple-ios.swiftdoc │   │   │   └── arm64-apple-ios.swiftinterface │   │   └── module.modulemap │   ├── Promises │   └── Promises_Privacy.bundle │   ├── Info.plist │   └── PrivacyInfo.xcprivacy ├── ios-arm64_x86_64-maccatalyst │   └── Promises.framework │   ├── Headers -> Versions/Current/Headers │   ├── Modules -> Versions/Current/Modules │   ├── Promises -> Versions/Current/Promises │   ├── Promises_Privacy.bundle │   │   └── Contents │   │   ├── Info.plist │   │   └── Resources │   │   └── PrivacyInfo.xcprivacy │   ├── Resources -> Versions/Current/Resources │   └── Versions │   ├── A │   │   ├── Headers │   │   │   ├── Promises-Swift.h │   │   │   └── PromisesSwift-umbrella.h │   │   ├── Modules │   │   │   ├── Promises.swiftmodule │   │   │   │   ├── Project │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftsourceinfo │   │   │   │   ├── arm64-apple-ios-macabi.abi.json │   │   │   │   ├── arm64-apple-ios-macabi.private.swiftinterface │   │   │   │   ├── arm64-apple-ios-macabi.swiftdoc │   │   │   │   ├── arm64-apple-ios-macabi.swiftinterface │   │   │   │   ├── x86_64-apple-ios-macabi.abi.json │   │   │   │   ├── x86_64-apple-ios-macabi.private.swiftinterface │   │   │   │   ├── x86_64-apple-ios-macabi.swiftdoc │   │   │   │   └── x86_64-apple-ios-macabi.swiftinterface │   │   │   └── module.modulemap │   │   ├── Promises │   │   └── Resources │   │   ├── Info.plist │   │   └── Promises_Privacy.bundle │   │   └── Contents │   │   ├── Info.plist │   │   └── Resources │   │   └── PrivacyInfo.xcprivacy │   └── Current -> A ├── ios-arm64_x86_64-simulator │   └── Promises.framework │   ├── Headers │   │   ├── Promises-Swift.h │   │   └── PromisesSwift-umbrella.h │   ├── Info.plist │   ├── Modules │   │   ├── Promises.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-ios-simulator.swiftsourceinfo │   │   │   │   └── x86_64-apple-ios-simulator.swiftsourceinfo │   │   │   ├── arm64-apple-ios-simulator.abi.json │   │   │   ├── arm64-apple-ios-simulator.private.swiftinterface │   │   │   ├── arm64-apple-ios-simulator.swiftdoc │   │   │   ├── arm64-apple-ios-simulator.swiftinterface │   │   │   ├── x86_64-apple-ios-simulator.abi.json │   │   │   ├── x86_64-apple-ios-simulator.private.swiftinterface │   │   │   ├── x86_64-apple-ios-simulator.swiftdoc │   │   │   └── x86_64-apple-ios-simulator.swiftinterface │   │   └── module.modulemap │   ├── Promises │   └── Promises_Privacy.bundle │   ├── Info.plist │   └── PrivacyInfo.xcprivacy ├── macos-arm64_x86_64 │   └── Promises.framework │   ├── Headers -> Versions/Current/Headers │   ├── Modules -> Versions/Current/Modules │   ├── Promises -> Versions/Current/Promises │   ├── Promises_Privacy.bundle │   │   └── Contents │   │   ├── Info.plist │   │   └── Resources │   │   └── PrivacyInfo.xcprivacy │   ├── Resources -> Versions/Current/Resources │   └── Versions │   ├── A │   │   ├── Headers │   │   │   ├── Promises-Swift.h │   │   │   └── PromisesSwift-umbrella.h │   │   ├── Modules │   │   │   ├── Promises.swiftmodule │   │   │   │   ├── Project │   │   │   │   │   ├── arm64-apple-macos.swiftsourceinfo │   │   │   │   │   └── x86_64-apple-macos.swiftsourceinfo │   │   │   │   ├── arm64-apple-macos.abi.json │   │   │   │   ├── arm64-apple-macos.private.swiftinterface │   │   │   │   ├── arm64-apple-macos.swiftdoc │   │   │   │   ├── arm64-apple-macos.swiftinterface │   │   │   │   ├── x86_64-apple-macos.abi.json │   │   │   │   ├── x86_64-apple-macos.private.swiftinterface │   │   │   │   ├── x86_64-apple-macos.swiftdoc │   │   │   │   └── x86_64-apple-macos.swiftinterface │   │   │   └── module.modulemap │   │   ├── Promises │   │   └── Resources │   │   ├── Info.plist │   │   └── Promises_Privacy.bundle │   │   └── Contents │   │   ├── Info.plist │   │   └── Resources │   │   └── PrivacyInfo.xcprivacy │   └── Current -> A ├── tvos-arm64 │   └── Promises.framework │   ├── Headers │   │   ├── Promises-Swift.h │   │   └── PromisesSwift-umbrella.h │   ├── Info.plist │   ├── Modules │   │   ├── Promises.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-tvos.swiftsourceinfo │   │   │   ├── arm64-apple-tvos.abi.json │   │   │   ├── arm64-apple-tvos.private.swiftinterface │   │   │   ├── arm64-apple-tvos.swiftdoc │   │   │   └── arm64-apple-tvos.swiftinterface │   │   └── module.modulemap │   ├── Promises │   └── Promises_Privacy.bundle │   ├── Info.plist │   └── PrivacyInfo.xcprivacy ├── tvos-arm64_x86_64-simulator │   └── Promises.framework │   ├── Headers │   │   ├── Promises-Swift.h │   │   └── PromisesSwift-umbrella.h │   ├── Info.plist │   ├── Modules │   │   ├── Promises.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-tvos-simulator.swiftsourceinfo │   │   │   │   └── x86_64-apple-tvos-simulator.swiftsourceinfo │   │   │   ├── arm64-apple-tvos-simulator.abi.json │   │   │   ├── arm64-apple-tvos-simulator.private.swiftinterface │   │   │   ├── arm64-apple-tvos-simulator.swiftdoc │   │   │   ├── arm64-apple-tvos-simulator.swiftinterface │   │   │   ├── x86_64-apple-tvos-simulator.abi.json │   │   │   ├── x86_64-apple-tvos-simulator.private.swiftinterface │   │   │   ├── x86_64-apple-tvos-simulator.swiftdoc │   │   │   └── x86_64-apple-tvos-simulator.swiftinterface │   │   └── module.modulemap │   ├── Promises │   └── Promises_Privacy.bundle │   ├── Info.plist │   └── PrivacyInfo.xcprivacy ├── watchos-arm64_arm64_32 │   └── Promises.framework │   ├── Headers │   │   ├── Promises-Swift.h │   │   └── PromisesSwift-umbrella.h │   ├── Info.plist │   ├── Modules │   │   ├── Promises.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-watchos.swiftsourceinfo │   │   │   │   └── arm64_32-apple-watchos.swiftsourceinfo │   │   │   ├── arm64-apple-watchos.abi.json │   │   │   ├── arm64-apple-watchos.private.swiftinterface │   │   │   ├── arm64-apple-watchos.swiftdoc │   │   │   ├── arm64-apple-watchos.swiftinterface │   │   │   ├── arm64_32-apple-watchos.abi.json │   │   │   ├── arm64_32-apple-watchos.private.swiftinterface │   │   │   ├── arm64_32-apple-watchos.swiftdoc │   │   │   └── arm64_32-apple-watchos.swiftinterface │   │   └── module.modulemap │   ├── Promises │   └── Promises_Privacy.bundle │   ├── Info.plist │   └── PrivacyInfo.xcprivacy └── watchos-arm64_x86_64-simulator └── Promises.framework ├── Headers │   ├── Promises-Swift.h │   └── PromisesSwift-umbrella.h ├── Info.plist ├── Modules │   ├── Promises.swiftmodule │   │   ├── Project │   │   │   ├── arm64-apple-watchos-simulator.swiftsourceinfo │   │   │   └── x86_64-apple-watchos-simulator.swiftsourceinfo │   │   ├── arm64-apple-watchos-simulator.abi.json │   │   ├── arm64-apple-watchos-simulator.private.swiftinterface │   │   ├── arm64-apple-watchos-simulator.swiftdoc │   │   ├── arm64-apple-watchos-simulator.swiftinterface │   │   ├── x86_64-apple-watchos-simulator.abi.json │   │   ├── x86_64-apple-watchos-simulator.private.swiftinterface │   │   ├── x86_64-apple-watchos-simulator.swiftdoc │   │   └── x86_64-apple-watchos-simulator.swiftinterface │   └── module.modulemap ├── Promises └── Promises_Privacy.bundle ├── Info.plist └── PrivacyInfo.xcprivacy 584 directories, 1078 files ```
FirebaseRemoteConfig ``` ./MyAppPackage/XCFrameworks/FirebaseRemoteConfig/ ├── FirebaseABTesting.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── FirebaseABTesting.framework │   │   ├── FirebaseABTesting │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRExperimentController.h │   │   │   ├── FIRLifecycleEvents.h │   │   │   ├── FirebaseABTesting-umbrella.h │   │   │   └── FirebaseABTesting.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── FirebaseABTesting.framework │   │   ├── FirebaseABTesting -> Versions/Current/FirebaseABTesting │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseABTesting │   │   │   ├── Headers │   │   │   │   ├── FIRExperimentController.h │   │   │   │   ├── FIRLifecycleEvents.h │   │   │   │   ├── FirebaseABTesting-umbrella.h │   │   │   │   └── FirebaseABTesting.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── FirebaseABTesting.framework │   │   ├── FirebaseABTesting │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRExperimentController.h │   │   │   ├── FIRLifecycleEvents.h │   │   │   ├── FirebaseABTesting-umbrella.h │   │   │   └── FirebaseABTesting.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── FirebaseABTesting.framework │   │   ├── FirebaseABTesting -> Versions/Current/FirebaseABTesting │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseABTesting │   │   │   ├── Headers │   │   │   │   ├── FIRExperimentController.h │   │   │   │   ├── FIRLifecycleEvents.h │   │   │   │   ├── FirebaseABTesting-umbrella.h │   │   │   │   └── FirebaseABTesting.h │   │   │   ├── Modules │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── FirebaseABTesting.framework │   │   ├── FirebaseABTesting │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRExperimentController.h │   │   │   ├── FIRLifecycleEvents.h │   │   │   ├── FirebaseABTesting-umbrella.h │   │   │   └── FirebaseABTesting.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── tvos-arm64_x86_64-simulator │   │   └── FirebaseABTesting.framework │   │   ├── FirebaseABTesting │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRExperimentController.h │   │   │   ├── FIRLifecycleEvents.h │   │   │   ├── FirebaseABTesting-umbrella.h │   │   │   └── FirebaseABTesting.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   ├── watchos-arm64_arm64_32 │   │   └── FirebaseABTesting.framework │   │   ├── FirebaseABTesting │   │   ├── FirebaseABTesting_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRExperimentController.h │   │   │   ├── FIRLifecycleEvents.h │   │   │   ├── FirebaseABTesting-umbrella.h │   │   │   └── FirebaseABTesting.h │   │   ├── Info.plist │   │   └── Modules │   │   └── module.modulemap │   └── watchos-arm64_x86_64-simulator │   └── FirebaseABTesting.framework │   ├── FirebaseABTesting │   ├── FirebaseABTesting_Privacy.bundle │   │   ├── Info.plist │   │   └── PrivacyInfo.xcprivacy │   ├── Headers │   │   ├── FIRExperimentController.h │   │   ├── FIRLifecycleEvents.h │   │   ├── FirebaseABTesting-umbrella.h │   │   └── FirebaseABTesting.h │   ├── Info.plist │   └── Modules │   └── module.modulemap ├── FirebaseRemoteConfig.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── FirebaseRemoteConfig.framework │   │   ├── FirebaseRemoteConfig │   │   ├── FirebaseRemoteConfig_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRRemoteConfig.h │   │   │   ├── FirebaseRemoteConfig-Swift.h │   │   │   ├── FirebaseRemoteConfig-umbrella.h │   │   │   └── FirebaseRemoteConfig.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfig.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-ios.swiftsourceinfo │   │   │   ├── arm64-apple-ios.abi.json │   │   │   ├── arm64-apple-ios.private.swiftinterface │   │   │   ├── arm64-apple-ios.swiftdoc │   │   │   └── arm64-apple-ios.swiftinterface │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── FirebaseRemoteConfig.framework │   │   ├── FirebaseRemoteConfig -> Versions/Current/FirebaseRemoteConfig │   │   ├── FirebaseRemoteConfig_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseRemoteConfig │   │   │   ├── Headers │   │   │   │   ├── FIRRemoteConfig.h │   │   │   │   ├── FirebaseRemoteConfig-Swift.h │   │   │   │   ├── FirebaseRemoteConfig-umbrella.h │   │   │   │   └── FirebaseRemoteConfig.h │   │   │   ├── Modules │   │   │   │   ├── FirebaseRemoteConfig.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-ios-macabi.abi.json │   │   │   │   │   ├── arm64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftdoc │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.abi.json │   │   │   │   │   ├── x86_64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.swiftdoc │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftinterface │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── FirebaseRemoteConfig_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── FirebaseRemoteConfig.framework │   │   ├── FirebaseRemoteConfig │   │   ├── FirebaseRemoteConfig_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRRemoteConfig.h │   │   │   ├── FirebaseRemoteConfig-Swift.h │   │   │   ├── FirebaseRemoteConfig-umbrella.h │   │   │   └── FirebaseRemoteConfig.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfig.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-ios-simulator.swiftsourceinfo │   │   │   │   └── x86_64-apple-ios-simulator.swiftsourceinfo │   │   │   ├── arm64-apple-ios-simulator.abi.json │   │   │   ├── arm64-apple-ios-simulator.private.swiftinterface │   │   │   ├── arm64-apple-ios-simulator.swiftdoc │   │   │   ├── arm64-apple-ios-simulator.swiftinterface │   │   │   ├── x86_64-apple-ios-simulator.abi.json │   │   │   ├── x86_64-apple-ios-simulator.private.swiftinterface │   │   │   ├── x86_64-apple-ios-simulator.swiftdoc │   │   │   └── x86_64-apple-ios-simulator.swiftinterface │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── FirebaseRemoteConfig.framework │   │   ├── FirebaseRemoteConfig -> Versions/Current/FirebaseRemoteConfig │   │   ├── FirebaseRemoteConfig_Privacy.bundle │   │   │   └── Contents │   │   │   ├── Info.plist │   │   │   └── Resources │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseRemoteConfig │   │   │   ├── Headers │   │   │   │   ├── FIRRemoteConfig.h │   │   │   │   ├── FirebaseRemoteConfig-Swift.h │   │   │   │   ├── FirebaseRemoteConfig-umbrella.h │   │   │   │   └── FirebaseRemoteConfig.h │   │   │   ├── Modules │   │   │   │   ├── FirebaseRemoteConfig.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-macos.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-macos.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-macos.abi.json │   │   │   │   │   ├── arm64-apple-macos.private.swiftinterface │   │   │   │   │   ├── arm64-apple-macos.swiftdoc │   │   │   │   │   ├── arm64-apple-macos.swiftinterface │   │   │   │   │   ├── x86_64-apple-macos.abi.json │   │   │   │   │   ├── x86_64-apple-macos.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-macos.swiftdoc │   │   │   │   │   └── x86_64-apple-macos.swiftinterface │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   ├── FirebaseRemoteConfig_Privacy.bundle │   │   │   │   └── Contents │   │   │   │   ├── Info.plist │   │   │   │   └── Resources │   │   │   │   └── PrivacyInfo.xcprivacy │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── FirebaseRemoteConfig.framework │   │   ├── FirebaseRemoteConfig │   │   ├── FirebaseRemoteConfig_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRRemoteConfig.h │   │   │   ├── FirebaseRemoteConfig-Swift.h │   │   │   ├── FirebaseRemoteConfig-umbrella.h │   │   │   └── FirebaseRemoteConfig.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfig.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-tvos.swiftsourceinfo │   │   │   ├── arm64-apple-tvos.abi.json │   │   │   ├── arm64-apple-tvos.private.swiftinterface │   │   │   ├── arm64-apple-tvos.swiftdoc │   │   │   └── arm64-apple-tvos.swiftinterface │   │   └── module.modulemap │   ├── tvos-arm64_x86_64-simulator │   │   └── FirebaseRemoteConfig.framework │   │   ├── FirebaseRemoteConfig │   │   ├── FirebaseRemoteConfig_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRRemoteConfig.h │   │   │   ├── FirebaseRemoteConfig-Swift.h │   │   │   ├── FirebaseRemoteConfig-umbrella.h │   │   │   └── FirebaseRemoteConfig.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfig.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-tvos-simulator.swiftsourceinfo │   │   │   │   └── x86_64-apple-tvos-simulator.swiftsourceinfo │   │   │   ├── arm64-apple-tvos-simulator.abi.json │   │   │   ├── arm64-apple-tvos-simulator.private.swiftinterface │   │   │   ├── arm64-apple-tvos-simulator.swiftdoc │   │   │   ├── arm64-apple-tvos-simulator.swiftinterface │   │   │   ├── x86_64-apple-tvos-simulator.abi.json │   │   │   ├── x86_64-apple-tvos-simulator.private.swiftinterface │   │   │   ├── x86_64-apple-tvos-simulator.swiftdoc │   │   │   └── x86_64-apple-tvos-simulator.swiftinterface │   │   └── module.modulemap │   ├── watchos-arm64_arm64_32 │   │   └── FirebaseRemoteConfig.framework │   │   ├── FirebaseRemoteConfig │   │   ├── FirebaseRemoteConfig_Privacy.bundle │   │   │   ├── Info.plist │   │   │   └── PrivacyInfo.xcprivacy │   │   ├── Headers │   │   │   ├── FIRRemoteConfig.h │   │   │   ├── FirebaseRemoteConfig-Swift.h │   │   │   ├── FirebaseRemoteConfig-umbrella.h │   │   │   └── FirebaseRemoteConfig.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfig.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-watchos.swiftsourceinfo │   │   │   │   └── arm64_32-apple-watchos.swiftsourceinfo │   │   │   ├── arm64-apple-watchos.abi.json │   │   │   ├── arm64-apple-watchos.private.swiftinterface │   │   │   ├── arm64-apple-watchos.swiftdoc │   │   │   ├── arm64-apple-watchos.swiftinterface │   │   │   ├── arm64_32-apple-watchos.abi.json │   │   │   ├── arm64_32-apple-watchos.private.swiftinterface │   │   │   ├── arm64_32-apple-watchos.swiftdoc │   │   │   └── arm64_32-apple-watchos.swiftinterface │   │   └── module.modulemap │   └── watchos-arm64_x86_64-simulator │   └── FirebaseRemoteConfig.framework │   ├── FirebaseRemoteConfig │   ├── FirebaseRemoteConfig_Privacy.bundle │   │   ├── Info.plist │   │   └── PrivacyInfo.xcprivacy │   ├── Headers │   │   ├── FIRRemoteConfig.h │   │   ├── FirebaseRemoteConfig-Swift.h │   │   ├── FirebaseRemoteConfig-umbrella.h │   │   └── FirebaseRemoteConfig.h │   ├── Info.plist │   └── Modules │   ├── FirebaseRemoteConfig.swiftmodule │   │   ├── Project │   │   │   ├── arm64-apple-watchos-simulator.swiftsourceinfo │   │   │   └── x86_64-apple-watchos-simulator.swiftsourceinfo │   │   ├── arm64-apple-watchos-simulator.abi.json │   │   ├── arm64-apple-watchos-simulator.private.swiftinterface │   │   ├── arm64-apple-watchos-simulator.swiftdoc │   │   ├── arm64-apple-watchos-simulator.swiftinterface │   │   ├── x86_64-apple-watchos-simulator.abi.json │   │   ├── x86_64-apple-watchos-simulator.private.swiftinterface │   │   ├── x86_64-apple-watchos-simulator.swiftdoc │   │   └── x86_64-apple-watchos-simulator.swiftinterface │   └── module.modulemap ├── FirebaseRemoteConfigInterop.xcframework │   ├── Info.plist │   ├── _CodeSignature │   │   ├── CodeDirectory │   │   ├── CodeRequirements │   │   ├── CodeRequirements-1 │   │   ├── CodeResources │   │   └── CodeSignature │   ├── ios-arm64 │   │   └── FirebaseRemoteConfigInterop.framework │   │   ├── FirebaseRemoteConfigInterop │   │   ├── Headers │   │   │   ├── FirebaseRemoteConfigInterop-Swift.h │   │   │   └── FirebaseRemoteConfigInterop-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfigInterop.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-ios.swiftsourceinfo │   │   │   ├── arm64-apple-ios.abi.json │   │   │   ├── arm64-apple-ios.private.swiftinterface │   │   │   ├── arm64-apple-ios.swiftdoc │   │   │   └── arm64-apple-ios.swiftinterface │   │   └── module.modulemap │   ├── ios-arm64_x86_64-maccatalyst │   │   └── FirebaseRemoteConfigInterop.framework │   │   ├── FirebaseRemoteConfigInterop -> Versions/Current/FirebaseRemoteConfigInterop │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseRemoteConfigInterop │   │   │   ├── Headers │   │   │   │   ├── FirebaseRemoteConfigInterop-Swift.h │   │   │   │   └── FirebaseRemoteConfigInterop-umbrella.h │   │   │   ├── Modules │   │   │   │   ├── FirebaseRemoteConfigInterop.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-ios-macabi.abi.json │   │   │   │   │   ├── arm64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftdoc │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.abi.json │   │   │   │   │   ├── x86_64-apple-ios-macabi.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-ios-macabi.swiftdoc │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftinterface │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   └── Info.plist │   │   └── Current -> A │   ├── ios-arm64_x86_64-simulator │   │   └── FirebaseRemoteConfigInterop.framework │   │   ├── FirebaseRemoteConfigInterop │   │   ├── Headers │   │   │   ├── FirebaseRemoteConfigInterop-Swift.h │   │   │   └── FirebaseRemoteConfigInterop-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfigInterop.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-ios-simulator.swiftsourceinfo │   │   │   │   └── x86_64-apple-ios-simulator.swiftsourceinfo │   │   │   ├── arm64-apple-ios-simulator.abi.json │   │   │   ├── arm64-apple-ios-simulator.private.swiftinterface │   │   │   ├── arm64-apple-ios-simulator.swiftdoc │   │   │   ├── arm64-apple-ios-simulator.swiftinterface │   │   │   ├── x86_64-apple-ios-simulator.abi.json │   │   │   ├── x86_64-apple-ios-simulator.private.swiftinterface │   │   │   ├── x86_64-apple-ios-simulator.swiftdoc │   │   │   └── x86_64-apple-ios-simulator.swiftinterface │   │   └── module.modulemap │   ├── macos-arm64_x86_64 │   │   └── FirebaseRemoteConfigInterop.framework │   │   ├── FirebaseRemoteConfigInterop -> Versions/Current/FirebaseRemoteConfigInterop │   │   ├── Headers -> Versions/Current/Headers │   │   ├── Modules -> Versions/Current/Modules │   │   ├── Resources -> Versions/Current/Resources │   │   └── Versions │   │   ├── A │   │   │   ├── FirebaseRemoteConfigInterop │   │   │   ├── Headers │   │   │   │   ├── FirebaseRemoteConfigInterop-Swift.h │   │   │   │   └── FirebaseRemoteConfigInterop-umbrella.h │   │   │   ├── Modules │   │   │   │   ├── FirebaseRemoteConfigInterop.swiftmodule │   │   │   │   │   ├── Project │   │   │   │   │   │   ├── arm64-apple-macos.swiftsourceinfo │   │   │   │   │   │   └── x86_64-apple-macos.swiftsourceinfo │   │   │   │   │   ├── arm64-apple-macos.abi.json │   │   │   │   │   ├── arm64-apple-macos.private.swiftinterface │   │   │   │   │   ├── arm64-apple-macos.swiftdoc │   │   │   │   │   ├── arm64-apple-macos.swiftinterface │   │   │   │   │   ├── x86_64-apple-macos.abi.json │   │   │   │   │   ├── x86_64-apple-macos.private.swiftinterface │   │   │   │   │   ├── x86_64-apple-macos.swiftdoc │   │   │   │   │   └── x86_64-apple-macos.swiftinterface │   │   │   │   └── module.modulemap │   │   │   └── Resources │   │   │   └── Info.plist │   │   └── Current -> A │   ├── tvos-arm64 │   │   └── FirebaseRemoteConfigInterop.framework │   │   ├── FirebaseRemoteConfigInterop │   │   ├── Headers │   │   │   ├── FirebaseRemoteConfigInterop-Swift.h │   │   │   └── FirebaseRemoteConfigInterop-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfigInterop.swiftmodule │   │   │   ├── Project │   │   │   │   └── arm64-apple-tvos.swiftsourceinfo │   │   │   ├── arm64-apple-tvos.abi.json │   │   │   ├── arm64-apple-tvos.private.swiftinterface │   │   │   ├── arm64-apple-tvos.swiftdoc │   │   │   └── arm64-apple-tvos.swiftinterface │   │   └── module.modulemap │   ├── tvos-arm64_x86_64-simulator │   │   └── FirebaseRemoteConfigInterop.framework │   │   ├── FirebaseRemoteConfigInterop │   │   ├── Headers │   │   │   ├── FirebaseRemoteConfigInterop-Swift.h │   │   │   └── FirebaseRemoteConfigInterop-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfigInterop.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-tvos-simulator.swiftsourceinfo │   │   │   │   └── x86_64-apple-tvos-simulator.swiftsourceinfo │   │   │   ├── arm64-apple-tvos-simulator.abi.json │   │   │   ├── arm64-apple-tvos-simulator.private.swiftinterface │   │   │   ├── arm64-apple-tvos-simulator.swiftdoc │   │   │   ├── arm64-apple-tvos-simulator.swiftinterface │   │   │   ├── x86_64-apple-tvos-simulator.abi.json │   │   │   ├── x86_64-apple-tvos-simulator.private.swiftinterface │   │   │   ├── x86_64-apple-tvos-simulator.swiftdoc │   │   │   └── x86_64-apple-tvos-simulator.swiftinterface │   │   └── module.modulemap │   ├── watchos-arm64_arm64_32 │   │   └── FirebaseRemoteConfigInterop.framework │   │   ├── FirebaseRemoteConfigInterop │   │   ├── Headers │   │   │   ├── FirebaseRemoteConfigInterop-Swift.h │   │   │   └── FirebaseRemoteConfigInterop-umbrella.h │   │   ├── Info.plist │   │   └── Modules │   │   ├── FirebaseRemoteConfigInterop.swiftmodule │   │   │   ├── Project │   │   │   │   ├── arm64-apple-watchos.swiftsourceinfo │   │   │   │   └── arm64_32-apple-watchos.swiftsourceinfo │   │   │   ├── arm64-apple-watchos.abi.json │   │   │   ├── arm64-apple-watchos.private.swiftinterface │   │   │   ├── arm64-apple-watchos.swiftdoc │   │   │   ├── arm64-apple-watchos.swiftinterface │   │   │   ├── arm64_32-apple-watchos.abi.json │   │   │   ├── arm64_32-apple-watchos.private.swiftinterface │   │   │   ├── arm64_32-apple-watchos.swiftdoc │   │   │   └── arm64_32-apple-watchos.swiftinterface │   │   └── module.modulemap │   └── watchos-arm64_x86_64-simulator │   └── FirebaseRemoteConfigInterop.framework │   ├── FirebaseRemoteConfigInterop │   ├── Headers │   │   ├── FirebaseRemoteConfigInterop-Swift.h │   │   └── FirebaseRemoteConfigInterop-umbrella.h │   ├── Info.plist │   └── Modules │   ├── FirebaseRemoteConfigInterop.swiftmodule │   │   ├── Project │   │   │   ├── arm64-apple-watchos-simulator.swiftsourceinfo │   │   │   └── x86_64-apple-watchos-simulator.swiftsourceinfo │   │   ├── arm64-apple-watchos-simulator.abi.json │   │   ├── arm64-apple-watchos-simulator.private.swiftinterface │   │   ├── arm64-apple-watchos-simulator.swiftdoc │   │   ├── arm64-apple-watchos-simulator.swiftinterface │   │   ├── x86_64-apple-watchos-simulator.abi.json │   │   ├── x86_64-apple-watchos-simulator.private.swiftinterface │   │   ├── x86_64-apple-watchos-simulator.swiftdoc │   │   └── x86_64-apple-watchos-simulator.swiftinterface │   └── module.modulemap └── FirebaseSharedSwift.xcframework ├── Info.plist ├── _CodeSignature │   ├── CodeDirectory │   ├── CodeRequirements │   ├── CodeRequirements-1 │   ├── CodeResources │   └── CodeSignature ├── ios-arm64 │   └── FirebaseSharedSwift.framework │   ├── FirebaseSharedSwift │   ├── Headers │   │   ├── FirebaseSharedSwift-Swift.h │   │   └── FirebaseSharedSwift-umbrella.h │   ├── Info.plist │   └── Modules │   ├── FirebaseSharedSwift.swiftmodule │   │   ├── Project │   │   │   └── arm64-apple-ios.swiftsourceinfo │   │   ├── arm64-apple-ios.abi.json │   │   ├── arm64-apple-ios.private.swiftinterface │   │   ├── arm64-apple-ios.swiftdoc │   │   └── arm64-apple-ios.swiftinterface │   └── module.modulemap ├── ios-arm64_x86_64-maccatalyst │   └── FirebaseSharedSwift.framework │   ├── FirebaseSharedSwift -> Versions/Current/FirebaseSharedSwift │   ├── Headers -> Versions/Current/Headers │   ├── Modules -> Versions/Current/Modules │   ├── Resources -> Versions/Current/Resources │   └── Versions │   ├── A │   │   ├── FirebaseSharedSwift │   │   ├── Headers │   │   │   ├── FirebaseSharedSwift-Swift.h │   │   │   └── FirebaseSharedSwift-umbrella.h │   │   ├── Modules │   │   │   ├── FirebaseSharedSwift.swiftmodule │   │   │   │   ├── Project │   │   │   │   │   ├── arm64-apple-ios-macabi.swiftsourceinfo │   │   │   │   │   └── x86_64-apple-ios-macabi.swiftsourceinfo │   │   │   │   ├── arm64-apple-ios-macabi.abi.json │   │   │   │   ├── arm64-apple-ios-macabi.private.swiftinterface │   │   │   │   ├── arm64-apple-ios-macabi.swiftdoc │   │   │   │   ├── arm64-apple-ios-macabi.swiftinterface │   │   │   │   ├── x86_64-apple-ios-macabi.abi.json │   │   │   │   ├── x86_64-apple-ios-macabi.private.swiftinterface │   │   │   │   ├── x86_64-apple-ios-macabi.swiftdoc │   │   │   │   └── x86_64-apple-ios-macabi.swiftinterface │   │   │   └── module.modulemap │   │   └── Resources │   │   └── Info.plist │   └── Current -> A ├── ios-arm64_x86_64-simulator │   └── FirebaseSharedSwift.framework │   ├── FirebaseSharedSwift │   ├── Headers │   │   ├── FirebaseSharedSwift-Swift.h │   │   └── FirebaseSharedSwift-umbrella.h │   ├── Info.plist │   └── Modules │   ├── FirebaseSharedSwift.swiftmodule │   │   ├── Project │   │   │   ├── arm64-apple-ios-simulator.swiftsourceinfo │   │   │   └── x86_64-apple-ios-simulator.swiftsourceinfo │   │   ├── arm64-apple-ios-simulator.abi.json │   │   ├── arm64-apple-ios-simulator.private.swiftinterface │   │   ├── arm64-apple-ios-simulator.swiftdoc │   │   ├── arm64-apple-ios-simulator.swiftinterface │   │   ├── x86_64-apple-ios-simulator.abi.json │   │   ├── x86_64-apple-ios-simulator.private.swiftinterface │   │   ├── x86_64-apple-ios-simulator.swiftdoc │   │   └── x86_64-apple-ios-simulator.swiftinterface │   └── module.modulemap ├── macos-arm64_x86_64 │   └── FirebaseSharedSwift.framework │   ├── FirebaseSharedSwift -> Versions/Current/FirebaseSharedSwift │   ├── Headers -> Versions/Current/Headers │   ├── Modules -> Versions/Current/Modules │   ├── Resources -> Versions/Current/Resources │   └── Versions │   ├── A │   │   ├── FirebaseSharedSwift │   │   ├── Headers │   │   │   ├── FirebaseSharedSwift-Swift.h │   │   │   └── FirebaseSharedSwift-umbrella.h │   │   ├── Modules │   │   │   ├── FirebaseSharedSwift.swiftmodule │   │   │   │   ├── Project │   │   │   │   │   ├── arm64-apple-macos.swiftsourceinfo │   │   │   │   │   └── x86_64-apple-macos.swiftsourceinfo │   │   │   │   ├── arm64-apple-macos.abi.json │   │   │   │   ├── arm64-apple-macos.private.swiftinterface │   │   │   │   ├── arm64-apple-macos.swiftdoc │   │   │   │   ├── arm64-apple-macos.swiftinterface │   │   │   │   ├── x86_64-apple-macos.abi.json │   │   │   │   ├── x86_64-apple-macos.private.swiftinterface │   │   │   │   ├── x86_64-apple-macos.swiftdoc │   │   │   │   └── x86_64-apple-macos.swiftinterface │   │   │   └── module.modulemap │   │   └── Resources │   │   └── Info.plist │   └── Current -> A ├── tvos-arm64 │   └── FirebaseSharedSwift.framework │   ├── FirebaseSharedSwift │   ├── Headers │   │   ├── FirebaseSharedSwift-Swift.h │   │   └── FirebaseSharedSwift-umbrella.h │   ├── Info.plist │   └── Modules │   ├── FirebaseSharedSwift.swiftmodule │   │   ├── Project │   │   │   └── arm64-apple-tvos.swiftsourceinfo │   │   ├── arm64-apple-tvos.abi.json │   │   ├── arm64-apple-tvos.private.swiftinterface │   │   ├── arm64-apple-tvos.swiftdoc │   │   └── arm64-apple-tvos.swiftinterface │   └── module.modulemap ├── tvos-arm64_x86_64-simulator │   └── FirebaseSharedSwift.framework │   ├── FirebaseSharedSwift │   ├── Headers │   │   ├── FirebaseSharedSwift-Swift.h │   │   └── FirebaseSharedSwift-umbrella.h │   ├── Info.plist │   └── Modules │   ├── FirebaseSharedSwift.swiftmodule │   │   ├── Project │   │   │   ├── arm64-apple-tvos-simulator.swiftsourceinfo │   │   │   └── x86_64-apple-tvos-simulator.swiftsourceinfo │   │   ├── arm64-apple-tvos-simulator.abi.json │   │   ├── arm64-apple-tvos-simulator.private.swiftinterface │   │   ├── arm64-apple-tvos-simulator.swiftdoc │   │   ├── arm64-apple-tvos-simulator.swiftinterface │   │   ├── x86_64-apple-tvos-simulator.abi.json │   │   ├── x86_64-apple-tvos-simulator.private.swiftinterface │   │   ├── x86_64-apple-tvos-simulator.swiftdoc │   │   └── x86_64-apple-tvos-simulator.swiftinterface │   └── module.modulemap ├── watchos-arm64_arm64_32 │   └── FirebaseSharedSwift.framework │   ├── FirebaseSharedSwift │   ├── Headers │   │   ├── FirebaseSharedSwift-Swift.h │   │   └── FirebaseSharedSwift-umbrella.h │   ├── Info.plist │   └── Modules │   ├── FirebaseSharedSwift.swiftmodule │   │   ├── Project │   │   │   ├── arm64-apple-watchos.swiftsourceinfo │   │   │   └── arm64_32-apple-watchos.swiftsourceinfo │   │   ├── arm64-apple-watchos.abi.json │   │   ├── arm64-apple-watchos.private.swiftinterface │   │   ├── arm64-apple-watchos.swiftdoc │   │   ├── arm64-apple-watchos.swiftinterface │   │   ├── arm64_32-apple-watchos.abi.json │   │   ├── arm64_32-apple-watchos.private.swiftinterface │   │   ├── arm64_32-apple-watchos.swiftdoc │   │   └── arm64_32-apple-watchos.swiftinterface │   └── module.modulemap └── watchos-arm64_x86_64-simulator └── FirebaseSharedSwift.framework ├── FirebaseSharedSwift ├── Headers │   ├── FirebaseSharedSwift-Swift.h │   └── FirebaseSharedSwift-umbrella.h ├── Info.plist └── Modules ├── FirebaseSharedSwift.swiftmodule │   ├── Project │   │   ├── arm64-apple-watchos-simulator.swiftsourceinfo │   │   └── x86_64-apple-watchos-simulator.swiftsourceinfo │   ├── arm64-apple-watchos-simulator.abi.json │   ├── arm64-apple-watchos-simulator.private.swiftinterface │   ├── arm64-apple-watchos-simulator.swiftdoc │   ├── arm64-apple-watchos-simulator.swiftinterface │   ├── x86_64-apple-watchos-simulator.abi.json │   ├── x86_64-apple-watchos-simulator.private.swiftinterface │   ├── x86_64-apple-watchos-simulator.swiftdoc │   └── x86_64-apple-watchos-simulator.swiftinterface └── module.modulemap 277 directories, 474 files ```
psbss commented 7 months ago

one of screenshot is here. image

paulb777 commented 7 months ago

There should not be a privacy manifest bundle in the framework folder. It should only be in the Resources folder. Make sure to remove the previous version's xcframework before copying in the new one.

Pre-10.24.0, the macOS/Catalyst slices had the privacy manifest bundle at the root of the framework, but now we added them in the Resources directory

Perhaps when you did the copy, the framework-level bundle stuck around and wasn't overwritten/deleted, so it is breaking the signature.

psbss commented 7 months ago

Oh no, I forgot to remove the tmp download directory. After deleting it, it was verified correctly. Thank you all very much.